@charset "UTF-8";
/* ============================================================
   HARC Corporate Site — Design System
   配色は会社ロゴから採取した3色
     深い青 #16233F ／ クリーム白 #F2EFE8 ／ 落ち着いた金 #C6A768
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Navy */
  --navy-900: #0B1428;
  --navy-800: #101C36;
  --navy-700: #16233F;   /* ロゴの紺 */
  --navy-600: #1E2E4E;

  /* Cream */
  --cream-50:  #FBF9F4;
  --cream-100: #F2EFE8;  /* ロゴの背景 */
  --cream-200: #E9E4D8;
  --cream-300: #DAD2C0;

  /* Gold */
  --gold-100: #EFDFB8;
  --gold-200: #DCC08A;
  --gold-300: #C6A768;   /* ロゴの金 */
  --gold-400: #B08F4E;
  --gold-500: #8A6E36;
  --gold-grad: linear-gradient(135deg, #E6D2A2 0%, #C6A768 42%, #9C7F42 68%, #DFC79B 100%);

  --white: #FFFFFF;

  /* ロゴの地色（logo.js が実際の画像から測って上書きします） */
  --logo-bg: #F0EDE4;

  /* 既定はダークセクション */
  --bg: var(--navy-900);
  --text: #EDE8DC;
  --text-dim: #A3AABC;
  --text-mute: #6F7890;
  --line: rgba(198, 167, 104, 0.28);
  --line-soft: rgba(237, 232, 220, 0.12);
  --surface: rgba(255, 255, 255, 0.04);
  --logo-ink: var(--cream-50);
  --accent: var(--gold-300);

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Inter", var(--font-jp);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 82px;
  /* スクロールして縮んだあとの高さ。
     ページ内リンクの着地位置の計算にも使うので、変数にしてある
     （押した瞬間の高さで計算すると、縮んだぶんだけ下にずれる） */
  --header-h-min: 64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* hidden を付けた要素は必ず隠す（display 指定に負けないように） */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; height: 100%; }
img, svg, video, canvas { display: block; max-width: 100%; }
img, svg, video { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--gold-300); color: var(--navy-900); }
:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; }

/* ---------- 3. Utility ---------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.split { display: inline-block; }
.split .char { display: inline-block; will-change: transform, opacity; }

/* ---------- 4. テーマ（明暗の切り替え） ---------- */
.theme-dark {
  --bg: var(--navy-900);
  --text: #EDE8DC;
  --text-dim: #A3AABC;
  --text-mute: #737C93;
  --line: rgba(198, 167, 104, 0.28);
  --line-soft: rgba(237, 232, 220, 0.12);
  --surface: rgba(255, 255, 255, 0.04);
  --logo-ink: var(--cream-50);
  background: var(--bg); color: var(--text);
}
.theme-navy {
  --bg: var(--navy-700);
  --text: #EDE8DC;
  --text-dim: #A9B0C2;
  --text-mute: #7B8499;
  --line: rgba(198, 167, 104, 0.30);
  --line-soft: rgba(237, 232, 220, 0.14);
  --surface: rgba(255, 255, 255, 0.05);
  --logo-ink: var(--cream-50);
  background: var(--bg); color: var(--text);
}
.theme-light {
  --bg: var(--cream-100);
  --text: var(--navy-700);
  --text-dim: #5A6479;
  --text-mute: #8A93A5;
  --line: rgba(176, 143, 78, 0.40);
  --line-soft: rgba(22, 35, 63, 0.14);
  --surface: rgba(255, 255, 255, 0.7);
  --logo-ink: var(--navy-700);
  background: var(--bg); color: var(--text);
}

/* ---------- 5. Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--logo-bg);
  display: grid; place-items: center;
  padding: var(--gutter);
}
#loader.is-hidden { pointer-events: none; }
.loader__bar {
  position: absolute; left: 0; bottom: 0;
  height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: var(--gold-grad);
}

/* --- 真ん中：LOADING・数字・進捗ライン --- */
.loader__stage {
  display: grid; justify-items: center;
  gap: clamp(14px, 2.4vh, 26px);
  will-change: transform, opacity;
}

/* いちばん上の小さな見出し */
.loader__word {
  margin: 0;
  font-family: var(--font-ui); font-weight: 500;
  font-size: 10px; letter-spacing: 0.52em; text-indent: 0.52em;
  color: rgba(22, 35, 63, 0.42);
}

/* 数字（桁がふえても幅が動かないように等幅の数字を使う） */
.loader__count {
  display: flex; align-items: flex-start; gap: 0.06em;
  font-family: var(--font-ui); font-weight: 700;
  font-size: clamp(56px, 11vw, 128px);
  letter-spacing: -0.045em; line-height: 0.86;
  color: var(--navy-700);
}
.loader__num { font-variant-numeric: tabular-nums; }
.loader__pct {
  font-size: 0.2em; font-weight: 600;
  letter-spacing: 0.1em; color: rgba(22, 35, 63, 0.4);
  transform: translateY(0.35em);
}

