/* AERIUM — 空中庭園都市(架空)
   ダーク×夜景。背景の都市は #bg の WebGL が全て描く。素材画像ゼロ。
   基調: 深い群青の夜空、窓明かりの琥珀、誘導灯の翡翠シアン。 */

:root {
  --bg: #050810;
  --bg-2: #0a1020;
  --ink: #eef2f6;
  --ink-dim: #b4c0ce;
  /* AA 確保: 対 --bg で約 6.3:1（旧 #6b7789 は 4.40:1 で未達だった） */
  --ink-faint: #8592a6;
  --amber: #e8c98a;
  --accent: #7fd8d8;
  --accent-hi: #a8ecec;
  --accent-deep: #3fa8ac;
  --line: rgba(238, 242, 246, .13);
  --line-strong: rgba(238, 242, 246, .28);
  --glass: rgba(10, 16, 30, .58);
  /* 夜景の上に文字を置く区画で使う不透明面 */
  --surface: rgba(6, 10, 20, .93);
  --radius: 16px;
  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --mincho: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
  /* 流体タイポのスケール（固定 px を廃し 4K〜390px で破綻させない） */
  --fs-body: clamp(14.5px, 1.05vw, 17px);
  --fs-note: clamp(12px, .85vw, 13.5px);
  --fs-label: clamp(11.5px, .8vw, 13px);
  /* モーション語彙を 1 本化（power4.out 相当） */
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

body {
  background:
    radial-gradient(1200px 800px at 50% -20%, rgba(63, 168, 172, .10), transparent 60%),
    radial-gradient(1000px 700px at 85% 108%, rgba(232, 201, 138, .07), transparent 55%),
    linear-gradient(180deg, #060b16 0%, var(--bg) 40%, #04060c 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* WebGL キャンバス。常に最背面に固定 */
#bg {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block;
}
.no-webgl #bg { display: none; }

/* 周辺減光。canvas の直上・コンテンツの下 */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 50%, rgba(2, 4, 9, .58));
}

.content, .foot { position: relative; z-index: 1; }

::selection { background: rgba(127, 216, 216, .35); }

/* ── ガラスパネル共通 ─────────────────────── */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 20px 55px rgba(2, 4, 10, .55);
}

.eyebrow {
  font-size: var(--fs-label); letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}

/* ── ナビ ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 44px);
  transition: background .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(5, 8, 16, .6);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--amber); text-decoration: none;
}
.brand span {
  font-family: var(--serif-en); font-size: 21px; font-weight: 500;
  letter-spacing: .12em; color: var(--ink);
}
.brand em { font-style: normal; font-size: 12px; color: var(--ink-dim); margin-left: 4px; letter-spacing: .1em; }
.links { display: flex; align-items: center; gap: 6px; }
.links a {
  font-size: 13px; letter-spacing: .12em; font-weight: 400;
  color: var(--ink-dim); text-decoration: none;
  padding: 8px 14px; border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.links a:hover { color: var(--ink); background: rgba(238, 242, 246, .07); }
.links .pill-btn {
  color: #0a1a1c; background: var(--accent); font-weight: 700;
  margin-left: 6px;
}
.links .pill-btn:hover { color: #0a1a1c; background: var(--accent-hi, #a8ecec); }

/* ── モバイルドロワー ──────────────────────
   旧実装は 700px 以下でナビリンクを display:none にしており、
   代替手段が無いままスマホから目次が消えていた。
   07_kiriha と同型のトグル＋フォーカストラップに置き換える。 */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
@media (max-width: 700px) {
  .menu-toggle { display: flex; }
  .links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 6px;
    background: rgba(5, 8, 16, .94);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility 0s .4s;
  }
  .links.is-open {
    z-index: 9; opacity: 1; visibility: visible;
    transition: opacity .4s var(--ease);
  }
  .links a { font-size: 19px; padding: 14px 26px; letter-spacing: .16em; }
  .links .pill-btn { margin: 22px 0 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .menu-open, .menu-open body { overflow: hidden; }
}

