/* ==========================================================
   Yorozu LLC — style.css  v2 「先鋭エディトリアル」
   ----------------------------------------------------------
   ・大型明朝ディスプレイ＋金箔グラデーション（background-clip:text）
   ・漆黒に近い紺 / 温かい紙色 / 金は「箔」として使う
   ・CSSスクロール連動アニメーション（animation-timeline: view()）
     — 非対応ブラウザ・reduced-motion では自動的に無効
   ・ゴーストタイポ、採番見出し、ヘアライン構成
   ・HTML/class名は無改変。FAQ開閉・.table-wrap内部スクロール・
     期限バーの視認性・長文可読性は堅持。BP: 720 / 940px
   ========================================================== */

:root {
  --black:      #0A1322;   /* 漆黒紺 */
  --navy:       #0F1E31;
  --navy-mid:   #16283E;
  --navy-soft:  #1F3550;
  --gold:       #A67C3D;
  --gold-deep:  #8A6530;
  --gold-light: #D8B879;
  --gold-foil:  linear-gradient(105deg, #8A6530 0%, #C9A15E 38%, #EDD9A3 52%, #C9A15E 66%, #8A6530 100%);
  --gold-pale:  rgba(166,124,61,.10);
  --gold-line:  rgba(166,124,61,.4);
  --cream:      #F6F3EB;   /* 紙 */
  --warm:       #EFEADD;   /* 一段沈んだ紙 */
  --paper:      #FDFCF8;
  --line:       #DED7C6;
  --line-soft:  #E9E4D6;
  --ink:        #171B22;
  --ink-soft:   #434852;
  --ink-mute:   #7B7E86;
  --red:        #9E2F23;
  --red-deep:   #7E241B;
  --red-pale:   #F9EFEB;
  --green:      #2F6B4F;
  --maxw:       1120px;
  --radius:     2px;
  --serif:      "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "BIZ UDPMincho", Georgia, serif;
  --sans:       "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  --latin:      Georgia, "Times New Roman", serif;
}

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

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.9;
  font-size: 16px;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* 紙の質感（微細グレイン） */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .028;
}

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(166,124,61,.25); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

section { padding: 110px 0; position: relative; overflow-x: clip; z-index: 0; }
section.tight { padding: 68px 0; }

/* ---------- タイポグラフィ ---------- */
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--navy);
}
h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.38; }
h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.45; margin-bottom: 22px; }
h3 { font-size: 19px; line-height: 1.6; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
p  { margin-bottom: 16px; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--ink); }

/* 金箔テキスト */
h1 .accent, h2 .accent {
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--latin);
  font-size: 12px; font-weight: 400;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); flex-shrink: 0; }
.center .eyebrow, .section-head.center .eyebrow { justify-content: center; }
.center .eyebrow::after, .section-head.center .eyebrow::after {
  content: ""; width: 44px; height: 1px; background: linear-gradient(-90deg, var(--gold), transparent); flex-shrink: 0;
}

.lead, .intro { font-size: 17px; line-height: 2.05; color: var(--ink-soft); }
.muted { color: var(--ink-mute); font-size: 13.5px; line-height: 1.8; }
.center { text-align: center; }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head p { max-width: 680px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- セクションのゴーストタイポ ---------- */
#problem::before { content: "BARRIER"; }
#funnel::before  { content: "SERVICE"; }
#scope::before   { content: "SCOPE"; }
#pricing::before { content: "PRICING"; }
#flow::before    { content: "PROCESS"; }
#faq::before     { content: "Q & A"; }
#problem::before, #funnel::before, #scope::before,
#pricing::before, #flow::before, #faq::before {
  position: absolute; top: 40px; right: -10px;
  font-family: var(--latin); font-size: clamp(72px, 10vw, 150px);
  line-height: 1; letter-spacing: .08em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(166,124,61,.22);
  pointer-events: none; z-index: -1;
}

/* 3Dパースペクティブの土台 */
.grid, .funnel, .steps, .post-list, .toc-preview { perspective: 1400px; }

