@charset "UTF-8";

/* ============================================
   Craftly（クラフトリー）自社HP - style.css
   ============================================ */

/* ---------- 変数 ---------- */
:root {
  /* 墨と生成り */
  --ink:        #16181c;
  --ink-2:      #333840;
  --ink-3:      #5b616c;   /* 本文補助。旧#7a808cは背景比4.0:1で不足していた */
  --ink-4:      #767c88;   /* 小ラベル。旧#a8adb6は2.6:1で判読不能だった */

  /* 真鍮 */
  --gold:       #8a6a2f;   /* 文字用。生成り背景で 5.9:1 を確保 */
  --gold-deco:  #a8863f;   /* 罫線・装飾など、文字以外に使う明るい真鍮 */
  --gold-lt:    #d0b271;   /* 深緑の上に置く明るい金 */
  --gold-pale:  #f2ede3;

  --bg:         #faf8f3;
  --bg-2:       #f1ede4;
  --paper:      #ffffff;

  /* 暗い「面」の色（深緑）。文字色の --ink とは分離してあるので、
     ここを差し替えるだけで配色テーマを切り替えられる。
     適用先：見積り・CTA帯・フッター・LPカード・料金表の見出し・主ボタン */
  --surface:    #123a2e;
  --surface-2:  #1e4a3b;   /* 深緑の明るい方。グラデーション用 */
  --accent-2:   #8c3a44;   /* 差し色：臙脂 */

  --line:       #e2dcce;
  --line-2:     #d2c9b6;
  --line-dark:  rgba(255,255,255,.14);

  --shadow-sm:  0 1px 2px rgba(22,24,28,.04);
  --shadow:     0 18px 50px -24px rgba(22,24,28,.22);
  --shadow-lg:  0 40px 90px -36px rgba(22,24,28,.34);

  --radius:     3px;
  --radius-lg:  4px;

  --container:  1180px;
  --header-h:   84px;

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --sans:  "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
           "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  /* 装飾用。オールドスタイル数字のため金額には使わない */
  --en:    "Cormorant Garamond", "Noto Serif JP", serif;
  /* 金額・数値用。高さの揃ったライニング数字で読み違いを防ぐ */
  --num:   "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;          /* 300は細すぎて読みにくかった */
  line-height: 1.95;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
  letter-spacing: .03em;     /* .055emは字間が空きすぎ語のまとまりが崩れていた */
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .4s var(--ease), opacity .4s var(--ease); }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.6; color: var(--ink); }
p { margin: 0 0 1.2em; }
strong, b { font-weight: 500; color: var(--ink); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; font-weight: 400; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--ink); color: var(--bg); }

/* ---------- レイアウト ---------- */
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 48px, 760px); }
.section { padding: 150px 0; position: relative; }

/* 見出し */
.eyebrow {
  font-family: var(--en);
  font-size: 15px; font-weight: 400; font-style: italic;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.eyebrow::after {
  content: ""; flex: 0 0 46px; height: 1px; background: var(--line-2);
}
.eyebrow--light { color: var(--gold-lt); }
.eyebrow--light::after { background: var(--line-dark); }

.h2 {
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.65;
  margin-bottom: 26px;
}
.lead {
  color: var(--ink-3); margin-bottom: 66px;
  font-size: 15px; letter-spacing: .04em;
}
.br-pc { display: inline; }

/* ---------- ローダー ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-soft), visibility .9s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark { text-align: center; }
.loader__name {
  display: block;
  font-family: var(--en); font-size: 34px; font-weight: 400;
  letter-spacing: .28em; text-indent: .28em; color: var(--ink);
  opacity: 0; animation: fadeUp 1.4s var(--ease) forwards;
}
.loader__rule {
  display: block; width: 130px; height: 1px; margin: 22px auto 0;
  background: var(--line-2); position: relative; overflow: hidden;
}
.loader__rule i {
  position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  animation: sweep 1.9s var(--ease) forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }
@keyframes sweep  { from { transform: scaleX(0) } to { transform: scaleX(1) } }

/* ---------- スクロール進捗 ---------- */
.progress { position: fixed; top: 0; left: 0; width: 100%; height: 1px; z-index: 1001; }
.progress span { display: block; height: 100%; width: 0; background: var(--gold); transition: width .15s linear; }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.header.is-scrolled {
  background: rgba(250,248,245,.9);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 8px 0;
}
.header__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto; height: 52px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo__text { display: flex; flex-direction: column; gap: 5px; }
.logo__text strong {
  font-family: var(--en); font-size: 26px; font-weight: 500;
  letter-spacing: .14em; color: var(--ink);
  white-space: nowrap; line-height: 1;
}
.logo__text small {
  font-family: var(--en); font-size: 9.5px; font-weight: 400;
  letter-spacing: .3em; color: var(--ink-4); text-transform: uppercase;
}
/* フッターは読み仮名を出すため和文フォント */
.logo--footer .logo__text small {
  font-family: var(--serif); font-size: 10.5px; letter-spacing: .26em;
}

.nav { display: flex; align-items: center; gap: 42px; }
.nav__list { display: flex; gap: 34px; }
.nav__link {
  font-size: 13.5px; font-weight: 400; letter-spacing: .06em;
  color: var(--ink-2); position: relative; padding: 8px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 1002; }
.burger span {
  position: absolute; left: 11px; width: 22px; height: 1px;
  background: var(--ink); transition: transform .5s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  letter-spacing: .08em;
  transition: background .5s var(--ease), color .5s var(--ease),
              border-color .5s var(--ease), transform .5s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
  border: 1px solid transparent;
}
.btn--lg { padding: 19px 46px; font-size: 13px; }
.btn--full { width: 100%; }

.btn--primary { background: var(--surface); color: var(--bg); }
.btn--primary:hover { background: var(--gold); color: #fff; }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-lt); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { background: var(--surface); color: var(--bg); border-color: var(--surface); }

.nav__cta { padding: 12px 26px; font-size: 12px; }

/* ---------- ヒーロー ---------- */
.hero { padding: calc(var(--header-h) + 72px) 0 0; position: relative; }
.hero::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 44%; height: 62%; background: var(--bg-2);
  z-index: -1;
}
.hero__inner {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: 70px; align-items: center;
  padding-bottom: 96px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 400; letter-spacing: .22em;
  color: var(--ink-3); margin-bottom: 40px;
}
.hero__badge i { display: block; width: 34px; height: 1px; background: var(--gold); }

.hero__title {
  font-family: var(--serif);
  /* 「はじめてのホームページを、」13文字が1行に収まる上限。超えると語中で折れる */
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 400; line-height: 1.7;
  letter-spacing: .03em; margin-bottom: 40px;
}
.hero__title .line { display: block; }
.hero__title .type { font-style: normal; color: var(--gold); }
.caret {
  display: inline-block; width: 1px; height: .9em;
  background: var(--gold); vertical-align: -.08em; margin-left: 4px;
  animation: blink 1.4s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0 } }

