/* ============================================================
   カンパイ（β） LP
   色はチラシ（深緑 × ゴールド × クリーム）に準拠。
   組み方は「明朝の大見出し ＋ 角丸の大きな面 ＋ 浮いたピル」に寄せてある。

   ■ このファイルの読み方
   1. トークン（:root）  … 色 / 書体 / 文字 / 余白 / 角丸 / 影。値の直書きはここ以外でしない
   2. ベース             … リセットと body
   3. 共通パーツ         … .wrap / .h2 / .kicker / .btn / .chip / .sec--dark
   4. セクション         … 上から順（追従ヘッダ → HERO → … → FOOTER）
   5. デスクトップ       … 末尾の 48em / 62em / 75em

   ■ ページ全体の色のリズム（深緑の面を3回だけ置く）
   ヘッダ+HERO[深緑スラブ] → 痛み[クリーム] → 会[生成] → できること[深緑スラブ] →
   トーク[クリーム] → 依頼[クリーム] → FAQ[生成] → エリア[深緑スラブ] → FOOTER[深緑]

   ■ 書体について
   チラシの書体は Zen Kaku Gothic New。ただし本物は載せない。フル字形は1ウェイトで
   1〜2MB級あり、字を削るサブセットにすると「サブセットに無い文字だけ別フォントで出る」
   壊れ方をするうえ、コピー修正のたびに再生成（＝ビルド）が要るため。
   代わりに --font の並びで各OSごとに近い書体を指名している。詳細は --font のコメント。
   ============================================================ */

:root {
  /* --- 色：深緑 --- */
  --green-900: #16241B;   /* フッター・端末のベゼル（最も深い） */
  --green-800: #22352A;   /* 深緑スラブ（theme-color と同値） */
  --green-700: #2C4232;   /* 深緑の面の上に乗せる面（トーク背景） */

  /* --- 色：ゴールド --- */
  --gold:      #B08430;   /* クリーム地の上の線・強調 */
  --gold-300:  #D9AD57;   /* 深緑地の上の文字 */
  --gold-050:  rgba(176,132,48,.13);  /* ごく薄い面 */

  /* --- 色：クリーム / 墨 --- */
  --cream:     #F6F2E7;   /* ページ地 */
  --cream-100: #FDFBF4;   /* 一段明るい帯 */
  --white:     #FFFFFF;
  --ink:       #1D2A21;
  --ink-600:   #4A5A4E;   /* 本文の補助 */
  --ink-400:   #7C8A80;   /* ラベル・キャプション */

  /* --- 色：境界線 --- */
  --line:        #DED8C7;
  --line-soft:   #EBE6D8;
  --line-dark:   rgba(246,242,231,.14);
  --line-dark-2: rgba(246,242,231,.26);

  /* --- 色：LINE（CTAだけに使う。面積を広げない） --- */
  --linegreen:      #06C755;
  --linegreen-dark: #05A648;

  /* --- 書体 --- */
  /* チラシの書体は Zen Kaku Gothic New（字面が大きく、低コントラストで、ふところの
     広いモダンなゴシック）。端末に内蔵されていないので Webフォントでは載せられない。
     代わりに、各OSでいちばん性格の近いものを順に並べて代替している。
       -apple-system   … 欧字のみ。San Francisco。和字は次のヒラギノに落ちる
       ヒラギノ角ゴ     … macOS / iOS。Zen Kaku にいちばん近い
       BIZ UDPゴシック  … Windows 10 1809+ に同梱。字面が大きく開いていて、
                          游ゴシック（字面が小さく線に強弱がある）より明らかに近い
       Noto Sans JP    … Android / ChromeOS / Linux。Source Han Sans 系で近い
       メイリオ / 游ゴシック … 上が無い古いWindows向けの保険
     近い順に並べてある。並べ替えるとチラシから離れるので触らないこと。 */
  --font: -apple-system, BlinkMacSystemFont,
          "Hiragino Sans", "Hiragino Kaku Gothic ProN",
          "BIZ UDPGothic",
          "Noto Sans JP",
          Meiryo, "Yu Gothic", YuGothic, sans-serif;
  /* 見出し用。いまは本文と同じスタック。将来ここだけ差し替えれば見出しの書体を
     分けられるが、Webフォントは足さない方針（下の「書体について」を参照）。 */
  --font-display: var(--font);

  /* --- 文字サイズ（9段） --- */
  --fs-1: .6875rem;  /* 11px 極小ラベル */
  --fs-2: .75rem;    /* 12px キャプション */
  --fs-3: .8125rem;  /* 13px 小 */
  --fs-4: .875rem;   /* 14px 本文小 */
  --fs-5: 1rem;      /* 16px 本文 */
  --fs-6: 1.125rem;  /* 18px リード */
  --fs-7: 1.375rem;  /* 22px 小見出し */
  --fs-8: 1.75rem;   /* 28px 見出し */
  --fs-9: clamp(2rem, 8.8vw, 3.5rem);  /* ヒーロー見出し */

  /* --- 字送り（3段だけ。増やさない） --- */
  --ls-tight: .01em;  /* 見出し */
  --ls-wide:  .06em;  /* 太字の小見出し・チップ */
  --ls-caps:  .18em;  /* トラッキングを効かせたラベル */

  /* --- 行送り（4段だけ） --- */
  --lh-tight: 1.35;   /* 大見出し */
  --lh-snug:  1.55;
  --lh-base:  1.75;
  --lh-loose: 1.9;

  /* --- 余白 --- */
  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --sec-y: 4rem;          /* セクションの上下 */
  --slab-inset: .75rem;   /* 深緑スラブを左右から浮かせる量 */

  /* --- 角丸 --- */
  --r-sm:   8px;
  --r:      14px;
  --r-xl:   32px;
  --r-full: 999px;

  /* --- 影 --- */
  --sh-pill:   0 2px 10px rgba(22,36,27,.14), 0 12px 28px -8px rgba(22,36,27,.22);
  --sh-device: 0 2px 8px rgba(29,42,33,.08), 0 32px 64px -16px rgba(29,42,33,.30);

  /* --- 版面 --- */
  --w: 34rem;
  --pad: 1.375rem;
}