/* ── 高度計(スクロール進行度) ────────────── */
.altimeter {
  position: fixed; left: clamp(14px, 2.4vw, 30px); bottom: clamp(18px, 4vh, 40px);
  z-index: 9; display: flex; align-items: center; gap: 10px;
  font-family: var(--serif-en); color: var(--ink-faint);
  opacity: 0; transition: opacity .6s ease;
}
.js .altimeter { opacity: 1; }
.no-webgl .altimeter { display: none; }
.alt-label { font-size: 10px; letter-spacing: .4em; }
.alt-value { font-size: 21px; color: var(--amber); font-variant-numeric: tabular-nums; min-width: 74px; }
.alt-value i { font-style: normal; font-size: 12px; color: var(--ink-faint); margin-left: 2px; }
.alt-track {
  width: 90px; height: 1px; background: var(--line-strong);
  position: relative; display: block;
}
.alt-fill {
  position: absolute; left: 0; top: -0.5px; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  display: block;
}
@media (max-width: 700px) { .altimeter { display: none; } }

/* ── ヒーロー ─────────────────────────────── -*/
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 0 clamp(20px, 5vw, 64px);
  position: relative;
}
/* スクリム: 見出しの背後だけ背景色を戻し、夜景のビル窓と文字の衝突を断つ。
   text-shadow 単体では和文の細い縦画がにじむため、面で分離する。 */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(5, 8, 16, 1) 0%, rgba(5, 8, 16, .84) 34%, rgba(5, 8, 16, .40) 52%, rgba(5, 8, 16, 0) 66%);
  background: linear-gradient(100deg,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 84%, transparent) 34%,
    color-mix(in srgb, var(--bg) 40%, transparent) 52%,
    transparent 66%);
}
.hero > * { position: relative; z-index: 2; }
.hero-inner { max-width: 660px; }
.hero h1 {
  font-size: clamp(46px, 7.6vw, 96px);
  line-height: 1.14; font-weight: 400; letter-spacing: .03em;
  margin: 20px 0 26px;
  text-shadow: 0 4px 40px rgba(2, 4, 9, .9);
}
.hero h1 em {
  font-style: normal; color: var(--amber);
}
.hero .lead {
  font-size: clamp(14.5px, 1.5vw, 17px); color: var(--ink-dim);
  text-shadow: 0 2px 18px rgba(2, 4, 9, .9);
  max-width: 32em;
}
/* ヒーロー直下の要約データ。第一画面で「何の計画か」を数値で確定させる */
.hero-facts {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3.4vw, 44px);
  margin-top: clamp(26px, 3.6vw, 42px);
  padding-top: clamp(20px, 2.6vw, 30px);
  border-top: 1px solid var(--line-strong);
}
.hero-facts div { display: grid; gap: 2px; }
.hero-facts dt { font-size: var(--fs-note); letter-spacing: .18em; color: var(--ink-faint); }
.hero-facts dd {
  font-family: var(--serif-en); font-size: clamp(24px, 2.6vw, 34px);
  color: var(--amber); line-height: 1.2; font-variant-numeric: tabular-nums;
}
.hero-facts dd i { font-style: normal; font-size: .45em; color: var(--ink-dim); margin-left: 3px; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  font-size: 12px; letter-spacing: .34em; color: var(--ink-faint);
  animation: cueFloat 2.6s var(--ease) infinite;
  white-space: nowrap;
}
@keyframes cueFloat {
  0%, 100% { transform: translate(-50%, 0); opacity: .85; }
  50% { transform: translate(-50%, 7px); opacity: .45; }
}

/* ── 構想 ─────────────────────────────────── */
.vision {
  min-height: 112svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(80px, 13vh, 170px) clamp(20px, 5vw, 60px);
}
.vision-panel {
  max-width: 720px; text-align: center;
  padding: clamp(34px, 5vw, 58px) clamp(26px, 5vw, 58px);
}
.vision-panel h2 {
  font-size: clamp(28px, 4.2vw, 46px); font-weight: 400; line-height: 1.32;
  letter-spacing: .03em; margin: 16px 0 22px;
}
.vision-panel p { font-size: var(--fs-body); color: var(--ink-dim); text-align: left; }
.vision-panel .vision-sub {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: var(--fs-note); color: var(--ink-faint); text-align: left;
  /* 1 行 52 字あり適正（35〜45 字）超え。44em で止める（2026-09-02 実測） */
  max-width: 44em;
}