.hero__lead { color: var(--ink-3); font-size: 15.5px; margin-bottom: 46px; }

.hero__prices {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.chip { padding: 22px 30px 22px 0; margin-right: 30px; position: relative; }
.chip + .chip::before {
  content: ""; position: absolute; left: -30px; top: 24px; bottom: 24px;
  width: 1px; background: var(--line);
}
.chip small {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 7px;
}
.chip small b {
  font-size: 10px; font-weight: 400; letter-spacing: .12em;
  color: var(--gold); border: 1px solid var(--gold); padding: 1px 7px;
}
.chip strong {
  font-size: clamp(21px, 2.3vw, 28px); font-weight: 500;
  color: var(--ink); line-height: 1.15; display: block;
}
.chip strong span {
  font-family: var(--sans); font-size: 11px; color: var(--ink-3);
  margin-left: 5px; letter-spacing: .1em;
}
.chip--sub strong { color: var(--gold); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero__notes { display: flex; flex-wrap: wrap; gap: 26px; }
.hero__notes li {
  font-size: 11.5px; letter-spacing: .13em; color: var(--ink-4);
  display: flex; align-items: center; gap: 9px;
}
.hero__notes li::before { content: ""; width: 14px; height: 1px; background: var(--gold); }

/* ヒーロー ビジュアル：パソコン＋スマホ */
.hero__visual { position: relative; perspective: 1600px; }
.devices {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .8s var(--ease);
}
.hero__caption {
  font-family: var(--en); font-size: 11px; font-style: italic;
  letter-spacing: .34em; color: var(--ink-4);
  text-align: right; margin: 40px 0 0;
}

/* --- パソコン --- */
.pc { width: 88%; }
.pc__frame {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pc__bar {
  height: 32px; background: var(--bg-2); display: flex; align-items: center; gap: 6px;
  padding: 0 14px; border-bottom: 1px solid var(--line);
}
.pc__bar span { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.pc__bar i {
  margin-left: 12px; font-style: normal; font-size: 9px; color: var(--ink-4);
  background: var(--paper); padding: 3px 14px; font-family: var(--en);
  letter-spacing: .12em; border: 1px solid var(--line);
}
.pc__screen { padding: 18px; background: var(--paper); }
.pc__nav { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.pc__nav b { width: 32px; height: 7px; background: var(--ink); }
.pc__nav u { width: 20px; height: 3px; background: var(--line-2); }
.pc__nav s { width: 42px; height: 13px; background: var(--gold); margin-left: auto; }
.pc__hero {
  height: 104px; margin-bottom: 14px;
  background: linear-gradient(115deg, var(--surface) 0%, var(--surface-2) 55%, #4a4034 100%);
  position: relative; overflow: hidden;
}
.pc__hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,.14) 50%, transparent 68%);
  transform: translateX(-100%);
  animation: shine 5.5s var(--ease-soft) infinite;
}
@keyframes shine { 0% { transform: translateX(-100%) } 55%,100% { transform: translateX(100%) } }
.pc__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 15px; }
.pc__cards i { height: 40px; background: var(--bg-2); display: block; }
.pc__line { height: 4px; background: var(--bg-2); margin-bottom: 8px; }
.pc__line.l1 { width: 86%; }
.pc__line.l2 { width: 54%; }
.pc__neck { width: 56px; height: 15px; margin: 0 auto; background: var(--line-2); }
.pc__base {
  width: 150px; height: 5px; margin: 0 auto;
  background: var(--line-2);
  box-shadow: 0 14px 26px -12px rgba(22,24,28,.3);
}

/* --- スマートフォン --- */
.sp {
  position: absolute; right: -10px; bottom: -26px;
  width: 118px; padding: 9px 7px 15px;
  background: var(--surface); border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.sp__notch {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 4px; border-radius: 100px; background: rgba(255,255,255,.16); z-index: 2;
}
.sp__screen { background: var(--paper); border-radius: 6px; padding: 13px 9px 10px; overflow: hidden; }
.sp__bar { display: flex; align-items: center; gap: 5px; margin-bottom: 9px; }
.sp__bar b { width: 20px; height: 5px; background: var(--ink); }
.sp__bar u { width: 11px; height: 6px; background: var(--line-2); margin-left: auto; }
.sp__hero { height: 46px; background: linear-gradient(115deg, var(--surface), #4a4034); margin-bottom: 9px; }
.sp__line { height: 3px; background: var(--bg-2); margin-bottom: 5px; }
.sp__line.l1 { width: 88%; }
.sp__line.l2 { width: 56%; }
.sp__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin: 10px 0; }
.sp__cards i { height: 22px; background: var(--bg-2); display: block; }
.sp__btn { height: 13px; background: var(--gold); }
.sp__home {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2px; border-radius: 100px; background: rgba(255,255,255,.22);
}

/* マーキー */
.marquee {
  overflow: hidden; padding: 22px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee__track { display: flex; align-items: center; gap: 44px; width: max-content; animation: scrollx 48s linear infinite; }
.marquee__track span {
  font-family: var(--num); font-size: 13px; font-weight: 400;
  font-variant-numeric: lining-nums;
  letter-spacing: .18em; color: var(--ink-3); white-space: nowrap;
}
.marquee__track .sep { width: 30px; height: 1px; background: var(--line-2); display: block; }
@keyframes scrollx { to { transform: translateX(-50%) } }

/* ---------- 数字 ---------- */
.stats { padding: 96px 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--line);
}
.stat { padding: 12px 30px; border-right: 1px solid var(--line); text-align: center; }
.stat strong {
  font-family: var(--en); font-size: clamp(24px, 3.2vw, 40px); font-weight: 400;
  color: var(--ink); line-height: 1.2; display: block;
  letter-spacing: .01em; white-space: nowrap;
}
.stat strong small {
  font-family: var(--sans); font-size: 11px; color: var(--ink-4);
  margin-left: 4px; letter-spacing: .1em;
}
.stat p { margin: 10px 0 0; font-size: 12.5px; color: var(--ink-3); letter-spacing: .06em; }

/* ---------- 悩み ---------- */
.worry { background: var(--bg-2); }
.worry__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); margin-bottom: 74px; }
.worry__card {
  background: var(--bg-2); padding: 42px 40px;
  display: flex; gap: 26px; align-items: flex-start;
  transition: background .6s var(--ease);
}
.worry__card:hover { background: var(--paper); }
.worry__card span {
  font-family: var(--en); font-size: 28px; font-weight: 400;
  color: var(--gold); line-height: 1.2; flex-shrink: 0;
}
.worry__card p { margin: 0; font-size: 15px; color: var(--ink-2); }
.worry__catch {
  text-align: center; font-family: var(--serif);
  font-size: clamp(19px, 2.8vw, 28px); font-weight: 400;
  letter-spacing: .1em; color: var(--ink); margin: 0;
}
.worry__catch em { font-style: normal; color: var(--gold); }

/* ---------- 選ばれる理由 ---------- */
.reason__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.reason__card {
  background: var(--bg); padding: 54px 40px;
  transition: background .6s var(--ease);
  position: relative;
}
.reason__card:hover { background: var(--paper); }
.icon {
  width: 44px; height: 44px; color: var(--gold);
  margin-bottom: 30px;
}
.icon svg { width: 100%; height: 100%; }
.icon--lg { width: 50px; height: 50px; }
.reason__num {
  position: absolute; top: 48px; right: 40px;
  font-family: var(--en); font-size: 15px; font-style: italic;
  letter-spacing: .18em; color: var(--ink-4);
}
.reason__card h3 { font-size: 18px; letter-spacing: .09em; margin-bottom: 16px; }
.reason__card p { font-size: 14.5px; color: var(--ink-3); margin: 0; }

/* ---------- サービス ---------- */
.service { background: var(--bg-2); }
.service__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); align-items: stretch; }
.card {
  background: var(--paper); padding: 54px 40px 48px;
  position: relative; display: flex; flex-direction: column;
  transition: background .6s var(--ease);
}
.card__label {
  position: absolute; top: 0; left: 40px;
  font-family: var(--en); font-size: 11px; font-style: italic;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); background: var(--paper);
  padding: 0 12px; transform: translateY(-50%); margin-left: -12px;
}
.card__label--req {
  font-family: var(--sans); font-style: normal; font-size: 10px;
  letter-spacing: .18em; color: var(--ink); border: 1px solid var(--ink);
  padding: 3px 12px;
}
.card--featured { background: var(--surface); }
.card--featured h3, .card--featured .card__price { color: var(--bg); }
.card--featured .card__desc, .card--featured .card__list li { color: rgba(250,248,245,.62); }
.card--featured .icon { color: var(--gold-lt); }
.card--featured .card__label { background: var(--surface); color: var(--gold-lt); }
.card--featured .card__price small { color: rgba(250,248,245,.45); }
.card--featured .card__list li::before { background: var(--gold-lt); }
.card--featured .card__list { border-color: var(--line-dark); }
/* 濃色カード上では主ボタンが背景と同化するため真鍮色にする */
.card--featured .btn--primary { background: var(--gold); color: #fff; }
.card--featured .btn--primary:hover { background: var(--gold-lt); }

.card h3 { font-size: 20px; letter-spacing: .1em; margin-bottom: 20px; }
.card__price {
  font-family: var(--en); font-size: 15px; font-weight: 400;
  color: var(--ink); margin-bottom: 22px; letter-spacing: .06em;
}
.card__price span { font-size: clamp(34px, 4vw, 42px); letter-spacing: 0; }
.card__price small {
  font-family: var(--sans); display: block; font-size: 10.5px;
  color: var(--ink-4); letter-spacing: .14em; margin-top: 6px;
}
.card__desc { font-size: 14.5px; color: var(--ink-3); }
.card__list {
  display: grid; gap: 12px; margin: 26px 0 36px;
  border-top: 1px solid var(--line); padding-top: 26px;
}
.card__list li {
  font-size: 13.5px; color: var(--ink-3);
  padding-left: 24px; position: relative; line-height: 1.85; letter-spacing: .08em;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 12px; height: 1px; background: var(--gold);
}
.card__btn { margin-top: auto; }
.card--required .icon { color: var(--gold); }

/* ---------- 料金 ---------- */
.price__table {
  background: var(--paper); border: 1px solid var(--line);
  margin-bottom: 84px;
}
/* 表はカード化せず、入りきらない幅は横スクロールで逃がす */
.price__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price__scroll table { min-width: 660px; }
.price__table th {
  background: var(--surface); color: rgba(250,248,245,.95);
  font-family: var(--sans); font-size: 12.5px; font-weight: 400;
  padding: 20px 28px; text-align: left; letter-spacing: .12em;
}
.price__table td {
  padding: 30px 28px; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-3); vertical-align: middle;
}
.price__table tbody tr:last-child td { border-bottom: none; }
.price__table tbody tr { transition: background .5s var(--ease); }
.price__table tbody tr:hover { background: var(--bg); }
.price__table td strong { color: var(--ink); font-size: 15px; font-family: var(--serif); font-weight: 500; letter-spacing: .08em; }
.yen { font-family: var(--en); font-size: clamp(22px, 2.4vw, 27px); font-weight: 400; color: var(--ink); letter-spacing: .01em; }
.tag-req {
  display: inline-block; margin-left: 12px; vertical-align: 2px;
  font-size: 9.5px; font-weight: 400; letter-spacing: .16em;
  color: var(--gold); border: 1px solid var(--gold); padding: 2px 9px;
}
.price__table td small { display: block; margin-top: 8px; font-size: 11.5px; color: var(--ink-4); }
.price__note {
  padding: 22px 28px; margin: 0; font-size: 12.5px; color: var(--ink-3);
  background: var(--bg); border-top: 1px solid var(--line); line-height: 2.1;
}