/* ============================================================
   ベース
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: var(--lh-base);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  overflow-wrap: break-word;
  line-break: strict;
}

img, svg { max-width: 100%; }
ul, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
p  { margin: 0; }
a  { color: inherit; }

/* 日本語を文節で折り返す（対応ブラウザのみ。未対応でも従来どおり） */
.hero__title, .hero__lead, .h2, .sec__lead, .painclose,
.card__body, .qa__a, .fineprint, .areabox__note, .nf__title, .nf__lead {
  word-break: auto-phrase;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 50%;
  top: var(--s-2);
  transform: translateX(-50%);
  z-index: 100;
  background: var(--cream-100);
  color: var(--ink);
  padding: .6rem 1rem;
  border-radius: var(--r);
  font-size: var(--fs-4);
}

/* ============================================================
   共通パーツ
   ============================================================ */

.wrap {
  width: 100%;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sec { padding-block: var(--sec-y); }

/* --- 深緑スラブ：左右から浮かせた角丸の面 --- */
.sec--dark {
  background: var(--green-800);
  color: var(--cream);
  margin-inline: var(--slab-inset);
  border-radius: var(--r-xl);
}
/* 内側の .wrap は素のまま。版面が --w で頭打ちになる幅では、スラブを左右に
   inset しても .wrap の中央寄せが打ち消すので、明るいセクションと文字の左端が揃う。
   モバイル（頭打ちしない幅）だけ inset のぶん内側に入るが、これはカードとして正しい。 */
.sec--dark .h2 { color: var(--cream); }
.sec--dark .sec__lead { color: rgba(246,242,231,.78); }

/* --- 見出し（明朝）---
   ゴールドは線を散らさず、見出しの上の短い罫だけに寄せる。 */
.h2 {
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-size: var(--fs-8);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}
.h2::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-bottom: var(--s-4);
  background: var(--gold);
}

.sec__lead {
  margin-bottom: var(--s-6);
  font-size: var(--fs-4);
  line-height: var(--lh-loose);
  color: var(--ink-600);
}

.kicker {
  margin: 0 0 var(--s-4);
  font-size: var(--fs-2);
  font-weight: 500;
  letter-spacing: var(--ls-caps);
  color: var(--ink-400);
}
.kicker--onDark { color: var(--gold-300); }