@property --spin { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

/* ---------- モーション（reduced-motion では全て無効） ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* ヒーロー・エントランス（ブラー解除の段階登場） */
  @keyframes _enter { from { opacity: 0; transform: translateY(28px); filter: blur(10px); } to { opacity: 1; transform: none; filter: none; } }
  .hero .eyebrow    { animation: _enter .8s  cubic-bezier(.22,.8,.3,1) both; }
  .hero h1          { animation: _enter .9s .14s cubic-bezier(.22,.8,.3,1) both; }
  .hero .hero-sub   { animation: _enter .9s .3s  cubic-bezier(.22,.8,.3,1) both; }
  .hero .hero-cta   { animation: _enter .9s .46s cubic-bezier(.22,.8,.3,1) both; }
  .hero .hero-trust { animation: _enter .9s .62s cubic-bezier(.22,.8,.3,1) both; }
  .dl-hero .dl-grid { animation: _enter 1s .1s   cubic-bezier(.22,.8,.3,1) both; }

  /* ヒーローのゴースト漂いとグリッドのパン */
  @keyframes _drift { to { transform: translateX(-46px); } }
  .hero::after { animation: _drift 18s ease-in-out infinite alternate; }
  @keyframes _pan { to { background-position: 80px 80px, 80px 80px; } }
  .hero::before { animation: _pan 22s linear infinite; }

  /* 金箔のシマー（常時・スクロール非依存） */
  @keyframes _shimmer { to { background-position: 200% center; } }
  h1 .accent, h2 .accent, .logo, .price-tag .amount, .cover-thumb .b {
    background-size: 240% auto;
    animation: _shimmer 4.5s linear infinite;
  }

  /* ヒーローに漂う光の球 */
  @keyframes _float {
    from { transform: translate3d(0,0,0) scale(1); opacity: .85; }
    to   { transform: translate3d(-90px,70px,0) scale(1.18); opacity: 1; }
  }
  .hero .wrap::before {
    content: ""; position: absolute; width: 620px; height: 620px;
    right: -200px; top: -140px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(216,184,121,.26), rgba(216,184,121,.05) 45%, transparent 70%);
    animation: _float 9s ease-in-out infinite alternate;
    pointer-events: none; z-index: -1;
  }

  /* 回転する金の光のボーダー */
  @keyframes _spin { to { --spin: 360deg; } }

  /* カウントダウンの鼓動 */
  @keyframes _pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); } 55% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }
  .deadline-bar .countdown { animation: _pulse 2.6s infinite; }

  /* スクロール連動（対応環境のみ：非対応は静的表示） */
  @supports (animation-timeline: view()) {
    /* ページ上部の金の読了バー */
    @keyframes _prog { from { transform: scaleX(0); } to { transform: scaleX(1); } }
    body::before {
      content: ""; position: fixed; top: 0; left: 0; right: 0; height: 3px;
      background: var(--gold-foil); transform-origin: 0 50%; transform: scaleX(0);
      z-index: 3000; pointer-events: none;
      animation: _prog linear both; animation-timeline: scroll(root);
    }
    /* 3Dチルト・リビール（画面を3割のゼごと進行→はっきり見える） */
    @keyframes _tilt { from { opacity: 0; transform: translateY(110px) rotateX(24deg) scale(.92); } }
    .card, .problem-card, .funnel-step, .step-row, .post-card,
    .notice, .price-hero, .faq-item, .toc-preview > div,
    .section-head, .table-wrap, .inline-cta {
      transform-origin: 50% 0;
      animation: _tilt cubic-bezier(.22,.8,.3,1) both;
      animation-timeline: view();
      animation-range: entry 0% cover 32%;
    }
    /* ヒーローはスクロールで奥へ沈みながら退場（パララックス） */
    @keyframes _heroout { to { opacity: .12; translate: 0 -90px; } }
    .hero-inner {
      animation: _heroout linear both;
      animation-timeline: view();
      animation-range: exit 5% exit 85%;
    }
    /* ゴーストタイポのパララックス */
    @keyframes _ghost { from { translate: 0 160px; } to { translate: 0 -160px; } }
    #problem::before, #funnel::before, #scope::before,
    #pricing::before, #flow::before, #faq::before {
      animation: _ghost linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
  }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-size: 14.5px; font-weight: 700; letter-spacing: .1em;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: color .2s ease, border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}
