/* =====================================================
   TORECAHACK — Editorial Noir Design System v6
   Art Direction: Gothic Typography / Agency-grade
   Unified: corporate top + /recruit LP
   v5: Motion layer — card tilt, magnetic buttons,
       stagger reveal, parallax labels, custom cursor
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

/* =====================================================
   Design Tokens
   ===================================================== */
:root {
  --ink:      #0B0B0D;          /* 墨：温度のある漆黒 */
  --cream:    #EDEAE3;          /* 生成り：文字色 */
  --muted:    #8B8781;          /* 補助グレー */
  --gold:     #C6A15B;          /* アンティークゴールド（1色のみ・多用禁止） */
  --line:     rgba(237,234,227,0.14);  /* ヘアライン罫線 */
  --surface:  rgba(237,234,227,0.03);  /* 微かな面 */
  --ease:     cubic-bezier(.22,.8,.26,.99);
  --radius:   3px;              /* 最小角丸 */
}

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

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--ink);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(198,161,91,.28); color: var(--cream); }

/* スクロールバー */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(237,234,227,0.14); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(237,234,227,0.25); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }

/* =====================================================
   グレイン・オーバーレイ（film texture 3%）
   ===================================================== */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* aurora/gridlines — 残すが大幅に抑制（黒地そのまま） */
.aurora { display: none; }
.gridlines { display: none; }

/* =====================================================
   タイポグラフィ・ヘルパー
   ===================================================== */
/* 明朝・Cormorant は廃止。ゴシック統一。 */
.gothic-en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* holo-text — Editorial Noir では金の単色に置換 */
.holo-text {
  color: var(--gold);
  /* グラデ・虹は廃止 */
}

.sec { padding: 160px 0; position: relative; }

/* =====================================================
   セクション見出し：英語大見出し主役 + 和文サブ
   titan-art構造：英語BIG → 和文small
   ===================================================== */

/* 英語大見出しラベル（ビジュアルの主役） */
.sec-label {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}
/* 中央揃えセクションの英語大ラベル */
.txt-c .sec-label {
  text-align: center;
}
/* 英語大見出しの要所のみ金 */
.sec-label.gold { color: var(--gold); }

/* 和文サブタイトル（英語の直下・小さめ） */
.sec-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: 28px;
}
/* 本文上のセパレーター（ヘアライン） */
.sec-title::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
  opacity: .6;
}
.txt-c .sec-title::before { margin-left: auto; margin-right: auto; }

.sec-desc {
  color: var(--muted); font-size: 14px; max-width: 560px;
  font-weight: 400; line-height: 2;
}
.txt-c { text-align: center; }
.txt-c .sec-label { justify-content: center; }
.txt-c .sec-desc { margin: 0 auto; }

/* =====================================================
   Reveal アニメーション（スタガー強化・scale付き）
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0) scale(1); }

/* 大英語見出しのマスクスライドアップ */
.sec-label {
  overflow: hidden;
  /* パララックスは JS で --parallax-y をセット */
  will-change: transform;
}
.sec-label-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.sec-label.is-in .sec-label-inner {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .sec-label-inner { transform: none; transition: none; }
  .tcg-card, .stack { animation: none !important; }
}

/* =====================================================
   Nav
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0; transition: all .4s var(--ease);
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(11,11,13,.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600; letter-spacing: .22em; font-size: 13px;
  color: var(--cream);
  text-transform: uppercase;
}
.nav-logo img { width: 26px; height: 26px; border-radius: 2px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 11px; font-weight: 400; color: var(--muted);
  letter-spacing: .18em; text-transform: uppercase;
  position: relative; transition: color .3s;
}
.nav-link:hover { color: var(--cream); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  color: var(--ink) !important; font-weight: 500; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 20px; border-radius: var(--radius);
  background: var(--gold);
  transition: opacity .25s;
}
.nav-cta:hover { opacity: .88; }
.nav-cta::after { display: none; }
.hamburger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--cream); margin: 6px 0;
  transition: all .3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   Buttons（v5：magnetic lift — JS が --tx/--ty を注入）
   ===================================================== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--ink); font-weight: 500; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 36px; border-radius: var(--radius); border: 0; cursor: pointer;
  /* magnetic: JSが --tx/--ty/--lift を設定 */
  transform: translate(var(--tx,0px), calc(var(--ty,0px) + var(--lift,0px)));
  transition: opacity .25s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn-gold:hover {
  opacity: .92;
  box-shadow: 0 14px 32px rgba(198,161,91,.25);
  --lift: -3px;
}
/* 矢印SVGをわずかに前に */
.btn-gold svg {
  transition: transform 0.3s var(--ease);
}
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream); font-weight: 400; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--radius);
  border: 1px solid var(--line); background: transparent;
  transform: translate(var(--tx,0px), calc(var(--ty,0px) + var(--lift,0px)));
  transition: border-color .3s, color .3s, transform .35s var(--ease);
  will-change: transform;
}
.btn-ghost:hover { border-color: rgba(198,161,91,.5); color: var(--gold); --lift: -2px; }