/* --- チップ（対応する会 / 対応エリア で共通の語彙） --- */
.chip {
  padding: .5rem 1.0625rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--white);
  font-size: var(--fs-4);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-snug);
  white-space: nowrap;
}
.chip--onDark {
  background: rgba(246,242,231,.06);
  border-color: var(--line-dark-2);
  color: var(--cream);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 3.25rem;
  padding: .75rem 1.5rem;
  border: 0;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: var(--fs-5);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, border-color .18s ease;
}
.btn__icon { width: 1.375em; height: 1.375em; flex: none; }

/* LINE緑は発光させない（グローは安く見える）。面で置くだけ。 */
.btn--line {
  width: 100%;
  background: var(--linegreen);
  color: var(--white);
}
.btn--line:hover { background: var(--linegreen-dark); }
.btn--line:active { transform: translateY(1px); }

.btn--lg { min-height: 3.5rem; font-size: 1.0625rem; }

.btn--sm {
  min-height: 2.625rem;
  font-size: var(--fs-4);
  padding-inline: 1.125rem;
}

.btn--ghost {
  background: transparent;
  color: var(--ink-600);
  border: 1px solid var(--line);
  min-height: 2.75rem;
  font-size: var(--fs-4);
  font-weight: 500;
  padding-inline: 1.125rem;
}
.btn--ghost:hover { background: rgba(29,42,33,.035); border-color: var(--ink-400); }
.btn--ghost[data-done="1"] { color: var(--gold); border-color: var(--gold); }

.btn--gold {
  width: 100%;
  max-width: 20rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-dark-2);
}
.btn--gold:hover { background: var(--gold-050); border-color: var(--gold-300); }

/* ============================================================
   追従ヘッダ
   モバイルはヒーローと地続きの帯。デスクトップは浮いたピルにする。
   ============================================================ */

.topbar { background: var(--green-800); }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  max-width: var(--w);
  margin-inline: auto;
  padding: .875rem var(--pad);
}
.topbar__cta { display: none; }

.brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 var(--s-3);
  color: var(--gold-300);
  text-decoration: none;
}
.brand__mark { width: 1.75rem; height: 1.75rem; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps);
  color: var(--cream);
}
.brand__beta {
  font-family: var(--font);
  font-size: var(--fs-2);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--gold-300);
}
.brand__domain {
  font-size: var(--fs-1);
  letter-spacing: var(--ls-caps);
  color: var(--gold-300);
  padding-top: .1875rem;
}

/* ============================================================
   HERO
   中央寄せ。行動（CTA）を先に、無料の担保をあとに置く。
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
  color: var(--cream);
  padding-block: var(--s-7) var(--s-8);
  text-align: center;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
/* 上から差す金の光。画像を使わずに空気感を作る */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 78% at 50% -12%, rgba(217,173,87,.22), transparent 58%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.eyebrow {
  display: block;
  margin-bottom: var(--s-5);
  font-size: var(--fs-2);
  font-weight: 500;
  letter-spacing: var(--ls-caps);
  color: var(--gold-300);
}

.hero__title {
  margin: 0 0 var(--s-5);
  font-family: var(--font-display);
  font-size: var(--fs-9);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.hero__title span { display: block; }

.hero__lead {
  font-size: var(--fs-6);
  line-height: var(--lh-loose);
  color: rgba(246,242,231,.84);
  margin-bottom: var(--s-7);
}

.hero__note {
  margin-top: var(--s-3);
  font-size: var(--fs-2);
  color: rgba(246,242,231,.6);
}

/* 「無料」は囲み枠をやめ、担保を1粒のピルにする */
.offer__head {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  margin-top: var(--s-6);
  padding: .4375rem 1.125rem;
  border: 1px solid rgba(216,173,87,.45);
  border-radius: var(--r-full);
  background: var(--gold-050);
}
.offer__label {
  font-size: var(--fs-2);
  letter-spacing: var(--ls-wide);
  color: var(--gold-300);
}
.offer__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  color: var(--cream);
}
.offer__note {
  margin-top: var(--s-2);
  font-size: var(--fs-2);
  color: rgba(246,242,231,.6);
}

/* ============================================================
   当日になって、はじめて分かること
   ============================================================ */

.painlist { border-top: 1px solid var(--line); }
.painlist li {
  padding: 1.0625rem .125rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-4);
  line-height: var(--lh-snug);
}