/* シミュレーター */
.sim { background: var(--surface); padding: 78px 70px; color: rgba(250,248,245,.8); position: relative; }
.sim__head { margin-bottom: 52px; }
.sim__head h3 {
  font-size: clamp(22px, 3vw, 30px); color: var(--bg);
  letter-spacing: .1em; margin-bottom: 12px;
}
.sim__sub { color: rgba(250,248,245,.7); font-size: 14.5px; margin: 0; }
.sim__body { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; }

.sim__group { margin-bottom: 44px; }
.sim__group:last-child { margin-bottom: 0; }
.sim__label {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 400; margin-bottom: 20px;
  color: rgba(250,248,245,.9); letter-spacing: .16em;
}
.sim__label i {
  font-family: var(--en); font-style: italic; font-size: 13px;
  color: var(--gold-lt); letter-spacing: .1em;
}

.segment { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.segment__btn {
  background: transparent; padding: 22px 18px; color: rgba(250,248,245,.6);
  font-size: 13px; font-weight: 300; text-align: center; letter-spacing: .1em;
  transition: background .5s var(--ease), color .5s var(--ease);
}
.segment__btn em {
  display: block; font-style: normal; font-family: var(--en);
  font-size: 15px; opacity: .6; margin-top: 8px; letter-spacing: .06em;
}
.segment__btn:hover { background: rgba(255,255,255,.04); color: rgba(250,248,245,.85); }
.segment__btn.is-active { background: var(--gold); color: #fff; }
.segment__btn.is-active em { opacity: .85; }

.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.opt {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: 18px 18px; background: transparent;
  transition: background .5s var(--ease);
}
.opt:hover { background: rgba(255,255,255,.04); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__box {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid rgba(250,248,245,.35); position: relative;
  transition: all .4s var(--ease);
}
.opt__box::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 4px; height: 9px; border: solid #fff; border-width: 0 1px 1px 0;
  transform: rotate(45deg) scale(0); transition: transform .4s var(--ease);
}
.opt input:checked ~ .opt__box { background: var(--gold); border-color: var(--gold); }
.opt input:checked ~ .opt__box::after { transform: rotate(45deg) scale(1); }
.opt input:focus-visible ~ .opt__box { outline: 1px solid var(--gold-lt); outline-offset: 3px; }
.opt__text { font-size: 13px; font-weight: 400; color: rgba(250,248,245,.95); letter-spacing: .03em; }
.opt__text em {
  display: block; font-style: normal; font-family: var(--en);
  font-size: 13px; opacity: .5; margin-top: 3px; letter-spacing: .06em;
}

/* 必須項目（外せない） */
.fixed-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px; border: 1px solid var(--gold);
  background: rgba(156,131,85,.1);
}
.fixed-item__check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
}
.fixed-item__check svg { width: 11px; height: 11px; }
.fixed-item__text { font-size: 13px; font-weight: 400; color: var(--bg); flex: 1; letter-spacing: .03em; }
.fixed-item__text em {
  display: block; font-style: normal; font-family: var(--en);
  font-size: 13px; opacity: .6; margin-top: 3px; letter-spacing: .06em;
}
.fixed-item__badge {
  font-size: 9.5px; font-weight: 400; letter-spacing: .16em;
  color: var(--gold-lt); border: 1px solid var(--gold-lt); padding: 3px 10px;
  flex-shrink: 0;
}
.sim__note { font-size: 11px; color: rgba(250,248,245,.4); margin: 14px 0 0; line-height: 1.9; }