/* 細い進捗ラインと、先端で光る点 */
.loader__meter {
  position: relative;
  width: min(68vw, 400px); height: 1px;
  background: rgba(22, 35, 63, 0.13);
}
.loader__meter-fill {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, rgba(198, 167, 104, 0.25), var(--gold-400));
}
.loader__meter-dot {
  position: absolute; top: 50%; left: 0;
  width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
  border-radius: 50%; background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(198, 167, 104, 0.16);
}

/* ---------- 6. Intro ---------- */
#intro {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  background: radial-gradient(120% 100% at 50% 45%, #16233F 0%, #0B1428 68%);
}
#intro.is-done { pointer-events: none; }
.intro__stage { width: min(80vw, 860px); will-change: transform, opacity; }
.intro__stage svg { width: 100%; height: auto; overflow: visible; }
.intro__skip {
  position: absolute;
  right: clamp(20px, 5vw, 48px); bottom: clamp(20px, 5vw, 40px);
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.28em;
  color: rgba(237, 232, 220, 0.45); padding: 10px 4px;
  transition: color 0.4s var(--ease-out);
}
.intro__skip:hover { color: var(--gold-200); }

/* ---------- 7. ロゴ（本物の画像を透過して表示） ---------- */
.logo-img {
  position: relative; width: 100%;
  aspect-ratio: 837 / 797;
}
.logo-img .logo-part { position: absolute; inset: 0; will-change: transform, opacity; }
.logo-img .logo-part canvas,
.logo-img .logo-part img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: fill;
}
.logo-whole { width: 100%; height: auto; }
/* 各文字の中心を軸に回すための設定 */
.logo-img .logo-part[data-part="H"]       { transform-origin: 15% 49%; }
.logo-img .logo-part[data-part="gold"]    { transform-origin: 35% 53%; }
.logo-img .logo-part[data-part="A"]       { transform-origin: 48% 49%; }
.logo-img .logo-part[data-part="R"]       { transform-origin: 67% 49%; }
.logo-img .logo-part[data-part="C"]       { transform-origin: 87% 49%; }
.logo-img .logo-part[data-part="tagline"] { transform-origin: 50% 80%; }

/* ヘッダー用：文字の部分だけを横長に切り出す */
.logo-img--mark { aspect-ratio: 837 / 240; overflow: hidden; }
.logo-img--mark .logo-whole {
  position: absolute; left: 0; top: -114%;
  width: 100%; height: auto;
}
/* 解析できなかったときの保険（元画像をそのまま出す） */
.logo-img--raw { background: #F2EFE8; border-radius: 3px; overflow: hidden; }
.logo-img--raw img { width: 100%; height: auto; }
.logo-img--raw.logo-img--mark img { position: absolute; left: 0; top: -114%; }

/* ---------- 8. Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  --logo-ink: var(--navy-700);
  transition: background 0.5s var(--ease-out), height 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out);
}
/* スクロールしても文字色は変えず、うすいクリームの下地だけを敷く。
   （色が変わらないので、紺色のロゴがどこでもはっきり読めます） */
.header.is-scrolled {
  height: var(--header-h-min);
  background: rgba(242, 239, 232, 0.90);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(176, 143, 78, 0.26);
}
.header__inner {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header__logo { display: block; width: clamp(100px, 11vw, 128px); }
.header__logo svg { width: 100%; height: auto; overflow: visible; }

.gnav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.gnav__link {
  position: relative;
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.12em;
  color: rgba(22, 35, 63, 0.72);
  padding: 6px 0;
  transition: color 0.35s var(--ease-out);
}
.gnav__link small {
  display: block; font-size: 9px; letter-spacing: 0.2em;
  color: var(--gold-500); opacity: 0.9;
}
.gnav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.gnav__link:hover, .gnav__link.is-active { color: var(--navy-700); }
.gnav__link:hover::after, .gnav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--gold-400); border-radius: 999px;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.18em;
  color: var(--gold-500);
  transition: color 0.4s var(--ease-out);
}
.header__cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold-grad);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.header__cta span { position: relative; z-index: 1; }
.header__cta:hover { color: var(--navy-900); }
.header__cta:hover::before { transform: translateY(0); }

.burger { display: none; width: 40px; height: 40px; position: relative; z-index: 210; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--navy-700);
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
/* メニューを開くと背景が濃紺になるので、×印は明るい色にする */
.burger.is-open span { background: var(--cream-50); }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 205;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  clip-path: circle(0% at calc(100% - 40px) 42px);
  transition: clip-path 0.7s var(--ease-inout);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 40px) 42px); visibility: visible; }