.painclose {
  margin-top: var(--s-6);
  font-family: var(--font-display);
  font-size: var(--fs-5);
  font-weight: 700;
  line-height: var(--lh-base);
}
.painclose strong {
  display: inline-block;   /* 句の途中で改行させない */
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   対応する会
   ============================================================ */

.sec--scenes {
  padding-block: var(--s-6);
  background: var(--cream-100);
  border-block: 1px solid var(--line-soft);
}
.sec--scenes .kicker { margin-bottom: var(--s-3); }
.scenes { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* ============================================================
   カンパイでできること（深緑スラブ）
   ============================================================ */

.cards { display: grid; gap: var(--s-6); }

/* 箱にしない。金の罫＋見出し＋本文の3層だけで組む */
.card { padding-top: 1.125rem; border-top: 2px solid var(--gold-300); }
.card__title {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: var(--fs-7);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}
.card__body {
  font-size: var(--fs-4);
  line-height: var(--lh-loose);
  color: rgba(246,242,231,.8);
}

/* ============================================================
   実際に届くトーク
   ページ内で唯一「浮く」要素。端末のベゼルを付けて実機に見せる。
   ============================================================ */

.talk {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 6px solid var(--green-900);
  background: var(--green-700);
  box-shadow: var(--sh-device);
}
.talk__bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--green-800);
  padding: .625rem .875rem;
  font-size: var(--fs-3);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}
.talk__mark { width: 1.125rem; height: 1.125rem; flex: none; color: var(--gold-300); }
.talk__body {
  padding: var(--s-4) .875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.msg { display: flex; }
.msg--out { justify-content: flex-end; }
.msg--in  { justify-content: flex-start; }

.bubble {
  max-width: 84%;
  padding: .6875rem .875rem;
  border-radius: 16px;
  font-size: var(--fs-3);
  line-height: var(--lh-snug);
}
.msg--out .bubble {
  background: var(--linegreen);
  color: var(--white);
  border-bottom-right-radius: 5px;
}
.msg--in .bubble {
  background: var(--cream-100);
  color: var(--ink);
  border-bottom-left-radius: 5px;
}
.msg--in .bubble > p:not(:last-child) { margin-bottom: var(--s-2); }

.shops { display: flex; gap: var(--s-1); }
.shops li { flex: 1; min-width: 0; font-size: var(--fs-1); line-height: var(--lh-snug); }
.shop__thumb {
  display: block;
  aspect-ratio: 48 / 34;
  margin-bottom: .3125rem;
  border-radius: var(--r-sm);
  background: #F0EBDD;
  color: var(--ink-400);
  border: 1px solid var(--line);
}
.shop__thumb--pick {
  background: rgba(176,132,48,.1);
  border-color: var(--gold);
  color: var(--gold);
}
.shop__thumb svg { display: block; width: 100%; height: 100%; }
.shop__rank { display: block; font-weight: 700; letter-spacing: 0; }
.shop__note { display: block; color: var(--ink-400); }

.vids { display: flex; gap: var(--s-1); }
.vids li { flex: 1; min-width: 0; position: relative; }
.vid {
  display: grid;
  place-items: center;
  aspect-ratio: 48 / 34;
  border-radius: var(--r-sm);
  background: linear-gradient(160deg, #E4DECE, #D3CCB9);
  color: var(--green-800);
}
.vid svg { width: 52%; height: 52%; }
.vid__t {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0 3px;
  border-radius: 3px;
  background: rgba(22,36,27,.7);
  color: var(--white);
  font-size: .5rem;
  line-height: var(--lh-snug);
}

/* ============================================================
   依頼のしかた
   ============================================================ */

.spec { border-top: 1px solid var(--line); }
.spec__row {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  padding: .875rem .125rem;
  border-bottom: 1px solid var(--line);
}
.spec__row dd {
  flex: 1;
  font-size: var(--fs-5);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}
.spec__row dt {
  flex: none;
  font-size: var(--fs-2);
  letter-spacing: var(--ls-caps);
  color: var(--ink-400);
}

.fineprint {
  margin-top: 1.25rem;
  font-size: var(--fs-3);
  line-height: var(--lh-loose);
  color: var(--ink-600);
}

.copyline { margin-top: 1.25rem; }

.channels {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.channel__label {
  margin-bottom: var(--s-3);
  font-size: var(--fs-2);
  letter-spacing: var(--ls-caps);
  color: var(--ink-400);
}
.channel__sub {
  margin-top: var(--s-2);
  font-size: var(--fs-3);
  color: var(--ink-400);
}
.channel .btn--line { width: auto; }

.mail {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-6);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  color: var(--green-700);
  text-decoration: none;
  border-bottom: 2px solid rgba(176,132,48,.4);
  padding-bottom: 2px;
}
.mail:hover { border-color: var(--gold); }

/* ============================================================
   よくある質問
   ============================================================ */

.sec--faq { background: var(--cream-100); border-block: 1px solid var(--line-soft); }
.faq { display: grid; gap: var(--s-6); }
.qa { padding-top: var(--s-4); border-top: 1px solid var(--line); }
.qa__q {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: var(--fs-5);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
}
.qa__a {
  font-size: var(--fs-4);
  line-height: var(--lh-loose);
  color: var(--ink-600);
}

/* ============================================================
   対応エリア（深緑スラブ）
   ============================================================ */

.areas { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.areabox__note {
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-3);
  line-height: var(--lh-base);
  color: rgba(246,242,231,.72);
}

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  background: var(--green-900);
  color: var(--cream);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: var(--s-6);
  padding-block: var(--s-8) 2.5rem;
  text-align: center;
}
.foot__title {
  margin-bottom: var(--s-5);
  font-size: var(--fs-2);
  letter-spacing: var(--ls-caps);
  color: var(--gold-300);
}
.foot__mail { margin-top: 1.25rem; }
.foot__mail a {
  font-family: var(--font-display);
  font-size: var(--fs-6);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(216,173,87,.5);
}
.foot__mail a:hover { border-color: var(--gold-300); }

.foot__meta {
  margin-top: 2.5rem;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark);
}
.foot__brand {
  font-family: var(--font-display);
  font-size: var(--fs-6);
  font-weight: 700;
  letter-spacing: var(--ls-caps);
}
.foot__brand span {
  display: block;
  margin-top: var(--s-1);
  font-family: var(--font);
  font-size: var(--fs-1);
  font-weight: 400;
  letter-spacing: var(--ls-caps);
  color: var(--gold-300);
}
.foot__org { margin-top: var(--s-4); font-size: var(--fs-2); color: rgba(246,242,231,.58); }
.foot__org a { text-decoration: underline; text-underline-offset: 2px; }