/* ── 街区（台帳レイアウト） ────────────────
   角丸ガラスカードをやめ、高度目盛りの縦罫に沿って
   数値と本文を左右に組む「計画台帳」の体裁にする。 */
.district {
  min-height: 116svh;
  display: flex; align-items: center;
  padding: clamp(72px, 12vh, 150px) clamp(20px, 5vw, 64px);
}
.district.d-right { justify-content: flex-end; }
.district.d-left { justify-content: flex-start; }
.d-panel {
  max-width: 640px; width: 100%;
  display: grid; grid-template-columns: auto 1fr; gap: 0 clamp(20px, 2.6vw, 34px);
  padding: clamp(26px, 3.4vw, 40px) clamp(24px, 3.4vw, 40px);
  border-radius: 4px;
  border: 0; border-left: 2px solid var(--amber);
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(2, 4, 10, .55);
}
/* 左列: 高度の目盛り */
.d-alt {
  align-self: stretch;
  font-family: var(--serif-en); color: var(--amber);
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1;
  font-variant-numeric: tabular-nums;
  border-right: 1px solid var(--line); padding-right: clamp(18px, 2.4vw, 30px);
}
.d-alt i { font-style: normal; font-size: .38em; color: var(--ink-faint); margin-left: 2px; }
.d-alt span {
  display: block; margin-top: 8px; font-family: var(--sans);
  font-size: var(--fs-note); letter-spacing: .2em; color: var(--ink-faint);
}
.d-panel .num {
  font-family: var(--serif-en); font-size: var(--fs-label); letter-spacing: .3em;
  color: var(--accent);
}
.d-panel h3 {
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 400;
  line-height: 1.25; letter-spacing: .03em; margin: 10px 0 14px;
}
.d-panel h3 small {
  display: block; font-family: var(--serif-en); font-weight: 400;
  font-size: var(--fs-note); color: var(--ink-faint); letter-spacing: .22em; margin-top: 8px;
}
.d-panel p { font-size: var(--fs-body); color: var(--ink-dim); }
.d-panel .chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 7px; }
.d-panel .chips i {
  font-style: normal; font-size: var(--fs-note); letter-spacing: .08em;
  border: 1px solid var(--line-strong); border-radius: 2px; padding: 4px 12px;
  color: var(--amber);
}
/* 街区ごとのスペック表。台帳らしさをここで出す */
.d-spec {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 14px 20px;
}
.d-spec div { display: grid; gap: 3px; }
.d-spec dt { font-size: var(--fs-note); letter-spacing: .16em; color: var(--ink-faint); }
.d-spec dd { font-size: var(--fs-body); color: var(--ink); font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .d-panel { grid-template-columns: 1fr; gap: 0; }
  .d-alt {
    border-right: 0; padding-right: 0;
    border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 16px;
    display: flex; align-items: baseline; gap: 12px;
  }
  .d-alt span { margin-top: 0; }
}

/* ── 事業フェーズ（年表） ──────────────────
   計画サイトに必須の「いつ何が起きるか」。
   街区とデータの間に置き、スクロールの空白区間を埋める役も担う。 */
.phases {
  min-height: 104svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(72px, 12vh, 150px) clamp(20px, 5vw, 64px);
  max-width: 1180px; margin: 0 auto; width: 100%;
}
.phase-list {
  margin-top: clamp(34px, 4.4vw, 56px);
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  background: var(--surface);
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--line);
}
.phase {
  padding: clamp(26px, 2.8vw, 36px) clamp(18px, 2vw, 26px);
  border-right: 1px solid var(--line);
  position: relative;
}
.phase:last-child { border-right: 0; }
.phase::before {
  content: ""; position: absolute; top: -4px; left: clamp(18px, 2vw, 26px); width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 14px rgba(127, 216, 216, .8);
}
.phase .yr {
  font-family: var(--serif-en); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--amber); letter-spacing: .04em; line-height: 1.1;
}
.phase h3 {
  font-size: clamp(16px, 1.5vw, 20px); font-weight: 400; line-height: 1.4;
  margin: 12px 0 10px; letter-spacing: .04em;
}
.phase p { font-size: var(--fs-note); color: var(--ink-dim); line-height: 1.9; }