.drawer__link {
  display: block; padding: 14px 0;
  border-bottom: 1px solid rgba(237, 232, 220, 0.12);
  font-size: 17px; letter-spacing: 0.1em; color: var(--cream-50);
}
.drawer__link small {
  display: block; font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.22em; color: var(--gold-300);
}

/* ---------- 9. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  overflow: hidden; isolation: isolate;

  /* ロゴの地色をそのまま背景にする（＝フチの色差が完全に見えなくなる）
     明るい背景なので、文字や線の色もライト用に全部そろえる */
  background: var(--logo-bg);
  color: var(--navy-700);
  --text: var(--navy-700);
  --text-dim: #5A6479;
  --text-mute: #8A93A5;
  --line: rgba(176, 143, 78, 0.42);
  --line-soft: rgba(22, 35, 63, 0.18);
  --surface: rgba(255, 255, 255, 0.7);
}
#hero-canvas { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 62%, var(--logo-bg) 100%);
}
.hero__inner {
  width: 100%; max-width: var(--container);
  margin-inline: auto;
  /* 下の余白は、以前ここに置いていた丸いスクロール印のための場所でした。
     その印をやめたので、ロゴを大きくするぶんの場所として詰めています。 */
  padding: calc(var(--header-h) + 14px) var(--gutter) clamp(30px, 5vh, 60px);
  display: grid; justify-items: center; text-align: center;
  gap: clamp(14px, 2.4vh, 30px);
}
/* ロゴが集まってくる舞台
   幅だけでなく「画面の高さ」も見てサイズを決めるので、
   横長・縦長どちらの画面でも1画面に収まります */
.hero__stage {
  position: relative;
  /* 画面の横幅・高さ・上限の3つのうち、いちばん小さい値を使います。
     どの画面でも1画面に収まりつつ、できるだけ大きく見せます。 */
  --logo-w: min(94vw, 64vh, 880px);
  width: var(--logo-w);

  /* ★上下の空白を詰めています★
     ロゴ画像は、実際に絵があるのが縦の 39%〜70% だけで、
     上に約39%・下に約30%の空白をかかえています。
     そのままだと文字との間が大きく空き、
     キャッチコピーやボタンが1画面目からはみ出してしまいます。
     そこで空白のぶんだけ、上下にマイナスの余白を入れて詰めています。
     （％ではなく画像の幅を基準にしているので、
       画面の大きさが変わっても同じ見え方になります） */
  margin-top: calc(var(--logo-w) * -0.26);
  margin-bottom: calc(var(--logo-w) * -0.20);

  opacity: 0;                     /* アニメが始まるまで隠す */
}
.hero__copy { max-width: 46em; opacity: 0; }
.hero__title {
  font-size: clamp(18px, 2.9vw, 34px);
  line-height: 1.55; font-weight: 700; letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__lead {
  color: var(--text-dim);
  font-size: clamp(12.5px, 1.3vw, 14.5px);
  margin: 0 auto 24px;
  max-width: 40em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero__tools {
  position: absolute; z-index: 3;
  right: clamp(18px, 4vw, 44px); top: calc(var(--header-h) + 10px);
  display: flex; gap: 8px; align-items: center;
}
.hero__tool {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(22, 35, 63, 0.5);
  border: 1px solid rgba(22, 35, 63, 0.16);
  border-radius: 999px; padding: 7px 14px;
  transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.hero__tool:hover { color: var(--gold-500); border-color: var(--gold-400); }

/* ---------- 10. Buttons ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 17px 34px; border-radius: 999px;
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.16em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-grad);
  transition: transform 0.55s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(176, 143, 78, 0.26); }
.btn--solid { color: var(--navy-900); }
.btn--ghost { color: var(--text); border: 1px solid var(--line); }
.theme-light .btn--ghost, .hero .btn--ghost { border-color: rgba(22, 35, 63, 0.32); }
.btn--ghost::before { transform: translateY(101%); }
.btn--ghost:hover { color: var(--navy-900); border-color: transparent; }
.btn--ghost:hover::before { transform: translateY(0); }
.btn .arrow {
  position: relative; flex: none;
  width: 20px; height: 1px; background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 30px; }

/* ---------- 11. Section 共通 ---------- */
.section { position: relative; padding: clamp(86px, 11vw, 160px) 0; }
.sec-head { margin-bottom: clamp(42px, 6vw, 72px); }
.sec-head__en {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.34em;
  color: var(--gold-300); margin-bottom: 18px;
}
.theme-light .sec-head__en { color: var(--gold-500); }

/* クリーム色の背景では、金が明るすぎて同化するので濃い金にする */
.theme-light .harc-item__mark,
.theme-light .gold-text,
.hero .gold-text {
  background: linear-gradient(135deg, #C09A4C 0%, #9A7A2C 45%, #775C15 74%, #B08F3E 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* 数字は単色。明るい背景では濃い金にする */
.theme-light .strength-item__num,
.theme-light .fact__num { color: var(--gold-500); }
/* 1文字ずつに分けた金文字は、グラデーションが文字に乗らず消えてしまうので単色にする */
.gold-text.split .char { color: #A8863A; -webkit-text-fill-color: #A8863A; }
/* 下層ページの大きな英字タイトルも同じ理由で単色にする */
.page-head__en.split .char { color: var(--gold-300); -webkit-text-fill-color: var(--gold-300); }
.theme-dark .gold-text.split .char,
.theme-navy .gold-text.split .char { color: var(--gold-300); -webkit-text-fill-color: var(--gold-300); }
.sec-head__en::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.6; }
.sec-head__jp {
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 700; line-height: 1.5; letter-spacing: 0.03em;
}
.sec-head__desc { margin-top: 20px; max-width: 46em; color: var(--text-dim); font-size: 15px; }

.reveal { opacity: 0; transform: translateY(28px); }
.no-js .reveal, .is-revealed { opacity: 1; transform: none; }

/* 個別ページ用（旧ページを開いたときのための見出し） */
.section--line::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--gutter) * 2); max-width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.page-head {
  position: relative; min-height: 50svh;
  display: grid; align-items: end;
  padding: calc(var(--header-h) + 56px) 0 clamp(38px, 6vw, 66px);
  overflow: hidden;
  background: radial-gradient(90% 120% at 80% 0%, rgba(198, 167, 104, 0.12), transparent 60%), var(--navy-900);
  border-bottom: 1px solid var(--line-soft);
}
.page-head__en {
  font-family: var(--font-en); font-weight: 500;
  font-size: clamp(40px, 8vw, 92px); line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.page-head__jp { font-size: clamp(15px, 1.8vw, 18px); letter-spacing: 0.16em; color: var(--text-dim); }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-mute); margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--gold-300); }

/* ---------- 12. スタッキング ---------- */
.stack { position: relative; }
.stack__panel {
  position: sticky; top: 0;
  min-height: 100svh;
  display: grid; align-items: center;
  padding: clamp(86px, 10vw, 120px) 0;
  overflow: hidden;
  filter: brightness(1);
  will-change: transform, filter;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.45);
}
.stack__panel:first-child { box-shadow: none; }
.stack__num {
  position: absolute; right: var(--gutter); top: clamp(70px, 9vw, 110px);
  font-family: var(--font-ui); font-weight: 700;
  font-size: clamp(56px, 11vw, 136px);
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  line-height: 1; color: var(--text); opacity: 0.07;
  pointer-events: none; user-select: none;
}