.nav-cta {
  /* magnetic も適用 */
  transform: translate(var(--tx,0px), var(--ty,0px)) !important;
  transition: opacity .25s, transform .35s var(--ease) !important;
  will-change: transform;
}
.nav-cta:hover { opacity: .88 !important; }

.btn-note { font-size: 11px; color: var(--muted); margin-top: 14px; letter-spacing: .04em; }

/* =====================================================
   カード共通（v5：ホバーでリフト＋金ヘアライン）
   ===================================================== */
.gcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gcard:hover {
  border-color: rgba(198,161,91,.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
/* 金ヘアライン：hover時に底辺が伸びる */
.gcard::after {
  content: "";
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: left .4s var(--ease), right .4s var(--ease), opacity .4s var(--ease);
  border-radius: 0 0 var(--radius) var(--radius);
}
.gcard:hover::after {
  left: 0; right: 0;
  opacity: .55;
}
/* ただし、grid内のフラットカード（mission/svc-card等）はoverflowがhiddenのためグリッド外枠で管理 */

/* =====================================================
   Hero（トップ）
   ===================================================== */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 160px 0 100px; position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 80px; align-items: center;
}

/* eyebrow：Josefin Sans ラベル */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: "—";
  color: var(--gold);
}
/* 旧 .dot は非表示 */
.hero-eyebrow .dot { display: none; }

