/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:   #f59e0b;
  --amber-d: #d97706;
  --amber-l: #fef3c7;
  --dark:    #0f172a;
  --dark2:   #1e293b;
  --mid:     #475569;
  --soft:    #94a3b8;
  --line:    #e2e8f0;
  --bg:      #f8fafc;
  --white:   #ffffff;
  --green:   #10b981;
  --radius:  14px;
  --shadow:  0 2px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

/* ─────────────────────────────────────────
   ナビ
───────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 900; color: #fff;
  letter-spacing: 0.02em; text-decoration: none;
  white-space: nowrap;
}
.nav-logo-icon { font-size: 22px; flex-shrink: 0; }
.nav-cta {
  background: var(--amber); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 12px 28px; border-radius: 99px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.45);
}
.nav-cta:hover { background: var(--amber-d); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   セクション共通
───────────────────────────────────────── */
section { padding: 100px 24px; }
.inner      { max-width: 760px;  margin: 0 auto; }
.inner-wide { max-width: 1040px; margin: 0 auto; }

.sec-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--amber);
  padding: 5px 16px; border-radius: 99px;
  margin-bottom: 22px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.38);
}
.sec-label-dark {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
}

h2 {
  font-size: clamp(28px, 4.8vw, 48px);
  font-weight: 900; line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  word-break: keep-all;
  text-align: left;   /* デフォルト左寄せ */
  text-wrap: balance;
}
/* Final CTA のみ中央揃え */
#final-cta h2 { text-align: center; }

.sec-sub {
  font-size: 18px; color: var(--mid);
  margin-bottom: 56px; line-height: 2;
  word-break: keep-all;
}

/* ─────────────────────────────────────────
   ヒーロー（フォト背景 + グラデオーバーレイ）
───────────────────────────────────────── */
#hero {
  padding: 140px 24px 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(245,158,11,0.24) 0%, transparent 56%),
    radial-gradient(ellipse 55% 65% at 88% 108%, rgba(124,45,18,0.52) 0%, transparent 54%),
    linear-gradient(rgba(15,23,42,0.91), rgba(18,28,44,0.93)),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  text-align: center;
}

.hero-service-name {
  font-size: 26px; font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  display: inline-block;
  padding: 10px 30px;
  background: rgba(245,158,11,0.22);
  border: 1.5px solid rgba(245,158,11,0.58);
  border-radius: 99px;
}

/* ─── h1: センタリング確実化 ─── */
h1 {
  /* 最大54px — "ブランディングとマーケティング、"(16文字)が800px枠内に収まる上限 */
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 900; line-height: 1.25;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  word-break: keep-all;
  text-align: center;       /* 明示的センタリング */
  text-wrap: balance;       /* 行ごとの長さをバランス */
}
h1 em {
  font-style: normal;
  background: linear-gradient(92deg, #fbbf24 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.3vw, 19px);
  color: rgba(255,255,255,0.76); line-height: 2.05;
  max-width: 560px; margin: 0 auto 60px;
  word-break: keep-all;
  text-align: center;
}
.hero-cta-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: #fff;
  font-size: 20px; font-weight: 900;
  padding: 24px 58px; border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 12px 44px rgba(245,158,11,0.58);
  transition: all 0.25s; letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--amber-d);
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(245,158,11,0.62);
}
.btn-primary .arrow { font-size: 24px; transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(6px); }

.hero-note {
  font-size: 14px; color: rgba(255,255,255,0.48);
  display: flex; align-items: center; gap: 26px;
  flex-wrap: wrap; justify-content: center;
}
.hero-note span::before { content: '✓ '; color: var(--green); }

/* ─────────────────────────────────────────
   なぜ健診なのか
───────────────────────────────────────── */
#why-kenshin {
  padding: 100px 24px;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(160deg, #1a2744 0%, #0f172a 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}
.why-inner { max-width: 760px; margin: 0 auto; }
#why-kenshin h2 {
  text-align: left;
  font-size: clamp(28px, 4.5vw, 46px);
  color: #fff;
  word-break: keep-all; text-wrap: balance;
}
.why-body {
  font-size: 18px; color: rgba(255,255,255,0.76);
  line-height: 2.05; margin-bottom: 48px;
  word-break: keep-all;
}
.why-body strong { color: #fbbf24; font-weight: 700; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 30px 26px;
  transition: background 0.2s, border-color 0.2s;
}
.why-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(245,158,11,0.38);
}
.why-card-icon  { font-size: 34px; margin-bottom: 16px; }
.why-card-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card-text  { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.85; }