.foot__legal { margin-top: var(--s-2); font-size: var(--fs-2); }
.foot__legal a {
  color: rgba(246,242,231,.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.foot__legal a:hover { color: var(--cream); }

/* ============================================================
   404
   ============================================================ */

.nf {
  min-height: 100svh;
  display: grid;
  align-content: center;
  background: var(--green-800);
  color: var(--cream);
  padding-block: var(--s-7);
}
.nf .brand { margin-bottom: var(--s-7); }
.nf__code {
  font-size: var(--fs-3);
  font-weight: 700;
  letter-spacing: var(--ls-caps);
  color: var(--gold-300);
  margin-bottom: var(--s-3);
}
.nf__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6.5vw, 2rem);
  font-weight: 700;
  line-height: var(--lh-tight);
}
.nf__lead {
  font-size: var(--fs-4);
  line-height: var(--lh-loose);
  color: rgba(246,242,231,.8);
  margin-bottom: var(--s-6);
}

/* ============================================================
   追従CTA（モバイル）
   ============================================================ */

.stickybar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  padding: .625rem var(--pad) calc(.625rem + env(safe-area-inset-bottom));
  background: rgba(22,36,27,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--line-dark);
}
.stickybar[hidden] { display: none; }
.stickybar .btn {
  max-width: var(--w);
  margin-inline: auto;
  min-height: 3rem;
  font-size: var(--fs-5);
}
.stickybar__free {
  font-size: var(--fs-1);
  font-weight: 500;
  opacity: .85;
  margin-left: var(--s-1);
}

@media (max-width: 47.99em) {
  body.has-sticky .foot { padding-bottom: 6rem; }
}

/* ============================================================
   タブレット / デスクトップ

   ブレークポイントは3段。
   48em(768) … 文字と余白を上げ、横に組めるものだけ2カラムにする
   62em(992) … 追従ヘッダを浮いたピルにし、「できること」を2カラムにする
                （768で組むと見出しの列が狭くなり、日本語が
                  「減点されな／い」のように1文字だけ残る）
   75em(1200)… 版面を広げる
   ============================================================ */