/* ---------- 13. Philosophy ---------- */
.harc-list { display: grid; gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
.harc-item {
  position: relative; background: var(--bg);
  display: grid; grid-template-columns: clamp(84px, 11vw, 150px) 1fr;
  align-items: center; gap: clamp(20px, 4vw, 46px);
  padding: clamp(22px, 3.2vw, 38px) clamp(14px, 2vw, 26px);
  overflow: hidden;
  transition: background 0.6s var(--ease-out);
}
.harc-item::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(198, 167, 104, 0.13), transparent 60%);
  opacity: 0; transition: opacity 0.6s var(--ease-out);
}
.harc-item:hover::before { opacity: 1; }
.harc-item__mark {
  position: relative; text-align: center;
  font-family: var(--font-en); font-size: clamp(50px, 8vw, 104px);
  line-height: 1; font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: transform 0.7s var(--ease-out);
}
.harc-item:hover .harc-item__mark { transform: translateY(-6px); }
.harc-item__en {
  font-family: var(--font-en);
  font-size: clamp(18px, 2.2vw, 26px); letter-spacing: 0.06em; margin-bottom: 4px;
}
.harc-item__jp { font-size: clamp(15px, 1.8vw, 19px); font-weight: 700; margin-bottom: 10px; }
.harc-item__desc { color: var(--text-dim); font-size: 14px; max-width: 44em; }