/* ヒーロー大見出し：ゴシック900・タイト */
.hero-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -.01em;
  margin-bottom: 36px;
}
.hero-sub {
  color: var(--muted); font-size: clamp(13px,1.4vw,15px);
  max-width: 460px; margin-bottom: 48px;
  font-weight: 400; line-height: 1.95;
}
.hero-sub strong { color: var(--cream); font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* =====================================================
   TCG カード（v5：3Dチルト・金箔・アイドル浮遊）
   ===================================================== */
.tcg-scene {
  perspective: 900px;
  display: flex; justify-content: center;
}
.tcg-card {
  width: min(300px, 72vw); aspect-ratio: 63/88;
  border-radius: 14px; position: relative;
  transform-style: preserve-3d;
  /* JS が --rx / --ry / --scale を注入 */
  transform:
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
  /* 離れたとき・ページロード時は滑らかに戻る */
  transition: transform 0.08s linear, box-shadow 0.4s var(--ease);
  background: #111114;
  border: 1px solid rgba(198,161,91,.45);
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 0 rgba(198,161,91,0);
  cursor: default; user-select: none;
  will-change: transform;
}
/* ホバー中はshadow深く */
.tcg-card.is-tilting {
  box-shadow: 0 56px 100px rgba(0,0,0,.85), 0 0 32px rgba(198,161,91,.08);
  transition: transform 0.04s linear, box-shadow 0.3s var(--ease);
}

/* アイドル浮遊（ホバーしていない時） */
@keyframes card-float {
  0%,100% { translate: 0 0px; }
  50%      { translate: 0 -6px; }
}
.tcg-card:not(.is-tilting) {
  animation: card-float 7s ease-in-out infinite;
}

/* 金箔ハイライト（暖色白〜金、虹禁止） */
.tcg-holo {
  position: absolute; inset: 0; border-radius: 14px;
  pointer-events: none; z-index: 3;
  /* カーソル位置に追従する暖色白〜金の柔らかいスポット */
  background: radial-gradient(
    ellipse 55% 40% at var(--hx, 50%) var(--hy, 35%),
    rgba(255,248,220,.18) 0%,
    rgba(198,161,91,.10) 35%,
    transparent 70%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.tcg-card.is-tilting .tcg-holo { opacity: 1; }

/* 旧グローは廃止 */
.tcg-glow { display: none; }

/* =====================================================
   採用LP スタックカード（v5：チルト・浮遊）
   ===================================================== */
.stack-scene {
  perspective: 900px;
  display: flex; justify-content: center;
}
.stack {
  position: relative; width: min(280px, 68vw);
  aspect-ratio: 63/88; transform-style: preserve-3d;
  /* JS が --rx / --ry / --scale を注入 */
  transform:
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
  transition: transform 0.08s linear, filter 0.4s var(--ease);
  will-change: transform;
}
.stack.is-tilting {
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.7));
  transition: transform 0.04s linear, filter 0.3s var(--ease);
}
@keyframes stack-float {
  0%,100% { translate: 0 0px; }
  50%      { translate: 0 -5px; }
}
.stack:not(.is-tilting) {
  animation: stack-float 8s ease-in-out infinite;
}

/* frontカードに箔 */
.scard.front::after {
  content: "";
  position: absolute; inset: 0; border-radius: 12px;
  background: radial-gradient(
    ellipse 55% 40% at var(--hx, 50%) var(--hy, 35%),
    rgba(255,248,220,.15) 0%,
    rgba(198,161,91,.08) 35%,
    transparent 70%
  );
  mix-blend-mode: screen;
  opacity: var(--holo-op, 0);
  pointer-events: none; z-index: 4;
  transition: opacity 0.25s var(--ease);
}

.tcg-inner {
  position: absolute; inset: 10px; border-radius: 10px;
  border: 1px solid rgba(198,161,91,.22);
  padding: 16px 16px 12px;
  display: flex; flex-direction: column; z-index: 2;
  background: transparent;
}
.tcg-top {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 12px;
}
.tcg-name {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600; letter-spacing: .18em; font-size: 11px;
  color: var(--cream);
  text-transform: uppercase;
}
.tcg-hp { font-size: 10px; font-weight: 400; color: var(--gold); letter-spacing: .1em; }
.tcg-hp b { font-size: 14px; }

.tcg-art {
  border-radius: 6px;
  border: 1px solid rgba(237,234,227,.1);
  background: #0d0d10;
  height: 34%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; overflow: hidden; position: relative;
}
.tcg-art img {
  width: 54px; height: 54px; border-radius: 10px;
  filter: brightness(.9) saturate(.85);
}
.tcg-art::after {
  content: "CARD INTELLIGENCE";
  position: absolute; bottom: 6px; right: 8px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 6px; letter-spacing: .22em;
  color: rgba(198,161,91,.5); font-weight: 600;
}

.tcg-type {
  font-size: 9px; color: var(--muted);
  letter-spacing: .1em; text-align: center; margin-bottom: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.tcg-type b { color: var(--gold); font-weight: 500; }

.tcg-moves { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.tcg-move {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 11px; font-weight: 400;
  border-bottom: 1px solid rgba(237,234,227,.08);
  padding-bottom: 6px; color: var(--cream);
}
.tcg-move .cost { display: inline-flex; gap: 3px; margin-right: 8px; }
/* コストアイコン：虹グラデ廃止 → 金ヘアライン丸 */
.tcg-move .cost i {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(198,161,91,.5);
  display: inline-block;
}
.tcg-move .mv { flex: 1; font-weight: 400; font-size: 11px; }
.tcg-move .dmg { font-weight: 500; color: var(--gold); font-size: 12px; }

.tcg-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 7.5px; color: var(--muted);
  letter-spacing: .04em; margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.tcg-foot .meta span { display: block; line-height: 1.9; }
.tcg-foot .meta b { color: rgba(237,234,227,.7); font-weight: 400; }
.tcg-rarity { text-align: right; }
.tcg-rarity .rar {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700; font-size: 10px;
  color: var(--gold);
  letter-spacing: .18em;
}
.tcg-rarity .num { display: block; font-size: 7.5px; color: var(--muted); }

/* =====================================================
   Ticker（静かな1行）
   ===================================================== */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0; overflow: hidden; background: var(--surface);
}
.ticker-track {
  display: flex; gap: 56px; width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(237,234,227,.22);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 56px;
}
.ticker-track span::after {
  content: "·"; color: var(--gold); opacity: .6;
  font-size: 16px;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* =====================================================
   ABOUT — Founder Story + Missions
   ===================================================== */
.story {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 88px);
  background: #101013;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.story::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(115deg, rgba(11,11,13,.96) 35%, rgba(11,11,13,.7)),
    url('/static/img/about-bg.jpg') center/cover;
  animation: kenburns 26s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
  will-change: transform;
}
.story > * { position: relative; z-index: 1; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.story-quote {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 700; line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: -.005em;
}
.story-body {
  color: rgba(237,234,227,.72); font-size: 14px;
  max-width: 520px; margin-bottom: 32px;
  font-weight: 400; line-height: 1.95;
}
.story-badge {
  display: inline-flex; align-items: center; gap: 16px;
  border: 1px solid rgba(198,161,91,.3);
  border-radius: var(--radius);
  padding: 12px 22px;
  background: rgba(198,161,91,.04);
}
.story-badge b {
  font-family: "Josefin Sans", sans-serif;
  font-size: 26px; font-weight: 700; color: var(--gold);
  letter-spacing: .06em;
}
.story-badge small {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}

/* ミッション：通し番号を大きなセリフで */
.missions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.mission {
  padding: 40px 32px;
  background: var(--ink);
  border: none;
  border-radius: 0;
}
.mission + .mission { border-left: 1px solid var(--line); }
.mission:hover { transform: none; border-color: transparent; }

.mission .num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(198,161,91,.5); line-height: 1;
  margin-bottom: 16px; display: block;
  letter-spacing: .28em; text-transform: uppercase;
}
.mission .en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px; font-weight: 400;
}
.mission h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 14px; line-height: 1.65;
}
.mission p { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 2; }

/* =====================================================
   SERVICE
   ===================================================== */
.svc-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  padding: 48px 40px; display: flex; flex-direction: column;
  background: var(--ink);
  border: none; border-radius: 0;
}
.svc-card + .svc-card { border-left: 1px solid var(--line); }
.svc-card:hover { transform: none; border-color: transparent; }

/* 通し番号：Josefin Sans */
.svc-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(198,161,91,.45);
  margin-bottom: 16px;
  letter-spacing: .28em; text-transform: uppercase;
  display: block;
}
.svc-tag {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .24em;
  color: var(--gold); border: 1px solid rgba(198,161,91,.35);
  padding: 4px 12px; border-radius: 1px; margin-bottom: 18px; width: fit-content;
  text-transform: uppercase;
}
.svc-card h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700; line-height: 1.55; margin-bottom: 16px;
}
.svc-card > p { font-size: 13px; color: var(--muted); margin-bottom: 22px; font-weight: 400; line-height: 2; }