.btn-primary {
  background: linear-gradient(105deg, #8A6530, #B98F4C 45%, #A67C3D);
  color: #fff;
  box-shadow: 0 2px 14px rgba(138,101,48,.35);
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}
.btn-primary:hover { color: #fff; box-shadow: 0 4px 22px rgba(138,101,48,.5); transform: translateY(-1px); }
.btn-primary:hover::after { left: 125%; }
.btn-ghost { background: rgba(255,255,255,.02); color: #fff; border-color: rgba(255,255,255,.35); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--navy); border-color: #C6BEA9; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-lg { padding: 19px 44px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ---------- 期限告知バー ---------- */
.deadline-bar {
  background: linear-gradient(90deg, var(--red-deep) 0%, var(--red) 55%, var(--red-deep) 100%);
  color: #fff;
  font-size: 14px; text-align: center; padding: 12px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  position: relative;
}
.deadline-bar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,217,163,.6), transparent);
}
.deadline-bar strong { color: #fff; font-weight: 700; }
.deadline-bar .countdown {
  background: #fff; color: var(--red-deep);
  padding: 2px 13px; border-radius: 2px;
  font-weight: 700; font-variant-numeric: tabular-nums; font-size: 13.5px;
  letter-spacing: .02em;
}
.deadline-bar a {
  color: #fff; font-weight: 700;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,.5);
}
.deadline-bar a:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- ヘッダー（漆黒＋ブラー） ---------- */
.site-header {
  background: rgba(10,19,34,.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid rgba(216,184,121,.18);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
.logo {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600; letter-spacing: .07em; line-height: 1.15;
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo:hover { color: transparent; }
.logo span {
  display: block; white-space: nowrap;
  font-family: var(--latin); font-size: 9px;
  letter-spacing: .26em; font-weight: 400; margin-top: 2px;
  -webkit-text-fill-color: rgba(255,255,255,.5); color: rgba(255,255,255,.5);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.68); font-size: 13.5px; letter-spacing: .04em; white-space: nowrap; position: relative; transition: color .18s; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: var(--gold-light); transition: right .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-links a.nav-cta {
  background: linear-gradient(105deg, #8A6530, #B98F4C 45%, #A67C3D);
  color: #fff; padding: 10px 24px; border-radius: var(--radius); font-weight: 700;
  box-shadow: 0 2px 12px rgba(138,101,48,.4);
}
.nav-links a.nav-cta:hover { color: #fff; box-shadow: 0 3px 18px rgba(184,143,76,.55); }
.burger { display: none; background: none; border: none; padding: 6px; }
.burger svg { stroke: var(--gold-light); }
.mobile-nav {
  display: none; background: rgba(10,19,34,.97);
  border-top: 1px solid rgba(216,184,121,.14); padding: 10px 24px 22px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,.82); font-size: 15px;
  padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav a.nav-cta {
  background: linear-gradient(105deg, #8A6530, #B98F4C 45%, #A67C3D);
  color: #fff; text-align: center;
  border-radius: var(--radius); font-weight: 700; margin-top: 16px; border: none;
}

/* ---------- パンくず ---------- */
.breadcrumb {
  background: transparent; border-bottom: 1px solid var(--line-soft);
  padding: 13px 0; font-size: 12.5px; color: var(--ink-mute); letter-spacing: .03em;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span { margin: 0 9px; opacity: .4; }

/* ---------- ヒーロー ----------
   写真を使う場合は下の background-image の先頭に
   url("../assets/hero.jpg") を追加し、暗いオーバーレイの下に敷く:
   linear-gradient(rgba(10,19,34,.82), rgba(10,19,34,.9)), url("../assets/hero.jpg") center/cover など */
.hero {
  background: var(--black);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%23D8B879' stroke-opacity='.2'%3E%3Cpath d='M140 470 C 380 150, 820 130, 1080 320' stroke-dasharray='2 10' stroke-width='2'/%3E%3C/g%3E%3Cg fill='%23D8B879'%3E%3Ccircle cx='140' cy='470' r='5' fill-opacity='.55'/%3E%3Ccircle cx='140' cy='470' r='12' fill-opacity='.14'/%3E%3Ccircle cx='1080' cy='320' r='5' fill-opacity='.55'/%3E%3Ccircle cx='1080' cy='320' r='12' fill-opacity='.14'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 80% at 78% 8%, rgba(31,53,80,.9) 0%, transparent 62%),
    radial-gradient(ellipse 40% 50% at 90% 90%, rgba(138,101,48,.14) 0%, transparent 70%),
    linear-gradient(168deg, #0A1322 0%, #0E1B2E 55%, #12233A 100%);
  background-position: right -60px bottom -40px, center, center, center;
  background-repeat: no-repeat;
  background-size: min(1200px, 100vw) auto, auto, auto, auto;
  color: #fff;
  padding: 122px 0 108px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 100% at 80% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 80% 0%, #000, transparent 72%);
}
/* ゴーストタイポ */
.hero::after {
  content: "FDA · FSVP · U.S. AGENT";
  position: absolute; right: -12px; bottom: 16px;
  font-family: var(--latin); font-size: clamp(64px, 9vw, 130px);
  letter-spacing: .06em; white-space: nowrap; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216,184,121,.13);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 780px; will-change: transform, opacity; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: linear-gradient(90deg, var(--gold-light), transparent); }
.hero h1 { color: #fff; margin-bottom: 28px; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero h1 .accent {
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .hero-sub { color: rgba(255,255,255,.75); font-size: 17px; line-height: 2.1; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 46px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(216,184,121,.22); }
.hero-trust div { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.hero-trust strong { display: block; color: var(--gold-light); font-size: 15px; font-weight: 700; margin-bottom: 2px; letter-spacing: .03em; }

/* ---------- グリッド ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- カード ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; position: relative;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: var(--gold-foil); opacity: 0; transition: opacity .25s ease;
}
.card:hover, .card.hoverable:hover {
  border-color: var(--gold-line); transform: translateY(-6px) rotateX(2.5deg);
  box-shadow: 0 24px 54px rgba(10,19,34,.12);
}
.card:hover::before { opacity: 1; }
.card p { font-size: 14.5px; line-height: 1.85; margin-bottom: 0; }
.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold-line); color: var(--gold-deep);
  font-family: var(--latin); font-size: 14px; margin-bottom: 16px;
}

.problem-card {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 30px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover { transform: translateY(-5px) rotateX(2deg); box-shadow: 0 18px 42px rgba(10,19,34,.1); }
.problem-card h3 { font-size: 17px; }
.problem-card p { font-size: 14.5px; line-height: 1.85; margin-bottom: 0; }

/* ---------- 注意・補足ボックス ---------- */
.notice {
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 30px 34px;
}
.notice.warn { border-left-color: var(--red); background: var(--red-pale); border-color: #EAD5CC; }
.notice.warn h3 { color: var(--red); }
.notice h3 { font-size: 18px; }
.notice p { font-size: 14.5px; margin-bottom: 10px; line-height: 1.9; }
.notice p:last-child { margin-bottom: 0; }

.tip, .warn {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px; margin: 28px 0; font-size: 14.5px; line-height: 1.9;
}
.tip { background: var(--gold-pale); border-left: 3px solid var(--gold); }
.warn { background: var(--red-pale); border-left: 3px solid var(--red); }
.tip p, .warn p { font-size: inherit; margin-bottom: 8px; }
.tip p:last-child, .warn p:last-child { margin-bottom: 0; }

/* ---------- ファネル（3ステップ） ---------- */
.funnel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--paper);
  box-shadow: 0 24px 60px rgba(10,19,34,.07);
}
.funnel-step { padding: 42px 34px 38px; border-right: 1px solid var(--line); transition: background .25s ease; }
.funnel-step:hover { background: #FBF9F2; }
.funnel-step:last-child { border-right: none; }
.funnel-step.primary {
  background: var(--black);
  background-image: radial-gradient(ellipse 90% 70% at 20% 0%, rgba(31,53,80,.8), transparent 70%);
  color: #fff; border-right-color: var(--black);
}
.funnel-step.primary:hover { background-color: var(--navy); }
.funnel-step.primary h3 { color: #fff; }
.funnel-step.primary p { color: rgba(255,255,255,.7); }
.funnel-step.primary .funnel-tag { border-color: rgba(216,184,121,.5); color: var(--gold-light); background: transparent; }
.funnel-tag {
  display: inline-block; font-family: var(--latin); font-size: 10.5px;
  letter-spacing: .22em; color: var(--ink-mute);
  border: 1px solid var(--line); background: transparent;
  padding: 5px 13px; border-radius: 2px; margin-bottom: 20px;
}
.funnel-step h3 { font-size: 18px; margin-bottom: 10px; }
.funnel-step p { font-size: 14px; line-height: 1.85; margin-bottom: 16px; }
.funnel-link { font-size: 13.5px; font-weight: 700; color: var(--gold-deep); letter-spacing: .04em; }
.funnel-link:hover { color: var(--gold); }
.funnel-step.primary .funnel-link { color: var(--gold-light); }
.funnel-step.primary .funnel-link:hover { color: #EDD9A3; }

/* ---------- テーブル ---------- */
.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  box-shadow: 0 14px 40px rgba(10,19,34,.05);
}
table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
thead th {
  background: var(--black); color: rgba(255,255,255,.9); text-align: left;
  padding: 15px 20px; font-weight: 700; font-size: 12.5px; letter-spacing: .1em;
  white-space: nowrap;
  border-bottom: 2px solid var(--gold);
}
tbody td { padding: 18px 20px; border-top: 1px solid var(--line-soft); vertical-align: top; color: var(--ink-soft); line-height: 1.8; }
tbody tr:first-child td { border-top: none; }
tbody tr:hover { background: #FAF8F0; }
tbody td:first-child { color: var(--ink); font-weight: 700; }
td .price { color: var(--navy); font-weight: 700; white-space: nowrap; font-size: 15px; font-variant-numeric: tabular-nums; }
td .price-note { display: block; font-size: 12.5px; color: var(--ink-mute); font-weight: 400; margin-top: 2px; }
.row-highlight { background: var(--gold-pale) !important; }
.row-highlight td { border-top-color: var(--gold-line); }
.row-highlight td:first-child { color: var(--gold-deep); }

.mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 27px; height: 27px; border-radius: 50%;
  font-weight: 700; font-size: 13px; border: 1px solid currentColor;
}
.mark-yes  { color: var(--green); background: rgba(47,107,79,.07); }
.mark-part { color: var(--gold-deep); background: rgba(166,124,61,.1); }
.mark-no   { color: var(--red); background: rgba(158,47,35,.06); }

/* ---------- 料金訴求ブロック ---------- */
.price-hero {
  background: var(--black);
  background-image:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(31,53,80,.75), transparent 65%),
    radial-gradient(ellipse 40% 60% at 95% 100%, rgba(138,101,48,.16), transparent 70%);
  color: #fff; border-radius: var(--radius);
  padding: 46px 44px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 70px rgba(10,19,34,.18);
}
/* 回転する金のボーダー */
.price-hero::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--spin),
    rgba(237,217,163,.95), rgba(138,101,48,.12) 22%, rgba(216,184,121,.8) 48%,
    rgba(138,101,48,.12) 72%, rgba(237,217,163,.95));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: _spin 7s linear infinite;
  pointer-events: none;
}
.price-hero h3 { color: #fff; font-family: var(--serif); font-weight: 600; font-size: 25px; margin: 8px 0 10px; }
.price-hero p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.9; }
.price-hero ul { list-style: none; margin: 20px 0 0; }
.price-hero li { color: rgba(255,255,255,.85); font-size: 14.5px; padding: 6px 0 6px 28px; position: relative; }
.price-hero li::before {
  content: ""; position: absolute; left: 2px; top: 15px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light);
  transform: rotate(-45deg);
}
.price-tag { text-align: center; padding: 28px 22px; border-left: 1px solid rgba(216,184,121,.25); position: relative; z-index: 1; }
.price-tag .amount {
  font-family: var(--latin); font-size: 58px; font-weight: 700;
  letter-spacing: -.01em; line-height: 1.05;
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-tag .amount small { font-size: 22px; font-weight: 400; -webkit-text-fill-color: rgba(255,255,255,.65); color: rgba(255,255,255,.65); }
.price-tag .strike { color: rgba(255,255,255,.42); text-decoration: line-through; font-size: 14.5px; margin-bottom: 8px; font-family: var(--latin); }
.price-tag .save {
  display: inline-block; border: 1px solid rgba(216,184,121,.55); color: var(--gold-light);
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  padding: 5px 16px; border-radius: 2px; margin-top: 16px;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0; margin-bottom: 0; overflow: hidden;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 26px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 16.5px; font-weight: 700; color: var(--navy); line-height: 1.65;
  transition: color .18s, padding-left .25s ease;
}
.faq-q:hover { color: var(--gold-deep); padding-left: 16px; }
.faq-q svg { flex-shrink: 0; transition: transform .3s ease; stroke: var(--gold); }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 8px; }
.faq-a.open { max-height: 700px; padding: 0 8px 28px; }
.faq-a p { font-size: 15px; line-height: 2.0; color: var(--ink-soft); }

/* ---------- 手順（流れ） ---------- */
.steps { counter-reset: step; }
.step-row { display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding-bottom: 40px; position: relative; }
.step-row:last-child { padding-bottom: 0; }
.step-row:not(:last-child)::before {
  content: ""; position: absolute; left: 29px; top: 62px; bottom: 2px; width: 1px;
  background: linear-gradient(180deg, var(--gold-line), var(--line));
}
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--gold);
  color: var(--gold-deep); font-family: var(--latin); font-size: 21px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}
.step-body h3 { margin-bottom: 6px; font-size: 18px; }
.step-body p { font-size: 14.5px; line-height: 1.95; margin-bottom: 0; }
.step-body .step-meta {
  font-family: var(--latin); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 5px;
}

/* ---------- CTA帯 ---------- */
.cta-band {
  background: var(--black);
  background-image:
    radial-gradient(ellipse 55% 90% at 50% 110%, rgba(138,101,48,.22), transparent 65%),
    radial-gradient(ellipse 70% 80% at 50% -20%, rgba(31,53,80,.8), transparent 70%);
  color: #fff; text-align: center; padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--gold-foil);
}
.cta-band::after {
  content: "CONSULTATION";
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -14px;
  font-family: var(--latin); font-size: clamp(60px, 10vw, 140px); line-height: 1;
  letter-spacing: .08em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(216,184,121,.1);
  pointer-events: none;
}
.cta-band .eyebrow { color: var(--gold-light); justify-content: center; }
.cta-band .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 640px; margin: 0 auto 38px; }
.cta-band .btn-primary { padding: 19px 50px; font-size: 15.5px; }
.cta-note { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.9; position: relative; z-index: 1; }
.cta-note a { color: rgba(255,255,255,.68); }
.cta-note a:hover { color: var(--gold-light); }

/* ---------- 記事内CTA ---------- */
.inline-cta {
  background: var(--black);
  background-image: radial-gradient(ellipse 80% 100% at 90% 0%, rgba(31,53,80,.8), transparent 70%);
  color: #fff; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  padding: 34px 38px; margin: 48px 0;
  box-shadow: 0 20px 50px rgba(10,19,34,.14);
}
.inline-cta h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.inline-cta p { color: rgba(255,255,255,.72); font-size: 14.5px; margin-bottom: 24px; }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--black); color: rgba(255,255,255,.58);
  padding: 70px 0 34px; font-size: 14px;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--gold-foil);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 46px; margin-bottom: 46px; }
