/* =========================================================
   AIスパルタン for 経営者 — マンツーマンAI道場 LP
   Design System : 紺主役 / 赤CTA / 黄差し色 / 白基調
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* color */
  --navy: #1a252f;        /* 指定色。面・見出しの主役 */
  --navy-deep: #111a22;   /* グラデの暗端・締め */
  --navy-soft: #2b3a49;   /* グラデの明端・ロゴ */
  --red: #e8352e;
  --red-deep: #c8261f;
  --yellow: #f5c518;
  --ink: #1c2333;
  --ink-soft: #56607a;
  --bg: #ffffff;
  /* 面はヒーローの世界観（アイボリー）を継承。冷たい青灰から暖色ニュートラルへ */
  --bg-tint: #f9f6f0;
  --bg-navy-veil: #eaedf0;
  /* hero (premium cream × gold) */
  --cream: #f6f1e7;
  --cream-hi: #fdfbf6;
  --gold-1: #9c6b23;
  --gold-2: #e6c66d;
  --gold-3: #c39a3c;
  --gold-line: linear-gradient(160deg, #e6c66d 0%, #b8862f 48%, #f0d894 62%, #9c6b23 100%);
  --gold-text: linear-gradient(96deg, #a7762a 0%, #dcbc66 40%, #b98a2e 60%, #8f621f 100%);
  --hero-red: #d51a1b;
  --hero-red-deep: #b3121a;
  --ink-black: #1a1a1a;
  --line: #e0dcd2;          /* ヘアライン（暖色寄りの淡罫） */
  --line-soft: #eeebe3;
  --gold-hair: #cbb079;     /* 罫線・枠に使えるゴールド */
  --gold-faint: rgba(163,122,45,.14);
  --white: #ffffff;

  /* type */
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-en: "Montserrat", "Noto Sans JP", sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --fs-hero: clamp(2.15rem, 1.45rem + 3vw, 3.3rem);     /* ~34→53 */
  --fs-h2: clamp(1.38rem, 0.98rem + 1.7vw, 2.5rem);     /* ~22→40 */
  --fs-h3: clamp(1.06rem, 0.88rem + 0.8vw, 1.45rem);
  --fs-lead: clamp(0.95rem, 0.86rem + 0.42vw, 1.16rem);
  --fs-body: clamp(0.9rem, 0.86rem + 0.22vw, 1rem);
  --fs-sm: clamp(0.76rem, 0.73rem + 0.18vw, 0.85rem);
  --fs-eyebrow: clamp(0.68rem, 0.65rem + 0.13vw, 0.78rem);

  /* rhythm — 縦リズムのトークン（見出し↔本文↔ブロックの間隔はすべてここで管理） */
  --sp-section: clamp(4rem, 2.6rem + 6vw, 7rem);
  --sp-eyebrow: clamp(.9rem, .75rem + .5vw, 1.25rem);   /* eyebrow → 見出し */
  --sp-lead: clamp(1.35rem, 1.05rem + 1.1vw, 2.1rem);   /* 見出し → リード文 */
  --sp-body: clamp(2.3rem, 1.8rem + 2vw, 3.5rem);       /* 見出し・リード → コンテンツ塊 */
  --sp-block: clamp(2rem, 1.6rem + 1.6vw, 3rem);        /* ブロック間（補足・締め文など） */
  --sp-cardhead: clamp(.9rem, .75rem + .5vw, 1.25rem);  /* カード内 見出し → 本文 */
  --sp-cta: clamp(1.8rem, 1.4rem + 1.5vw, 2.7rem);      /* リード → CTAボタン */
  --wrap: 1120px;
  --wrap-wide: 1280px;
  /* プレミアムは角丸を絞る。丸みが強いとカジュアルに寄る */
  --radius: 5px;
  --radius-sm: 3px;
  --radius-lg: 8px;

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* shadow — 拡散を広く、濃度を落として「浮かせず沈ませる」 */
  --sh-sm: 0 1px 1px rgba(26,37,47,.03), 0 3px 10px rgba(26,37,47,.04);
  --sh-md: 0 1px 2px rgba(26,37,47,.04), 0 10px 30px rgba(26,37,47,.06), 0 24px 60px rgba(26,37,47,.05);
  --sh-lg: 0 2px 4px rgba(26,37,47,.05), 0 18px 50px rgba(26,37,47,.09), 0 44px 90px rgba(26,37,47,.08);
  --sh-red: 0 4px 14px rgba(232,53,46,.22), 0 12px 30px rgba(232,53,46,.16);
  /* 微細ノイズ（紺面の質感） */
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* 和文を文節単位で折り返す（「言っ／た。」のような不自然な分断を防ぐ）。
     未対応ブラウザでは通常の折り返しにフォールバックする */
  word-break: auto-phrase;
  text-wrap: pretty;
  line-break: strict;
}
/* 見出しは行長を均して2行目が極端に短くなるのを防ぐ */
.sec-title, .empathy__title, .ctaband__title, .final__title,
.hero__eyebrow, .arg__title, .reason__title, .price__side h3,
.usp h3, .flow__step h3, .diag__q, .faq__q { text-wrap: balance; }
/* 明示的な <br> で改行位置を決めている見出しは balance を効かせない */
.empathy__title { text-wrap: normal; }
/* ボタン・ナビ・数値は文節折り返しの対象外 */
.btn, .eyebrow, .header__links, .footer__nav, .ba__head,
.pricecard__price, .stat__num, .diag__level { word-break: normal; text-wrap: nowrap; }
.btn { text-wrap: balance; }
/* flex の子は min-width:auto が既定のため、狭幅で縮まず溢れるのを防ぐ */
.usp > div, .pricecard__list li, .keiko__plus-list li, .voice, .stat { min-width: 0; }
/* 3〜4カラムの細いカード内では文節折り返しだと右余白が大きくガタつくため通常折り返しに戻す */
.reason__body, .keiko__desc, .flow__step p, .voice__quote { word-break: normal; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 3px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.wrap--wide { max-width: var(--wrap-wide); }
/* overflow:hidden は背面の透かし英字を版面内に収めるため */
.section { padding-block: var(--sp-section); position: relative; overflow: hidden; }
.section--tint { background: var(--bg-tint); }
/* 明るい面の切り替わりに極細のヘアラインを入れて「刷り」の精度を出す */
.section--tint { border-block: 1px solid var(--line-soft); }
.section--navy { background: var(--navy); color: #ccd3da; }
/* 紺・グラデ面は微細ノイズを重ねて紙のような質感にする */
.section--navy::after, .ctaband::after, .diag::after, .final::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: var(--noise); background-size: 140px 140px;
  opacity: .05; mix-blend-mode: overlay;
}
/* 紺面の上端にゴールドのヘアライン */
.section--navy, .ctaband, .diag, .final { border-top: 1px solid rgba(230,198,109,.22); }
.section--navy > .wrap, .ctaband > .wrap, .diag > .wrap, .final > .wrap { position: relative; z-index: 1; }

/* eyebrow (EN label) — 極細ヘアライン＋広いトラッキングで「誌面のラベル」に */
.eyebrow {
  font-family: var(--font-en);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.eyebrow::before {
  content: ""; width: 46px; height: 1px; display: inline-block;
  background: linear-gradient(90deg, transparent, var(--gold-hair) 30%, var(--gold-3));
}
.section--navy .eyebrow, .diag .eyebrow, .final .eyebrow, .ctaband .eyebrow { color: var(--gold-2); }
.section--navy .eyebrow::before, .diag .eyebrow::before {
  background: linear-gradient(90deg, transparent, rgba(230,198,109,.5) 30%, var(--gold-2));
}

/* section heading — 和文は明朝。経営者向け媒体の格を出す */
.sec-head { margin-bottom: var(--sp-body); }
.sec-title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: .045em;
  margin-top: var(--sp-eyebrow);
  color: var(--navy);
}
/* 見出し／リード直後のコンテンツ塊に付ける（旧インラインstyleの置き換え） */
.sec-body { margin-top: var(--sp-body); }
/* セクション末尾の中央CTA */
.cta-center { max-width: 560px; margin: var(--sp-body) auto 0; }
.section--navy .sec-title, .diag .sec-title, .final .sec-title { color: #fff; }
.sec-title .accent { color: var(--red); }
.sec-title .mark {
  background: linear-gradient(transparent 64%, rgba(203,176,121,.45) 64%);
}
/* 見出し下のゴールド細罫（誌面の区切り線） */
.sec-rule { margin-top: 1.35rem; width: 74px; height: 1px; background: var(--gold-line); }
.section--navy .sec-rule, .diag .sec-rule { background: linear-gradient(90deg, var(--gold-2), rgba(230,198,109,.15)); }

/* 見出しの文中に置くロゴマーク。和文の字面に合わせて少し大きく、下端を揃える */
.logo-inline {
  display: inline-block; height: 1.02em; width: auto;
  vertical-align: -.1em; margin: 0 .12em;
  transform: translateY(.02em);
}

/* ロゴ画像に続けて商品名の欧文を添える。
   ヘッダー（.brand__en）と同じ字体・色にして、ロゴと一体に見えるようにする */
.logo-en {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-1);
  font-size: .92em;
  letter-spacing: .01em;
  white-space: nowrap;
  margin: 0 .2em 0 .16em;
}

/* watermark — 背面の巨大英字。レイヤードデプス */
.wm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4.5rem, 2rem + 11vw, 11rem);
  line-height: .78;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(163,122,45,.1);
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.section--navy .wm, .diag .wm { -webkit-text-stroke-color: rgba(230,198,109,.11); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--red);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  font-weight: 700;
  letter-spacing: .1em;
  font-size: clamp(.9rem, .86rem + .3vw, 1.04rem);
  line-height: 1.5;
  padding: 1.2em 2.3em;
  border-radius: 2px;
  background: var(--_bg);
  color: var(--_fg);
  box-shadow: var(--sh-red);
  position: relative; overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .4s var(--ease);
  will-change: transform;
}
/* ホバー時に走るゴールドのシーン（特別感の微演出） */
.btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .9s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn .arw { transition: transform .5s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,53,46,.28), 0 20px 44px rgba(232,53,46,.2); }
.btn:hover .arw { transform: translateX(4px); }
.btn--ghost {
  --_bg: transparent; --_fg: var(--navy);
  border: 1px solid var(--gold-hair);
  box-shadow: none;
}
.btn--ghost:hover { --_bg: var(--navy); --_fg: var(--gold-2); border-color: var(--navy); box-shadow: var(--sh-md); }
.btn--navy { --_bg: var(--navy); box-shadow: var(--sh-md); }
.btn--navy:hover { --_bg: var(--navy-deep); }
.btn--lg { padding: 1.2em 2.6em; }
.btn--block { display: flex; width: 100%; }
/* squared hero CTA */
.btn--rect {
  border-radius: 2px;
  font-size: clamp(.9rem, .84rem + .28vw, 1.04rem);
  padding: 1.05em 1.5em;
  gap: .6em;
  --_bg: linear-gradient(180deg, #ec4a3f, var(--hero-red) 55%, var(--hero-red-deep));
  box-shadow: 0 8px 20px rgba(213,26,27,.28), 0 2px 5px rgba(213,26,27,.24);
}
.btn--rect:hover { box-shadow: 0 12px 28px rgba(213,26,27,.34), 0 4px 10px rgba(213,26,27,.28); }
.btn--rect .btn__ic { width: 1.25em; height: 1.25em; flex: none; }
.btn--rect .arw { margin-left: .15em; opacity: .8; }
.btn--dark {
  --_bg: linear-gradient(180deg, #33373c, #24272b 60%, #17191c);
  box-shadow: 0 8px 20px rgba(20,22,26,.24), 0 2px 5px rgba(20,22,26,.2);
}
.btn--dark:hover { box-shadow: 0 12px 28px rgba(20,22,26,.3), 0 4px 10px rgba(20,22,26,.24); }

.arw { width: .8em; height: .8em; flex: none; }

/* dual CTA row */
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-row .btn { flex: 1 1 auto; }
@media (max-width: 600px) { .cta-row { flex-direction: column; } }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  /* 半透明のままだと下の濃紺が透けてグレーに濁るため、白を不透明にする */
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.header.is-scrolled { box-shadow: var(--sh-sm); border-color: var(--line); }
.header__inner {
  max-width: var(--wrap-wide); margin-inline: auto;
  padding: .7rem clamp(16px, 4vw, 40px);
  display: flex; align-items: center; gap: 1.4rem;
}
.brand { display: flex; align-items: center; gap: .85rem; flex: none; }
.brand__logo {
  height: clamp(34px, 1.8vw + 22px, 48px); width: auto;
  transition: opacity .4s var(--ease);
}
.brand:hover .brand__logo,
.brand:hover .brand__en { opacity: .78; }
/* 旧・円形エンブレム画像（476KB・旧名称が焼き込まれていた）を廃止し、
   商品名の欧文をヒーローと同じ字体でテキスト表示する */
.brand__en {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1rem, .62rem + .95vw, 1.55rem);
  color: var(--gold-1); line-height: 1; white-space: nowrap;
  padding-left: .9rem; border-left: 1px solid var(--gold-faint);
  transition: opacity .4s var(--ease);
}
@media (max-width: 420px) { .brand__en { display: none; } }
.header__nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.header__links { display: flex; gap: 1.4rem; font-size: .82rem; font-weight: 600; letter-spacing: .06em; }
.header__links a { color: var(--ink-soft); transition: color .3s var(--ease); position: relative; }
.header__links a:hover { color: var(--navy); }
.header__actions { display: flex; gap: .6rem; }
.header .btn { padding: .8em 1.4em; font-size: .76rem; letter-spacing: .08em; box-shadow: none; }
.header .btn--navy { box-shadow: var(--sh-sm); }
.header__toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.header__toggle span { width: 24px; height: 2px; background: var(--navy); transition: transform .4s var(--ease), opacity .3s var(--ease); }
.header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .header__links { display: none; }
  .header__actions { display: none; }
  .header__toggle { display: flex; }
}

/* drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(15,27,61,.97);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
  padding: 6rem clamp(24px, 8vw, 60px) 3rem;
  transform: translateY(-100%);
  opacity: 0; visibility: hidden;
  transition: transform .6s var(--ease), opacity .4s var(--ease), visibility .4s;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer a { font-size: 1.2rem; font-weight: 700; letter-spacing: .06em; display: flex; align-items: baseline; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer a .en { font-family: var(--font-en); font-weight: 600; font-size: .7rem; color: var(--gold-2); letter-spacing: .2em; }
.drawer__cta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .8rem; }

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(6rem, 4.5rem + 6vw, 8.5rem);
  padding-bottom: clamp(2.5rem, 1.5rem + 5vw, 4.5rem);
  /* TOPビューは濃紺。上質さは黒に寄せず、青みを残した紺のグラデーションで出す */
  background:
    radial-gradient(1150px 640px at 74% 12%, rgba(230,198,109,.12), transparent 62%),
    linear-gradient(158deg, var(--navy-soft) 0%, var(--navy) 44%, var(--navy-deep) 100%);
  overflow: hidden;
}
/* faint gold network dots behind the headline */
.hero__net {
  position: absolute; inset: 0 45% auto 0; height: 78%; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(230,198,109,.2) 1.3px, transparent 1.5px);
  background-size: 27px 27px;
  -webkit-mask-image: radial-gradient(90% 85% at 18% 8%, #000, transparent 72%);
          mask-image: radial-gradient(90% 85% at 18% 8%, #000, transparent 72%);
}

.hero__inner { position: relative; z-index: 3; max-width: 1060px; }

/* chevron ribbon */
.hero__ribbon {
  display: inline-flex; align-items: center;
  /* 文字数が増えたので字間を詰める（旧「経営層限定」の .3em では横に伸びすぎる） */
  font-weight: 800; letter-spacing: .12em; text-indent: .12em;
  font-size: .78rem; color: var(--gold-2);
  /* 紺地に黒タグでは沈むため、金の細罫で縁取った一段明るい紺にする */
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: inset 0 0 0 1px rgba(203,176,121,.42);
  padding: .72em 2.2em .72em 1.15em;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

/* eyebrow line */
.hero__eyebrow {
  margin: 1.4rem 0 1rem;
  font-size: clamp(.94rem, .86rem + .45vw, 1.18rem);
  font-weight: 700; color: #fff; letter-spacing: .02em;
}
.hero__eyebrow .au {
  font-weight: 800;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* headline — 商品名を画像ではなくテキストで組む（旧 hero-logo.png 434KB を廃止） */
.hero__kicker {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(.95rem, .87rem + .42vw, 1.22rem);
  /* 紺地では暗い金（gold-1）は沈むため明るい金 */
  letter-spacing: .15em; color: var(--gold-2);
  margin: 0 0 .35rem;
}
.hero__title {
  color: #fff; font-weight: 800; letter-spacing: .01em;
  margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  font-size: clamp(2.35rem, 1.35rem + 4.5vw, 4.85rem);
  line-height: 1.18;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 .3em;
}
/* 商品名の和文はロゴと同じ極太ゴシック（明朝ではない） */
.hero__brand { font-family: var(--font-jp); font-weight: 900; letter-spacing: -.012em; }
.hero__title .ai {
  font-family: var(--font-en); font-weight: 700;
  /* 紺地では hero-red より明度の高い赤の方が締まる */
  color: var(--red); letter-spacing: .01em;
}
/* 欧文は極太ゴシックと対比させてイタリック・ゴールド。紺地なので明るい金 */
.hero__en {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: .88em; white-space: nowrap;
  color: var(--gold-2);
}
@media (min-width: 993px) {
  /* PCでは右の写真に意図的に重ねる（hero__inner の z-index:3 で前面）。
     背景が紺になったので、白ハローではなく紺のハローで写真の明部から文字を守る */
  .hero__title,
  .hero__kicker,
  .hero__eyebrow {
    text-shadow:
      0 0 10px rgba(17,26,34,.9),
      0 0 26px rgba(17,26,34,.75),
      0 0 48px rgba(17,26,34,.55);
  }
}

/* 写真の左端だけを弱く伏せる。人物にかからない範囲に絞り、写真の存在感を残す */
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(96deg,
    rgba(26,37,47,0) 38%,
    rgba(26,37,47,.72) 48%,
    rgba(26,37,47,.46) 58%,
    rgba(26,37,47,0) 68%);
}
@media (max-width: 992px) { .hero__veil { display: none; } }
.hero__t1 { display: block; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.15rem, .85rem + 1.5vw, 1.8rem); line-height: 1.6; letter-spacing: .05em; }
.hero__t2, .hero__t3 { display: block; line-height: 1.14; }
.hero__t3 { margin-top: .06em; }
.hero__t2 .g, .hero__t3 .g {
  font-size: clamp(2.2rem, 1.3rem + 3.9vw, 3.65rem); font-weight: 800; letter-spacing: .01em;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__t3 .r, .hero__t3 .k {
  font-size: clamp(2.6rem, 1.35rem + 5.45vw, 5.05rem); font-weight: 800; letter-spacing: .01em;
  text-shadow: 0 1px 16px rgba(247,242,233,.85), 0 0 4px rgba(247,242,233,.9);
}
@media (min-width: 768px) { .hero__t2, .hero__t3 { white-space: nowrap; } }
.hero__t3 .r { color: var(--hero-red); margin-left: .42em; }
.hero__t3 .k { color: var(--ink-black); }
/* マンツーマン: 黒文字・AI道場と同サイズ */
.hero__t3 .g {
  font-size: clamp(2.6rem, 1.35rem + 5.45vw, 5.05rem);
  background: none; -webkit-background-clip: initial; background-clip: initial;
  color: var(--ink-black); -webkit-text-fill-color: currentColor;
  text-shadow: 0 1px 16px rgba(247,242,233,.85), 0 0 4px rgba(247,242,233,.9);
}

/*
  hero の1列サマリ（2026-08-12・原の指定で stat カード3枚から差し替え）。
  実際の提供内容が1文で言い切れるため、3枚に割ると「週1回・1時間・全4回」が
  バラバラの事実として読まれてしまっていた。下のCTAと同じ 940px 幅に揃えて、
  ヒーロー内で1本の帯として読ませる。
*/
.hero__oneline {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .25rem .95rem;
  max-width: 940px; margin: 0 0 1.9rem;
  background: #fff; border: 1px solid #ece1c9; border-left: 3px solid var(--gold-3);
  border-radius: 3px; padding: .95rem 1.3rem 1rem;
  box-shadow: 0 2px 5px rgba(150,110,40,.06), 0 14px 30px rgba(150,110,40,.09);
  color: var(--ink-black); letter-spacing: .02em;
}
.hero__oneline b {
  font-family: var(--font-jp); font-weight: 800; color: var(--navy);
  font-size: clamp(1.02rem, .86rem + .52vw, 1.22rem); line-height: 1.45;
  white-space: nowrap;
}
/* 数字側と地の文で階層をつける。同サイズだと帯全体が平坦に見える */
.hero__oneline-body {
  flex: 1 1 380px;
  font-size: clamp(.82rem, .76rem + .22vw, .93rem); font-weight: 600;
  line-height: 1.8; color: #6f6650;
}
.hero__oneline em { font-style: normal; font-weight: 800; color: var(--navy); }

/* stat cards（現在ヒーローでは未使用。他セクションでの再利用に備えて残置） */
.hero__stats { display: flex; flex-wrap: wrap; gap: .9rem; margin: 0 0 1.9rem; max-width: 700px; }
.stat {
  flex: 1 1 148px; min-width: 138px; max-width: 210px;
  background: #fff; border: 1px solid #ece1c9; border-radius: 3px;
  padding: .85rem 1rem 1rem;
  box-shadow: 0 2px 5px rgba(150,110,40,.06), 0 14px 30px rgba(150,110,40,.09);
}
.stat__head { display: flex; align-items: center; gap: .45em; margin-bottom: .15rem; }
.stat__ic { color: var(--gold-3); display: inline-flex; }
.stat__ic svg { width: 1.5em; height: 1.5em; }
.stat__label { font-size: .76rem; font-weight: 700; color: var(--ink-black); letter-spacing: .01em; }
.stat__num {
  display: block; font-family: var(--font-en); font-weight: 700; color: var(--navy);
  font-size: clamp(1.7rem, 1.1rem + 1.85vw, 2.25rem); line-height: 1.12; letter-spacing: .01em;
}
.stat__num b { font-size: .5em; font-weight: 800; margin-left: .08em; }
/*
  メイン文言が数字から日本語になったため、テキスト用の指定を足す。
  カードの寸法・余白・角丸・影は変えず、文字サイズと字送りだけを日本語に合わせている
  （数字用の 2.25rem・欧文フォントのままだと「完全マンツーマン」がはみ出す）。
*/
.stat__num--text {
  font-family: var(--font-jp);
  font-size: clamp(1.02rem, .86rem + .52vw, 1.22rem);
  line-height: 1.45;
  letter-spacing: .01em;
  margin: .1rem 0 .18rem;
}
.stat__sub { font-size: .69rem; font-weight: 600; color: #8a8069; letter-spacing: .02em; line-height: 1.55; display: block; }

/* CTA pair */
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; max-width: 940px; }
.hero__cta .btn { flex: 1 1 0; }

/* photo media box with gold diagonal edge */
.hero__media {
  position: absolute; top: 0; right: 0; z-index: 1;
  width: 49%; height: 100%;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--gold-line);
  overflow: hidden;
}
.hero__media .hero__ph,
.hero__media .hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  clip-path: polygon(calc(13% + 5px) 0, 100% 0, 100% 100%, 5px 100%);
}
.hero__img { object-fit: cover; object-position: 62% center; }
.hero__ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: linear-gradient(150deg, #2b3a49 0%, #1a252f 100%);
  color: rgba(230,198,109,.55); text-align: center;
  letter-spacing: .12em; font-size: .82rem; font-weight: 600; line-height: 1.85;
}
.hero__ph svg { width: 66px; height: 66px; opacity: .5; }