.svc-feats { list-style: none; margin-bottom: 30px; }
.svc-feats li {
  font-size: 13px; color: rgba(237,234,227,.75);
  padding: 9px 0 9px 20px; position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.svc-feats li::before {
  content: "—"; position: absolute; left: 0;
  color: var(--gold); font-size: 12px;
}
.svc-link {
  margin-top: auto; display: inline-flex; align-items: center;
  gap: 10px; font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: .14em; text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  border-bottom: 1px solid rgba(198,161,91,.3);
  padding-bottom: 2px; width: fit-content;
  transition: border-color .3s, gap .3s var(--ease);
}
.svc-link:hover { gap: 16px; border-color: var(--gold); }

/* サービス副メニュー */
.svc-sub {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-mini {
  padding: 28px 32px; display: flex; align-items: flex-start;
  gap: 24px; background: var(--ink);
  border: none; border-radius: 0;
}
.svc-mini + .svc-mini { border-left: 1px solid var(--line); }
.svc-mini:hover { transform: none; border-color: transparent; }

/* 数字アイコン */
.svc-mini .ico {
  font-family: "Josefin Sans", sans-serif;
  font-size: 22px; font-weight: 700; color: rgba(198,161,91,.4);
  flex-shrink: 0; line-height: 1;
  letter-spacing: .05em;
}
.svc-mini h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px; font-weight: 700; margin-bottom: 6px;
}
.svc-mini p { font-size: 12.5px; color: var(--muted); font-weight: 400; line-height: 1.9; }
.svc-mini p a { color: var(--gold); border-bottom: 1px solid rgba(198,161,91,.3); }

/* =====================================================
   COMPANY
   ===================================================== */
.company-tbl {
  width: 100%; border-collapse: collapse;
  margin-top: 52px; max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.company-tbl tr { border-bottom: 1px solid var(--line); }
.company-tbl tr:first-child { border-top: 1px solid var(--line); }
.company-tbl th {
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted); padding: 24px 20px; width: 28%;
  vertical-align: top; white-space: nowrap;
}
.company-tbl td {
  font-size: 13.5px; padding: 24px 20px;
  color: rgba(237,234,227,.8); font-weight: 400;
}

/* =====================================================
   CONTACT フォーム（アンダーライン式）
   ===================================================== */
.form-wrap { max-width: 640px; margin: 56px auto 0; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.f-group { margin-bottom: 28px; }

.f-group label {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.req { color: var(--gold); }

/* アンダーライン式 — 塗り箱廃止 */
.f-group input, .f-group select, .f-group textarea {
  width: 100%;
  background: transparent;
  color: var(--cream);
  border: 0;
  border-bottom: 1px solid rgba(237,234,227,.2);
  border-radius: 0;
  padding: 10px 0;
  font-size: 14px; font-family: inherit; font-weight: 400;
  transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
  outline: none;
}
.f-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%238B8781' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
  cursor: pointer;
}
.f-group select option { background: var(--ink); }
.f-group input::placeholder, .f-group textarea::placeholder {
  color: rgba(139,135,129,.5);
  font-size: 13px;
}
/* フォーカス：下線が金に */
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-bottom-color: var(--gold);
}
.f-group textarea {
  resize: vertical; min-height: 120px; line-height: 2;
  padding-top: 10px;
}

.form-actions { text-align: left; margin-top: 12px; }
.form-msg {
  display: none; margin-top: 20px;
  font-size: 12px; text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: .04em;
}
.form-msg.error {
  display: block;
  color: rgba(237,130,130,.8);
  border-left: 2px solid rgba(237,130,130,.5);
  padding-left: 14px;
}

/* サンクスパネル */
.thanks {
  display: none; max-width: 480px; margin: 56px auto 0;
  padding: 56px 40px;
  border: 1px solid rgba(198,161,91,.25);
  border-radius: var(--radius);
  background: var(--surface);
  animation: thanksIn .7s var(--ease);
  text-align: center;
}
@keyframes thanksIn { from { opacity: 0; transform: translateY(20px); } }
.thanks .tk-ico {
  width: 52px; height: 52px; margin: 0 auto 24px;
  border: 1px solid rgba(198,161,91,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px; font-weight: 700; color: var(--gold);
}
.thanks h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
}
.thanks p { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; font-weight: 400; }
.thanks p strong { color: var(--gold); font-weight: 400; }
.thanks small {
  font-size: 11px; color: var(--muted); line-height: 1.9; display: block;
  font-family: "Zen Kaku Gothic New", sans-serif; letter-spacing: .04em;
}
.thanks small a { color: var(--gold); border-bottom: 1px solid rgba(198,161,91,.3); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  border-top: 1px solid var(--line); padding: 64px 0 40px;
  background: transparent;
}
.ft-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.ft-logo img { height: 56px; width: auto; }
.ft-tagline {
  font-size: 11px; color: var(--muted); margin-top: 16px;
  letter-spacing: .06em; font-weight: 400;
}
.ft-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.ft-links a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px; color: var(--muted);
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 400;
  transition: color .3s;
}
.ft-links a:hover { color: var(--cream); }
.ft-copy {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px; color: rgba(139,135,129,.5);
  padding-top: 28px; letter-spacing: .1em;
  font-weight: 400;
}