.site-footer .logo span { -webkit-text-fill-color: rgba(255,255,255,.45); color: rgba(255,255,255,.45); }
.site-footer h4 {
  color: var(--gold-light); font-family: var(--latin); font-weight: 400;
  font-size: 11.5px; margin-bottom: 18px; letter-spacing: .28em; text-transform: uppercase;
}
.site-footer a { color: rgba(255,255,255,.58); transition: color .15s; }
.site-footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; }
.footer-links li { padding: 5px 0; font-size: 13.5px; }
.footer-addr { font-size: 13px; line-height: 2.0; color: rgba(255,255,255,.5); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px;
  font-size: 12px; line-height: 1.95; color: rgba(255,255,255,.38);
}
.footer-disclaimer p { color: inherit; font-size: inherit; margin-bottom: 10px; }
.footer-bottom { margin-top: 28px; font-size: 12px; color: rgba(255,255,255,.32); font-family: var(--latin); letter-spacing: .08em; }

/* ---------- 目次 ---------- */
.toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; position: relative; }
.toc::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px; background: var(--gold-foil); }
.toc h4 {
  font-family: var(--latin); font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px; font-weight: 400;
}
.toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.toc li { counter-increment: toc; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.toc li:last-child { border-bottom: none; }
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--latin); color: var(--gold); font-size: 12.5px;
  margin-right: 16px; letter-spacing: .06em;
}
.toc a { color: var(--ink); }
.toc a:hover { color: var(--gold-deep); }