/* ── 計画データ ───────────────────────────── */
.plan {
  min-height: 104svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(72px, 11vh, 150px) clamp(20px, 4vw, 52px);
  max-width: 1180px; margin: 0 auto; width: 100%;
}
.sec-head { text-align: center; }
.sec-head .eyebrow { text-shadow: 0 2px 16px rgba(2, 4, 9, .95), 0 0 28px rgba(2, 4, 9, .9); }
.sec-head h2 {
  font-size: clamp(28px, 3.8vw, 44px); font-weight: 400;
  line-height: 1.28; letter-spacing: .03em;
  margin-top: 14px; text-shadow: 0 2px 22px rgba(2, 4, 9, .95), 0 0 60px rgba(2, 4, 9, .85);
}
.sec-head .sec-lead {
  max-width: 40em; margin: 18px auto 0;
  font-size: var(--fs-body); color: var(--ink-dim);
  text-shadow: 0 2px 18px rgba(2, 4, 9, .95);
}
.stats {
  display: grid; gap: 18px; margin-top: clamp(34px, 4vw, 52px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat { padding: 28px 22px 24px; text-align: center; }
.stat dt { font-size: var(--fs-note); letter-spacing: .2em; color: var(--ink-faint); }
.stat dd { margin-top: 8px; }
.stat b {
  font-family: var(--serif-en); font-weight: 500; font-size: clamp(38px, 4.6vw, 56px);
  color: var(--amber); font-variant-numeric: tabular-nums; line-height: 1.1;
}
.stat i { font-style: normal; font-size: 14px; color: var(--ink-dim); margin-left: 4px; }
.plan-note { margin-top: 26px; text-align: center; font-size: var(--fs-note); color: var(--ink-faint); }

/* ── よくある質問 ─────────────────────────── */
.faq {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(72px, 11vh, 150px) clamp(20px, 4vw, 52px);
  max-width: 940px; margin: 0 auto; width: 100%;
}
.faq-list {
  margin-top: clamp(30px, 3.6vw, 46px);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 0 clamp(20px, 3vw, 36px);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: clamp(18px, 2vw, 24px) 44px clamp(18px, 2vw, 24px) 0;
  font-size: clamp(15px, 1.35vw, 18px); color: var(--ink);
  position: relative; letter-spacing: .03em;
  transition: color .3s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--amber); }
.faq-list summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; margin-top: -1px; width: 12px; height: 2px;
  background: var(--accent); transition: transform .35s var(--ease);
}
.faq-list summary::before {
  content: ""; position: absolute; right: 13px; top: 50%; width: 2px; height: 12px;
  margin-top: -5px; background: var(--accent); transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-list details[open] summary::before { transform: scaleY(0); opacity: 0; }
.faq-list details p {
  font-size: var(--fs-body); color: var(--ink-dim);
  padding: 0 44px clamp(20px, 2.2vw, 28px) 0; margin-top: -4px;
  /* 回答文が 1 行 51〜52 字あり適正超え。42em で止める（2026-09-02 実測） */
  max-width: 42em;
}

/* ── CTA ──────────────────────────────────── */
.cta {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: clamp(72px, 11vh, 140px) clamp(20px, 4vw, 52px);
}
.cta-panel {
  max-width: 540px; width: 100%; text-align: center;
  padding: clamp(34px, 5vw, 54px) clamp(26px, 5vw, 48px);
}
.cta-panel .mark { color: var(--amber); }
.cta-panel h2 {
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 400;
  line-height: 1.3; letter-spacing: .03em; margin: 18px 0 14px;
}
.cta-panel p { font-size: var(--fs-body); color: var(--ink-dim); }
#notify { display: grid; gap: 12px; margin-top: 26px; }
#notify input {
  font-size: 14px;
  background: rgba(5, 8, 16, .6); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; outline: none; text-align: center;
  transition: border-color .2s;
}
#notify input:focus { border-color: var(--accent); }
#notify input::placeholder { color: var(--ink-faint); }
#notify button {
  font-size: 13px; font-weight: 700; letter-spacing: .22em;
  background: var(--accent); color: #0a1a1c;
  border: none; border-radius: 10px; padding: 15px 16px; cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