/* =====================================================
   RECRUIT LP — Hero
   ===================================================== */
.r-hero {
  min-height: 92svh; display: flex; align-items: center;
  padding: 160px 0 80px;
}
.r-hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 80px; align-items: center;
}
.r-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.r-badge {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius); padding: 6px 14px;
  letter-spacing: .04em;
  font-weight: 400;
}
.r-badge b { color: var(--gold); font-weight: 500; }

/* =====================================================
   採用LP APPLICANT カード（マット・ドシエ風）
   ネオン・グラデ廃止
   ===================================================== */
.stack-scene { perspective: 1000px; display: flex; justify-content: center; }
.stack {
  position: relative; width: min(280px, 68vw);
  aspect-ratio: 63/88; transform-style: preserve-3d;
}
.scard {
  position: absolute; inset: 0; border-radius: 12px;
  background: #111114;
  border: 1px solid rgba(198,161,91,.35);
  box-shadow: 0 30px 60px rgba(0,0,0,.65);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.scard.back1 { transform: rotate(-8deg) translate(-22px, 8px); opacity: .35; }
.scard.back2 { transform: rotate(7deg) translate(22px, 4px); opacity: .55; }
.scard.front { /* 浮遊廃止 */ }

.scard .sc-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 8px; letter-spacing: .18em; color: var(--muted);
  font-weight: 600; text-transform: uppercase;
}
.scard .sc-head .ok { color: rgba(198,161,91,.8); }

/* アバター：虹グラデ → ヘアライン丸 */
.scard .sc-ava {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(198,161,91,.3);
  background: rgba(198,161,91,.06);
}
.scard .sc-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px; font-weight: 700; color: var(--cream);
}
.scard .sc-tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 9px; color: var(--muted); letter-spacing: .04em;
}
.scard .sc-bars { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.scard .sc-bar {
  font-family: "Josefin Sans", sans-serif;
  font-size: 8.5px; color: var(--muted); letter-spacing: .1em;
  text-transform: uppercase; font-weight: 400;
}
.scard .sc-bar i {
  display: block; height: 3px; border-radius: 0;
  background: rgba(237,234,227,.06); margin-top: 5px;
  position: relative; overflow: hidden;
}
/* スコアバー：虹グラデ → 金の細バー */
.scard .sc-bar i::after {
  content: ""; position: absolute; inset: 0;
  width: var(--w, 60%); border-radius: 0;
  background: var(--gold);
  animation: barIn 1.6s var(--ease) both;
}
@keyframes barIn { from { width: 0; } }
.scard .sc-verdict {
  margin-top: auto; text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase;
  border: 1px solid rgba(198,161,91,.3);
  border-radius: 1px; padding: 8px;
}

/* =====================================================
   VOICE CARDS（採用LP）
   ===================================================== */
.voices {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin-top: 52px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.voice {
  padding: 32px 32px;
  font-size: 14px; color: rgba(237,234,227,.75);
  position: relative; background: var(--ink);
  border: none; border-radius: 0;
  line-height: 1.9; font-weight: 400;
}
.voice:nth-child(odd) { border-right: 1px solid var(--line); }
.voice:nth-child(1), .voice:nth-child(2) { border-bottom: 1px solid var(--line); }
/* 旧虹の引用符 → 金のシンプル記号 */
.voice::before {
  content: "—"; position: absolute;
  top: 28px; left: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px; color: rgba(198,161,91,.5);
  line-height: 1;
}
.voice::after { display: none; }
.voice { padding-left: 52px; }

/* =====================================================
   CAUSES / PAIN（採用LP）
   ===================================================== */
.causes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 52px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.cause {
  padding: 36px 32px; background: var(--ink);
  border: none; border-radius: 0;
}
.cause + .cause { border-left: 1px solid var(--line); }
.cause:hover { transform: none; border-color: transparent; }

.cause .c-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px; font-weight: 700; line-height: 1;
  color: rgba(198,161,91,.45);
  margin-bottom: 16px;
  letter-spacing: .28em; text-transform: uppercase;
  display: block;
}
.cause h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px; font-weight: 700; margin-bottom: 12px;
}
.cause p { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 2; }
.causes-after {
  text-align: center; color: var(--cream);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px; margin-top: 36px; font-weight: 700;
}

/* =====================================================
   STEPS（4つの仕組み）
   ===================================================== */
.steps {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin-top: 56px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 40px 36px; background: var(--ink);
  border: none; border-radius: 0;
}
.step:nth-child(odd) { border-right: 1px solid var(--line); }
.step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
.step:hover { transform: none; border-color: transparent; }

.step .s-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.step .s-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .22em;
  color: var(--gold); border: 1px solid rgba(198,161,91,.3);
  border-radius: 1px; padding: 5px 12px; text-transform: uppercase;
}
.step h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px; font-weight: 700; line-height: 1.55;
  margin-bottom: 12px;
}
.step > p { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 400; line-height: 2; }