/* ─────────────────────────────────────────
   こんな方へ
───────────────────────────────────────── */
#for-who {
  background:
    radial-gradient(circle, #dde4ee 1px, transparent 1px),
    linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  background-size: 28px 28px, 100% 100%;
}
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
  margin-bottom: 52px;
}
.symptom-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.symptom-item:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.symptom-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.symptom-text { font-size: 16px; color: var(--mid); line-height: 1.8; font-weight: 500; word-break: keep-all; }

.bridge-box {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: var(--radius);
  padding: 40px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bridge-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
}
.bridge-box p {
  font-size: 20px; color: rgba(255,255,255,0.92);
  font-weight: 600; line-height: 1.9;
  position: relative;
  word-break: keep-all;
}
.bridge-box strong { color: var(--amber); }

/* ─────────────────────────────────────────
   診断でわかること
───────────────────────────────────────── */
#what-you-get { background: var(--white); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.value-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.1);
}
.value-card-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.value-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--amber-l), #fff7ed);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; flex-shrink: 0;
}
.value-title { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.45; }
.value-what  { font-size: 15px; color: var(--soft); margin-bottom: 14px; line-height: 1.75; }
.value-why {
  font-size: 14px; color: var(--mid);
  background: var(--bg);
  border-radius: 8px; padding: 12px 16px;
  line-height: 1.85;
  border-left: 3px solid var(--amber);
}

/* ─────────────────────────────────────────
   診断の流れ
───────────────────────────────────────── */
#flow {
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  background-size: 44px 44px, 100% 100%;
}
#flow h2 { color: #fff; text-align: left; }
#flow .sec-sub { color: rgba(255,255,255,0.62); }

.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--amber), #fb923c);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: #fff;
  box-shadow: 0 10px 28px rgba(245,158,11,0.48);
}
.step-content { flex: 1; }
.step-title { font-size: 23px; font-weight: 700; margin-bottom: 14px; color: #fff; word-break: keep-all; }
.step-desc  { font-size: 17px; color: rgba(255,255,255,0.66); line-height: 1.95; margin-bottom: 18px; word-break: keep-all; }
.step-value {
  font-size: 14px; color: var(--amber);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 99px;
  padding: 7px 20px;
}

/* ─────────────────────────────────────────
   料金比較
───────────────────────────────────────── */
#pricing {
  background:
    radial-gradient(circle, #dde4ee 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  background-size: 28px 28px, 100% 100%;
}
.pricing-note {
  display: block;
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 12px; padding: 20px 26px;
  font-size: 17px; color: var(--mid);
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  line-height: 1.8;
}
.pricing-note strong { color: var(--dark); }
.pricing-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 44px rgba(0,0,0,0.13);
}
.pricing-table th {
  padding: 22px 28px;
  font-size: 17px; font-weight: 700;
  text-align: center;
}
.pricing-table thead tr { background: var(--dark); }
.pricing-table thead th:first-child { text-align: left; color: rgba(255,255,255,0.68); font-size: 14px; }
.pricing-table thead .th-free { background: #334155; color: #94a3b8; }
.pricing-table thead .th-full { background: var(--amber); color: #fff; }
.pricing-table tbody tr:nth-child(odd)  { background: var(--white); }
.pricing-table tbody tr:nth-child(even) { background: var(--bg); }
.pricing-table tbody tr:hover { background: var(--amber-l); }
.pricing-table td {
  padding: 20px 28px;
  font-size: 16px; color: var(--mid);
  border-top: 1px solid var(--line);
  text-align: center;
}
.pricing-table td:first-child { text-align: left; color: var(--dark); font-weight: 500; }
.check         { color: var(--green); font-size: 22px; font-weight: 900; }
.check-partial { color: var(--amber); font-size: 14px;  font-weight: 700; }
.cross         { color: #cbd5e1; font-size: 22px; }
.pricing-cta   { margin-top: 48px; text-align: center; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--amber); color: var(--amber-d);
  font-size: 18px; font-weight: 700;
  padding: 18px 52px; border-radius: 99px;
  text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--amber); color: #fff; transform: translateY(-2px); }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
#faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(245,158,11,0.4); }
.faq-item.open  { border-color: var(--amber); }
.faq-q {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 30px; cursor: pointer;
  user-select: none; transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--amber-l), #fff7ed);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: var(--amber-d);
}
.faq-q-text { flex: 1; font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.55; word-break: keep-all; }
.faq-arrow  { font-size: 13px; color: var(--soft); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 20px 30px 28px 86px;
  font-size: 16px; color: var(--mid); line-height: 2;
  border-top: 1px solid var(--line);
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--amber-d); text-decoration: underline; }