.sim__result { border: 1px solid var(--line-dark); padding: 40px 34px; align-self: start; }
.sim__resultLabel { font-size: 10.5px; color: rgba(250,248,245,.45); margin-bottom: 14px; letter-spacing: .2em; }
.sim__total {
  font-family: var(--en); font-size: clamp(38px, 5vw, 50px); font-weight: 400; line-height: 1.05;
  margin: 0 0 8px; color: var(--bg); letter-spacing: .01em;
}
.sim__total small { font-family: var(--sans); font-size: 14px; font-weight: 300; margin-left: 6px; letter-spacing: .1em; }
.sim__monthly { font-size: 12px; color: var(--gold-lt); margin-bottom: 26px; letter-spacing: .1em; min-height: 1.4em; }
.sim__breakdown { border-top: 1px solid var(--line-dark); padding-top: 22px; margin-bottom: 30px; display: grid; gap: 12px; }
.sim__breakdown li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 12.5px; color: rgba(250,248,245,.78); letter-spacing: .03em;
}
.sim__breakdown li span:last-child { font-family: var(--en); font-size: 14px; white-space: nowrap; }
.sim__hint { font-size: 10.5px; color: rgba(250,248,245,.35); margin: 16px 0 0; text-align: center; letter-spacing: .1em; }

