* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #3b9edd;        /* ロゴの水滴ブルー（唯一のアクセント） */
  --blue-dark: #2a7fb8;
  --navy: #1c2e3d;        /* 見出し */
  --text: #2c3e4d;        /* 本文 */
  --muted: #67788a;       /* 補足 */
  --tint: #f2f8fc;        /* 薄いブルーの面 */
  --border: #dce6ee;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.8;
}

img { max-width: 100%; }

/* ===== 共通パーツ ===== */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 2px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.section-h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.section-lead {
  margin-top: 22px;
  font-size: 17px;
  color: var(--muted);
  text-align: left;
}
/* スマホ専用の改行（見出しの折り返し位置制御） */
.br-sp { display: none; }
/* ヒーロー見出し専用の改行（1180px以下で4行に分割） */
.br-hero { display: none; }

.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); }

/* ===== ヘッダー ===== */
.site-header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img { height: 44px; width: auto; }
.nav-cta {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--blue);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--blue); color: white; }

/* ===== ヒーロー ===== */
.hero {
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 40px 72px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-left { flex: 1.15; }
.hero-eyebrow {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.hero-h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 26px;
}
.hero-list {
  list-style: none;
  margin-bottom: 34px;
}
.hero-list li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 12px;
  width: 12px; height: 6px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}
.hero-cta-wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-sub { font-size: 15px; color: var(--muted); }