#notify button:hover { background: var(--accent-hi, #a8ecec); transform: translateY(-2px); }
.cta-panel .done { margin-top: 22px; color: var(--amber); font-size: 15px; }

/* ── フッター ─────────────────────────────── */
.foot {
  padding: clamp(40px, 5vw, 60px) clamp(20px, 4vw, 52px) clamp(56px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(4, 6, 12, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--fs-note); color: var(--ink-faint);
  display: grid; gap: 6px;
}

/* 縦積み時は区切りを下罫に切り替える（右罫が孤立した飾り線になるのを防ぐ） */
@media (max-width: 700px) {
  .phase { border-right: 0; border-bottom: 1px solid var(--line); }
  .phase:last-child { border-bottom: 0; }
  .phase::before { top: -4px; }
}

/* ── 出現アニメーション(JS 有効時のみ隠す)── */
.js [data-reveal] { opacity: 0; transform: translateY(30px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .scroll-cue { animation: none; }
}

/* ──────────────────────────────────────────────────────────────
   和文タイポグラフィ調整
   1. palt        … 句読点・括弧まわりの余分なアキを詰める
   2. auto-phrase … 文節単位で折り返す（「書」「く。」のような分断を防ぐ）
   3. balance     … 見出しの行長を揃え、1文字だけ落ちる行を作らない
   4. strict      … 禁則処理を厳密にし、行頭に 。 、 」 が来ないようにする
   auto-phrase / balance / pretty は非対応ブラウザでは無視されるだけで、
   崩れることはない（プログレッシブ・エンハンスメント）。
   ────────────────────────────────────────────────────────────── */
body {
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  line-break: strict;
  word-break: normal;
}
h1, h2, h3, h4, h5, .kicker, dt {
  word-break: auto-phrase;
  text-wrap: balance;
}
p, li, dd, td, .note, .desc, .caption,
.lede, .lead, .statement, blockquote, figcaption {
  word-break: auto-phrase;
  text-wrap: pretty;
}
/* 手動改行は広い画面でのみ効かせ、狭い画面では自動折り返しに任せる */
@media (max-width: 640px) {
  h1 br, h2 br, h3 br,
  .lede br, .lead br, .statement br { display: none; }
}

/* ── 書体設計（1 箇所に集約。以前は矛盾する 3 ブロックが積まれていた） ──
   見出し: 欧文 Cormorant Garamond / 和文 Zen Old Mincho。
           夜空に細い縦画の明朝を置くのがこのサイトの意匠。
   本文  : Zen Kaku Gothic New。SF 夜景の計画書という主題に明朝の本文は合わず、
           かつ :root の --sans 宣言と描画を一致させる。
   等幅を意図した要素は除外する。 */
h1, h2, h3, h4, .lede, .lead, .kicker, .statement, blockquote,
.stat b, .alt-value, .d-alt, .phase .yr, .hero-facts dd {
  font-family: "Cormorant Garamond", var(--mincho);
}
html body :is(p, li, dd, dt, td, .note, .desc, .caption, figcaption, .body, .txt, .text, small):not(code):not(pre):not([class*="mono"]):not([class*="code"]) {
  font-family: var(--sans);
}
html body :is(.stat b, .alt-value, .d-alt, .phase .yr, .hero-facts dd, .d-panel .num, .card .num) {
  font-family: "Cormorant Garamond", var(--mincho);
}