/* タグ：ヘアライン */
.step .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.step .tags span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px; font-weight: 400;
  color: rgba(237,234,227,.5);
  background: transparent;
  border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 1px; letter-spacing: .12em;
  text-transform: uppercase;
}
.step .opt { margin-top: 16px; font-size: 11.5px; color: var(--muted); }
.step .opt b {
  color: rgba(198,161,91,.75); font-weight: 700;
  letter-spacing: .12em; font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}

/* =====================================================
   TRUST COLS（採用LP Why）
   ===================================================== */
.trust-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.trust-col {
  padding: 36px 34px; background: var(--ink);
  border: none; border-radius: 0;
}
.trust-col + .trust-col { border-left: 1px solid var(--line); }
.trust-col:hover { transform: none; border-color: transparent; }

/* 数字 */
.trust-col .tc-ic {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1;
  color: rgba(198,161,91,.4);
  letter-spacing: .1em;
  margin-bottom: 16px; display: block;
}
.trust-col .tc-tag {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; display: block; margin-bottom: 10px;
}
.trust-col h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.55;
}
.trust-col p { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 2; }

.trust-cross {
  text-align: center; margin-top: 32px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(15px,2.2vw,19px); font-weight: 700;
  color: var(--cream);
}
.trust-cross .holo-text { color: var(--gold); }

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.compare-wrap {
  margin-top: 52px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); border-radius: var(--radius);
}
table.compare {
  width: 100%; min-width: 640px; border-collapse: collapse;
  background: transparent;
}
table.compare th, table.compare td {
  padding: 20px 22px; text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 400;
}
table.compare thead th {
  font-family: "Josefin Sans", sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
/* トレカハック列：ごく淡い面＋金ヘアライン */
table.compare thead th.col-us {
  color: var(--gold);
  background: rgba(198,161,91,.05);
  border-left: 1px solid rgba(198,161,91,.3);
  border-right: 1px solid rgba(198,161,91,.3);
}
table.compare thead th.col-us small {
  display: block; font-size: 9.5px; font-weight: 400; opacity: .7;
  letter-spacing: .12em;
}
table.compare tbody th {
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500; color: rgba(237,234,227,.8);
  white-space: nowrap; font-size: 13px;
}
table.compare td.us {
  background: rgba(198,161,91,.04);
  border-left: 1px solid rgba(198,161,91,.2);
  border-right: 1px solid rgba(198,161,91,.2);
  color: var(--cream); font-weight: 400;
}
/* マーカー：金/グレー/細字で上品に */
table.compare td .mk-o { color: var(--gold); font-weight: 500; font-size: 15px; }
table.compare td.us .mk-o { color: var(--gold); }
table.compare td .mk-t { color: var(--muted); font-weight: 400; font-size: 15px; }
table.compare td .mk-x { color: rgba(237,234,227,.3); font-weight: 400; font-size: 15px; }
table.compare tbody tr:last-child th,
table.compare tbody tr:last-child td { border-bottom: 0; }
.compare-note {
  text-align: center; font-size: 11px; color: var(--muted);
  margin-top: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif; letter-spacing: .04em;
}

/* =====================================================
   CTA BAND（中間CTA）
   ===================================================== */
.cta-band {
  position: relative; overflow: hidden;
  padding: clamp(44px,6vw,68px) clamp(32px,5vw,60px);
  text-align: left;
  border: 1px solid rgba(198,161,91,.3);
  border-radius: var(--radius);
  background: var(--surface);
  /* 旧虹グラデ背景廃止 */
}
.cta-band-in { position: relative; }
.cta-band h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px,2.8vw,26px);
  font-weight: 700; line-height: 1.6; margin-bottom: 16px;
}
.cta-band p {
  color: var(--muted); font-size: 13.5px;
  margin-bottom: 30px; font-weight: 400; line-height: 2;
}

/* =====================================================
   STRENGTHS（採用LP）
   ===================================================== */
