/* ============================================================
   relyon-thanks.css – お問い合わせ完了ページ専用スタイル
   ============================================================ */

:root {
  --c-accent: #009DE6;
  --c-accent-deep: #00489D;
  --c-text: #333333;
  --c-text-mid: #555555;
  --c-border: #E5E5E5;
}

body.page-thanks {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--c-text);
}

.rth-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   セクション
   ============================================================ */
.rth-section {
  padding: 160px 0 200px;
}

/* ============================================================
   ページタイトル
   （voice single の rvs-title と同じグラデーション文字）
   ============================================================ */
.rth-title {
  margin: 0 0 40px;
  text-align: center;
  font-family: 'Zen Old Mincho', 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.rth-title__text {
  /* background-clip: text 非対応環境向けのフォールバック色 */
  color: var(--c-accent-deep);
  background: linear-gradient(90deg, var(--c-accent-deep) 0%, var(--c-accent) 100%);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .rth-title__text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* ============================================================
   本文
   ============================================================ */
.rth-body {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--c-text);
}

.rth-body p {
  margin: 0 0 8px;
}

.rth-body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 767px) {
  .rth-section {
    padding: 80px 0 120px;
  }

  .rth-container {
    padding: 0 20px;
  }

  .rth-title {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .rth-body {
    font-size: 14px;
    line-height: 1.9;
  }
}