/* ---------- 14. Business ---------- */
.biz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
.biz-card {
  position: relative; overflow: hidden;
  padding: clamp(26px, 3.2vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 4px;
  transition: transform 0.6s var(--ease-out), border-color 0.6s var(--ease-out);
}
.biz-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(198, 167, 104, 0.18), transparent 70%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.biz-card:hover { transform: translateY(-8px); border-color: var(--line); }
.biz-card:hover::after { opacity: 1; }
.biz-card__no { font-family: var(--font-ui); font-weight: 700; font-size: 11px; font-variant-numeric: tabular-nums; letter-spacing: 0.22em; color: var(--gold-300); margin-bottom: 20px; }
.theme-light .biz-card__no { color: var(--gold-500); }
.biz-card__icon { width: 50px; height: 50px; margin-bottom: 22px; stroke: var(--gold-300); fill: none; stroke-width: 1.2; }
.theme-light .biz-card__icon { stroke: var(--gold-500); }
.biz-card__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.biz-card__target {
  display: inline-block;
  font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.18em;
  color: var(--gold-300); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 12px; margin-bottom: 16px;
}
.theme-light .biz-card__target { color: var(--gold-500); }
.biz-card__desc { color: var(--text-dim); font-size: 14px; }

/* ---------- 15. Strength ---------- */
.strength-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: clamp(26px, 4vw, 52px); }
.strength-item { position: relative; padding-top: 28px; border-top: 1px solid var(--line); }
.strength-item__num {
  font-family: var(--font-ui); font-weight: 700;
  font-size: 42px; line-height: 1; margin-bottom: 14px;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  color: var(--gold-300);
}
.strength-item__title { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.strength-item__desc { color: var(--text-dim); font-size: 14px; }

/* ---------- 16. 写真・数字・拠点 ---------- */
.media {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-soft); border-radius: 4px;
}
.media img { width: 100%; height: auto; }
/* 画面いっぱいに広がる写真（ズーム演出用） */
.media--wide {
  border-radius: 0; border-left: 0; border-right: 0;
  margin: clamp(30px, 5vw, 56px) 0;
  max-height: 78vh;
}
.media--wide img { height: 78vh; max-height: 78vh; object-fit: cover; will-change: transform; }
/* 画面が狭いときは、高さを固定すると写真の左右が大きく切れてしまうので、
   高さの固定と切り抜きをやめて、写真ぜんぶが見えるようにします */
@media (max-width: 900px) {
  .media--wide { max-height: none; }
  .media--wide img { height: auto; max-height: none; object-fit: contain; }
  /* 写真が小さくなるぶん、説明文は重ねずに下へ出す（人物に文字がかぶらないように） */
  .media--wide .media__caption {
    position: static;
    padding: 14px var(--gutter) 0;
    color: var(--text-dim); font-weight: 400; font-size: 13px;
  }
  .media--wide.media--tint::after { display: none; }
}
.media--tint::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,20,40,0.10) 0%, rgba(11,20,40,0.30) 55%, rgba(11,20,40,0.88) 100%);
}
.media__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(18px, 3vw, 34px);
  color: var(--cream-50);
  font-size: clamp(14px, 1.8vw, 18px); font-weight: 700; letter-spacing: 0.04em;
}
/* 一覧のすぐ下からAREAが始まるように、下の余白を詰めます */
#network { padding-bottom: clamp(30px, 4.5vw, 62px); }