.strengths {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 56px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.strength {
  padding: 40px 32px; background: var(--ink);
  border: none; border-radius: 0;
}
.strength + .strength { border-left: 1px solid var(--line); }
.strength:hover { transform: none; border-color: transparent; }

.strength .st-no {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px; letter-spacing: .26em;
  color: var(--gold); font-weight: 700;
  margin-bottom: 16px; display: block; text-transform: uppercase;
}
.strength h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px; font-weight: 700; line-height: 1.55;
  margin-bottom: 14px;
}
.strength p { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 2; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 1px; margin-top: 56px;
  max-width: 820px; margin-left: auto; margin-right: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.price-card {
  padding: 44px 40px; background: var(--ink);
  border: none; border-radius: 0;
  position: relative;
}
.price-card + .price-card { border-left: 1px solid var(--line); }
.price-card:hover { transform: none; border-color: transparent; }

/* MAIN PLANラベル */
.price-card.featured::after {
  content: "MAIN PLAN";
  position: absolute; top: -1px; left: 40px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 8.5px; font-weight: 700; letter-spacing: .22em;
  background: var(--gold); color: var(--ink);
  padding: 4px 12px; border-radius: 0 0 2px 2px;
  text-transform: uppercase;
}
.price-plan {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: .2em;
  color: var(--gold); margin-bottom: 14px; text-transform: uppercase;
}
.price-amount {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(20px,2.8vw,28px); font-weight: 700; margin-bottom: 6px;
}
.price-unit { font-size: 12px; color: var(--muted); margin-bottom: 26px; font-weight: 400; }
.price-inc {
  font-size: 13px; color: rgba(237,234,227,.7);
  padding: 9px 0 9px 20px; position: relative;
  border-bottom: 1px solid var(--line); font-weight: 400;
}
.price-inc::before {
  content: "—"; position: absolute; left: 0;
  color: var(--gold); font-size: 12px;
}
.price-note {
  margin-top: 22px; font-size: 12px; color: var(--muted);
  border: 1px solid rgba(198,161,91,.18);
  border-radius: 1px; padding: 14px 16px;
  font-weight: 400; line-height: 1.85;
}
.price-note strong { color: var(--gold); font-weight: 400; }

/* =====================================================
   FLOW（導入フロー）
   ===================================================== */
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 56px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.fl-step {
  padding: 36px 24px; background: var(--ink);
  border: none; border-radius: 0; text-align: left;
  position: relative;
}
.fl-step + .fl-step { border-left: 1px solid var(--line); }
.fl-step:hover { transform: none; border-color: transparent; }

/* 番号：Josefin Sans ゴシック */
.fl-step .f-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px; font-weight: 700; line-height: 1;
  color: rgba(198,161,91,.45);
  margin-bottom: 16px;
  letter-spacing: .28em; text-transform: uppercase;
  width: auto; height: auto; border-radius: 0;
  background: none; display: block;
  box-shadow: none;
}
.fl-step h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px; font-weight: 700; margin-bottom: 10px; line-height: 1.55;
}
.fl-step p { font-size: 12px; color: var(--muted); font-weight: 400; line-height: 1.9; }
.flow-note {
  text-align: center; margin-top: 28px;
  font-size: 13px; color: var(--muted);
  font-family: "Zen Kaku Gothic New", sans-serif; letter-spacing: .04em;
}
.flow-note strong { color: var(--gold); font-weight: 400; }

/* =====================================================
   ASSURANCE
   ===================================================== */
.assure-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 52px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.assure {
  padding: 32px 24px; background: var(--ink);
  border: none; border-radius: 0; text-align: left;
}
.assure + .assure { border-left: 1px solid var(--line); }
.assure:hover { transform: none; border-color: transparent; }

/* アイコン：Josefin Sans 数字 */
.assure .a-ic {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(198,161,91,.45); line-height: 1;
  margin-bottom: 14px; display: block;
  letter-spacing: .24em; text-transform: uppercase;
  width: auto; height: auto; background: none; border: none;
}
.assure h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px; font-weight: 700; margin-bottom: 8px;
}
.assure p { font-size: 12px; color: var(--muted); line-height: 1.85; font-weight: 400; }

/* =====================================================
   FAQ アコーディオン
   ===================================================== */
.faq-list { max-width: 700px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  color: var(--cream);
  display: flex; align-items: center; gap: 18px; text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px; font-weight: 500; padding: 26px 4px;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold); }