/* ---------- 制作の流れ ---------- */
.flow { background: var(--bg-2); }
.steps { position: relative; display: grid; }
.step { display: flex; gap: 44px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--line); }
.step:first-child { border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--en); font-size: clamp(24px, 2.8vw, 30px); font-weight: 400; font-style: italic;
  color: var(--gold); flex-shrink: 0; width: 62px; line-height: 1.5;
  letter-spacing: .1em;
}
.step__body { flex: 1; }
.step__body h3 { font-size: 17px; letter-spacing: .11em; margin-bottom: 12px; }
.step__body p { font-size: 14.5px; color: var(--ink-3); margin: 0; }
.step__time {
  display: inline-block; margin-top: 16px; font-family: var(--en);
  font-size: 13px; font-style: italic; color: var(--ink-4); letter-spacing: .14em;
}

/* ---------- FAQ ---------- */
.accordion { border-top: 1px solid var(--line); }
.ac { border-bottom: 1px solid var(--line); }
.ac__q {
  width: 100%; text-align: left; padding: 32px 56px 32px 0;
  font-family: var(--serif); font-size: 15.5px; font-weight: 400;
  color: var(--ink); position: relative; line-height: 1.8; letter-spacing: .08em;
  transition: color .5s var(--ease);
}
.ac__q:hover { color: var(--gold); }
.ac__q i { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; }
.ac__q i::before, .ac__q i::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--gold);
  transform: translate(-50%,-50%); transition: transform .5s var(--ease);
}
.ac__q i::before { width: 14px; height: 1px; }
.ac__q i::after { width: 1px; height: 14px; }
.ac.is-open .ac__q i::after { transform: translate(-50%,-50%) rotate(90deg); }
.ac__a { max-height: 0; overflow: hidden; transition: max-height .7s var(--ease); }
.ac__a p { padding: 0 40px 36px 0; margin: 0; font-size: 14.5px; color: var(--ink-3); }
.ac__a strong { color: var(--ink); }

/* ---------- CTA ---------- */
.cta { background: var(--surface); color: rgba(250,248,245,.7); padding: 130px 0; }
.cta__inner { text-align: center; }
.cta .eyebrow { justify-content: center; }
.cta .eyebrow::before { content: ""; flex: 0 0 46px; height: 1px; background: var(--line-dark); }
.cta h2 {
  font-size: clamp(23px, 3.6vw, 38px); color: var(--bg);
  letter-spacing: .1em; margin-bottom: 22px;
}
.cta p { color: rgba(250,248,245,.72); margin-bottom: 46px; font-size: 14.5px; }