[id] { scroll-margin-top: 92px; }

/* ==========================================================
   記事（ブログ）
   ========================================================== */

.article-head {
  background: var(--paper);
  background-image: radial-gradient(ellipse 50% 100% at 100% 0%, rgba(166,124,61,.06), transparent 60%);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 54px;
}
.article-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; font-size: 12.5px; color: var(--ink-mute); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.article-cat {
  background: transparent; color: var(--gold-deep);
  border: 1px solid var(--gold-line);
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  padding: 4px 14px; border-radius: 2px;
}
.article-head h1 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.5; margin-bottom: 20px; }
.article-lede { font-size: 16.5px; line-height: 2.05; color: var(--ink-soft); max-width: 760px; }

.article-body { padding: 60px 0 88px; counter-reset: ah2; }
.article-body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 68px 0 24px; padding-top: 26px;
  border-top: 1px solid var(--line);
  line-height: 1.55; position: relative;
}
.article-body h2::before {
  counter-increment: ah2;
  content: counter(ah2, decimal-leading-zero);
  display: block;
  font-family: var(--latin); font-size: 13px; letter-spacing: .3em;
  color: var(--gold); margin-bottom: 8px;
}
.article-body h2::after {
  content: ""; position: absolute; left: 0; top: -1px; width: 64px; height: 2px;
  background: var(--gold-foil);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 20px; margin: 44px 0 14px; color: var(--navy);
  padding-left: 16px; position: relative;
}
.article-body h3::before {
  content: ""; position: absolute; left: 0; top: .35em; bottom: .35em; width: 2px;
  background: var(--gold);
}
.article-body h4 { font-size: 16.5px; color: var(--navy); margin: 28px 0 10px; }
.article-body p { font-size: 16px; line-height: 2.1; margin-bottom: 24px; }
.article-body ul, .article-body ol { margin: 0 0 26px 0; padding-left: 0; list-style: none; }
.article-body ul li {
  position: relative; padding: 7px 0 7px 26px;
  font-size: 15.5px; line-height: 1.95; color: var(--ink-soft);
}
.article-body ul li::before {
  content: ""; position: absolute; left: 3px; top: 18px;
  width: 9px; height: 1.5px; background: var(--gold);
}
.article-body ol { counter-reset: alist; }
.article-body ol li {
  counter-increment: alist; position: relative; padding: 7px 0 7px 36px;
  font-size: 15.5px; line-height: 1.95; color: var(--ink-soft);
}
.article-body ol li::before {
  content: counter(alist);
  position: absolute; left: 0; top: 10px;
  width: 23px; height: 23px; border-radius: 50%;
  border: 1px solid var(--gold-line); color: var(--gold-deep);
  font-family: var(--latin); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.article-body .table-wrap { margin: 28px 0 32px; }
.article-body .notice { margin: 32px 0; }
.article-body a:not(.btn) {
  color: var(--gold-deep);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: var(--gold-line); text-decoration-thickness: 1px;
  transition: text-decoration-color .15s, color .15s;
}
.article-body a:not(.btn):hover { color: var(--gold); text-decoration-color: var(--gold); }
.article-body .toc a:not(.btn),
.article-body .related a:not(.btn) { color: var(--ink); text-decoration: none; }
.article-body .toc a:not(.btn):hover,
.article-body .related a:not(.btn):hover { color: var(--gold-deep); }

.article-body blockquote {
  border-left: 2px solid var(--gold);
  background: transparent;
  padding: 6px 0 6px 28px; margin: 30px 0;
  font-family: var(--serif);
  font-size: 16px; line-height: 2.0; color: var(--ink-soft);
}

.sources { background: transparent; border-top: 1px solid var(--line); border-radius: 0; padding: 30px 0 0; margin-top: 56px; }
.sources h4 {
  font-family: var(--latin); font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px; font-weight: 400;
}
.sources ul { margin: 0; }
.sources li { font-size: 13px; padding: 5px 0 5px 24px; line-height: 1.85; color: var(--ink-mute); }
.sources li::before { top: 16px !important; background: var(--line) !important; }

.article-note {
  font-size: 12.5px; color: var(--ink-mute); background: var(--warm);
  border-radius: var(--radius); padding: 20px 26px; margin-top: 44px; line-height: 1.9;
}

/* 記事一覧 */
.post-list { display: grid; gap: 0; }
.post-card {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 36px 8px; display: block; color: inherit; position: relative;
  transition: background .2s ease, padding-left .3s ease;
}
.post-card:first-child { border-top: 1px solid var(--line); }
.post-card:hover { background: rgba(166,124,61,.045); padding-left: 24px; color: inherit; }
.post-card .article-meta { margin-bottom: 12px; }
.post-card h2 {
  font-size: 22px; margin-bottom: 10px; line-height: 1.6;
  transition: color .18s;
}
.post-card:hover h2 { color: var(--gold-deep); }
.post-card p { font-size: 14.5px; line-height: 1.9; margin-bottom: 0; color: var(--ink-soft); }
.post-card .more {
  display: inline-block; margin-top: 16px;
  font-family: var(--latin);
  font-size: 12px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
}

/* 関連記事 */
.related { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 38px; }
.related h3 {
  font-family: var(--latin); font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px; font-weight: 400;
}
.related ul { margin: 0; }
.related li { padding: 11px 0 11px 24px; font-size: 15px; border-bottom: 1px solid var(--line-soft); }
.related li:last-child { border-bottom: none; }
.related li::before { top: 21px !important; }

/* ==========================================================
   資料ダウンロードLP（/checklist/）
   ========================================================== */

.dl-hero {
  background: var(--black);
  background-image:
    radial-gradient(ellipse 60% 90% at 20% 0%, rgba(31,53,80,.85), transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 100%, rgba(138,101,48,.14), transparent 70%);
  color: #fff; padding: 72px 0 80px;
  position: relative; overflow: hidden;
}
.dl-hero::before {
  content: "CHECKLIST";
  position: absolute; left: -10px; bottom: -16px;
  font-family: var(--latin); font-size: clamp(70px, 11vw, 150px); line-height: 1;
  letter-spacing: .06em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(216,184,121,.1);
  pointer-events: none;
}
.dl-hero .wrap { position: relative; z-index: 1; }
.dl-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.dl-hero .eyebrow { color: var(--gold-light); }
.dl-hero .eyebrow::before { background: linear-gradient(90deg, var(--gold-light), transparent); }
.dl-hero h1 { color: #fff; font-size: clamp(27px, 3.2vw, 38px); line-height: 1.5; margin-bottom: 22px; }
.dl-hero h1 .accent {
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dl-hero .lead { color: rgba(255,255,255,.75); font-size: 16px; line-height: 2.05; margin-bottom: 30px; }
.dl-list { list-style: none; margin: 0 0 30px; }
.dl-list li { position: relative; padding: 7px 0 7px 30px; color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.85; }
.dl-list li::before {
  content: ""; position: absolute; left: 2px; top: 16px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light);
  transform: rotate(-45deg);
}
.dl-meta { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(216,184,121,.22); font-size: 13px; color: rgba(255,255,255,.55); }
.dl-meta strong { display: block; color: var(--gold-light); font-size: 15px; margin-bottom: 1px; }

.dl-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  position: relative;
}
.dl-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--spin),
    rgba(237,217,163,.9), rgba(138,101,48,.1) 22%, rgba(216,184,121,.75) 48%,
    rgba(138,101,48,.1) 72%, rgba(237,217,163,.9));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: _spin 7s linear infinite;
  pointer-events: none;
}
.dl-card h2 { font-size: 21px; margin-bottom: 8px; }
.dl-card > p { font-size: 13.5px; margin-bottom: 24px; color: var(--ink-mute); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: .02em; }
.field label .req { color: var(--red); font-weight: 400; font-size: 11.5px; margin-left: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid #CCC4AE; border-radius: var(--radius);
  font-size: 15px; color: var(--ink); background: #FBFAF5; font-family: inherit;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(166,124,61,.16); background: #fff;
}
.privacy { font-size: 12px; color: var(--ink-mute); line-height: 1.8; margin-top: 14px; }
.privacy a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