/* ヒーロー右：実物の診断画面 */
.hero-right { flex: 0.85; text-align: center; }
.phone-stack {
  position: relative;
  display: inline-block;
  padding: 0 110px 0 0;
}
.phone-front {
  position: relative;
  width: 250px;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(28, 46, 61, 0.18));
}
.phone-back {
  position: absolute;
  width: 210px;
  right: 0;
  top: 44px;
  z-index: 1;
  opacity: 0.9;
}
.hero-caption {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

/* ===== 体験ミニ診断 ===== */
.trial-section {
  padding: 88px 40px;
  background: var(--tint);
}
.quiz-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
}
.quiz-inner {
  padding: 40px 44px 44px;
  text-align: center;
}
.quiz-progress {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.quiz-q {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 3.2em;
}
.quiz-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.quiz-btn {
  flex: 1;
  max-width: 200px;
  padding: 15px 0;
  font-size: 19px;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: white;
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.quiz-btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.quiz-btn-no {
  background: var(--white);
  color: var(--blue-dark);
}
.quiz-btn-no:hover { background: var(--tint); color: var(--blue-dark); }

.quiz-result-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.quiz-result-type {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px;
}
.quiz-result-desc {
  font-size: 16px;
  color: var(--text);
  text-align: left;
  margin-bottom: 28px;
}
.quiz-restart {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--muted);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  cursor: pointer;
  text-decoration: underline;
}
.quiz-restart:hover { color: var(--blue-dark); }
.quiz-note {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ===== 診断の強み（番号つきリスト） ===== */
.strength-section { padding: 88px 40px; }
.strength-list {
  max-width: 860px;
  margin: 0 auto;
}
.strength-item {
  display: flex;
  gap: 36px;
  padding: 34px 8px;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.strength-item:last-child { border-bottom: 1px solid var(--border); }
.strength-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  letter-spacing: 1px;
}
.strength-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.strength-desc { font-size: 16px; color: var(--text); }

/* ===== ダッシュボード ===== */
.dashboard-section {
  padding: 88px 40px;
  background: var(--tint);
}
.dash-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 40px rgba(28, 46, 61, 0.1);
}
.dash-bar {
  height: 34px;
  background: #f6fafd;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.dash-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #cfe2f0;
  display: block;
}
.dash-frame img { width: 100%; display: block; }

.dash-notes {
  max-width: 1000px;
  margin: 32px auto 0;
  list-style: none;
}
.dash-notes li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.dash-notes li:last-child { border-bottom: none; }
.dash-notes li::before {
  content: '';
  position: absolute;
  left: 2px; top: 24px;
  width: 10px; height: 5px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}
.dash-notes strong { color: var(--navy); font-weight: 700; }

/* ===== 活用例（定義リスト） ===== */
.cases-section { padding: 88px 40px; }
.cases-list {
  max-width: 860px;
  margin: 0 auto;
}
.cases-row {
  display: flex;
  gap: 32px;
  padding: 24px 8px;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.cases-row:last-child { border-bottom: 1px solid var(--border); }
.cases-row dt {
  flex: 0 0 280px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}
.cases-row dd {
  flex: 1;
  font-size: 16px;
  color: var(--text);
}

/* ===== 料金 ===== */
.price-section {
  padding: 88px 40px;
  background: var(--tint);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 26px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--blue);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 14px;
  border-radius: 3px;
  letter-spacing: 1px;
}
.price-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.price-main {
  font-size: 20px;
  color: var(--blue-dark);
  font-weight: 900;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.price-desc { font-size: 15px; color: var(--text); }
.price-note {
  max-width: 940px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ===== 導入フロー ===== */
.flow-section { padding: 88px 40px; }
.flow-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  list-style: none;
  counter-reset: flow;
}
.flow-item {
  flex: 1;
  counter-increment: flow;
  padding: 0 24px;
  border-left: 1px solid var(--border);
}
.flow-item:first-child { border-left: none; padding-left: 8px; }
.flow-item::before {
  content: counter(flow, decimal-leading-zero);
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.flow-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.5;
}
.flow-desc { font-size: 15px; color: var(--text); }

/* ===== 共同企画クレジット ===== */
.credit-section {
  padding: 40px;
  background: white;
  border-top: 1px solid var(--border);
  text-align: center;
}
.credit-label { font-size: 14px; color: var(--muted); letter-spacing: 2px; margin-bottom: 16px; }
.credit-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.credit-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700; color: var(--navy);
}
.credit-logo-img { height: 36px; width: auto; }
.credit-divider { font-size: 24px; color: var(--border); }
.credit-eight-dream { color: #d4668c; }

/* ===== CTA ===== */
.cta-section {
  padding: 88px 40px;
  background: var(--tint);
  border-top: 1px solid var(--border);
}
.cta-section .section-lead { text-align: center; }

.form-status {
  display: none;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.form-status.success {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--blue-dark);
}
.form-status.error {
  display: block;
  background: var(--white);
  border: 1.5px solid rgba(220, 38, 38, 0.4);
  color: #dc2626;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
}
.form-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.form-input {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 16px;
  color: var(--text);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: #a9b8c4; }
.form-input:focus { border-color: var(--blue); }
.btn-form-submit {
  background: var(--blue);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 19px;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  width: 100%;
}
.btn-form-submit:hover { background: var(--blue-dark); }

/* ===== フッター ===== */
footer {
  background: var(--navy);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo-text {
  font-size: 19px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ===== レスポンシブ ===== */

@media (max-width: 1180px) {
  .br-hero { display: inline; }
}

/* 900px以下: heroを縦積みに */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 32px 32px 56px;
    gap: 44px;
  }
  .hero-left { max-width: 560px; }
  .hero-right { width: 100%; }
  .flow-steps { flex-wrap: wrap; gap: 28px 0; }
  .flow-item { flex: 1 1 45%; }
  .flow-item:nth-child(3) { border-left: none; padding-left: 8px; }
}

/* 768px以下: スマートフォン全般 */
@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .logo-img { height: 34px; }
  .nav-cta { font-size: 14px; padding: 8px 14px; }

  .hero-inner { padding: 24px 20px 48px; }
  .hero-h1 { font-size: 32px; }
  .hero-eyebrow { font-size: 15px; }
  .hero-sub { font-size: 16px; }
  .hero-list li { font-size: 16px; }
  .btn-primary { font-size: 17px; padding: 14px 26px; width: 100%; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; gap: 10px; text-align: center; }
  .phone-front { width: 200px; }
  .phone-back { width: 168px; top: 36px; }

  .trial-section,
  .strength-section,
  .dashboard-section,
  .cases-section,
  .price-section,
  .flow-section,
  .cta-section {
    padding: 60px 20px;
  }
  .section-head { margin-bottom: 36px; }
  .section-h2 { font-size: 25px; }
  .br-sp { display: inline; }
  .section-lead { font-size: 16px; }

  /* ミニ診断 */
  .quiz-inner { padding: 28px 20px 32px; }
  .quiz-q { font-size: 19px; min-height: 0; }
  .quiz-btn { font-size: 17px; }
  .quiz-result-type { font-size: 21px; }

  /* 強み */
  .strength-item { gap: 18px; padding: 26px 0; }
  .strength-num { font-size: 28px; width: 46px; }
  .strength-title { font-size: 19px; }

  /* 活用例 */
  .cases-row { flex-direction: column; gap: 4px; padding: 20px 0; }
  .cases-row dt { flex: none; font-size: 17px; }

  /* 料金 */
  .price-grid { grid-template-columns: 1fr; gap: 20px; }

  /* フロー: 番号を左、タイトル＋説明を右の2カラムに */
  .flow-steps { flex-direction: column; gap: 0; }
  .flow-item,
  .flow-item:first-child,
  .flow-item:nth-child(3) {
    border-left: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
  }
  .flow-item:last-child { border-bottom: none; }
  .flow-item::before { margin-bottom: 0; font-size: 26px; grid-row: 1 / span 2; padding-top: 3px; }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 27px; }
  .section-h2 { font-size: 23px; }
}

/* =====================================================================
   紹介パートナー制度ページ（/partner/）
   ===================================================================== */

/* ヒーロー */
.p-hero {
  background: var(--tint);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px 72px;
}
.p-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.p-hero-eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 2px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.p-hero-h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 24px;
}
.p-yen { color: var(--blue-dark); font-size: 1.18em; }
.p-hero-lead {
  font-size: 17px;
  color: var(--text);
  text-align: left;
  margin-bottom: 24px;
}
.p-hero-lead strong { color: var(--navy); font-weight: 700; }
.p-hero-punch {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 8px;
  padding: 16px 28px;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 32px;
}
.p-hero-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* 報酬早見表 */
.reward-section { padding: 88px 40px; }
.reward-table {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}
.reward-table th,
.reward-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 17px;
}
.reward-table thead th {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  padding-top: 0;
}
.reward-table tbody td:first-child { font-weight: 700; color: var(--navy); width: 45%; }
.reward-amount { font-size: 24px; font-weight: 900; color: var(--blue-dark); margin-right: 2px; }
.reward-hl td { background: var(--tint); }
.reward-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 3px;
  margin-left: 12px;
  vertical-align: 3px;
}
.reward-note {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 14px;
  color: var(--muted);
}