/* Q アイコン：Josefin Sans */
.faq-q .q-ico {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px; font-weight: 700; color: var(--gold);
  flex-shrink: 0; line-height: 1;
  letter-spacing: .08em;
  width: auto; height: auto; border-radius: 0;
  background: none; display: inline;
}
.faq-q .q-arrow {
  margin-left: auto; transition: transform .35s var(--ease);
  color: var(--muted); flex-shrink: 0;
}
.faq-item.is-open .q-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p {
  font-size: 13px; color: var(--muted);
  padding: 0 4px 26px 36px; font-weight: 400; line-height: 1.95;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 960px) {
  .hero-grid, .r-hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .tcg-scene, .stack-scene { order: -1; }
  .missions { grid-template-columns: 1fr; }
  .mission + .mission { border-left: none; border-top: 1px solid var(--line); }
  .svc-main { grid-template-columns: 1fr; }
  .svc-card + .svc-card { border-left: none; border-top: 1px solid var(--line); }
  .svc-sub { grid-template-columns: 1fr; }
  .svc-mini + .svc-mini { border-left: none; border-top: 1px solid var(--line); }
  .causes { grid-template-columns: 1fr; }
  .cause + .cause { border-left: none; border-top: 1px solid var(--line); }
  .strengths { grid-template-columns: 1fr; }
  .strength + .strength { border-left: none; border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: none; }
  .step { border-bottom: 1px solid var(--line) !important; }
  .step:last-child { border-bottom: 0 !important; }
  .voices { grid-template-columns: 1fr; }
  .voice:nth-child(odd) { border-right: none; }
  .voice:nth-child(1), .voice:nth-child(2) { border-bottom: none; }
  .voice { border-bottom: 1px solid var(--line); }
  .voice:last-child { border-bottom: 0; }
  .pricing { grid-template-columns: 1fr; }
  .price-card + .price-card { border-left: none; border-top: 1px solid var(--line); }
  .trust-cols { grid-template-columns: 1fr; }
  .trust-col + .trust-col { border-left: none; border-top: 1px solid var(--line); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .fl-step + .fl-step { border-left: none; }
  .fl-step:nth-child(odd) { border-right: 1px solid var(--line); }
  .fl-step:nth-child(1), .fl-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .assure-grid { grid-template-columns: repeat(2, 1fr); }
  .assure + .assure { border-left: none; }
  .assure:nth-child(odd) { border-right: 1px solid var(--line); }
  .assure:nth-child(1), .assure:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* =====================================================
   カスタムカーソル（pointer:fine のみ・金リング）
   ===================================================== */
@media (pointer: fine) {
  * { cursor: none !important; }
  #cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 28px; height: 28px;
    border: 1px solid rgba(198,161,91,.65);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    /* JS が translate で動かす（marginで中心合わせ） */
    margin: -14px 0 0 -14px;
    transition: width .22s var(--ease), height .22s var(--ease),
                margin .22s var(--ease), border-color .22s var(--ease),
                opacity .3s;
    will-change: transform;
    mix-blend-mode: normal;
  }
  #cursor-ring.is-hover {
    width: 44px; height: 44px;
    margin: -22px 0 0 -22px;
    border-color: rgba(198,161,91,.9);
  }
  #cursor-ring.is-hidden { opacity: 0; }

  /* 中心の小ドット */
  #cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 4px; height: 4px;
    background: rgba(198,161,91,.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    margin: -2px 0 0 -2px;
    will-change: transform;
    transition: opacity .3s;
  }
  #cursor-dot.is-hidden { opacity: 0; }
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 720px) {
  .container { padding: 0 24px; }
  .sec { padding: 80px 0; }
  .hero { padding: 130px 0 64px; }

  .nav-links {
    position: fixed; inset: 0;
    background: rgba(11,11,13,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center;
    gap: 36px; transform: translateY(-100%);
    transition: transform .45s var(--ease); z-index: 105;
  }
  .nav-links.is-open { transform: none; }
  .nav-link { font-size: 14px; letter-spacing: .2em; }
  .hamburger { display: block; position: relative; z-index: 110; }

  .f-row { grid-template-columns: 1fr; gap: 0; }

  .flow { grid-template-columns: 1fr; }
  .fl-step + .fl-step { border-left: none; border-top: 1px solid var(--line); }
  .fl-step:nth-child(odd) { border-right: none; }
  .fl-step:nth-child(1), .fl-step:nth-child(2) { border-bottom: none; }

  .assure-grid { grid-template-columns: 1fr; }
  .assure + .assure { border-left: none; border-top: 1px solid var(--line); }
  .assure:nth-child(odd) { border-right: none; }
  .assure:nth-child(1), .assure:nth-child(2) { border-bottom: none; }

  .ft-inner { flex-direction: column; }
}


/* =====================================================
   v6 — Motion Level-Up (Fable)
   ===================================================== */

/* --- ヒーロー見出し：行マスクの段差リビール --- */
.hero-title .tline { display: block; overflow: hidden; }
.hero-title .tline-in {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .95s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 120ms + 100ms);
  will-change: transform;
}
.hero-title.lines-in .tline-in { transform: translateY(0); }

/* --- 大英語見出し：文字単位ステッガー --- */
.sec-label-inner { white-space: pre; }
.sec-label .ch {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 26ms);
  will-change: transform;
}
.sec-label.is-in .ch { transform: translateY(0); }

/* --- スクロールプログレス（金のヘアライン） --- */
#progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform-origin: 0 50%;
  transform: scaleX(0); z-index: 130; pointer-events: none;
  opacity: .85;
}

/* --- ナビ：下スクロールで隠れ、上で現れる --- */
.nav.is-hidden { transform: translateY(-105%); }

/* --- ナビ：スクロールスパイ（現在地の金下線） --- */
.nav-link.is-active { color: var(--cream); }
.nav-link.is-active::after { width: 100%; }

/* --- カード：アイドル時に金の光が静かに走る --- */
.tcg-card::after, .scard.front::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 4;
  background: linear-gradient(112deg,
    transparent 42%, rgba(255,248,220,.09) 50%, rgba(198,161,91,.06) 54%, transparent 62%);
  background-size: 260% 100%;
  background-position: 130% 0;
  animation: card-sheen 8s ease-in-out infinite;
}
@keyframes card-sheen {
  0%   { background-position: 130% 0; }
  16%  { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}

/* --- カード内側の奥行き（チルト時に面が浮く） --- */
.tcg-inner { transform: translateZ(28px); }

/* --- ティッカー：ホバーで一時停止 --- */
.ticker:hover .ticker-track { animation-play-state: paused; }

/* --- フッター：巨大アウトラインのウォーターマーク --- */
.watermark {
  display: block; text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(64px, 13vw, 170px);
  font-weight: 700; letter-spacing: .08em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,234,227,.07);
  user-select: none; pointer-events: none;
  margin: 0 0 48px;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .tline-in, .sec-label .ch { transform: none !important; transition: none !important; }
  .tcg-card::after, .scard.front::before { animation: none !important; }
  .story::before { animation: none !important; }
  #progress { display: none; }
}
@media (pointer: coarse) {
  .tcg-inner { transform: none; }
}