/* ---------- お電話 ---------- */
.direct {
  border: 1px solid var(--line); background: var(--paper);
  padding: 40px 30px; text-align: center; margin-bottom: 26px;
}
.direct__label {
  font-size: 12.5px; letter-spacing: .12em; color: var(--ink-3); margin-bottom: 16px;
}
.direct__tel {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--en); font-size: clamp(32px, 4.6vw, 44px); font-weight: 400;
  letter-spacing: .08em; color: var(--ink); line-height: 1.25;
  transition: color .5s var(--ease);
}
.direct__tel:hover { color: var(--gold); }
/* アイコンは数字の引き立て役。小さく固定する（HTML側にも寸法を持たせてある） */
.direct__icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.direct__icon svg { width: 16px; height: 16px; display: block; }
.direct__note { font-size: 12.5px; color: var(--ink-3); margin: 16px 0 0; letter-spacing: .03em; }
.direct__label--mail {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
}
.direct__mail {
  font-family: var(--sans); font-size: clamp(15px, 2.2vw, 19px); font-weight: 500;
  color: var(--ink); letter-spacing: .02em;
  border-bottom: 1px solid var(--line-2); padding-bottom: 3px;
  transition: color .5s var(--ease), border-color .5s var(--ease);
  display: inline-block;
}
.direct__mail:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- フォーム ---------- */
.form { background: var(--paper); border: 1px solid var(--line); padding: 56px 54px; }
.field { margin-bottom: 32px; }
.field label {
  display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 12px;
  color: var(--ink); letter-spacing: .06em;
}
.req, .opt-tag {
  font-size: 9.5px; padding: 2px 9px; margin-left: 10px;
  vertical-align: 1px; font-weight: 400; letter-spacing: .14em;
}
.req { color: var(--gold); border: 1px solid var(--gold); }
.opt-tag { color: var(--ink-4); border: 1px solid var(--line-2); }