@media (max-width: 992px) {
  .hero { padding-bottom: clamp(2rem, 1rem + 4vw, 3rem); }
  .hero__inner { max-width: none; }
  .hero__stats, .hero__cta, .hero__oneline { max-width: none; }
  .hero__net { inset: 0 0 auto 0; }
  .hero__media {
    position: relative; width: 100%; height: auto; aspect-ratio: 16 / 10;
    clip-path: none; border-radius: 18px; margin-top: 2.2rem; padding: 4px;
  }
  /* 置換要素(img)は width:auto だと right が無視され固有幅になるため明示的に計算する */
  .hero__media .hero__ph,
  .hero__media .hero__img { position: absolute; inset: 4px; width: calc(100% - 8px); height: calc(100% - 8px); clip-path: none; border-radius: 14px; }
}
@media (max-width: 600px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { flex: 1 1 100%; }
  .stat { flex: 1 1 100%; max-width: none; }
  /* stack マンツーマン / AI道場 on their own lines */
  .hero__t3 .g::after { content: "\A"; white-space: pre; }
  .hero__t3 .r { margin-left: 0; }
}

/* =========================================================
   2. 共感（静かな自覚）
   ========================================================= */
.empathy__title { margin-top: var(--sp-eyebrow); font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 600; color: var(--navy); line-height: 1.55; letter-spacing: .045em; }
.empathy__title .accent { color: var(--red); }
.empathy__body { margin-top: var(--sp-lead); font-size: var(--fs-lead); line-height: 2; max-width: 760px; }
.empathy__body strong { color: var(--navy); font-weight: 800; }
.empathy__list {
  /* コンテナ幅いっぱいに使う（860px 制限だと右に大きな空きが残っていた） */
  margin-top: var(--sp-body); display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.1rem, .85rem + .9vw, 1.7rem);
}
.empathy__item {
  background: #fff; border: 1px solid var(--line-soft); border-left: 2px solid var(--gold-hair);
  border-radius: var(--radius-sm); padding: 1.4em 1.6em;
  font-size: var(--fs-body); font-weight: 600; color: var(--ink);
  box-shadow: var(--sh-sm); display: flex; gap: .7em; align-items: flex-start; line-height: 1.85;
  min-width: 0; /* grid item の min-content 下限を外す */
}
.empathy__item::before { content: "“"; font-family: var(--font-display); font-size: 2rem; color: var(--gold-3); line-height: .9; }
.empathy__item--ill {
  align-items: center; gap: clamp(1.1em, .8em + .8vw, 1.6em);
  padding: clamp(1.3em, 1em + .8vw, 1.85em) clamp(1.5em, 1.1em + 1.1vw, 2.1em);
}
.empathy__item--ill::before { display: none; }
/* 4枚のアスペクト比が揃っていなくても高さが揃うよう正方比＋contain で受ける */
.empathy__ill {
  width: clamp(76px, 58px + 3.2vw, 104px);
  aspect-ratio: 1 / 1; height: auto; object-fit: contain; flex: none;
}
/* min-width:0 が無いと、文節折り返し時の min-content 幅が下限になり狭幅で溢れる。
   overflow-wrap は「文節では収まらない極狭幅のときだけ」割るための保険 */