.cover-thumb {
  background: var(--black);
  background-image: radial-gradient(ellipse 90% 80% at 80% 0%, rgba(31,53,80,.85), transparent 70%);
  border-radius: 2px; padding: 30px 26px; margin-bottom: 26px;
  border: 1px solid rgba(216,184,121,.4); text-align: left;
  position: relative; overflow: hidden;
}
.cover-thumb::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--gold-foil);
}
.cover-thumb .b {
  font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: .1em;
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cover-thumb .b small { display: block; font-family: var(--latin); font-size: 8px; -webkit-text-fill-color: rgba(255,255,255,.45); color: rgba(255,255,255,.45); letter-spacing: .24em; margin-top: 3px; }
.cover-thumb .t { color: #fff; font-family: var(--serif); font-size: 17.5px; font-weight: 600; line-height: 1.65; margin-top: 20px; }
.cover-thumb .t em { font-style: normal; color: var(--gold-light); }
.cover-thumb .r { width: 40px; height: 1px; background: linear-gradient(90deg, var(--gold-light), transparent); margin: 15px 0 11px; }
.cover-thumb .s { color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.8; }

.toc-preview {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--paper);
}
.toc-preview > div { padding: 22px 26px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); transition: background .2s ease; }
.toc-preview > div:hover { background: #FBF9F2; }
.toc-preview > div:nth-child(2n) { border-right: none; }
.toc-preview .n, .toc-preview .h, .toc-preview .d { padding: 0; border: none; }
.toc-preview .n { font-family: var(--latin); font-size: 11px; letter-spacing: .24em; color: var(--gold); margin-bottom: 5px; }
.toc-preview .h { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.toc-preview .d { font-size: 13px; color: var(--ink-mute); line-height: 1.75; }

/* ==========================================================
   レスポンシブ
   ========================================================== */

@media (max-width: 940px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .funnel { grid-template-columns: 1fr; }
  .funnel-step { border-right: none; border-bottom: 1px solid var(--line); }
  .funnel-step:last-child { border-bottom: none; }
  .price-hero { grid-template-columns: 1fr; }
  .price-tag { border-left: none; border-top: 1px solid rgba(216,184,121,.25); padding: 28px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .dl-grid { grid-template-columns: 1fr; gap: 40px; }
  .toc-preview { grid-template-columns: 1fr; }
  .toc-preview > div { border-right: none; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .section-head { margin-bottom: 38px; }
  .hero { padding: 66px 0 60px; }
  .hero::after { font-size: 56px; right: -8px; bottom: 10px; }
  #problem::before, #funnel::before, #scope::before,
  #pricing::before, #flow::before, #faq::before { font-size: 64px; top: 24px; }
  .hero .hero-sub { font-size: 15.5px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 22px; }
  h3 { font-size: 17px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-hero { padding: 34px 26px; }
  .price-tag .amount { font-size: 46px; }
  .deadline-bar { font-size: 13px; gap: 8px; padding: 10px 16px; }
  .step-row { grid-template-columns: 46px 1fr; gap: 18px; }
  .step-num { width: 46px; height: 46px; font-size: 17px; box-shadow: 0 0 0 4px var(--cream); }
  .step-row:not(:last-child)::before { left: 23px; top: 48px; }
  .card { padding: 28px 24px; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .faq-q { padding: 20px 4px; font-size: 15.5px; }
  .faq-q:hover { padding-left: 4px; }
  .faq-a { padding: 0 4px; }
  .faq-a.open { padding: 0 4px 24px; }
  .article-head { padding: 36px 0 32px; }
  .article-lede { font-size: 15px; }
  .article-body { padding: 40px 0 60px; }
  .article-body h2 { margin: 48px 0 18px; padding-top: 20px; }
  .article-body p { font-size: 15.5px; line-height: 2.0; }
  .inline-cta { padding: 28px 24px; }
  .post-card { padding: 28px 4px; }
  .post-card:hover { padding-left: 4px; }
  .post-card h2 { font-size: 19px; }
  .notice { padding: 24px 22px; }
  .dl-card { padding: 28px 24px; }
  .cta-band { padding: 72px 0; }
}

/* ==========================================================
   印刷（記事の社内共有を想定）
   ========================================================== */
@media print {
  .site-header, .deadline-bar, .cta-band, .float-cta, .inline-cta,
  .breadcrumb, .related, .burger, .mobile-nav { display: none !important; }
  body { background: #fff; color: #000; font-size: 11.5pt; line-height: 1.85; }
  body::after { display: none; }
  .article-head { background: #fff; padding: 0 0 18pt; }
  .article-body { padding: 18pt 0; }
  .article-body p, .article-body li { color: #222; }
  h1, h2, h3, h4 { color: #000; break-after: avoid; }
  h1 .accent, h2 .accent { background: none; -webkit-background-clip: initial; background-clip: initial; color: #000; -webkit-text-fill-color: #000; }
  .table-wrap { overflow: visible; border-color: #999; box-shadow: none; }
  table { min-width: 0; font-size: 10pt; }
  thead th { background: #fff !important; color: #000; border-bottom: 2px solid #000; -webkit-print-color-adjust: exact; }
  tbody td { border-top-color: #ccc; }
  .faq-a { max-height: none; padding: 0 4px 22px; }
  .notice, .tip, .warn, .article-note, .sources { break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  .site-footer { background: #fff; color: #333; border-top: 1px solid #999; padding: 14pt 0 0; }
  .site-footer::before { display: none; }
  .site-footer .footer-grid, .footer-bottom { display: none; }
  .footer-disclaimer { color: #555; border-top: none; }
}

/* ==========================================================
   適用後の調整（Yorozu側）
   ----------------------------------------------------------
   .eyebrow の letter-spacing .38em は欧文向けの値で、
   日本語を含むラベル（例「なぜ自社だけでは完結しないのか」
   「無料ダウンロード資料 — 全7ページ」）が過剰に間延びして
   可読性を損なっていたため調整。
   欧文の字面は維持したいので .38em → .22em に留め、
   Georgia に日本語グリフが無い分のフォールバックを明示。
   ========================================================== */
.eyebrow {
  font-family: Georgia, "Times New Roman", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", Meiryo, serif;
  letter-spacing: .22em;
}

/* ==========================================================
   記事内の図解（figure / figcaption）
   ----------------------------------------------------------
   新規class名は使わず要素セレクタで構成。
   図はインラインSVGで、CSS変数で配色を継承する。
   写真を入れる場合も同じ figure / figcaption を使う。
   ========================================================== */
.article-body figure {
  margin: 36px 0 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px 22px;
  position: relative;
}
.article-body figure::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: var(--gold-foil);
}
.article-body figure svg { width: 100%; height: auto; display: block; }
.article-body figcaption {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; line-height: 1.85; color: var(--ink-mute);
}
.article-body figcaption b, .article-body figcaption strong { color: var(--ink-soft); font-weight: 700; }

/* 写真を入れる場合（figure 直下の img は余白を潰して全幅） */
.article-body figure:has(> img) { padding: 0; overflow: hidden; }
.article-body figure > img { width: 100%; height: auto; display: block; }
.article-body figure:has(> img) figcaption {
  margin-top: 0; border-top: none;
  padding: 16px 24px 18px; background: var(--paper);
}

.article-body figure svg text { font-family: var(--sans); }

@media (max-width: 720px) {
  .article-body figure { padding: 22px 18px 16px; margin: 28px 0 32px; }
  .article-body figure:has(> img) { padding: 0; }
  .article-body figcaption { font-size: 12.5px; margin-top: 16px; padding-top: 14px; }
  .article-body figure:has(> img) figcaption { padding: 14px 18px 16px; }
}

@media print {
  .article-body figure { break-inside: avoid; border-color: #999; }
  .article-body figure::before { display: none; }
}

/* ==========================================================
   ヒーローに写真を敷く（Yorozu側で追加）
   ----------------------------------------------------------
   v2 の装飾（SVGの航路線・グラデーション）は保持したまま、
   最下層に写真を追加。写真の上に暗いレイヤーを重ねて
   白文字の可読性を確保する。
   ========================================================== */
.hero {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%23D8B879' stroke-opacity='.2'%3E%3Cpath d='M140 470 C 380 150, 820 130, 1080 320' stroke-dasharray='2 10' stroke-width='2'/%3E%3C/g%3E%3Cg fill='%23D8B879'%3E%3Ccircle cx='140' cy='470' r='5' fill-opacity='.55'/%3E%3Ccircle cx='140' cy='470' r='12' fill-opacity='.14'/%3E%3Ccircle cx='1080' cy='320' r='5' fill-opacity='.55'/%3E%3Ccircle cx='1080' cy='320' r='12' fill-opacity='.14'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 80% at 78% 8%, rgba(31,53,80,.72) 0%, transparent 62%),
    linear-gradient(100deg, rgba(10,19,34,.94) 0%, rgba(10,19,34,.86) 38%, rgba(10,19,34,.50) 70%, rgba(10,19,34,.38) 100%),
    url("img/hero-port.jpg"),
    linear-gradient(168deg, #0A1322 0%, #0E1B2E 55%, #12233A 100%);
  background-position: right -60px bottom -40px, center, center, center center, center;
  background-repeat: no-repeat;
  background-size: min(1200px, 100vw) auto, auto, auto, cover, auto;
}
@media (max-width: 720px) {
  /* モバイルは写真の情報量が落ちるため、より暗くして文字優先 */
  .hero {
    background-image:
      linear-gradient(175deg, rgba(10,19,34,.93) 0%, rgba(10,19,34,.86) 50%, rgba(10,19,34,.74) 100%),
      url("img/hero-port.jpg"),
      linear-gradient(168deg, #0A1322 0%, #0E1B2E 55%, #12233A 100%);
    background-position: center, center, center;
    background-size: auto, cover, auto;
  }
}

/* ==========================================================
   図解のモバイル対応（Yorozu側で追加）
   ----------------------------------------------------------
   図解SVGを幅100%で縮めると、375px幅では0.37倍まで縮小され
   図中の文字が4px前後になり判読できなくなる。
   .table-wrap と同じ考え方で、図だけを内部で横スクロールさせ、
   ページ本体は横に動かさない。
   ========================================================== */
@media (max-width: 720px) {
  .article-body figure:not(:has(> img)) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 0; padding-right: 0;
  }
  .article-body figure:not(:has(> img)) svg {
    min-width: 620px;   /* この幅未満に縮めない＝文字を読めるサイズで維持 */
    margin: 0 18px;
    width: calc(100% - 36px);
  }
  .article-body figure:not(:has(> img)) figcaption {
    /* スクロールする図の下でも、説明文は画面幅に収める */
    position: sticky; left: 0;
    width: calc(100vw - 76px); max-width: 100%;
    margin: 0 18px; padding-top: 14px;
  }
}

/* ==========================================================
   記事内CTAの見出し（Yorozu側で修正）
   ----------------------------------------------------------
   .inline-cta h3（白）と .article-body h3（紺）は詳細度が同じで、
   CSSの後方にある .article-body h3 が勝っていた。
   結果、濃紺の背景に紺の文字が乗り判読不能になっていたため、
   .article-body 配下として明示的に指定し直す。
   あわせて .article-body h3::before の金の縦線もCTA内では外す。
   ========================================================== */
.article-body .inline-cta h3 {
  color: #fff;
  font-family: var(--sans);
  font-size: 20px;
  margin: 0 0 10px;
  padding-left: 0;
}
.article-body .inline-cta h3::before { content: none; }

/* ==========================================================
   汎用チェックリスト（明るい背景のセクション用）
   ----------------------------------------------------------
   .article-body の外（会社概要・プライバシーポリシー等）でも
   本文と同じ体裁の箇条書きを使えるようにする。
   暗い背景用は .dl-list を使うこと。
   ========================================================== */
.check-list { list-style: none; margin: 0; padding-left: 0; }
.check-list li {
  position: relative;
  padding: 7px 0 7px 30px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
}
.check-list li::before {
  content: ""; position: absolute; left: 3px; top: 16px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
