/* ================================================
   FUKUROW — Landing Page Styles (Light)
   Base: #bc9c6a (gold) / #111e33 (navy) + white & dark gray
   ================================================ */

:root {
  --navy: #111e33;
  --navy-soft: #1b2c4a;
  --gold: #bc9c6a;
  --gold-dark: #a8854f;
  --gold-tint: #f6f1e8;

  --action: #ffce34;       /* 重要アクション(CTA)専用 */
  --action-dark: #f0bb12;

  --white: #ffffff;
  --paper: #fafafa;        /* 交互セクションの薄グレー */
  --paper-warm: #f8f6f1;   /* ゴールド寄りのオフホワイト */

  --ink: #2b2f36;          /* 本文の濃いグレー */
  --ink-dim: #5f6671;      /* 補助テキスト */
  --line: #e7e8ec;

  --radius: 16px;
  --maxw: 1180px;
  --font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
          system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Lenis smooth scroll (PCのみ有効化) — Lenis稼働時はネイティブ挙動に切替 */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.accent { color: var(--gold-dark); }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo-img { height: 17px; width: auto; display: block; }
@media (max-width: 480px) { .logo-img { height: 14px; } }
.nav-links { display: flex; align-items: center; gap: 1.6rem; font-size: .92rem; color: var(--ink-dim); }
.nav-links a:hover { color: var(--navy); }
.nav .cta { color: var(--navy); background: var(--action); padding: .55rem 1.1rem; border-radius: 999px; font-weight: 700; font-size: .9rem; white-space: nowrap; }
.nav .cta:hover { background: var(--action-dark); color: var(--navy); }
header .wrap { max-width: none; padding-left: 1.4rem; padding-right: 1.4rem; }
.nav .nav-login { color: var(--navy); border: 1px solid var(--line); padding: .5rem 1.05rem; border-radius: 999px; font-weight: 700; font-size: .9rem; white-space: nowrap; }
.nav .nav-login:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
@media (max-width: 720px) {
  .nav-links a:not(.cta):not(.nav-login) { display: none; }
  .nav-links { gap: .5rem; }
  .nav .cta, .nav .nav-login { padding: .45rem .8rem; font-size: .82rem; }
  header .wrap { padding-left: 1rem; padding-right: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: 60px 0 clamp(3rem, 8vh, 6rem);
  background: var(--paper-warm);
}
/* 背景のぼかし色を固定レイヤー化（ロゴと同じく動かない／後続セクションが上に重なる） */
.hero::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(680px 380px at 14% 14%, rgba(255,206,52,.16), transparent 60%),
    radial-gradient(760px 420px at 88% 6%, rgba(255,224,150,.18), transparent 58%),
    radial-gradient(620px 520px at 72% 92%, rgba(255,206,52,.10), transparent 60%);
}
/* 後続セクションを上の層に置き、固定背景をヒーロー領域だけに留める */
body > section:not(.hero), body > footer.site { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--gold-dark); font-weight: 700; letter-spacing: .05em;
  border: 1px solid var(--gold); background: var(--white);
  border-radius: 999px; padding: .35rem .9rem; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.3; font-weight: 800; letter-spacing: .01em; color: var(--navy);
  margin-bottom: 1.2rem;
}
.hero h1 .br { display: block; }
/* PC=1行 / スマホ=改行（CTA h2 などで使用） */
.hbr { display: inline; }
@media (max-width: 768px) { .hbr { display: block; } }
.hero p.lead { font-size: clamp(1rem, 2vw, 1.18rem); color: var(--ink-dim); max-width: 36em; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* Big hero logo */
.hero-logo {
  position: sticky; top: 168px; z-index: 0;
  width: min(820px, 92vw); height: auto; display: block;
  margin: 0 auto 9rem; filter: drop-shadow(0 26px 48px rgba(17,30,51,.18));
}
@media (max-width: 600px) {
  .hero-logo { width: 74vw; margin: 0 auto 5rem; }
}

/* 下スクロールを促すアニメ（ロゴ下〜パネル上） */
.scroll-cue { position: fixed; left: 50%; top: 680px; transform: translateX(-50%); z-index: 0;
  display: flex; justify-content: center; align-items: center; width: 40px; height: 28px;
  transition: opacity .45s ease, transform .45s ease; }
.scroll-cue.cue-hidden { opacity: 0; transform: translateX(-50%) translateY(12px); pointer-events: none; }
.scroll-cue span { width: 14px; height: 14px; border-right: 2.5px solid var(--gold-dark); border-bottom: 2.5px solid var(--gold-dark);
  transform: rotate(45deg); animation: scrollCue 1.2s cubic-bezier(.6,.1,.3,1) infinite; }
.scroll-cue:hover span { border-color: var(--navy); }
@keyframes scrollCue {
  0% { opacity: 0; transform: rotate(45deg) translate(-8px, -8px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: rotate(45deg) translate(8px, 8px); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; opacity: .7; } }

/* Glass panel under the hero logo */
.hero-panel {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  padding: 2.8rem 2.6rem 2.6rem;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  box-shadow: 0 34px 80px -34px rgba(17, 30, 51, .32), inset 0 1px 0 rgba(255, 255, 255, .7);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-panel { background: rgba(255, 255, 255, 0.86); }
}
@media (max-width: 560px) { .hero-panel { padding: 2rem 1.4rem; border-radius: 20px; } }

/* Centered hero variant */
.hero-center { text-align: center; }
.hero-center .eyebrow { margin-left: auto; margin-right: auto; }
.hero-center p.lead { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { justify-content: center; }
.hero-center .snippet { margin-left: auto; margin-right: auto; text-align: center; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border: none; border-radius: 999px; font-weight: 700; font-size: .98rem; font-family: inherit; cursor: pointer; transition: .15s; }
.btn-primary { background: var(--action); color: var(--navy); }
.btn-primary:hover { background: var(--action-dark); color: var(--navy); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* 1-line tag snippet (dark on light page) */
.snippet {
  margin-top: 2.6rem; background: var(--navy); border-radius: var(--radius);
  padding: 1.15rem 1.3rem; max-width: 100%; position: relative; overflow: visible;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(.72rem, 2.1vw, .86rem); color: #c9d2e3;
  box-shadow: 0 18px 40px -22px rgba(17,30,51,.55);
}
.snippet .label { position: absolute; top: -.7rem; left: 1rem; background: var(--gold); color: var(--navy); font-family: var(--font); font-size: .7rem; font-weight: 700; padding: .12rem .65rem; border-radius: 999px; }
.snippet code { display: block; white-space: pre-wrap; word-break: break-word; overflow-x: visible; }
.snippet .tok { color: var(--gold); }

/* ---------- Section base ---------- */
section { padding: 4.8rem 0; }
.bg-paper { background: var(--paper); }
.bg-warm { background: var(--paper-warm); }
.section-head { text-align: center; max-width: 40em; margin: 0 auto 2.8rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: .8rem; letter-spacing: .01em; line-height: 1.4; }
.section-head h2::after { content: ""; display: block; width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.1rem auto 0; }
.section-head p { color: var(--ink-dim); }
.kicker { color: var(--gold-dark); font-weight: 800; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .7rem; }

/* ---------- Stats band ---------- */
.stats-band { padding: 2.6rem 0; background: var(--navy);
  background-image: radial-gradient(800px 300px at 50% -40%, rgba(188,156,106,.16), transparent 60%); }
.stats { display: flex; flex-wrap: wrap; justify-content: space-around; align-items: flex-end; gap: 1.5rem; text-align: center; }
.stat b { display: flex; align-items: center; justify-content: center; gap: .04em; font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; color: #fff; line-height: 1; }
.stat b em { font-style: normal; color: var(--action); font-size: 1.5em; line-height: 1; }
.stat b em.sm { font-size: 1.3em; }
.stat span { font-size: .85rem; color: #aeb7c7; }

/* ---------- Dark section (明暗リズム) ---------- */
.section-dark { background: var(--navy); color: #c4cde0;
  background-image: radial-gradient(900px 360px at 85% -10%, rgba(188,156,106,.18), transparent 60%); }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: #aeb7c7; }
.section-dark .kicker { color: var(--gold); }
.section-dark .step { background: var(--navy-soft); border-color: #2c3a55; }
.section-dark .step h3 { color: #fff; }
.section-dark .step p { color: #aeb7c7; }

/* ---------- Audience chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.chip { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: .55rem 1.1rem; font-size: .9rem; color: var(--ink-dim); transition: .15s; }
.chip:hover { border-color: var(--gold); color: var(--navy); }

/* Pains → solved */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; text-align: left; }
@media (max-width: 880px) { .pains { grid-template-columns: repeat(auto-fit, minmax(266px, 1fr)); } }
.pain { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem 1.6rem;
  box-shadow: 0 18px 48px -32px rgba(17,30,51,.45); display: flex; flex-direction: column; transition: .18s; }
.pain:hover { transform: translateY(-3px); box-shadow: 0 26px 56px -30px rgba(17,30,51,.5); border-color: #e2d8c2; }
.pain-q { font-weight: 800; color: var(--navy); font-size: 1.12rem; line-height: 1.62; margin-bottom: 1.05rem;
  padding-left: 1.9rem; position: relative; }
.pain-q::before { content: "\201C"; position: absolute; left: -.1rem; top: -.7rem;
  font-family: Georgia, "Times New Roman", serif; font-size: 2.7rem; line-height: 1; color: var(--gold); }
.pain-a { font-size: .92rem; color: var(--ink); line-height: 1.85; margin-top: auto;
  background: #fbf7ee; border: 1px solid #f0e6d2; border-radius: 12px; padding: .95rem 1.05rem .95rem 2.6rem; position: relative; }
.pain-a::before { content: "\2713"; position: absolute; left: .9rem; top: 1rem;
  width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--action); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: .74rem; font-weight: 800; }

/* ---------- Feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 760px) { .grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }
.card { background: var(--navy); border: 1px solid #233149; border-radius: var(--radius); padding: 2rem 1.7rem; transition: .2s; text-align: center; }
.card:hover { border-color: var(--action); transform: translateY(-3px); box-shadow: 0 18px 42px -22px rgba(17,30,51,.55); }
.card .ico { display: block; width: 60px; height: 60px; margin: 0 auto 1.2rem; color: var(--action); }
.card .ico svg { width: 100%; height: 100%; display: block; }
.card:hover .ico { color: var(--action-dark); }
.card h3 { font-size: 1.05rem; color: #fff; margin-bottom: .5rem; }
.card p { color: #aeb7c7; font-size: .92rem; }

/* ---------- Learn steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.3rem 1.1rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -.9rem; left: 1.3rem; width: 1.9rem; height: 1.9rem; background: var(--action); color: var(--navy); font-weight: 800; border-radius: 50%; display: grid; place-items: center; font-size: .9rem; }
.step h3 { font-size: 1rem; color: var(--navy); margin: .4rem 0 .4rem; }
.step p { color: var(--ink-dim); font-size: .9rem; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; align-items: stretch; }
@media (max-width: 860px) { .plans { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.5rem; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 24px 55px -26px rgba(188,156,106,.6); }
@media (min-width: 920px) { .plan.featured { transform: translateY(-12px); } }
.plan .badge { position: absolute; top: -.72rem; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--action); color: var(--navy); font-size: .72rem; font-weight: 800; padding: .22rem .8rem; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(255,206,52,.7); }
.plan h3 { font-size: 1.1rem; letter-spacing: .05em; color: var(--navy); margin-bottom: .4rem; }
.plan .price { font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.plan .price small { font-size: .85rem; font-weight: 500; color: var(--ink-dim); }
.plan .usd { color: var(--ink-dim); font-size: .85rem; margin-bottom: .3rem; }
.plan .annual { color: var(--gold-dark); font-size: .78rem; font-weight: 700; margin-bottom: 1.1rem; }
.plan ul { list-style: none; margin: 0 0 1.4rem; display: grid; gap: .55rem; }
.plan li { font-size: .9rem; color: var(--ink-dim); padding-left: 1.4rem; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 800; }
.plan .btn { margin-top: auto; justify-content: center; white-space: nowrap; font-size: .92rem; padding-left: 1rem; padding-right: 1rem; }

/* プラン比較リンク */
.plans-cta { text-align: center; margin-top: 2.2rem; }

/* ---------- CTA band (navy) ---------- */
.cta-band { text-align: center; background: var(--navy); color: #fff;
  background-image: radial-gradient(700px 280px at 50% 0%, rgba(188,156,106,.28), transparent 62%); }
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-band h2 .accent { color: var(--gold); }
.cta-band p { color: #c9d2e3; margin-bottom: 1.8rem; }

/* ---------- Footer (navy) ---------- */
footer.site { background: var(--navy); color: #aeb7c7; padding: 3.2rem 0 2.5rem; font-size: .9rem; }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.foot-brand { max-width: 24em; }
.foot-logo-img { height: 26.6px; width: auto; display: block; margin-bottom: .9rem; filter: brightness(0) invert(1); opacity: .95; }
.foot-meaning { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .9rem; font-size: .8rem; }
.foot-meaning span { border: 1px solid #2c3a55; border-radius: 999px; padding: .2rem .75rem; }
footer.site a:hover { color: #fff; }
.foot-col-title { color: #fff; font-weight: 700; margin-bottom: .6rem; }
.foot-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid #233149; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }

/* ================================================
   Plan comparison table (星取表)
   ================================================ */
.cmp-page { padding-top: 2.5rem; }
.cmp-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-dim); font-size: .9rem; margin-bottom: 1.4rem; }
.cmp-back:hover { color: var(--navy); }

.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 920px; font-size: .9rem; background: var(--white); }
table.cmp th, table.cmp td { padding: .85rem 1rem; text-align: center; border-bottom: 1px solid var(--line); }
table.cmp td .btn { white-space: nowrap; font-size: .85rem; padding: .65rem .9rem; min-width: 120px; justify-content: center; }

/* 機能名（左列）固定 */
table.cmp thead th:first-child,
table.cmp tbody th { text-align: left; position: sticky; left: 0; background: var(--white); z-index: 2; font-weight: 600; color: var(--ink); min-width: 150px; }
table.cmp thead th:first-child { z-index: 4; background: var(--navy); color: #fff; }

/* ヘッダー（プラン名）固定 */
table.cmp thead th { position: sticky; top: 0; background: var(--navy); color: #fff; z-index: 3; font-weight: 800; letter-spacing: .04em; }
table.cmp thead th .ph-price { display: block; font-size: .72rem; font-weight: 500; color: #aeb7c7; margin-top: .15rem; }

/* カテゴリ見出し行 */
table.cmp tr.cat th { position: sticky; left: 0; background: #e3e8f1; color: var(--navy); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; text-align: left; }
table.cmp tr.cat td { background: #e3e8f1; }

table.cmp tbody tr:not(.cat):hover td, table.cmp tbody tr:not(.cat):hover th { background: #fcfbf8; }
.yes { color: var(--gold-dark); font-weight: 800; font-size: 1.05rem; }
.no { color: #c4c8d0; }
.val { color: var(--navy); font-weight: 700; }
.cmp-note { color: var(--ink-dim); font-size: .82rem; margin-top: 1.2rem; line-height: 1.8; }
.cmp-note p { margin-bottom: .5rem; }
.cmp-note strong { color: var(--navy); }
.soon { display: inline-block; font-size: .7rem; font-weight: 700; color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 999px; padding: .05rem .5rem; }

/* 機能名のトグル + 説明アコーディオン */
.desc-toggle { all: unset; box-sizing: border-box; cursor: pointer; display: flex; align-items: center; gap: .55rem; width: 100%; padding: .5rem 0; font: inherit; color: var(--ink); }
.desc-toggle:hover { color: var(--navy); }
.desc-toggle::before { content: ""; flex: none; width: .42rem; height: .42rem; border-right: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark); transform: rotate(45deg); transition: transform .2s; position: relative; top: -2px; }
.desc-toggle[aria-expanded="true"]::before { transform: rotate(-135deg); top: 1px; }
tr.desc > td { padding: 0; border-bottom: 0; background: var(--paper-warm); text-align: left; }
tr.desc.open > td { border-bottom: 1px solid var(--line); }
.desc-inner { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
tr.desc.open .desc-inner { grid-template-rows: 1fr; }
.desc-clip { overflow: hidden; }
.desc-body { margin: 0; padding: .7rem 1.1rem .85rem; color: var(--ink-dim); font-size: .85rem; line-height: 1.7; }
.desc-body::before { content: "▸ "; color: var(--gold-dark); }

/* ================================================
   Plan diagnosis (LP)
   ================================================ */
.diag { max-width: 672px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 18px 44px -28px rgba(17,30,51,.3); }
.diag-url { margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px dashed var(--line); }
.diag-url > label { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.diag-url > label small { font-weight: 500; color: var(--ink-dim); font-size: .78rem; }
.diag-url-row { display: flex; gap: .6rem; }
.diag-url-row input { flex: 1; min-width: 0; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; font-size: .95rem; font-family: inherit; color: var(--ink); }
.diag-url-row input:focus { outline: none; border-color: var(--gold); }
.diag-url-row .btn { white-space: nowrap; padding: .7rem 1rem; font-size: .9rem; }
.diag-url-row .btn:disabled { opacity: .55; cursor: default; }
.diag-scan { margin-bottom: 1.3rem; padding: 1rem 1.1rem; border-radius: 12px; font-size: .9rem; }
.diag-scan.loading { background: #f4f6f9; color: var(--ink-dim); }
.diag-scan.err { background: #fdf3f2; color: #9a3b32; border: 1px solid #f1c9c4; }
.diag-scan.ok { background: #f3f7f1; border: 1px solid #d6e6cf; }
.diag-scan-title { font-size: .78rem; font-weight: 700; color: var(--gold-dark); letter-spacing: .06em; margin-bottom: .5rem; }
.diag-scan-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.diag-scan-list li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink); }
.diag-scan-list li b { color: var(--ink-dim); font-weight: 600; }
.diag-scan-note { margin: .7rem 0 0; font-size: .82rem; color: var(--ink-dim); }
.diag-q { margin-bottom: 1.1rem; }
.diag-q label { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.diag-q select { width: 100%; padding: .7rem 2rem .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; font-size: .95rem; font-family: inherit; color: var(--ink); cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5l4 4 4-4' fill='none' stroke='%235f6671' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center; background-size: 11px; }
.diag-q select::-ms-expand { display: none; }
.diag-q select:focus { outline: none; border-color: var(--gold); }
#diag-go { width: 100%; justify-content: center; margin-top: .4rem; }
.diag-result { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); text-align: center; overflow: hidden; }
.diag-result:not([hidden]) { animation: diagOpen .45s cubic-bezier(.22,.9,.3,1) both; }
@keyframes diagOpen { from { opacity: 0; max-height: 0; padding-top: 0; margin-top: 0; } to { opacity: 1; max-height: 720px; } }
.diag-rec-label { font-size: .8rem; font-weight: 700; color: var(--gold-dark); letter-spacing: .08em; }
.diag-rec-plan { font-size: 2rem; font-weight: 800; color: var(--navy); margin: .3rem 0; }
.diag-rec-plan small { font-size: 1rem; font-weight: 600; color: var(--ink-dim); }
.diag-rec-why { color: var(--ink-dim); font-size: .92rem; margin-bottom: 1.2rem; }
.diag-rec-basis { display: inline-block; margin-top: .5rem; font-size: .82rem; color: var(--gold-dark); }
.diag-result .btn { justify-content: center; }
.diag-rec-compare { display: block; margin-top: .8rem; font-size: .88rem; color: var(--gold-dark); }