.empathy__txt { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.empathy__close { margin-top: var(--sp-body); font-size: var(--fs-lead); line-height: 2; max-width: 780px; }
.empathy__close strong { color: var(--navy); font-weight: 800; }
.bridge {
  margin-top: var(--sp-block); text-align: center;
}
.bridge__arw { color: var(--yellow); font-size: 1.6rem; line-height: 1; }
.bridge__text { margin-top: .6rem; font-size: var(--fs-lead); font-weight: 700; color: var(--navy); }
.bridge__text strong { color: var(--red); }
@media (max-width: 600px) { .empathy__list { grid-template-columns: 1fr; } }

/* =========================================================
   3. 停滞の正体
   ========================================================= */
.stall { position: relative; overflow: hidden; }
.stall .wm { top: -1.5rem; right: 2%; color: #e7ebf6; }
.stall__lead { font-size: var(--fs-lead); line-height: 2; max-width: 780px; position: relative; z-index: 1; }
.stall__lead strong { color: var(--red); font-weight: 800; }
.stall__evidence {
  margin-top: var(--sp-block); position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); box-shadow: var(--sh-md);
  border-top: 2px solid var(--gold-hair); max-width: 820px;
}
.stall__evidence h3 { color: var(--navy); font-size: var(--fs-h3); font-weight: 800; line-height: 1.5; margin-bottom: var(--sp-cardhead); }
.stall__evidence p { line-height: 1.95; }
.stall__evidence strong { color: var(--navy); }

/* =========================================================
   CTA band
   ========================================================= */
.ctaband {
  color: #fff; position: relative; overflow: hidden;
  background-color: var(--navy-deep);
  background-image: url("../img/ctaband-spartan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 写真の上にボタンが乗るので、中央だけやや落として被写体は見せる */
.ctaband::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,22,30,.26) 0%, rgba(15,22,30,.44) 45%, rgba(15,22,30,.20) 100%);
}
.ctaband__inner { position: relative; z-index: 1; text-align: center; }
.ctaband__lead { font-size: var(--fs-sm); color: var(--yellow); font-weight: 700; letter-spacing: .1em; line-height: 1.7; }
.ctaband__title { font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 600; line-height: 1.55; margin-top: var(--sp-eyebrow); letter-spacing: .045em; }
.ctaband__cta { max-width: 560px; margin: var(--sp-cta) auto 0; }
.ctaband .btn--ghost { --_fg: #fff; border-color: rgba(255,255,255,.6); }
/* 横に長い画像なので、狭い画面では中央（被写体のない部分）だけが見えてしまう。兵士側に寄せる */
@media (max-width: 900px) { .ctaband { background-position: 18% center; } }
@media (max-width: 520px) { .ctaband { background-position: 12% center; } }
.ctaband .btn--ghost:hover { --_bg: #fff; --_fg: var(--navy); }
.ctaband--compact { padding-block: clamp(2.6rem, 2rem + 3vw, 4rem); }

/* =========================================================
   4. なぜ経営者から（総論）
   ========================================================= */
.reason-why__lead { font-size: var(--fs-lead); line-height: 2; max-width: 820px; margin-top: var(--sp-lead); margin-bottom: var(--sp-body); }
/* 結び — 明朝＋ゴールド細罫で「締め」として独立させる */
.reason-why__close {
  margin-top: var(--sp-body); max-width: 860px;
  padding-top: var(--sp-block); border-top: 1px solid var(--line);
  font-family: var(--font-serif); font-weight: 600;
  font-size: var(--fs-lead); line-height: 2.1; letter-spacing: .035em; color: var(--navy);
}
.reason-why__close p + p { margin-top: 1.15em; }
/* 独立した1行の引用。段落として切り出された意図が伝わるよう少しだけ強める */
.reason-why__quote {
  font-family: var(--font-serif);
  font-size: 1.08em;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
}
.reason-why__close .mark { background: linear-gradient(transparent 66%, rgba(203,176,121,.45) 66%); }
.args { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
/* 2枚構成では1枚あたりの本文が長いので、行長を稼ぐため少し余裕を持たせる */
.args--duo { gap: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); }
.arg {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
  transition: border-color .6s var(--ease), box-shadow .6s var(--ease), transform .6s var(--ease);
}
/* 上端のゴールド細罫。ホバーで左から引かれる */
.arg::after {
  content: ""; position: absolute; inset: 0 auto auto 0; height: 1px; width: 0;
  background: var(--gold-line); transition: width .7s var(--ease);
}
.arg:hover { transform: translateY(-2px); border-color: var(--gold-faint); box-shadow: var(--sh-md); }
.arg:hover::after { width: 100%; }
/* 数字は Montserrat。Cormorant の 0/1 は O/I と紛れるため使わない */
.arg__no {
  font-family: var(--font-en); font-weight: 600; font-size: 2.3rem; line-height: 1;
  letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1px rgba(163,122,45,.38);
  position: absolute; top: 1.1rem; right: 1.3rem;
}
.arg__no b { font-weight: 600; }
/* 右上の 01〜04 と重ならないだけの逃げを確保する */
.arg__title { font-family: var(--font-serif); color: var(--navy); font-size: var(--fs-h3); font-weight: 600; line-height: 1.62; letter-spacing: .03em; margin-bottom: var(--sp-cardhead); padding-right: 4.2rem; }
.arg__body { font-size: var(--fs-sm); line-height: 1.95; color: var(--ink-soft); }
@media (max-width: 768px) { .args { grid-template-columns: 1fr; } }

/* =========================================================
   5. 3つの理由（各論）★心臓
   ========================================================= */
.dojo { background: var(--bg-tint); position: relative; overflow: hidden; }
/* 見出しの2行目（副題）。h2 より一段小さくして誌面の主従を作る */
.dojo__subtitle {
  margin-top: .85rem; font-family: var(--font-serif); font-weight: 600;
  font-size: var(--fs-h3); line-height: 1.6; letter-spacing: .04em; color: var(--navy);
}
/*
  1文目「週1回・1時間×全4回を〜研修を実施。」を1行に収める（2026-08-12・原の指定）。
  820px では114px足りず「研修を実施。」だけが2行目に落ちていた。実測で1文目は934px、
  コンテナ内側は1040pxあるため 960px まで広げる。狭い画面では通常どおり折り返す
  （nowrapで無理に1行を維持すると、タブレット幅で溢れる）。
*/
.dojo__lead { font-size: var(--fs-lead); line-height: 2; max-width: 960px; margin-top: var(--sp-lead); }
/* セクション内の章見出し。上に大きく余白を取って「切り替わり」を出す */
.dojo__subhead {
  margin-top: clamp(3.2rem, 2.4rem + 3vw, 5.2rem);
  font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-h3);
  line-height: 1.6; letter-spacing: .05em; color: var(--navy);
}
/* flex にすると文中のロゴ画像が別アイテム扱いになるため inline-block の罫線で組む */
.dojo__subhead::before {
  content: ""; display: inline-block; width: 34px; height: 1px;
  background: var(--gold-line); vertical-align: middle; margin-right: 1rem;
}
.dojo__intro { font-size: var(--fs-lead); line-height: 2; max-width: 800px; margin-top: var(--sp-lead); margin-bottom: var(--sp-body); }
.dojo__intro strong { color: var(--navy); font-weight: 800; }
/* 締め — 比喩の下に置く実務的な着地。控えめに */
.dojo__close {
  margin: var(--sp-block) auto 0; max-width: 800px; text-align: center;
  font-size: var(--fs-sm); line-height: 2.05; color: var(--ink-soft);
}
/* 特徴が4つになったので2×2に。3列のままだと1枚だけ余って間が抜けて見える */
.reasons {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  /* 見出し「〜が選ばれる、4つの特徴」との間に余白を取る */
  margin-top: clamp(1.9rem, 1.2rem + 2.2vw, 3.2rem);
}
.reason {
  background: #fff; border-radius: var(--radius); padding: clamp(1.7rem, 1.3rem + 1.2vw, 2.1rem);
  box-shadow: var(--sh-md); position: relative; overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
/* 上端のゴールド罫。border に載せると角で食い出すため擬似要素で引く */
.reason::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold-line);
}
.reason:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
/* 円形アイコンを廃止し、他セクション（.arg__no）と同じ右上の中抜き数字に統一 */
.reason__no {
  font-family: var(--font-en); font-weight: 600; font-size: 2.3rem; line-height: 1;
  letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1px rgba(163,122,45,.38);
  position: absolute; top: 1.1rem; right: 1.3rem;
}
.reason__no b { font-weight: 600; }
/* 右上の 01〜04 と重ならないだけの逃げを確保する */
.reason__title { font-family: var(--font-serif); color: var(--navy); font-size: var(--fs-h3); font-weight: 600; line-height: 1.62; letter-spacing: .03em; margin-bottom: var(--sp-cardhead); padding-right: 4.2rem; }
.reason__body { font-size: var(--fs-sm); line-height: 1.95; color: var(--ink-soft); }
.reason__body + .reason__body { margin-top: 1.05em; }
.reason__body strong { color: var(--navy); font-weight: 700; }
.dojo__metaphor { margin-top: var(--sp-block); text-align: center; font-family: var(--font-serif); font-size: var(--fs-lead); font-weight: 600; color: var(--navy); line-height: 2; letter-spacing: .04em; }
.dojo__metaphor .mark { background: linear-gradient(transparent 66%, rgba(203,176,121,.42) 66%); }
@media (max-width: 900px) { .reasons { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* =========================================================
   6. 4回の稽古
   ========================================================= */
/* 本番のプログラム表記に合わせた箇条書き（第1回・宿題①・第3回で使用） */

/* 8枚（第0回＋全4回＋宿題3回）になったため4列固定をやめ、自動折り返しにする。
   宿題は稽古の合間なので一段トーンを落とし、第2回は最重要バッジを付ける。 */

/* =========================================================
   7. Before → After
   ========================================================= */
/*
  2026-08-12: 「BEFORE / AFTER ／ 1ヶ月後、あなたはこう変わる。」を削除して詰めたあと、
  改めて1行の問いかけ見出しを置いた。eyebrowと罫線は戻していないので、
  セクションの標準padding-topのままだと見出しが浮く。少しだけ詰めた状態を保つ。
*/
.ba { padding-top: clamp(2.6rem, 1.8rem + 2.4vw, 4rem); }
.ba__title { text-align: center; }
.ba__table { margin-top: var(--sp-body); display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 1.4rem; align-items: stretch; max-width: 900px; margin-inline: auto; }
.ba__col { display: flex; flex-direction: column; gap: .8rem; }
.ba__head { font-weight: 800; letter-spacing: .1em; text-align: center; padding: .7rem; border-radius: 999px; font-size: .85rem; line-height: 1.5; margin-bottom: .3rem; }
.ba__head--b { background: #efece4; color: var(--ink-soft); }
.ba__head--a { background: var(--navy); color: var(--gold-2); }
.ba__cell { padding: 1.15em 1.3em; border-radius: var(--radius-sm); font-size: var(--fs-sm); line-height: 1.8; font-weight: 600; }
.ba__cell--b { background: #fdfcfa; border: 1px dashed var(--line); color: var(--ink-soft); }
.ba__cell--a { background: #fff; border: 1px solid var(--line-soft); border-left: 2px solid var(--gold-hair); color: var(--navy); box-shadow: var(--sh-sm); }
.ba__cell--a strong { color: var(--red); }
.ba__arrows { display: flex; flex-direction: column; justify-content: space-around; align-items: center; color: var(--gold-3); padding-top: 3rem; }
.ba__arrows svg { width: 24px; height: 24px; }
/*
  2026-08-12: 白いカードで囲うのをやめ、地の上に直接置く（原の指定）。
  短い断言なので、枠・影・罫線があると「まだ説明が続く」ように見えていた。
*/
.ba__goal {
  margin-top: var(--sp-block);
  max-width: 900px; margin-inline: auto; text-align: center;
}
.ba__goal p { font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-lead); line-height: 2.05; letter-spacing: .035em; color: var(--ink); }
.ba__goal strong { color: var(--navy); font-weight: 800; }
/*
  2026-08-12: 説明的な結び文から「経営層→社員→会社」の連鎖＋呼びかけへ差し替え（原の指定）。
  短い2行になったので、説明文のままの字送り・行間だと間延びする。連鎖を大きく見せ、
  呼びかけを一段落として受ける。
*/
.ba__goal-chain {
  font-size: clamp(1.08rem, .92rem + .72vw, 1.5rem);
  line-height: 1.85;
}
.ba__goal-call {
  margin-top: clamp(.9rem, .6rem + .8vw, 1.4rem);
  color: var(--ink-soft);
}
@media (max-width: 768px) {
  .ba__table { grid-template-columns: 1fr; gap: .8rem; }
  /* 1カラムでは BEFORE群 → AFTER群 の遷移は1本で足りる。
     コンテナごと回転させるとセルに重なるので、矢印だけ下向きにする */
  .ba__arrows { flex-direction: row; justify-content: center; padding: .5rem 0; transform: none; }
  .ba__arrows svg { transform: rotate(90deg); }
  .ba__arrows svg:not(:first-child) { display: none; }
  .ba__col--b { margin-bottom: .4rem; }
}

/* =========================================================
   8. なぜAIスパルタン
   ========================================================= */
.why-sp { }
.why-sp__grid { margin-top: var(--sp-body); display: grid; grid-template-columns: repeat(2,1fr); gap: 1.3rem; }
.usp {
  display: flex; gap: 1.2rem; background: rgba(255,255,255,.035); border: 1px solid rgba(230,198,109,.16);
  border-radius: var(--radius); padding: 1.9rem 1.8rem; align-items: flex-start;
  transition: border-color .6s var(--ease), background .6s var(--ease);
}
.usp:hover { border-color: rgba(230,198,109,.4); background: rgba(255,255,255,.06); }
.usp__ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(230,198,109,.1); border: 1px solid rgba(230,198,109,.28); color: var(--gold-2); display: grid; place-items: center; flex: none; }
.usp__ic svg { width: 22px; height: 22px; }
.usp h3 { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.55; margin-bottom: .65rem; }
.usp p { font-size: var(--fs-sm); line-height: 1.9; color: #b3bcc6; }
.why-sp__note { margin-top: var(--sp-block); font-size: var(--fs-sm); color: #8f9aa5; line-height: 1.85; }
@media (max-width: 768px) { .why-sp__grid { grid-template-columns: 1fr; } }

/* =========================================================
   9. 声
   ========================================================= */
.voices { margin-top: var(--sp-body); display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.voice {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.7rem,1.3rem + 1vw,2.2rem); box-shadow: var(--sh-sm); position: relative;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.voice__quote { font-size: var(--fs-body); line-height: 1.95; font-weight: 600; color: var(--ink); }
.voice__quote::before { content: "“"; font-family: var(--font-display); color: var(--gold-3); font-size: 2.8rem; line-height: 0; vertical-align: -.34em; margin-right: .12em; }
.voice__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.voice__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(150deg,#f6f1e7,#e2d8c2); border: 1px solid var(--gold-faint); flex: none; }
.voice__role { font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.voices__note { margin-top: var(--sp-block); font-size: var(--fs-sm); line-height: 1.85; color: var(--ink-soft); }

/*
  2026-08-12: 「経営者の声」を紺地に変更（原の指定）。
  カードは白のまま残し、紺地から浮かせる。地の文だけは ink-soft のままだと
  紺に沈んで読めないため、明るい側へ置き換える。
  ※セクションのクラス名は .voice（カード1枚）と衝突しないよう .voices-sec とした。
*/
.voices-sec .voices__note { color: rgba(204, 211, 218, .85); }
.voices-sec .voice {
  border-color: rgba(230, 198, 109, .22);
  box-shadow: 0 2px 6px rgba(10, 16, 26, .22), 0 18px 40px rgba(10, 16, 26, .28);
}
@media (max-width: 900px) { .voices { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* =========================================================
   10. 料金
   ========================================================= */
/*
  2026-08-12: 右側の説明（幹部採用との比較・注記）を削除したため2カラムをやめる（原の指定）。
  1fr 1fr のままだと料金カードが左半分に取り残されるので、1カラムにして
  カード自体を広げる。コンテナ幅いっぱいでは間延びするため 720px で止める。
*/
.price__wrap { margin-top: var(--sp-body); display: grid; grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
.price__wrap > * { min-width: 0; }
.pricecard {
  background: linear-gradient(158deg, #22303d 0%, var(--navy) 58%, #0d141a 100%); color: #fff;
  border: 1px solid rgba(230,198,109,.26);
  border-radius: var(--radius-lg); padding: clamp(2rem, 1.5rem + 2.2vw, 3.1rem); position: relative; overflow: hidden;
  box-shadow: var(--sh-lg);
}
/* 紙のような微細ノイズ */
.pricecard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--noise); background-size: 140px 140px; opacity: .06; mix-blend-mode: overlay;
}
.pricecard::before { content:""; position:absolute; inset:0; background: radial-gradient(85% 62% at 100% 0%, rgba(230,198,109,.16), transparent 58%); }
.pricecard__ribbon { position: relative; display: inline-block; background: none; border: 1px solid rgba(230,198,109,.55); color: var(--gold-2); font-family: var(--font-en); font-weight: 600; font-size: .66rem; letter-spacing: .3em; padding: .62em 1.25em .62em 1.5em; border-radius: 0; }
.pricecard__name { position: relative; z-index: 1; margin-top: 1.5rem; font-family: var(--font-serif); font-size: 1.02rem; font-weight: 600; letter-spacing: .04em; line-height: 1.7; color: #e8ecf0; }
.pricecard__price {
  position: relative; margin-top: .95rem; font-family: var(--font-en); font-weight: 800; line-height: 1;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 .35rem; z-index: 1;
}
.pricecard__price .num { font-weight: 600; letter-spacing: -.01em; font-size: clamp(2.6rem, 1.6rem + 3vw, 4rem); }
.pricecard__price .unit { font-size: 1.05rem; font-weight: 700; letter-spacing: .04em; }
/* 税別・期間は必ず次行へ落として潰れを防ぐ */
.pricecard__price .tax { flex: 0 0 100%; margin-top: .7rem; font-size: .8rem; line-height: 1.6; color: #b3bcc6; font-weight: 600; }
.pricecard__list {
  position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1rem;
  margin-top: 1.9rem; padding-top: 1.9rem;
  border-top: 1px solid rgba(230,198,109,.24);
}
.pricecard__list li { display: flex; gap: .8em; align-items: flex-start; font-size: var(--fs-sm); line-height: 1.85; letter-spacing: .05em; color: #d6dce2; }
.pricecard__list svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: .35em; }
.price__side h3 { font-family: var(--font-serif); color: var(--navy); font-size: var(--fs-h3); font-weight: 600; letter-spacing: .03em; margin-bottom: var(--sp-lead); line-height: 1.62; }
.price__roi { background: linear-gradient(160deg, #fdfbf6, #f6f1e7); border: 1px solid var(--gold-faint); border-radius: var(--radius); padding: 1.6rem 1.7rem; font-size: var(--fs-sm); line-height: 1.95; margin-bottom: var(--sp-block); }
.price__note { font-size: var(--fs-sm); line-height: 1.95; color: var(--ink-soft); }
@media (max-width: 900px) { .price__wrap { grid-template-columns: 1fr; } }

/* =========================================================
   11. 流れ
   ========================================================= */
/* バッジが上に -20px はみ出すため、通常より少し広く取る */
.flow__steps { margin-top: calc(var(--sp-body) + .8rem); display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; counter-reset: fl; }
.flow__step { position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2.6rem 1.5rem 1.9rem; box-shadow: var(--sh-sm); }
.flow__step::before { counter-increment: fl; content: "0" counter(fl); font-family: var(--font-en); font-weight: 600; font-size: .82rem; letter-spacing: .08em; color: var(--gold-2); background: var(--navy); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; position: absolute; top: -21px; left: 1.4rem; border: 1px solid rgba(230,198,109,.3); box-shadow: var(--sh-sm); }
.flow__step h3 { color: var(--navy); font-size: .97rem; font-weight: 800; line-height: 1.55; margin-bottom: .75rem; }
.flow__step p { font-size: var(--fs-sm); line-height: 1.9; color: var(--ink-soft); }
@media (max-width: 900px) { .flow__steps { grid-template-columns: 1fr; gap: 1.4rem; } }

/* =========================================================
   12. FAQ
   ========================================================= */
.faq__list { max-width: 860px; margin: var(--sp-body) auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--sh-sm); transition: border-color .5s var(--ease); }
.faq__item.is-open { border-color: var(--gold-faint); }
.faq__q { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.4em 1.5em; text-align: left; font-weight: 700; color: var(--navy); font-size: var(--fs-body); line-height: 1.7; letter-spacing: .05em; }
.faq__q .qmark { font-family: var(--font-display); font-weight: 600; font-size: 1.25em; color: var(--gold-1); flex: none; }
.faq__toggle { margin-left: auto; width: 22px; height: 22px; position: relative; flex: none; }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; background: var(--gold-1); transition: transform .4s var(--ease); }
.faq__toggle::before { inset: 0 auto 0 50%; width: 1px; margin-left: -.5px; }
.faq__toggle::after { inset: 50% 0 auto 0; height: 1px; margin-top: -.5px; }
.faq__item.is-open .faq__toggle::before { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a-inner { padding: 0 1.4em 1.5em 3.1rem; font-size: var(--fs-sm); line-height: 1.95; color: var(--ink-soft); }

/* =========================================================
   13. 診断
   ========================================================= */
.diag { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; }
.diag__card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(230,198,109,.22); border-radius: var(--radius-lg);
  padding: clamp(1.8rem,1.3rem + 2.5vw,3.2rem); max-width: 720px; margin: var(--sp-body) auto 0; box-shadow: var(--sh-lg);
  backdrop-filter: blur(4px);
}
.diag__lead { color: #c2cad2; font-size: var(--fs-sm); line-height: 1.95; margin-bottom: var(--sp-block); }
.diag__progress { height: 6px; background: rgba(255,255,255,.14); border-radius: 999px; overflow: hidden; margin-bottom: 1.8rem; }
.diag__bar { height: 100%; width: 0; background: var(--gold-line); border-radius: 999px; transition: width .5s var(--ease); }
.diag__q { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 600; line-height: 1.62; letter-spacing: .03em; margin-bottom: var(--sp-lead); }
.diag__step { font-family: var(--font-en); font-size: .68rem; color: var(--gold-2); letter-spacing: .32em; font-weight: 600; margin-bottom: .8rem; }
.diag__opts { display: flex; flex-direction: column; gap: .8rem; }
.diag__opt { text-align: left; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); padding: 1.15em 1.3em; line-height: 1.75; color: #fff; font-weight: 600; font-size: var(--fs-sm); transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease); }
.diag__opt:hover { border-color: rgba(230,198,109,.6); background: rgba(230,198,109,.1); transform: translateX(5px); }
.diag__result { text-align: center; display: none; }
.diag__result.is-active { display: block; animation: fade .6s var(--ease); }

/* ============================================================
   数字はライニング数字に固定する（2026-08-17）

   Cormorant Garamond は既定が**オールドスタイル数字**で、1・2はx-height、
   3・4・5・7・9はベースラインより下に落ちる。そのため「Lv.4」の4だけが
   沈んで見え、原さんから違和感の指摘を受けた（Lv.3も同様）。

   lining-nums で全桁がキャップハイトに揃う。Montserrat・Noto系は
   既定がライニング数字なので、全体に掛けても影響は Cormorant だけ。
   同種の再発を防ぐため、個別指定ではなく全体に掛けている。
   ============================================================ */
body {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "onum" 0;
}

.diag__level { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.4rem); color: var(--gold-2); line-height: 1; }
.diag__level small { display:block; font-family: var(--font-jp); font-size: .9rem; color:#c2cad2; letter-spacing:.1em; margin-bottom:.4rem; font-weight:700; }
.diag__verdict { font-size: var(--fs-lead); font-weight: 700; line-height: 1.7; margin: 1.2rem 0 .7rem; }
.diag__advice { color: #c2cad2; font-size: var(--fs-sm); line-height: 1.95; margin-bottom: var(--sp-cta); }
.diag__cta { max-width: 460px; margin-inline: auto; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* =========================================================
   14. Final CTA
   ========================================================= */
.final { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; position: relative; overflow: hidden; text-align: center; }
.final::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 100% at 50% 0%, rgba(245,197,24,.14), transparent 60%); }
.final__inner { position: relative; z-index: 1; }
.final__title { font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 600; letter-spacing: .045em; line-height: 1.55; }
.final__title .hl { color: var(--gold-2); }
.final__body { margin: var(--sp-lead) auto 0; max-width: 640px; font-size: var(--fs-body); line-height: 2; color: #d9dee4; }
.final__body strong { color: #fff; }
.final__cta { max-width: 560px; margin: var(--sp-cta) auto 0; }
.final .btn--ghost { --_fg: #fff; border-color: rgba(255,255,255,.6); }
.final .btn--ghost:hover { --_bg: #fff; --_fg: var(--navy); }
.final__assure { margin-top: var(--sp-block); font-size: var(--fs-sm); color: var(--gold-2); font-weight: 600; letter-spacing: .04em; line-height: 1.8; display: flex; gap: .9rem 1.4rem; justify-content: center; flex-wrap: wrap; }
.final__assure span { display: inline-flex; align-items: center; gap: .4em; }

/* =========================================================
   15. Form
   ========================================================= */
.form__wrap { max-width: 720px; margin: var(--sp-body) auto 0; background: #fff; border: 1px solid var(--line); border-top: 2px solid var(--gold-hair); border-radius: var(--radius-lg); padding: clamp(1.8rem,1.3rem + 2.5vw,3.2rem); box-shadow: var(--sh-md); }
.form__choice { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: var(--sp-block); }
.form__radio { position: relative; }
.form__radio input { position: absolute; opacity: 0; }
.form__radio label { display: block; text-align: center; padding: 1.1em; border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 700; letter-spacing: .06em; color: var(--ink-soft); cursor: pointer; transition: all .4s var(--ease); font-size: var(--fs-sm); }
.form__radio input:checked + label { border-color: var(--red); background: rgba(232,53,46,.06); color: var(--red); box-shadow: var(--sh-sm); }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-weight: 700; color: var(--navy); font-size: .82rem; line-height: 1.6; margin-bottom: .6rem; letter-spacing: .1em; }
.field .req { color: var(--red); font-size: .72rem; margin-left: .4em; }
.field .opt { color: var(--ink-soft); font-size: .72rem; margin-left: .4em; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; padding: 1em 1.1em; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: var(--fs-body); color: var(--ink); background: #fcfaf6; transition: border-color .4s var(--ease), background .4s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-hair); background: #fff; outline: none; }
.field__note { font-size: .72rem; color: var(--ink-soft); margin-top: .4em; }
.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; }
.form__submit { margin-top: var(--sp-cta); }
.form__foot { margin-top: 1.2rem; font-size: .72rem; color: var(--ink-soft); text-align: center; line-height: 1.8; }
@media (max-width: 600px) { .form__choice, .field--half { grid-template-columns: 1fr; } }

/* =========================================================
   16. Floating CTA
   ========================================================= */
.float { position: fixed; right: clamp(12px,3vw,24px); bottom: clamp(12px,3vw,24px); z-index: 90; display: flex; flex-direction: column; gap: .6rem; align-items: flex-end; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.float .btn { box-shadow: var(--sh-lg); font-size: .84rem; padding: .9em 1.4em; }
.float .btn small { display: block; font-size: .64rem; font-weight: 600; opacity: .85; letter-spacing: .02em; }
@media (max-width: 600px) {
  .float { left: 12px; right: 12px; }
  .float .btn { width: 100%; }
  /* 全幅の固定CTAバーがページ末尾の文章に被らないよう逃げを作る */
  .footer { padding-bottom: 9.5rem; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy); color: #98a3ad; padding-block: clamp(3rem, 2.3rem + 3vw, 4.6rem); border-top: 1px solid rgba(230,198,109,.22); }
.footer__top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(230,198,109,.16); }
.footer__brand { color: #fff; }
.footer__logos { display: flex; align-items: center; gap: clamp(1.1rem, .8rem + 1vw, 1.8rem); flex-wrap: wrap; }
.footer__logo { height: clamp(46px, 3vw + 26px, 62px); width: auto; }
/* フッターも円形エンブレム画像（246KB）を廃止しテキストに置換。紺地なので明るい金 */
.footer__en {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.15rem, .85rem + 1vw, 1.75rem);
  color: var(--gold-2); line-height: 1; white-space: nowrap;
  padding-left: clamp(1.1rem, .8rem + 1vw, 1.8rem); border-left: 1px solid rgba(230,198,109,.24);
}
.footer__brand small { display: block; font-family: var(--font-en); font-size: .62rem; color: var(--gold-2); letter-spacing: .34em; font-weight: 500; margin-top: 1rem; }
.footer__nav { display: flex; gap: 1.7rem; flex-wrap: wrap; font-size: .78rem; letter-spacing: .07em; }
.footer__nav a:hover { color: #fff; }
.footer__copy { padding-top: 1.6rem; font-size: .72rem; letter-spacing: .04em; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}


/* ============================================================
   AI視座を持つと、業務はこう変わる（比較図）
   横長のイラストが主役なので、余白を絞って大きく見せる。
   スマホでは細部が潰れるため、拡大して見られるようリンクにしている。
   ============================================================ */
.shiza__lead {
  max-width: 820px;
  font-size: var(--fs-body);
  line-height: 2;
  margin-bottom: var(--sp-body);
}
.shiza__fig { margin: 0; }
.shiza__zoom { display: block; }
.shiza__scroll { }
.shiza__hint { display: none; }
.shiza__fig picture { display: block; }
.shiza__fig img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 6px rgba(28,40,60,.07), 0 22px 48px -26px rgba(28,40,60,.26);
}
.shiza__cap {
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  text-align: center;
}
.shiza__close {
  max-width: 860px;
  margin: var(--sp-body) auto 0;
  font-size: var(--fs-body);
  line-height: 2;
  text-align: center;
}
@media (max-width: 700px) {
  .shiza__close { text-align: left; }
}


/*
  スマホでは figure 内で横スクロールさせると図が切れて見えるため、
  **必ず全体が収まる**ようにする。細部はタップで原寸を開いて読んでもらう。
*/
@media (max-width: 760px) {
  .shiza__hint {
    display: block;
    font-size: .74rem;
    color: var(--ink-soft);
    letter-spacing: .04em;
    margin-bottom: .5rem;
    text-align: center;
  }
  .shiza__scroll { overflow: visible; }
  .shiza__scroll img { width: 100%; max-width: 100%; }
}


/* 紺面に置いたときの読みやすさ調整（背景変更に伴う最低限の指定）。
   マーカー・強調・キャプションは白地前提の色だと沈むため、金系に振る。 */
.shiza.section--navy .shiza__lead,
.shiza.section--navy .shiza__close { color: #dfe5ec; }
.shiza.section--navy .shiza__lead strong,
.shiza.section--navy .shiza__close strong { color: #fff; }
.shiza.section--navy .sec-title .mark {
  background: linear-gradient(transparent 66%, rgba(230,198,109,.34) 66%);
}
.shiza.section--navy .shiza__cap,
.shiza.section--navy .shiza__hint { color: rgba(223,229,236,.7); }
.shiza.section--navy .shiza__fig img {
  border-color: rgba(230,198,109,.28);
  box-shadow: 0 2px 6px rgba(0,0,0,.28), 0 24px 52px -26px rgba(0,0,0,.55);
}


/* ============================================================
   全4回の設計。チケットページと同じレイアウトに統一（2026-08-07）
   第0回の帯 → 稽古4回 → 宿題3回（回と回の間へずらして配置）
   ============================================================ */
/* 第0回・事前ヒアリング（全幅の帯） */
.prep {
    display: flex;
    align-items: flex-start;
    gap: clamp(.9rem, .7rem + .8vw, 1.4rem);
    margin-top: var(--sp-body);
    padding: clamp(1.05rem, .9rem + .8vw, 1.5rem) clamp(1.1rem, .9rem + 1vw, 1.7rem);
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold-3);
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
}
.prep__no {
    flex: none;
    font-family: var(--font-en);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: #fff;
    background: var(--navy);
    padding: .5em 1em;
    border-radius: 2px;
}
.prep__ttl {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1rem, .93rem + .35vw, 1.18rem);
    color: var(--navy);
    letter-spacing: .06em;
}
.prep__desc {
    margin-top: .4rem;
    font-size: var(--fs-sm);
    color: var(--ink-soft);
}
/* 稽古4回 + 宿題3回。PCは宿題を回と回の間へずらして置く */
.keiko__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: clamp(.8rem, .55rem + 1vw, 1.35rem);
    margin-top: clamp(1.1rem, .9rem + 1vw, 1.7rem);
}
/* DOM順: 第1回, 宿題①, 第2回, 宿題②, 第3回, 宿題③, 第4回 */
.keiko__grid> :nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
}
.keiko__grid> :nth-child(2) {
    grid-area: 2 / 2 / 3 / 4;
}
.keiko__grid> :nth-child(3) {
    grid-area: 1 / 3 / 2 / 5;
}
.keiko__grid> :nth-child(4) {
    grid-area: 2 / 4 / 3 / 6;
}
.keiko__grid> :nth-child(5) {
    grid-area: 1 / 5 / 2 / 7;
}
.keiko__grid> :nth-child(6) {
    grid-area: 2 / 6 / 3 / 8;
}
.keiko__grid> :nth-child(7) {
    grid-area: 1 / 7 / 2 / 9;
}
.keiko {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
    box-shadow: var(--sh-sm);
    position: relative;
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.keiko:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}
.keiko__no {
    font-family: var(--font-en);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold-1);
    display: block;
}
.keiko__theme {
    font-family: var(--font-serif);
    font-weight: 700;
    /* カード幅が狭いので、明朝は大きくしすぎない（「①」や「想」が単独で折り返る） */
    font-size: clamp(1.08rem, .96rem + .42vw, 1.26rem);
    color: var(--navy);
    margin-top: .5rem;
    letter-spacing: .02em;
    line-height: 1.5;
}
.keiko__form {
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--gold-1);
    margin-top: .35rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--line-soft);
}
.keiko__desc {
    margin-top: .85rem;
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: 1.9;
}
.keiko__list {
    margin-top: .8rem;
    display: grid;
    gap: .4rem;
}
.keiko__list li {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: 1.8;
    padding-left: .95em;
    position: relative;
}
.keiko__list li::before {
    content: "・";
    position: absolute;
    left: -.1em;
    color: var(--gold-3);
}
/* 第2回＝最重要の強調 */
.keiko--key {
    border-color: var(--gold-hair);
    box-shadow: var(--sh-md);
}
.keiko__markwrap {
    margin-top: .9rem;
}
.keiko__mark {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .04em;
    line-height: 2.1;
    /* inline + clone で、2行に折り返してもマーカーが各行に乗る */
    display: inline;
    padding: .1em .35em;
    background: linear-gradient(transparent 62%, rgba(245, 197, 24, .5) 62%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
/* 宿題カード */
.hw {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--gold-hair);
    border-radius: var(--radius);
    padding: clamp(1.1rem, .95rem + .8vw, 1.55rem);
    box-shadow: var(--sh-sm);
}
/* 上の回へ向かう矢印（PCのみ） */
.hw::before {
    content: "";
    position: absolute;
    top: calc(-1 * clamp(.8rem, .55rem + 1vw, 1.35rem) - 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid var(--gold-3);
}
.hw__no {
    display: inline-block;
    font-family: var(--font-en);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: #fff;
    background: var(--navy);
    padding: .45em .95em;
    border-radius: 2px;
}
.hw__ttl {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1rem, .93rem + .35vw, 1.16rem);
    color: var(--navy);
    margin-top: .65rem;
    letter-spacing: .06em;
}
.hw__note {
    margin-top: .4rem;
    font-size: .72rem;
    color: var(--gold-1);
    letter-spacing: .04em;
}
.hw__desc,
.hw__list {
    margin-top: .75rem;
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: 1.85;
}
.hw__list {
    display: grid;
    gap: .35rem;
}
.hw__list li {
    padding-left: .95em;
    position: relative;
}
.hw__list li::before {
    content: "・";
    position: absolute;
    left: -.1em;
    color: var(--gold-3);
}
.hw__etc {
    margin-top: .5rem;
    text-align: right;
    font-family: var(--font-en);
    font-size: .68rem;
    letter-spacing: .1em;
    color: var(--ink-soft);
}
/* 992px以下は宿題のずらし配置が崩れるため縦積みにする。
   （移植時に @media の囲いが外れて常時適用されていたのを修正・2026-08-07） */
@media (max-width: 992px) {
    /* PCの「宿題をずらして置く」レイアウトは崩れるので素直に縦積み。
       DOM順が 第1回→宿題①→第2回… なので読み順は正しいまま */
    .keiko__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .keiko__grid> :nth-child(n) {
        grid-area: auto;
    }
    .hw::before {
        display: none;
    }
    .hw {
        margin-left: clamp(0px, -1rem + 3vw, 1.75rem);
        border-left: 3px solid var(--gold-3);
    }
    .prep {
        flex-direction: column;
        gap: .7rem;
    }
}

@media (max-width: 992px) {
    .whyfree__grid {
        grid-template-columns: 1fr;
    }

    /* PCの「宿題をずらして置く」レイアウトは崩れるので素直に縦積み。
       DOM順が 第1回→宿題①→第2回… なので読み順は正しいまま */
    .keiko__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .keiko__grid> :nth-child(n) {
        grid-area: auto;
    }

    .hw::before {
        display: none;
    }

    .hw {
        margin-left: clamp(0px, -1rem + 3vw, 1.75rem);
        border-left: 3px solid var(--gold-3);
    }

    .usp__grid {
        grid-template-columns: 1fr;
    }

    .flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__warrior {
        width: 56%;
        opacity: .2;
        right: -14%;
    }
}
@media (max-width: 600px) {
    .prep {
        flex-direction: column;
        gap: .7rem;
    }

    .flow {
        grid-template-columns: 1fr;
    }

    .ba {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .ba__arrows {
        display: none;
    }

    .price {
        gap: .7rem;
    }

    .footer__in {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* 稽古の付帯価値。移植作業で誤って削除したため復元（2026-08-07） */
/*
  2026-08-12: 1つの紺帯に3項目を入れる形から、**1項目＝1つの紺ボックス**へ変更。
  スパルタン（他にも！）はボックスの外＝白背景の上に置き、影で浮かせる。
*/
.keiko__plus {
  margin-top: var(--sp-block);
  display: flex;
  align-items: stretch;
  gap: clamp(.7rem, .3rem + 1.2vw, 1.1rem);
}
/*
  元画像は白い正方形の中に円が描かれている。四隅の白を出さないため、
  border-radius:50% で円の外側を切り落として使う（元画像は加工しない）。
*/
.keiko__plus-fig {
  flex: 0 0 auto;
  width: clamp(88px, 6vw + 52px, 132px);
  height: auto;
  border-radius: 50%;
  align-self: center;
  position: relative;
  z-index: 2;
  /* 白地から浮かせる。単一の影ではなく多重の低濃度で柔らかく落とす */
  filter:
    drop-shadow(0 2px 4px rgba(20, 30, 45, .10))
    drop-shadow(0 10px 18px rgba(20, 30, 45, .16))
    drop-shadow(0 22px 40px rgba(20, 30, 45, .12));
}
.keiko__plus-list {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.7rem, .3rem + 1.2vw, 1.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
/* 1項目＝1ボックス */
.keiko__plus-list li {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(158deg, #22303d, var(--navy-deep));
  color: #eef2f6;
  border: 1px solid rgba(230, 198, 109, .28);
  border-radius: var(--radius);
  /* 左に寄って右が空くのが気になるため、アイコン＋文字のまとまりを箱の中央に置く */
  justify-content: center;
  gap: .6em;
  padding: clamp(1.1rem, .85rem + 1vw, 1.5rem) clamp(1.1rem, .85rem + 1vw, 1.5rem);
  /* 3枚並べたとき文字量の差でぶら下がって見えないよう、可読性を優先して太く・大きく */
  font-size: clamp(.86rem, .8rem + .26vw, 1rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .02em;
  box-shadow: 0 2px 5px rgba(20, 30, 45, .10), 0 14px 30px rgba(20, 30, 45, .12);
}
/*
  2026-08-12: ＋からチェックマークへ。字形の環境差を避けるため文字ではなくSVGを使う
  （料金カードのチェックと同じパス）。絶対配置にせずフレックスの子として並べ、
  本文と同じ軸に揃える。
*/
.keiko__plus-ck {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  color: var(--gold-2);
}
/* 2行になる項目は、行同士は左揃えのまま「かたまり」だけを中央に置く */
.keiko__plus-list li > span { text-align: left; }
@media (max-width: 900px) {
  /* 横並びの余裕が無くなるので、画像は1枚目の上端に半分かぶせて中央に置く */
  .keiko__plus { flex-direction: column; align-items: center; gap: 0; }
  .keiko__plus-fig {
    margin-bottom: clamp(-2.8rem, -2.2rem - 1.4vw, -2rem);
    align-self: center;
  }
  .keiko__plus-list { grid-template-columns: 1fr; gap: .7rem; width: 100%; }
  /* かぶせたぶん、1枚目だけ上に余白を足して文字と重ならないようにする */
  .keiko__plus-list li:first-child { padding-top: clamp(3.2rem, 2.4rem + 3vw, 4rem); }
}

/* ============================================================
   AI活用度診断（2026-08-17 実装 / 全6問・5段階判定＋レポートゲート）
   配色は既存トークンを流用（--navy / --gold-2 / --gold-line）。
   新しい色は足していない。
   ============================================================ */

/* --- 進捗（残り問数つき） --- */
.diag__meter { margin-bottom: 1.9rem; }
.diag__meter .diag__progress { margin-bottom: .6rem; }
.diag__count {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 0;
}
.diag__count .diag__step { margin-bottom: 0; }
.diag__remain {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: #9fabb7;
}

/* --- 選択肢：スマホでタップしやすい高さを確保 --- */
.diag__opt { min-height: 56px; width: 100%; cursor: pointer; }
.diag__opt.is-chosen { border-color: rgba(230,198,109,.75); background: rgba(230,198,109,.14); }
.diag__opt:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }

.diag__back {
  display: inline-block; margin-top: 1.4rem; padding: .5em .2em;
  background: none; border: 0; color: #9fabb7; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; cursor: pointer;
  transition: color .3s var(--ease);
}
.diag__back:hover { color: var(--gold-2); }
/* hidden属性はUAのdisplay:noneで効くが、上のdisplay:inline-blockが勝ってしまうため明示する */
.diag__back[hidden] { display: none; }

/* --- 結果 --- */
.diag__reslabel {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; color: #9fabb7; margin: 0 0 .5rem;
}
.diag__levelname {
  font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 600;
  letter-spacing: .06em; color: #fff; margin: .3rem 0 0;
}

/* --- 5段階インジケーター --- */
.diag__steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: .4rem; list-style: none; padding: 0;
  margin: 1.9rem auto 1.7rem; max-width: 420px;
  position: relative;
}
/* ステップを結ぶ横罫 */
.diag__steps::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: 15px; height: 2px;
  background: rgba(255,255,255,.14);
}
.diag__stepitem {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.diag__stepnum {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-en); font-size: .82rem; font-weight: 700;
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,.2); color: #8f9aa6;
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease);
}
.diag__steplabel {
  font-size: .64rem; font-weight: 700; letter-spacing: .02em; color: #8f9aa6; line-height: 1.3;
  transition: color .45s var(--ease);
}
/* 到達済み */
.diag__stepitem.is-done .diag__stepnum {
  border-color: rgba(230,198,109,.5); color: var(--gold-2);
}
/* 現在地。金は紺地なので明るい方（--gold-2）を使う */
.diag__stepitem.is-now .diag__stepnum {
  background: var(--gold-line); border-color: transparent; color: var(--navy-deep);
  box-shadow: 0 0 0 4px rgba(230,198,109,.16), 0 6px 16px rgba(0,0,0,.28);
  transform: scale(1.14);
}
.diag__stepitem.is-now .diag__steplabel { color: var(--gold-2); }

/* --- ゲート（詳細レポート）---------------------------------
   結果の続きに見えて素通りされていたため、面を独立させて
   「もらえるもの」が一目で分かる作りに変更（2026-08-17 指摘対応）。
   赤はCTA専用なので使わない。金は紺地なので明るい --gold-2 側。
   ----------------------------------------------------------- */
.diag__gate {
  position: relative;
  margin-top: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  padding: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem) clamp(1.3rem, 1rem + 1.6vw, 2.4rem) clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem);
  border: 1px solid rgba(230,198,109,.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(230,198,109,.09) 0%, rgba(230,198,109,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, 0 18px 44px rgba(0,0,0,.28);
  text-align: left;
}
/* 上辺の金の走り。ここが「別枠」の合図になる */
.diag__gate::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: -1px; height: 2px;
  background: var(--gold-line); border-radius: 2px;
}

.diag__gate-head { text-align: center; }

/* 金地には紺文字（白は禁止） */
.diag__gate-badge {
  display: inline-block; margin: 0 0 .9rem;
  padding: .3em 1.05em;
  background: var(--gold-line); color: var(--navy-deep);
  font-size: .68rem; font-weight: 800; letter-spacing: .18em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.26);
}
.diag__gate-title {
  font-family: var(--font-serif);
  font-size: clamp(1.24rem, 0.98rem + 1.15vw, 1.86rem);
  font-weight: 700; line-height: 1.5; letter-spacing: .04em;
  color: #fff; margin: 0 0 .9rem; text-wrap: balance;
}
.diag__gate-lead {
  font-size: var(--fs-sm); line-height: 1.95; color: #c7cfd7;
  margin: 0 auto clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); max-width: 34em;
}
.diag__gate-lead strong { color: #fff; font-weight: 700; }

/* --- 表紙＋箇条書きの2カラム --- */
.diag__gate-body {
  display: grid; grid-template-columns: 152px minmax(0, 1fr);
  gap: clamp(1.3rem, 1rem + 1.4vw, 2.2rem);
  align-items: start;
  margin-bottom: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem);
}

/* --- レポート表紙（画像を使わずCSSで描く。グレーの箱は置かない） --- */
.diag__cover {
  position: relative; display: flex; flex-direction: column;
  aspect-ratio: 1 / 1.414;                     /* A4比 */
  padding: 1.05rem .95rem 1rem;
  background: linear-gradient(158deg, #24303c 0%, #16202a 52%, #101922 100%);
  border: 1px solid rgba(230,198,109,.4);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,.3), 0 10px 22px rgba(0,0,0,.34), 0 22px 48px rgba(0,0,0,.3);
  transform: rotate(-2deg);
  overflow: hidden;
}
.diag__cover::before {   /* 背表紙側の陰 */
  content: ""; position: absolute; inset: 0 auto 0 0; width: 5px;
  background: linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,0));
}
.diag__cover::after {    /* 光の走り */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.diag__cover-eyebrow {
  font-family: var(--font-en); font-size: .5rem; font-weight: 700;
  letter-spacing: .2em; line-height: 1.6; color: var(--gold-2);
}
.diag__cover-lv {
  font-family: var(--font-display); font-size: 1.62rem; font-weight: 600;
  line-height: 1; color: #fff; margin-top: .75rem;
}
.diag__cover-lv b { color: var(--gold-2); font-weight: 600; }
.diag__cover-name {
  font-family: var(--font-serif); font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; color: #cfd6dd; margin-top: .28rem;
}
.diag__cover-lines { display: flex; flex-direction: column; gap: .34rem; margin-top: .95rem; }
.diag__cover-lines i { display: block; height: 2px; border-radius: 1px; background: rgba(255,255,255,.15); }
.diag__cover-lines i:nth-child(1) { width: 92%; }
.diag__cover-lines i:nth-child(2) { width: 74%; }
.diag__cover-lines i:nth-child(3) { width: 86%; }
.diag__cover-lines i:nth-child(4) { width: 58%; }
.diag__cover-lines i:nth-child(5) { width: 80%; }
.diag__cover-seal {
  margin-top: auto; padding-top: .7rem;
  border-top: 1px solid rgba(230,198,109,.3);
  font-size: .5rem; font-weight: 700; line-height: 1.55;
  letter-spacing: .05em; color: #97a2ad;
}

/* --- 3項目：番号つきカード --- */
.diag__gate-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .7rem;
}
.diag__gate-list li {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  align-items: center; gap: .95rem;
  padding: .95em 1.1em;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-left: 2px solid rgba(230,198,109,.6);
  border-radius: var(--radius-sm);
  min-height: 4.5em;   /* 1行の項目と2行の項目で段差が出るため下限を揃える */
}
.diag__gate-no {
  font-family: var(--font-en); font-size: .74rem; font-weight: 800;
  letter-spacing: .04em; color: var(--gold-2);
}
.diag__gate-txt {
  font-size: var(--fs-sm); line-height: 1.72; font-weight: 600; color: #e3e8ed;
}
.diag__gate-txt b { color: #fff; font-weight: 800; }
.diag__gate-txt b.js-gate-lv { color: var(--gold-2); }

@media (max-width: 560px) {
  .diag__gate-body { grid-template-columns: 108px minmax(0, 1fr); gap: 1rem; }
  .diag__cover { padding: .8rem .7rem .75rem; transform: rotate(-1.5deg); }
  .diag__cover-lv { font-size: 1.2rem; }
  .diag__cover-lines { margin-top: .7rem; gap: .26rem; }
  .diag__gate-list li { gap: .7rem; padding: .85em .95em; }
}
@media (max-width: 430px) {
  /* 横並びだと表紙が潰れるので縦積みにする。ただし消さない。
     表紙は「もらえるもの」を具体化する主役なので、スマホでこそ見せる */
  .diag__gate-body { grid-template-columns: 1fr; gap: 1.25rem; justify-items: center; }
  .diag__cover { width: 132px; transform: rotate(-2deg); }
  .diag__gate-list { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .diag__cover { transform: none; }
}

/* --- ゲートのフォーム（既存 .field を紺地向けに調整） --- */
.diag__form { display: flex; flex-direction: column; gap: 1.05rem; }
.diag__form label {
  display: flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: #d6dce2; margin-bottom: .45rem;
}
.diag__form input {
  width: 100%; min-height: 52px;
  padding: .85em 1em;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: #fff; font-family: var(--font-jp); font-size: .95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.diag__form input::placeholder { color: #7d8894; }
.diag__form input:focus {
  outline: none; border-color: rgba(230,198,109,.7); background: rgba(230,198,109,.07);
}
.diag__form .req {
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  color: var(--navy-deep); background: var(--gold-2);
  padding: .18em .5em; border-radius: 3px;
}
/* ハニーポットは見せない（display:none だと一部ボットに検知されるため送り出す） */
.diag__form .hp-wrap {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.diag__err {
  margin: 0; padding: .8em 1em;
  background: rgba(232,53,46,.12); border: 1px solid rgba(232,53,46,.45); border-radius: var(--radius-sm);
  color: #ffb9b6; font-size: .82rem; line-height: 1.7; font-weight: 600;
}
.diag__note {
  margin: .2rem 0 0; font-size: .72rem; line-height: 1.85; color: #9fabb7;
}
.diag__note a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }

/* --- サンクス --- */
.diag__thanks { display: none; text-align: center; }
.diag__thanks.is-active { display: block; animation: fade .6s var(--ease); }
.diag__thanks-icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  border-radius: 50%; display: grid; place-items: center;
  color: var(--navy-deep); background: var(--gold-line);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.diag__thanks-icon svg { width: 26px; height: 26px; }
.diag__thanks-title {
  font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 600;
  color: #fff; letter-spacing: .05em; margin: 0 0 .9rem;
}
.diag__thanks-text {
  font-size: var(--fs-sm); line-height: 1.95; color: #c2cad2; margin: 0 0 var(--sp-cta);
}
.diag__thanks .diag__cta { max-width: 460px; margin-inline: auto; }

@media (max-width: 480px) {
  .diag__steps { gap: .2rem; max-width: 100%; }
  .diag__stepnum { width: 28px; height: 28px; font-size: .74rem; }
  .diag__steps::before { top: 13px; left: 8%; right: 8%; }
  .diag__steplabel { font-size: .58rem; letter-spacing: 0; }
  .diag__count { flex-direction: row; }
}

/* レベル名が3〜5文字になったため、狭い端末では文字を落として隣と当たらないようにする
   （静観期／情報収集期／部分活用期／経営判断期／構造変革期・2026-08-17） */
@media (max-width: 360px) {
  .diag__steplabel { font-size: .52rem; }
  .diag__steps { gap: .12rem; }
}

@media (prefers-reduced-motion: reduce) {
  .diag__stepnum, .diag__steplabel, .diag__opt { transition: none; }
  .diag__stepitem.is-now .diag__stepnum { transform: none; }
}

/* ============================================================
   診断ボックスを白基調へ（2026-08-18 オーナー指摘対応）

   セクションの面は紺のまま、**カード内部だけ白**にする。
   地の明度が反転するので、文字・罫線・金の明度をすべて入れ替える。
   金は「紺地には明るい金(--gold-2)／白地には暗い金(--gold-1/3)」が原則。
   白地に --gold-2 を使うと沈んで読めなくなる。
   ============================================================ */

.diag__card {
  background: #ffffff;
  border-color: var(--line);
  box-shadow:
    0 1px 2px rgba(17, 26, 34, .05),
    0 8px 20px rgba(17, 26, 34, .10),
    0 26px 56px rgba(17, 26, 34, .14);
  backdrop-filter: none;
  color: var(--ink);
}

/* --- 導入文・進捗 --- */
.diag__card .diag__lead { color: var(--ink-soft); }
.diag__card .diag__lead strong { color: var(--ink); font-weight: 800; }
.diag__card .diag__progress { background: #ece8e0; }
.diag__card .diag__step { color: var(--gold-1); }       /* 白地なので暗い金 */
.diag__card .diag__remain { color: #8b93a3; }

/* --- 設問・選択肢 --- */
.diag__card .diag__q { color: var(--navy); }
.diag__card .diag__opt {
  background: #fcfbf8;
  border-color: var(--line);
  color: var(--ink);
}
.diag__card .diag__opt:hover {
  border-color: var(--gold-3);
  background: rgba(197, 160, 89, .10);
}
.diag__card .diag__opt.is-chosen {
  border-color: var(--gold-3);
  background: rgba(197, 160, 89, .16);
}
.diag__card .diag__back { color: #8b93a3; }
.diag__card .diag__back:hover { color: var(--gold-1); }

/* --- 結果 --- */
.diag__card .diag__reslabel { color: #8b93a3; }
.diag__card .diag__level { color: var(--gold-1); }
.diag__card .diag__levelname { color: var(--navy); }
.diag__card .diag__advice { color: var(--ink-soft); }

/* --- 5段階インジケーター --- */
.diag__card .diag__steps::before { background: #e3ded4; }
.diag__card .diag__stepnum {
  background: #f4f1ea;
  border-color: var(--line);
  color: #9aa1af;
}
.diag__card .diag__steplabel { color: #9aa1af; }
.diag__card .diag__stepitem.is-done .diag__stepnum {
  border-color: var(--gold-3);
  color: var(--gold-1);
  background: #fffdf8;
}
.diag__card .diag__stepitem.is-done .diag__steplabel { color: #8b93a3; }
/* 現在地は金地に紺文字（金地に白文字は禁止） */
.diag__card .diag__stepitem.is-now .diag__stepnum {
  background: var(--gold-line);
  border-color: transparent;
  color: var(--navy-deep);
  box-shadow: 0 0 0 4px rgba(163, 122, 45, .14), 0 6px 16px rgba(17, 26, 34, .18);
}
.diag__card .diag__stepitem.is-now .diag__steplabel { color: var(--gold-1); font-weight: 800; }

/* --- ゲート（詳細レポート） --- */
.diag__card .diag__gate {
  border-color: var(--gold-hair);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(163, 122, 45, .07) 0%, rgba(163, 122, 45, 0) 62%),
    linear-gradient(180deg, #fdfbf6, #f8f4ec);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 12px 30px rgba(17, 26, 34, .07);
}
/* 金地のバッジは紺文字のまま（変更不要） */
.diag__card .diag__gate-title { color: var(--navy); }
.diag__card .diag__gate-lead { color: var(--ink-soft); }
.diag__card .diag__gate-lead strong { color: var(--navy); }
.diag__card .diag__gate-list li {
  background: #ffffff;
  border-color: var(--line);
  border-left-color: var(--gold-3);
}
.diag__card .diag__gate-no { color: var(--gold-1); }
.diag__card .diag__gate-txt { color: var(--ink); }
.diag__card .diag__gate-txt b { color: var(--navy); }
.diag__card .diag__gate-txt b.js-gate-lv { color: var(--gold-1); }

/* レポート表紙は紺のまま。白地の上に置くと本物の冊子らしく見えるため変更しない */

/* --- フォーム --- */
.diag__card .diag__form label { color: var(--navy); }
.diag__card .diag__form input {
  background: #ffffff;
  border-color: #cfd6df;
  color: var(--ink);
}
.diag__card .diag__form input::placeholder { color: #a8b0bd; }
.diag__card .diag__form input:focus {
  border-color: var(--gold-3);
  background: #fffdf8;
}
.diag__card .diag__err {
  background: rgba(213, 26, 27, .07);
  border-color: rgba(213, 26, 27, .35);
  color: var(--hero-red-deep);
}
.diag__card .diag__note { color: #8b93a3; }
.diag__card .diag__note a { color: var(--gold-1); }

/* --- サンクス --- */
.diag__card .diag__thanks-icon { box-shadow: 0 6px 18px rgba(17, 26, 34, .18); }
.diag__card .diag__thanks-title { color: var(--navy); }
.diag__card .diag__thanks-text { color: var(--ink-soft); }