@media (min-width: 48em) {
  :root {
    --w: 64rem;
    --pad: 2.5rem;
    --sec-y: 6rem;
    --slab-inset: 1.5rem;
    --fs-6: 1.1875rem;
    --fs-7: 1.5rem;
    --fs-8: 2.125rem;
  }

  body { font-size: 17px; }

  /* --- HERO --- */
  .hero { padding-block: var(--s-8) 5.5rem; }
  .hero__copy { max-width: 44rem; margin-inline: auto; }
  .hero__lead { margin-bottom: var(--s-8); }
  .btn--lg { width: auto; min-width: 19rem; }

  /* --- 痛み --- */
  .painlist li { font-size: var(--fs-5); padding-block: 1.25rem; }
  .painclose { font-size: var(--fs-6); margin-top: var(--s-7); }

  /* --- 対応する会：ラベルとチップを横並びに --- */
  .sec--scenes { padding-block: var(--s-6); }
  .sec--scenes .wrap {
    display: flex;
    align-items: center;
    gap: var(--s-6);
    flex-wrap: wrap;
  }
  .sec--scenes .kicker { margin-bottom: 0; flex: none; }

  /* --- できること：2項目を横に並べる（見出しはまだ上） --- */
  .cards { grid-template-columns: 1fr 1fr; gap: var(--s-6); }

  /* --- トーク：左に見出し、右に端末。中央寄せの細い柱をやめる --- */
  .sec--talk .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    column-gap: var(--s-8);
    align-items: center;
  }
  .sec--talk .h2 {
    grid-column: 1;
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3rem);
  }
  .talk { grid-column: 2; }
  .bubble { font-size: var(--fs-4); }

  /* --- 依頼のしかた --- */
  .sec--how .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 17rem);
    column-gap: var(--s-8);
    align-items: start;
  }
  .sec--how .h2, .sec--how .sec__lead { grid-column: 1 / -1; }
  .how__main { grid-column: 1; }
  .channels {
    grid-column: 2;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    gap: var(--s-6);
  }

  /* --- FAQ --- */
  .faq { grid-template-columns: 1fr 1fr; gap: var(--s-6) var(--s-8); }

  /* --- エリア：見出しを左、チップを右に --- */
  .sec--area .wrap {
    display: grid;
    grid-template-columns: minmax(0, 10rem) minmax(0, 1fr);
    column-gap: var(--s-8);
    align-items: start;
  }
  .sec--area .kicker { margin-bottom: 0; }
  .areabox__note { grid-column: 2; }

  /* --- フッター --- */
  .foot { padding-block: 5rem var(--s-7); }
  .foot .btn--line { max-width: 20rem; margin-inline: auto; }

  .stickybar { display: none; }
}

@media (min-width: 62em) {
  /* --- 追従ヘッダを浮いたピルにする --- */
  .topbar {
    position: fixed;
    inset: var(--s-4) 0 auto;
    z-index: 60;
    padding-inline: var(--s-4);   /* 版面より画面が狭いときにピルが端で切れないように */
    background: transparent;
    pointer-events: none;
  }
  .topbar__inner {
    pointer-events: auto;
    padding: .5rem .5rem .5rem 1.25rem;
    border-radius: var(--r-full);
    background: rgba(22,36,27,.86);
    backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid var(--line-dark-2);
    box-shadow: var(--sh-pill);
  }
  .topbar__cta { display: inline-flex; width: auto; }

  .hero { padding-top: 8.5rem; }

  /* --- できること：見出しを左、2項目を右に流す --- */
  .sec--can .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    grid-template-rows: auto 1fr;   /* 1行目を見出しの高さに固定する */
    column-gap: var(--s-8);
    align-items: start;
  }
  .sec--can .h2 { grid-column: 1; grid-row: 1; margin-bottom: var(--s-4); }
  .sec--can .sec__lead { grid-column: 1; grid-row: 2; margin-bottom: 0; }
  .cards {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

@media (min-width: 75em) {
  :root { --w: 68rem; --sec-y: 7rem; --slab-inset: 2rem; --r-xl: 40px; }
  .sec--talk .wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 24rem); }
  .sec--area .wrap { grid-template-columns: minmax(0, 12rem) minmax(0, 1fr); }
}