/* 3ステップ補足 */
.flow-note {
  max-width: 1000px;
  margin: 28px auto 0;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
}

/* こんな方に */
.fit-section { padding: 88px 40px; background: var(--tint); }
.fit-list { max-width: 860px; margin: 0 auto; list-style: none; }
.fit-list li {
  position: relative;
  padding: 20px 0 20px 28px;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 32px;
  width: 11px; height: 5px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}
.fit-list strong { display: block; color: var(--navy); font-weight: 700; }

/* パートナーグループ */
.group-section { padding: 88px 40px; }
.group-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  padding: 34px 36px;
}
.group-points { list-style: none; }
.group-points li {
  position: relative;
  padding: 16px 0 16px 26px;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.group-points li:first-child { padding-top: 0; }
.group-points li:last-child { border-bottom: none; padding-bottom: 0; }
.group-points li::before {
  content: '';
  position: absolute;
  left: 2px; top: 28px;
  width: 10px; height: 5px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}
.group-points li:first-child::before { top: 12px; }
.group-points strong { display: block; color: var(--navy); font-weight: 700; }
.group-note { margin-top: 22px; font-size: 14px; color: var(--muted); }

/* よくある質問 */
.faq-section { padding: 88px 40px; background: var(--tint); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-row { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-row:last-child { border-bottom: none; }
.faq-row dt {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 8px;
}
.faq-row dt::before {
  content: 'Q';
  position: absolute;
  left: 0; top: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
}
.faq-row dd { padding-left: 30px; font-size: 16px; color: var(--text); }
.faq-row dd strong { color: var(--navy); font-weight: 700; }

/* 登録フォーム */
.entry-section { padding: 88px 40px; }
.form-req {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: 1px;
  letter-spacing: 1px;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.form-textarea { resize: vertical; line-height: 1.7; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.form-check input { margin-top: 6px; width: 17px; height: 17px; accent-color: var(--blue); flex-shrink: 0; }
.form-check a { color: var(--blue-dark); }

/* 注意事項 */
.terms-section {
  padding: 64px 40px 72px;
  background: var(--tint);
  border-top: 1px solid var(--border);
}
.terms-h2 {
  max-width: 860px;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.terms-list { max-width: 860px; margin: 0 auto; padding-left: 20px; }
.terms-list li { font-size: 14px; color: var(--muted); margin-bottom: 10px; line-height: 1.9; }

/* パートナーページ レスポンシブ */
@media (max-width: 768px) {
  .p-hero { padding: 40px 20px 48px; }
  .p-hero-h1 { font-size: 30px; }
  .p-hero-eyebrow { font-size: 13px; letter-spacing: 1px; }
  .p-hero-lead { font-size: 16px; }
  .p-hero-punch { font-size: 17px; padding: 14px 20px; }
  .p-hero-cta { width: 100%; }

  .reward-section,
  .fit-section,
  .group-section,
  .faq-section,
  .entry-section {
    padding: 60px 20px;
  }
  .terms-section { padding: 44px 20px 52px; }

  .reward-table th,
  .reward-table td { padding: 14px 8px; font-size: 15px; }
  .reward-amount { font-size: 20px; }
  .reward-tag { display: block; margin: 6px 0 0; }

  .group-box { padding: 26px 20px; }
  .faq-row dt { font-size: 17px; }
}

@media (max-width: 480px) {
  .p-hero-h1 { font-size: 26px; }
}