/* ─────────────────────────────────────────
   単なるAI診断ではない理由
───────────────────────────────────────── */
#about {
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(245,158,11,0.1) 0%, transparent 58%),
    linear-gradient(160deg, #1a2744 0%, #0f172a 100%);
}
#about h2 { color: #fff; text-align: left; }
.about-box {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 44px 48px;
  margin-bottom: 36px;
}
.about-name {
  font-size: 24px; font-weight: 900; color: var(--amber);
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.about-text {
  font-size: 17px; color: rgba(255,255,255,0.76); line-height: 2.1;
  word-break: keep-all;
}
.about-text strong { color: #fff; }
.about-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber); font-size: 16px; font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(245,158,11,0.45);
  border-radius: 10px; padding: 16px 28px;
  transition: all 0.2s;
}
.about-link:hover { background: rgba(245,158,11,0.12); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   Final CTA
───────────────────────────────────────── */
#final-cta {
  padding: 148px 24px;
  text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 50% 100%, rgba(245,158,11,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(124,45,18,0.44) 0%, transparent 58%),
    linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}
#final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; }
#final-cta h2 {
  font-size: clamp(28px, 5vw, 50px);
  margin-bottom: 22px; color: #fff;
  text-align: center !important; /* h2デフォルトleftを上書き */
}
#final-cta .sec-sub { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 56px; text-align: center; }
.final-note {
  margin-top: 32px;
  font-size: 15px; color: rgba(255,255,255,0.4);
  line-height: 2;
}