/* 事実を並べる一覧（罫線で区切って、静かに読ませる） */
.facts {
  margin-top: clamp(36px, 5vw, 62px);
  border-top: 1px solid var(--line-soft);
}
.fact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.6vw, 38px);
  padding: clamp(18px, 2.8vw, 30px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 0.5s var(--ease-out);
}
.fact:hover { border-bottom-color: var(--line); }
.fact__no {
  font-family: var(--font-ui); font-weight: 700;
  font-size: 11px; font-variant-numeric: tabular-nums;
  letter-spacing: 0.22em; color: var(--gold-300);
}
.fact__label {
  font-size: clamp(15px, 1.8vw, 19px); font-weight: 700;
  letter-spacing: 0.05em; line-height: 1.5;
}
.fact__desc {
  display: block; margin-top: 5px;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em; color: var(--text-dim);
}
.fact__num {
  margin: 0;
  font-family: var(--font-ui); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 0.95;
  letter-spacing: -0.035em; color: var(--gold-300);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.fact__num small {
  font-size: 0.26em; font-weight: 500; margin-left: 10px;
  letter-spacing: 0.16em; color: var(--text-dim);
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 9px 20px; font-size: 13px; color: var(--text-dim);
  transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.chip:hover { border-color: var(--line); color: var(--text); }
.chip--main {
  border-color: var(--gold-400); color: var(--gold-300);
  background: rgba(198, 167, 104, 0.10);
}
.theme-light .chip--main { color: var(--gold-500); }

/* ---------- 17. Message ---------- */
.ceo-layout {
  display: grid; grid-template-columns: minmax(230px, 320px) 1fr;
  gap: clamp(30px, 5vw, 66px); align-items: start;
}
.message__quote {
  font-size: clamp(20px, 3.2vw, 34px); font-weight: 700;
  line-height: 1.72; letter-spacing: 0.02em; margin-bottom: 40px;
}
.message__body { color: var(--text-dim); font-size: 15px; max-width: 46em; }
.message__body p + p { margin-top: 1.6em; }
.message__sign { margin-top: 40px; font-size: 14px; color: var(--text); }
.message__sign strong { font-size: 20px; letter-spacing: 0.12em; margin-left: 10px; }

/* ---------- 18. News ---------- */
.news-list { border-top: 1px solid var(--line-soft); }
.news-item { border-bottom: 1px solid var(--line-soft); }
.news-item__link {
  position: relative; display: grid; width: 100%;
  grid-template-columns: 110px 130px 1fr auto;
  align-items: center; gap: clamp(14px, 2.4vw, 30px);
  padding: clamp(20px, 2.6vw, 30px) 6px;
  text-align: left; cursor: pointer;
}
.news-item__body {
  padding: 0 6px clamp(24px, 3vw, 34px);
  max-width: 52em;
}
.news-item.is-open .news-item__arrow { width: 38px; background: var(--gold-300); }
.news-item.is-open .news-item__arrow::after { transform: rotate(135deg); top: -3px; }
.news-item__link::before {
  content: ""; position: absolute; inset: 0 -14px;
  background: linear-gradient(90deg, rgba(198, 167, 104, 0.12), transparent 70%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.news-item__link:hover::before { opacity: 1; }
.news-item__date { position: relative; font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.12em; color: var(--gold-300); }
.theme-light .news-item__date { color: var(--gold-500); }
.news-item__cat {
  position: relative; justify-self: start;
  font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.16em;
  color: var(--text-dim); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 4px 12px; white-space: nowrap;
}
.news-item__title { position: relative; font-size: 15px; }
.news-item__arrow {
  position: relative; width: 26px; height: 1px; background: var(--text-mute);
  transition: width 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.news-item__arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--text-mute); border-right: 1px solid var(--text-mute);
  transform: rotate(45deg);
}
.news-item__link:hover .news-item__arrow { width: 38px; background: var(--gold-300); }
.news-detail { border-top: 1px solid var(--line-soft); padding-top: clamp(26px, 4vw, 44px); }
.news-body { color: var(--text-dim); font-size: 15px; }
.news-body p + p { margin-top: 1.6em; }

/* ---------- 19. Table ---------- */
.data-table th, .data-table td {
  padding: 22px 8px; border-bottom: 1px solid var(--line-soft);
  text-align: left; vertical-align: top; font-size: 15px;
}
.data-table th {
  width: clamp(110px, 22%, 220px);
  color: var(--gold-300); font-weight: 500;
  letter-spacing: 0.1em; font-size: 13px; padding-top: 25px;
}
.theme-light .data-table th { color: var(--gold-500); }
.data-table td { color: var(--text-dim); }

/* ---------- 20. Form ---------- */
.form { display: grid; gap: 26px; max-width: 760px; }
.field { display: grid; gap: 10px; }
.field__label { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.08em; }
.field__req {
  font-family: var(--font-ui); font-size: 9px; letter-spacing: 0.14em;
  color: var(--navy-900); background: var(--gold-300);
  padding: 3px 8px; border-radius: 3px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 3px;
  color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.theme-light .field input, .theme-light .field select, .theme-light .field textarea { background: #fff; }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-400);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-400) 50%), linear-gradient(135deg, var(--gold-400) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px; background-repeat: no-repeat;
}
.field select option { background: var(--bg); color: var(--text); }
.form__note { font-size: 12px; color: var(--text-mute); }
.form__submit { justify-self: start; }
.form__submit:disabled { opacity: 0.5; cursor: default; }

/* 送信したあとのお知らせ（送信中／完了／失敗） */
.form__msg {
  display: none;
  margin: 0; padding: 16px 20px;
  border-left: 2px solid var(--line);
  background: var(--surface);
  font-size: 14px; line-height: 1.9; color: var(--text-dim);
}
.form__msg.is-shown { display: block; }
.form__msg.is-ok {
  border-left-color: var(--gold-400);
  color: var(--text);
}
.form__msg.is-ng {
  border-left-color: #C1584E;
  color: var(--text);
}

/* ============================================================
   お問い合わせページ（左に流れ・右にフォームの2段組み）
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
}

/* --- 左のサイド --- */
.contact-side__inner {
  position: sticky; top: calc(var(--header-h) + 28px);
  display: grid; gap: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line-soft); border-radius: 6px;
  background: var(--surface);
}
.cside__label {
  font-family: var(--font-ui); font-weight: 600;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold-300); margin-bottom: 12px;
}
.cside__ttl { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.cside__val {
  font-family: var(--font-ui); font-weight: 600;
  font-size: 19px; letter-spacing: 0.02em; line-height: 1.5;
}
.cside__val--sm { font-family: var(--font-jp); font-weight: 400; font-size: 14px; line-height: 1.9; color: var(--text-dim); }
.cside__note { margin-top: 6px; font-size: 12px; color: var(--text-mute); }

/* 返信までの流れ */
.flow { display: grid; gap: 22px; }
.flow__item { position: relative; padding-left: 40px; }
/* 番号どうしを縦線でつなぐ */
.flow__item:not(:last-child)::before {
  content: ""; position: absolute;
  left: 11px; top: 26px; bottom: -22px;
  width: 1px; background: var(--line-soft);
}
.flow__no {
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center;
  width: 23px; height: 23px; border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-ui); font-weight: 700;
  font-size: 9px; letter-spacing: 0.04em; color: var(--gold-300);
  background: var(--bg);
}
.flow__ttl { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.flow__txt { font-size: 12.5px; line-height: 1.85; color: var(--text-dim); }

/* --- 右のフォーム --- */
.contact-main .sec-head { margin-bottom: clamp(28px, 4vw, 44px); }
.js-req-note::before {
  content: "必須";
  display: inline-block; margin-right: 8px;
  padding: 2px 8px; border-radius: 2px;
  background: var(--gold-400); color: var(--navy-900);
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  vertical-align: 1px;
}

.form--rich { display: grid; gap: clamp(30px, 4vw, 46px); max-width: none; }

/* 3つのまとまり（01 / 02 / 03） */
.fset { min-width: 0; margin: 0; padding: 0; border: 0; }
.fset__head {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  width: 100%; padding: 0 0 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.fset__no {
  font-family: var(--font-ui); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; color: var(--gold-300);
}
.fset__ttl { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; }
.fset__grid { display: grid; gap: 22px; }

/* --- ご用件のえらぶボタン --- */
.pick { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pick__btn {
  position: relative; display: block; cursor: pointer;
  padding: 18px 20px;
  border: 1px solid var(--line-soft); border-radius: 5px;
  background: var(--surface);
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.pick__btn input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.pick__btn:hover { border-color: var(--line); transform: translateY(-2px); }
.pick__btn:focus-within { outline: 2px solid var(--gold-300); outline-offset: 2px; }
.pick__jp { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.pick__sub { display: block; font-size: 11.5px; color: var(--text-mute); letter-spacing: 0.04em; }
/* えらばれたもの */
.pick__btn.is-picked {
  border-color: var(--gold-400);
  background: rgba(198, 167, 104, 0.10);
}
.pick__btn.is-picked .pick__sub { color: var(--text-dim); }
.pick__btn.is-picked::after {
  content: ""; position: absolute; right: 16px; top: 16px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(198, 167, 104, 0.18);
}

/* 任意ラベル */
.field__opt {
  margin-left: 10px; padding: 2px 8px; border-radius: 2px;
  border: 1px solid var(--line-soft);
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em; color: var(--text-mute);
  vertical-align: 1px;
}

/* 送信まわり */
.form__foot {
  display: grid; gap: 22px; justify-items: start;
  padding-top: clamp(6px, 1vw, 14px);
}
.form--rich .form__note { max-width: 62ch; }
.form--rich .form__note a { color: var(--gold-500); text-decoration: underline; text-underline-offset: 3px; }
.form--rich .form__submit { min-width: 210px; justify-content: center; }

@media (max-width: 940px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  /* 狭い画面ではフォームを先に、流れは下にまわす */
  .contact-main { order: -1; }
  .contact-side__inner { position: static; }
}
@media (max-width: 560px) {
  .pick { grid-template-columns: 1fr; }
}

/* ---------- 21. CTA ---------- */
.cta-band { position: relative; padding: clamp(70px, 9vw, 124px) 0; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 130% at 50% 100%, rgba(198, 167, 104, 0.18), transparent 70%);
}
.cta-band__inner { position: relative; text-align: center; }
.cta-band__title { font-size: clamp(22px, 3.4vw, 38px); font-weight: 700; margin-bottom: 18px; }
.cta-band__desc { color: var(--text-dim); font-size: 15px; margin-bottom: 38px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 22. Footer ---------- */
.footer { padding: clamp(56px, 7vw, 88px) 0 32px; border-top: 1px solid var(--line-soft); }
.footer__top { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: clamp(32px, 5vw, 70px); }
.footer__logo { width: 160px; margin-bottom: 22px; }
.footer__logo svg { width: 100%; height: auto; overflow: visible; }
.footer__addr { color: var(--text-mute); font-size: 13px; font-style: normal; line-height: 2; }
.footer__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 28px; }
.footer__nav h4 { font-family: var(--font-ui); font-weight: 600; font-size: 10px; letter-spacing: 0.24em; color: var(--gold-300); margin-bottom: 16px; }
.footer__nav a { display: block; padding: 6px 0; font-size: 13px; color: var(--text-dim); transition: color 0.3s; }
.footer__nav a:hover { color: var(--gold-300); }
/* クリーム色の下地では、金を濃いめにして読みやすくする */
.theme-light.footer .footer__nav h4,
.theme-light.footer .footer__nav a:hover { color: var(--gold-500); }
.theme-light.footer .footer__nav a { color: #5A6479; }
.theme-light.footer .footer__nav a:hover { color: var(--navy-700); }
.footer__bottom {
  margin-top: clamp(40px, 6vw, 66px); padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.1em; color: var(--text-mute);
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 980px) {
  /* --- スマホでも、パソコンと同じように上にメニューを並べる ---
     ヘッダーを2段にして、上の段にロゴとCONTACT、下の段にメニュー。
     はばに入りきらないメニューは、指で横になぞると続きが見られます。
     三本線（ハンバーガー）のボタンは使わなくなるので隠します。 */
  :root { --header-h: 104px; --header-h-min: 92px; }

  .burger { display: none; }
  .drawer { display: none; }

  .header.is-scrolled { height: var(--header-h-min); }
  .header__inner {
    flex-wrap: wrap;
    row-gap: 4px;
    padding-block: 8px;
  }
  .header__logo { width: clamp(92px, 26vw, 116px); }
  .header__cta { padding: 8px 16px; font-size: 11px; }

  .gnav {
    order: 3;               /* ロゴとCONTACTの下の段へ */
    width: 100%;
    /* 8項目を横スクロールにすると先が隠れて気づけないので、
       4つずつ2行に並べて、ぜんぶ見えるようにする */
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    column-gap: 16px;
    row-gap: 4px;
  }
  /* せまい画面では英字を省いて、日本語だけのすっきり表示にする */
  .gnav__link small { display: none; }
  .gnav__link { flex: 0 0 auto; padding-block: 1px; white-space: nowrap; }

  .footer__top { grid-template-columns: 1fr; }
  .news-item__link { grid-template-columns: 1fr auto; grid-template-areas: "date arrow" "cat cat" "title title"; row-gap: 8px; }
  .news-item__date { grid-area: date; }
  .news-item__cat { grid-area: cat; }
  .news-item__title { grid-area: title; }
  .news-item__arrow { grid-area: arrow; }
}
@media (max-width: 760px) { .ceo-layout { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  /* メニューが2行に折り返るぶん、ヘッダーは少し高いままにします */
  :root { --header-h: 100px; --header-h-min: 92px; }
  .header.is-scrolled { height: var(--header-h-min); }
  .gnav { column-gap: 14px; }
  .gnav__link { font-size: 11px; }
  body { font-size: 15px; }

  /* --- トップの1画面目をスマホでも収める --- */
  .hero__inner { padding-bottom: 62px; gap: 14px; }
  .hero__stage { width: min(92vw, 40vh); }
  .hero__title { font-size: 17px; line-height: 1.6; margin-bottom: 12px; }
  .hero__lead { display: none; }          /* 縦が足りないので1画面目では省略 */
  .hero__actions { gap: 10px; width: 100%; justify-content: center; }
  .hero__actions .btn { padding: 13px 20px; font-size: 10.5px; gap: 10px; }
  .hero__tools { top: auto; bottom: 14px; right: 14px; }
  .hero__tool { font-size: 9px; padding: 6px 11px; letter-spacing: 0.12em; }

  /* --- 各セクション --- */
  .section { padding: 68px 0; }
  .harc-item { grid-template-columns: 1fr; gap: 8px; }
  .harc-item__mark { text-align: left; }
  .data-table th, .data-table td { display: block; width: 100%; }
  .data-table th { border-bottom: 0; padding-bottom: 0; }
  .data-table td { padding-top: 8px; }
  .stack__panel { position: relative; min-height: auto; padding: 68px 0; }
  .stack__num { font-size: 54px; top: 40px; }
  .sec-head { margin-bottom: 34px; }
  .btn { padding: 15px 26px; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { justify-content: center; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .media__caption { font-size: 13px; padding: 14px; }
  .form { gap: 20px; }
  .field textarea { min-height: 140px; }

  /* 事実の一覧は、数字を下の段に落とす */
  .fact { grid-template-columns: auto minmax(0, 1fr); row-gap: 10px; }
  .fact__num { grid-column: 2; justify-self: start; font-size: 40px; }
}

/* 横向きスマホなど、縦が極端に狭いとき */
@media (max-height: 560px) {
  .hero__stage { width: min(52vw, 40vh); }
  .hero__lead { display: none; }
}

/* ---------- 24. Accessibility ---------- */
/* ※以前ここに「OSの“動きを減らす”設定に従ってアニメを止める」指定が
   入っていましたが、ロゴの演出が動かなくなるため外しています。 */