.field input, .field textarea, .field select {
  width: 100%; padding: 16px 18px;
  border: 1px solid var(--line); background: var(--bg);
  color: var(--ink); border-radius: var(--radius);
  transition: border-color .4s var(--ease), background .4s var(--ease);
  line-height: 1.8; letter-spacing: .05em;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field textarea { resize: vertical; min-height: 150px; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%237a808c' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
}
.field.has-error input, .field.has-error textarea { border-color: #a4544f; }
.error { font-size: 11.5px; color: #a4544f; margin: 8px 0 0; letter-spacing: .08em; }
.counter { text-align: right; font-family: var(--en); font-size: 12px; color: var(--ink-4); margin: 8px 0 0; }

.agree { display: flex; align-items: center; gap: 14px; cursor: pointer; margin-bottom: 6px; font-size: 12.5px; }
.agree input { position: absolute; opacity: 0; width: 0; height: 0; }
.agree .opt__box { border-color: var(--line-2); }
.agree input:checked ~ .opt__box { background: var(--gold); border-color: var(--gold); }

#submitBtn { margin-top: 34px; }
.btn__spinner {
  width: 14px; height: 14px; border-radius: 50%; display: none;
  border: 1px solid rgba(255,255,255,.3); border-top-color: #fff;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }
.btn.is-loading .btn__spinner { display: block; }
.btn.is-loading { pointer-events: none; opacity: .75; }
.form__note { font-size: 11px; color: var(--ink-4); text-align: center; margin: 22px 0 0; letter-spacing: .1em; }

.thanks {
  background: var(--paper); border: 1px solid var(--line);
  padding: 84px 54px; text-align: center;
  animation: fadeUp .9s var(--ease);
}
.thanks__icon { width: 56px; height: 56px; margin: 0 auto 30px; color: var(--gold); }
.thanks h3 { font-size: 21px; letter-spacing: .1em; margin-bottom: 18px; }
.thanks p { color: var(--ink-3); font-size: 14.5px; margin-bottom: 36px; }

/* ---------- フッター ---------- */
.footer { background: var(--surface); color: rgba(250,248,245,.72); padding: 96px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; padding-bottom: 72px; }
.logo--footer .logo__text strong { color: var(--bg); }
.logo--footer .logo__text small { color: rgba(250,248,245,.35); }
.footer__brand p { margin-top: 28px; font-size: 13.5px; max-width: 400px; line-height: 2.1; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer__nav h4 {
  font-family: var(--en); font-size: 12px; font-style: italic;
  color: var(--gold-lt); margin-bottom: 22px; letter-spacing: .28em; text-transform: uppercase;
}
.footer__nav ul { display: grid; gap: 14px; }
.footer__nav li { font-size: 13.5px; letter-spacing: .03em; }
.footer__nav a:hover { color: var(--gold-lt); }
.footer__nav-h2 { margin-top: 34px; }
.footer__tel {
  font-family: var(--en); font-size: 17px; letter-spacing: .12em;
  color: var(--bg);
}
.copyright {
  border-top: 1px solid var(--line-dark); margin: 0;
  padding: 30px 0; text-align: center;
  font-family: var(--en); font-size: 12px; color: rgba(250,248,245,.35); letter-spacing: .18em;
}

/* ---------- 規約ページ ---------- */
.legal { padding-top: calc(var(--header-h) + 70px); }
.legal__body { margin-top: 10px; }
.legal__body h2 {
  font-size: 17px; letter-spacing: .08em; margin: 52px 0 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { font-size: 14.5px; color: var(--ink-2); }
.legal__body ul { margin: 0 0 1.4em; display: grid; gap: 9px; }
.legal__body li {
  font-size: 14.5px; color: var(--ink-2);
  padding-left: 24px; position: relative;
}
.legal__body li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 12px; height: 1px; background: var(--gold-deco);
}
.legal__contact {
  border: 1px solid var(--line); background: var(--paper);
  padding: 28px 30px; margin-top: 6px;
}
.legal__contact p { margin: 0 0 8px; font-size: 14.5px; }
.legal__contact p:last-child { margin-bottom: 0; }
.legal__contact a { color: var(--gold); }
.legal__todo { font-size: 12.5px; color: var(--ink-4); margin-top: 14px !important; }
.legal__date { margin-top: 44px; font-size: 12.5px; color: var(--ink-4); }
.legal__back { margin-top: 56px; }

/* ---------- 固定CTA / トップへ ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250,248,245,.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .6s var(--ease);
  display: none;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__inner { display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.sticky-cta__tel {
  padding: 15px 20px; gap: 8px; background: var(--paper);
}
.sticky-cta__tel svg { width: 15px; height: 15px; }

.totop {
  position: fixed; right: 28px; bottom: 28px; z-index: 900;
  width: 46px; height: 46px; border: 1px solid var(--line-2);
  background: var(--bg); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .5s var(--ease);
}
.totop svg { width: 15px; height: 15px; }
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--surface); color: var(--bg); border-color: var(--surface); }

/* ---------- スクロール表示 ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================
   レスポンシブ
   ============================================ */
/* --------------------------------------------
   1) 小型ノート・タブレット横（〜1080px）
   3列組みは維持し、ヒーローだけ縦積みにする
-------------------------------------------- */
@media (max-width: 1080px) {
  .section { padding: 120px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 68px; }
  .hero::before { width: 100%; height: 40%; }
  .hero__visual { max-width: 500px; margin-inline: auto; width: 100%; }
  .hero__caption { text-align: center; }
  .hero__title { font-size: clamp(23px, 4.6vw, 42px); }
  .sim { padding: 56px 44px; }
  .sim__body { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .reason__card, .card { padding: 46px 32px; }
  .reason__num { top: 44px; right: 32px; }
  .card__label { left: 32px; }
}

/* --------------------------------------------
   2) タブレット縦（〜900px）
   3列は1枚あたりが狭くなりすぎるため1列へ折り返す
-------------------------------------------- */
@media (max-width: 900px) {
  .reason__grid { grid-template-columns: 1fr; }
  .service__grid { grid-template-columns: 1fr; }
  .reason__card, .card { max-width: 660px; margin-inline: auto; width: 100%; padding: 46px 40px; }
  .card__list { margin-bottom: 32px; }
  .reason__num { top: 46px; right: 40px; }
  .card__label { left: 40px; }
  .price__table td, .price__table th { padding-inline: 24px; }
}

/* --------------------------------------------
   3) タブレット縦〜スマホ横（〜860px）
   ここからナビをメニュー化する
-------------------------------------------- */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0; z-index: 1001;
    background: var(--bg);
    flex-direction: column; justify-content: center; gap: 48px;
    opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility .6s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: center; gap: 30px; }
  .nav__link { font-family: var(--serif); font-size: 17px; color: var(--ink); letter-spacing: .18em; }
  .burger { display: block; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .totop { bottom: 92px; right: 18px; }
}

/* --------------------------------------------
   4) 大きめのスマホ・タブレット縦（〜700px）
-------------------------------------------- */
@media (max-width: 700px) {
  body { font-size: 15px; line-height: 1.95; }
  .section { padding: 92px 0; }
  .container, .container--narrow { width: min(100% - 32px, var(--container)); }
  .br-pc { display: none; }
  .lead { margin-bottom: 44px; }
  .eyebrow { font-size: 13px; letter-spacing: .24em; gap: 12px; }
  .eyebrow::after { flex-basis: 32px; }

  /* ヒーロー */
  .hero { padding-top: calc(var(--header-h) + 28px); }
  .hero__inner { padding-bottom: 64px; gap: 54px; }
  .hero__badge { margin-bottom: 28px; }
  .hero__title { margin-bottom: 30px; }
  .hero__lead { margin-bottom: 34px; }
  .hero__prices { margin-bottom: 34px; }
  .chip { padding: 18px 16px 18px 0; margin-right: 16px; }
  .chip + .chip::before { left: -16px; top: 20px; bottom: 20px; }
  .chip small { font-size: 9.5px; letter-spacing: .1em; gap: 6px; }
  .chip small b { font-size: 10px; padding: 1px 6px; }
  .chip strong span { font-size: 9.5px; margin-left: 3px; }
  .hero__actions { gap: 10px; margin-bottom: 30px; }
  .hero__actions .btn { flex: 1; padding: 17px 12px; }
  .hero__notes { gap: 8px 18px; }

  /* パソコン＋スマホのモック */
  .pc { width: 84%; }
  .pc__hero { height: 78px; }
  .pc__cards i { height: 32px; }
  .sp { width: 96px; right: 0; bottom: -14px; }
  .sp__hero { height: 38px; }
  .sp__cards i { height: 18px; }
  .hero__caption { margin-top: 34px; }

  /* 数字 */
  .stats { padding: 68px 0; }
  .stat { padding: 14px 12px; }
  .stat strong small { font-size: 9.5px; margin-left: 3px; }
  .stat p { font-size: 10px; letter-spacing: .08em; margin-top: 8px; }

  /* カード類 */
  .worry__grid { grid-template-columns: 1fr; margin-bottom: 52px; }
  .worry__card { padding: 32px 26px; gap: 20px; }
  .reason__card, .card { padding: 44px 28px; }
  .reason__num { top: 40px; right: 28px; }
  .card__label { left: 28px; }

  /* シミュレーター */
  .sim { padding: 46px 24px; }
  .sim__result { padding: 32px 24px; }
  .sim__group { margin-bottom: 34px; }
  .segment__btn { padding: 18px 10px; font-size: 12px; letter-spacing: .06em; }
  .segment__btn em { font-size: 13px; margin-top: 6px; }
  .opt { padding: 15px 13px; gap: 11px; }
  .opt__text { font-size: 11.5px; letter-spacing: .04em; }
  .fixed-item { padding: 17px 15px; gap: 11px; }
  .fixed-item__text { font-size: 12px; }

  .form, .thanks { padding: 38px 24px; }
  .thanks { padding: 58px 24px; }
  .direct { padding: 34px 24px; }

  /* 制作の流れ：番号と本文の横並びを維持 */
  .step { gap: 22px; padding: 32px 0; }
  .step__num { width: 44px; }

  .ac__q { padding: 26px 40px 26px 0; font-size: 14.5px; }
  .ac__a p { padding-right: 0; }
  .cta { padding: 92px 0; }
  .footer { padding-top: 72px; }
  .footer__nav { gap: 26px; }
  .footer__nav h4 { letter-spacing: .18em; margin-bottom: 18px; }
  .footer__nav li { font-size: 12px; }
  .footer__tel { font-size: 16px; }

  /* 料金表：カード化せず、表のまま横スクロール */
  .price__table td { padding: 22px 20px; }
  .price__table th { padding: 16px 20px; }
  .price__note { padding: 20px 20px; }
}

/* --------------------------------------------
   5) スマホ（〜560px）
   小さくし続けると読めなくなる箇所だけ段を折り返す。
   配色・書体・罫線の扱いはPCと共通のまま。
-------------------------------------------- */
@media (max-width: 560px) {
  .section { padding: 76px 0; }

  /* 数字：PCと同じ横4列を維持 */
  .stat { padding: 12px 6px; }
  .stat strong small { font-size: 8.5px; margin-left: 2px; }
  .stat p { font-size: 9px; letter-spacing: .02em; margin-top: 6px; }

  /* 料金チップ：PCと同じ横3列・縦罫線区切りを維持 */
  .chip { padding: 14px 10px 14px 0; margin-right: 10px; flex: 1; }
  .chip + .chip::before { left: -10px; top: 16px; bottom: 16px; }
  .chip small { font-size: 8.5px; letter-spacing: .06em; gap: 4px; }
  .chip small b { font-size: 8px; padding: 0 4px; }
  .chip strong span { font-size: 8.5px; margin-left: 2px; }

  /* シミュレーター：PCと同じ2列を維持 */
  .segment__btn { padding: 14px 6px; font-size: 11px; letter-spacing: .02em; }
  .segment__btn em { font-size: 11px; margin-top: 5px; }
  .opt { padding: 12px 8px; gap: 8px; }
  .opt__text { font-size: 10px; letter-spacing: 0; }
  .opt__text em { font-size: 10px; }
  .fixed-item { padding: 14px 12px; gap: 9px; }
  .fixed-item__text { font-size: 11px; }
  .fixed-item__badge { font-size: 9px; padding: 2px 7px; }

  /* ボタン：PCと同じ横並びを維持 */
  .hero__actions .btn { flex: 1; padding: 16px 10px; font-size: 12px; letter-spacing: .1em; }

  .worry__card { padding: 28px 22px; gap: 16px; }
  .reason__card, .card { padding: 40px 24px; }
  .reason__num { top: 36px; right: 24px; }
  .card__label { left: 24px; }
  .form, .thanks { padding: 32px 20px; }
  .sim { padding: 40px 20px; }
  .footer__nav { grid-template-columns: 1fr; gap: 32px; }
  .step { gap: 18px; }
  .step__num { width: 38px; }
}

/* ---------- アクセシビリティ ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .loader__name { opacity: 1; }
}
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

/* ============================================
   金額・数値の可読性
   Cormorant Garamond はオールドスタイル数字（0がoに、1がIに見える）のため
   金額には使わない。高さの揃った明朝のライニング数字に統一する。
   ファイル末尾に置き、前方の font-family 指定より優先させる。
   ============================================ */
.chip strong, .stat strong, .yen, .sim__total,
.card__price, .card__price span,
.direct__tel, .footer__tel, .counter,
.sim__breakdown li span:last-child,
.segment__btn em, .opt__text em, .fixed-item__text em {
  font-family: var(--num);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-weight: 500;
  letter-spacing: .01em;
}
.chip strong span, .card__price small, .stat strong small,
.sim__total small { font-family: var(--sans); font-weight: 400; }