/* ─────────────────────────────────────────
   フッター
───────────────────────────────────────── */
footer {
  background: #080d17; color: #475569;
  text-align: center; padding: 48px 24px;
  font-size: 14px;
}
.footer-links {
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
footer a { color: #64748b; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--amber); }

/* ─────────────────────────────────────────
   フェードイン
───────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   サブページ共通（プライバシー・特商法）
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, #0f172a 0%, #1e293b 100%);
  padding: 88px 24px 68px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  color: #fff; margin-bottom: 14px;
  -webkit-text-fill-color: #fff;
  word-break: keep-all;
  text-wrap: balance;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); }
.page-content { max-width: 760px; margin: 0 auto; padding: 64px 24px 88px; }
.page-content h2 {
  font-size: 22px; font-weight: 700;
  text-align: left;
  margin: 52px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber-l);
  color: var(--dark);
  word-break: keep-all;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p  { font-size: 16px; color: var(--mid); line-height: 2; margin-bottom: 18px; }
.page-content ul { padding-left: 26px; margin-bottom: 18px; }
.page-content li { font-size: 16px; color: var(--mid); line-height: 1.95; margin-bottom: 8px; }
.page-content table {
  width: 100%; border-collapse: collapse; margin-bottom: 18px;
}
.page-content table th,
.page-content table td {
  padding: 16px 20px; font-size: 15px;
  border: 1px solid var(--line); text-align: left;
}
.page-content table th {
  background: var(--bg); font-weight: 700;
  color: var(--dark); width: 32%;
  vertical-align: top;
}
.page-content table td { color: var(--mid); }
.page-content a { color: var(--amber-d); }

/* ─────────────────────────────────────────
   横スクロール漏れ防止（グローバル）
───────────────────────────────────────── */
html, body { overflow-x: hidden; }

/* ─────────────────────────────────────────
   レスポンシブ
───────────────────────────────────────── */
@media (max-width: 640px) {

  /* ── レイアウト ── */
  section      { padding: 72px 20px; }
  #hero        { padding: 88px 20px 80px; }
  #why-kenshin { padding: 72px 20px; }
  #final-cta   { padding: 96px 20px; }

  /* ── ナビ ── */
  nav { padding: 0 16px; height: 62px; }
  .nav-logo {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100vw - 148px); /* CTAボタン分を確保 */
  }
  .nav-logo-icon { font-size: 17px; }
  .nav-cta { font-size: 12px; padding: 9px 14px; flex-shrink: 0; }

  /* ── word-break: keep-all を上書き（テキスト折り返し修正）── */
  h1, h2 {
    word-break: normal;
    overflow-wrap: break-word;
  }
  .hero-sub, .hero-service-name,
  .why-body, .why-card-title, .why-card-text,
  .bridge-box p,
  .symptom-text,
  .value-title, .value-what, .value-why,
  .step-title, .step-desc, .step-value,
  .faq-q-text, .faq-a,
  .about-name, .about-text,
  .pricing-note,
  .page-hero h1, .page-hero p,
  .page-content p, .page-content li,
  .page-content th, .page-content td {
    word-break: normal;
    overflow-wrap: break-word;
  }

  /* ── h1 / h2 フォントサイズ下限を縮小 ── */
  h1 { font-size: clamp(22px, 6vw,   54px); }
  h2 { font-size: clamp(22px, 5.5vw, 48px); }

  /* ── body フォントサイズ ── */
  body { font-size: 16px; }

  /* ── ヒーロー ── */
  .hero-service-name { font-size: 16px; padding: 7px 16px; white-space: normal; }
  .hero-sub    { font-size: 15px; margin-bottom: 44px; }
  .hero-note   { font-size: 13px; gap: 14px; }

  /* ── なぜ健診なのか ── */
  .why-cards   { grid-template-columns: 1fr; }
  .why-body    { font-size: 16px; }
  .why-card-text { font-size: 13px; }

  /* ── こんな方へ ── */
  .symptom-grid { grid-template-columns: 1fr; }
  .bridge-box p { font-size: 16px; }

  /* ── 診断でわかること ── */
  .value-grid  { grid-template-columns: 1fr; }
  .value-what  { font-size: 14px; }
  .value-why   { font-size: 13px; }

  /* ── 診断の流れ ── */
  .step        { gap: 20px; }
  .step-num    { width: 52px; height: 52px; font-size: 20px; }
  .step-title  { font-size: 18px; }
  .step-desc   { font-size: 15px; }

  /* ── sec-sub ── */
  .sec-sub { font-size: 15px; margin-bottom: 36px; }

  /* ── 料金表: 横スクロール ── */
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px 8px;
  }
  .pricing-table { min-width: 460px; }
  .pricing-note  { font-size: 15px; padding: 16px 20px; }
  .btn-secondary { font-size: 15px; padding: 15px 26px; }

  /* ── FAQ ── */
  .about-box   { padding: 28px 24px; }
  .faq-q       { padding: 20px 22px; gap: 12px; }
  .faq-a       { padding: 16px 22px 22px; font-size: 14px; }
  .faq-q-text  { font-size: 15px; }

  /* ── アバウト ── */
  .about-text  { font-size: 15px; }

  /* ── ボタン ── */
  .btn-primary { font-size: 16px; padding: 18px 28px; }

  /* ── ブリッジボックス ── */
  .bridge-box  { padding: 28px 24px; }

  /* ── サブページ（プライバシー・特商法）── */
  .page-content { padding: 40px 20px 64px; }
  .page-content h2 { font-size: 18px; margin: 36px 0 12px; }
  .page-content table { table-layout: fixed; }
  .page-content table th {
    width: 100px;
    font-size: 13px;
    padding: 12px 12px;
  }
  .page-content table td {
    font-size: 13px;
    padding: 12px 12px;
  }
}

/* ── 超小型画面（iPhone SE / 320px）追加調整 ── */
@media (max-width: 374px) {
  .nav-logo { font-size: 11px; }
  .nav-cta  { font-size: 11px; padding: 8px 11px; }
  h1 { font-size: 20px; }
  h2 { font-size: 20px; }
  .btn-primary  { font-size: 15px; padding: 16px 22px; }
  .btn-secondary { font-size: 14px; padding: 14px 20px; }
  .hero-service-name { font-size: 14px; }
}
