/* =========================================================
   AURIA カラーシステム（軽く・やわらかく／既存LPと統一）
   ネイビーは文字と細い線だけ。大きな面には使わない。
   ========================================================= */
:root {
  --auria-pale-blue: #dce8f6;
  --auria-navy: #1b2a4a;
  --auria-misty-white: #f7f4f0;
  --auria-gold: #d4af37;

  --color-canvas: #ffffff;
  --color-canvas-warm: var(--auria-misty-white);
  --color-canvas-cool: #eef4fb;      /* 淡いブルーの面（やわらかめ） */
  --color-ink: var(--auria-navy);
  --color-signal: #33456b;            /* ボタン等：ネイビーより少しやわらかい */
  --color-signal-deep: #26375c;
  --color-highlight: var(--auria-gold);

  --color-text: #33425f;
  --color-text-muted: rgba(27, 42, 74, 0.66);
  --color-border: rgba(27, 42, 74, 0.14);
  --color-border-strong: rgba(27, 42, 74, 0.26);

  --wrap: 1120px;

  --serif:  "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:   "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --script: "Cormorant Garamond", serif;

  --motion-base: 320ms;
  --motion-emphasis: 900ms;
  --motion-scene: 1600ms;
  --ease-enter: cubic-bezier(.22, .68, .28, 1);
  --ease-move: cubic-bezier(.65, 0, .35, 1);
}

html { color-scheme: light; scroll-behavior: smooth; }
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
p, li, h1, h2, h3 { word-break: auto-phrase; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 680px); margin-inline: auto; }

/* 余白は広めに。セクションごとに背景を変えてリズムを出す */
.sec { padding: clamp(5rem, 13vw, 9rem) 0; }
.sec-tint { background: var(--color-canvas-cool); }
.sec-warm { background: var(--color-canvas-warm); }

.sp { display: none; }
@media (max-width: 640px) { .sp { display: inline; } }

/* 英字ラベル */
.script {
  font-family: var(--script);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}
.script.small { display: block; text-align: center; font-size: 1.125rem; margin: 0 0 1rem; }

/* 見出し（明朝・ネイビー文字） */
.sec-title {
  margin: 0 0 clamp(2.5rem, 6vw, 3.75rem);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.2vw, 2.125rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07em;
  text-align: center;
  color: var(--color-ink);
}

/* ゴールドは「価値が見つかる一点」だけ：細い下線 */
.line-accent { position: relative; white-space: nowrap; }
.line-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.16em;
  height: 2px;
  background: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-emphasis) var(--ease-enter);
}
.is-visible .line-accent::after,
.hero-title .line-accent::after { transform: scaleX(1); }

/* 本文 */
.prose { max-width: 34rem; margin-inline: auto; }
.prose p {
  margin: 0 0 1.6rem;
  font-size: 0.9375rem;
  line-height: 2.3;
  color: var(--color-text-muted);
  text-align: left;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--color-ink); font-weight: 700; }

.lead-center {
  max-width: 34rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--color-text-muted);
  text-align: center;
}
.note-small {
  margin: 2.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  text-align: center;
}

/* =========================================================
   ボタン
   ========================================================= */
.btn {
  display: inline-block;
  padding: 1.05em 2.6em;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  transition: background var(--motion-base) var(--ease-move),
              color var(--motion-base) var(--ease-move),
              border-color var(--motion-base) var(--ease-move),
              box-shadow var(--motion-base) var(--ease-move),
              transform var(--motion-base) var(--ease-move);
}
.btn-line {
  background: var(--color-signal);
  color: #fff;
  border: 1px solid var(--color-signal);
  box-shadow: 0 8px 22px rgba(51, 69, 107, 0.18);
}
.btn-line:hover { background: var(--color-signal-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(51, 69, 107, 0.24); }
.btn-ghost {
  background: #fff;
  color: var(--color-ink);
  border: 1px solid var(--color-border-strong);
}
.btn-ghost:hover { border-color: var(--color-signal); transform: translateY(-2px); }
.btn-lg { padding: 1.2em 3.2em; font-size: 1rem; }
.btn:focus-visible { outline: 2px solid var(--color-highlight); outline-offset: 3px; }
@media (max-width: 560px) { .btn { display: block; width: 100%; padding: 1.1em 1.2em; } }

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.brand {
  font-family: var(--script);
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--color-ink); text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a { font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--color-text-muted); text-decoration: none; }
.nav a:hover { color: var(--color-ink); }
.nav-cta { padding: 0.5em 1.3em; border: 1px solid var(--color-border-strong); border-radius: 999px; color: var(--color-ink) !important; }
.nav-cta:hover { border-color: var(--color-signal); }
@media (max-width: 720px) { .nav a:not(.nav-cta) { display: none; } }

/* =========================================================
   01 ヒーロー（非対称・写真なし＝やわらかな光）
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(600px, 88vh, 880px);
  background: linear-gradient(180deg, var(--color-canvas-warm) 0%, var(--color-canvas) 78%);
}
/* 主役の画像を四角のまま全面に敷く */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end; align-items: center;
  width: 100%; padding: clamp(3rem, 7vw, 5rem) 0;
}
/* 文字は色布ではない側（右の明るい部分）で、画像の上に重ねる。
   背後にやわらかな光を敷いて、ふんわり浮き出るように */
.hero-text { position: relative; width: min(100%, 32rem); text-align: left; }
.hero-text::before {
  content: ""; position: absolute; inset: -14% -12%; z-index: -1;
  background: radial-gradient(60% 60% at 52% 48%,
    rgba(247, 244, 240, 0.92) 0%, rgba(247, 244, 240, 0.66) 46%, transparent 78%);
  filter: blur(10px);
}
.eyebrow {
  margin: 0 0 1.75rem;
  font-family: var(--script); font-size: 0.9375rem; font-weight: 600; font-style: italic;
  letter-spacing: 0.28em; color: var(--color-text-muted);
}
.hero-title {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(1.875rem, 5.2vw, 3rem);
  font-weight: 500; line-height: 1.72; letter-spacing: 0.06em;
  color: var(--color-ink);
}
.hero-sub { margin: 0 0 1.75rem; font-size: 0.9375rem; line-height: 2.25; color: var(--color-text-muted); }
.hero-note {
  margin: 0 0 2.5rem; padding-left: 1rem;
  border-left: 2px solid var(--color-highlight);
  font-size: 0.875rem; line-height: 2.1; color: var(--color-ink);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-actions-note { margin: 1rem 0 0; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--color-text-muted); }

/* 右下：ゆっくり回る Scroll Down バッジ */
.hero-scroll {
  position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: clamp(1rem, 4vw, 2.5rem);
  z-index: 3; width: 104px; height: 104px; display: grid; place-items: center; text-decoration: none;
}
.hero-scroll-ring { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.hero-scroll-ring text {
  font-family: var(--script); font-size: 12px; font-style: italic;
  letter-spacing: 1.5px; fill: var(--color-ink);
}
.hero-scroll-dot {
  position: absolute; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-border-strong); background: rgba(255, 255, 255, 0.7);
}
.hero-scroll-dot::after {
  content: ""; position: absolute; left: 50%; top: 44%;
  width: 6px; height: 6px; margin-left: -3px;
  border-right: 1px solid var(--color-signal); border-bottom: 1px solid var(--color-signal);
  transform: rotate(45deg);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* スマホ：映像を上の帯（縦長を活かす）に、文字はその下へ */
@media (max-width: 860px) {
  .hero { display: block; min-height: 0; padding: 0 0 clamp(2.5rem, 8vw, 3.5rem); }
  .hero-media { position: static; }
  .hero-media .hero-img { width: 100%; height: 60vh; object-fit: cover; object-position: center; }
  .hero-inner { display: block; padding: clamp(2rem, 7vw, 3rem) 0 0; }
  .hero-text { width: 100%; }
  .hero-text::before { display: none; }
  .hero-scroll { display: none; }
}

/* =========================================================
   01.5 世界観（縦書き・光のかすみ）
   ========================================================= */
.worldview {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 13vw, 8.5rem) 0 0;
  background: linear-gradient(180deg,
    var(--color-canvas) 0%,
    #eef4fb 45%,
    #e4edf8 100%);
}
.wv-atmos { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wv-glow {
  position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: min(72vw, 640px); aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.10) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.85) 0%, rgba(220, 232, 246, 0) 62%);
  filter: blur(6px);
}
.wv-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(220, 232, 246, 0) 72%);
  filter: blur(0.5px); opacity: 0.7;
  animation: wvFloat 9s var(--ease-move) infinite;
}
.wv-orb-1 { width: 8px;  height: 8px;  top: 20%; left: 22%; animation-delay: 0s; }
.wv-orb-2 { width: 5px;  height: 5px;  top: 34%; left: 70%; animation-delay: 1.4s; }
.wv-orb-3 { width: 10px; height: 10px; top: 52%; left: 16%; animation-delay: 2.6s; }
.wv-orb-4 { width: 6px;  height: 6px;  top: 60%; left: 82%; animation-delay: 3.6s; }
@keyframes wvFloat {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(-12px); opacity: 0.9; }
}

.wv-inner { position: relative; z-index: 2; display: flex; justify-content: center; }
.wv-copy { writing-mode: vertical-rl; }   /* 素直な縦書きブロック（列は右→左） */
.wv-copy p {
  margin: 0 0 0 clamp(1rem, 3.2vw, 2.2rem);
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 2.5vw, 1.5rem);
  font-weight: 500; line-height: 2.4; letter-spacing: 0.2em;
  color: var(--color-ink);
  word-break: normal; white-space: nowrap;   /* 縦書きで文節改行がずれるのを防ぐ */
}
.wv-copy p:last-child { margin-left: 0; }

/* 下部：やわらかな山（ブランドの淡いブルー） */
.wv-hills { position: relative; z-index: 1; display: block; width: 100%;
  height: clamp(80px, 15vw, 190px); margin-top: clamp(2.5rem, 7vw, 4.5rem); }
.wv-hill-back  { fill: #dbe7f5; opacity: 0.7; }
.wv-hill-mid   { fill: #cddcef; opacity: 0.8; }
.wv-hill-front { fill: #eef4fb; }

@media (max-width: 640px) {
  .wv-copy { height: clamp(17rem, 62vh, 24rem); }
  .wv-copy p { font-size: clamp(1rem, 4.6vw, 1.25rem); letter-spacing: 0.18em; margin-left: clamp(0.9rem, 4.5vw, 1.6rem); }
}

/* =========================================================
   画像＋テキストの交互レイアウト（左右スライドイン）
   ========================================================= */
.feature {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  align-items: center; gap: clamp(2rem, 5vw, 4.5rem);
}
.feature-media { margin: 0; position: relative; }
.feature-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 150px 150px 16px 16px;
  background: var(--color-canvas-cool);
  box-shadow: 0 26px 56px rgba(27, 42, 74, 0.13);
}
/* 画像を右に置く行 */
.feature.alt .feature-media { order: 2; }

/* feature 内のテキストは左寄せ・幅いっぱい */
.feature-body .sec-title { text-align: left; margin-bottom: clamp(1.25rem, 3vw, 1.75rem); }
.feature-body .prose { max-width: none; margin-inline: 0; }
.feature-body .prose p { text-align: left; }
.feature-body .script.small { text-align: left; margin-bottom: 0.75rem; }
.feature-body .lead-center { text-align: left; max-width: none; margin-inline: 0; }

/* feature の下に続くカード・グリッドの間隔 */
.feature-below { margin-top: 0; }

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 2.5rem); }
  .feature.alt .feature-media { order: -1; }
  .feature-media { width: min(78%, 360px); margin-inline: auto; }
  .feature-media img { border-radius: 120px 120px 14px 14px; }
  .feature-body .sec-title { text-align: center; }
  .feature-body .prose p { text-align: left; }
  .feature-body .script.small { text-align: center; }
  .feature-body .lead-center { text-align: center; }
}

/* =========================================================
   03 意図と印象のズレ
   ========================================================= */
.gap-lines { position: relative; height: 56px; max-width: 20rem; margin: 0 auto clamp(2.5rem, 6vw, 3.75rem); }
.gap-line { position: absolute; left: 0; right: 0; height: 1px; background: var(--color-border-strong);
  transition: top var(--motion-scene) var(--ease-enter); }
.gap-line-a { top: 12px; } .gap-line-b { top: 44px; }
.gap-dot { position: absolute; top: 28px; left: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
  border-radius: 50%; background: var(--color-highlight); opacity: 0;
  transition: opacity var(--motion-base) var(--ease-enter) 700ms; }
.gap-lines.is-visible .gap-line-a { top: 28px; }
.gap-lines.is-visible .gap-line-b { top: 28px; }
.gap-lines.is-visible .gap-dot { opacity: 1; }

.gap-list { margin: 0; padding: 0; list-style: none; }
.gap-list li {
  position: relative; padding: 1.5rem 0 1.5rem 3.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem; line-height: 2; color: var(--color-ink);
}
.gap-list li:first-child { border-top: 1px solid var(--color-border); }
.gap-no { position: absolute; left: 0; top: 1.6rem; font-family: var(--script); font-style: italic; font-size: 1rem; color: var(--color-text-muted); }
.gap-close { margin-top: clamp(2.5rem, 5vw, 3.25rem); }

/* =========================================================
   04 印象戦略とは（比較・明るい面）
   ========================================================= */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: clamp(2.5rem, 6vw, 3.75rem) 0 0; }
.compare-col { padding: clamp(1.75rem, 3.5vw, 2.5rem); background: #fff; border: 1px solid var(--color-border); border-radius: 12px; }
.compare-col-accent { border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 12px 30px rgba(27, 42, 74, 0.06); }
.compare-head { margin: 0 0 1.1rem; font-family: var(--serif); font-size: 1.0625rem; letter-spacing: 0.05em; color: var(--color-ink); }
.compare-col-accent .compare-head { color: #b08d1f; }
.compare-col ul { margin: 0; padding: 0; list-style: none; }
.compare-col li { padding: 0.6rem 0; font-size: 0.875rem; line-height: 1.8; color: var(--color-text-muted); border-top: 1px solid var(--color-border); }
.compare-col li:first-child { border-top: none; }
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }

/* =========================================================
   05 三連コピー
   ========================================================= */
.triad { margin: clamp(2.5rem, 6vw, 3.5rem) 0; padding: 0; list-style: none; text-align: center; }
.triad li { font-family: var(--serif); font-size: clamp(1.125rem, 3.2vw, 1.5rem); font-weight: 500; line-height: 2.1; letter-spacing: 0.08em; color: var(--color-ink); }
.triad em { font-style: normal; border-bottom: 2px solid var(--color-highlight); padding-bottom: 0.1em; }

/* =========================================================
   06 設計するもの（一つの図としてつなげる）
   ========================================================= */
.narrow-head { max-width: 680px; margin: 0 auto; }
.scope-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 0; padding: 0; list-style: none;
  background: var(--color-border); border: 1px solid var(--color-border);
}
.scope-list li { background: #fff; padding: 1.85rem 1.25rem; font-size: 0.875rem; line-height: 1.7; text-align: center; color: var(--color-ink); }
@media (max-width: 760px) { .scope-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .scope-list { grid-template-columns: 1fr; } }

/* =========================================================
   07 セッションの進め方
   ========================================================= */
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; padding: 0 0 2.5rem 2rem; margin-left: 1.5rem; border-left: 1px solid var(--color-border); }
.steps li:last-child { padding-bottom: 0; border-left-color: transparent; }
.steps li::before { content: ""; position: absolute; left: -5px; top: 0.35rem; width: 9px; height: 9px; border-radius: 50%; background: var(--color-signal); }
.step-no { font-family: var(--script); font-style: italic; font-size: 0.875rem; letter-spacing: 0.1em; color: var(--color-text-muted); }
.steps h3 { margin: 0.35rem 0 0.6rem; font-family: var(--serif); font-size: 1.1875rem; font-weight: 600; letter-spacing: 0.05em; color: var(--color-ink); }
.steps p { margin: 0; font-size: 0.875rem; line-height: 2.1; color: var(--color-text-muted); }

/* =========================================================
   08 目指す変化
   ========================================================= */
.outcome-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; margin: clamp(2.5rem, 6vw, 3.5rem) 0 0; padding: 0; list-style: none; }
.outcome-list li { position: relative; padding: 0.65rem 0 0.65rem 1.75rem; font-size: 0.9rem; line-height: 1.8; color: var(--color-ink); }
.outcome-list li::before { content: ""; position: absolute; left: 0; top: 1.1rem; width: 12px; height: 1px; background: var(--color-highlight); }
@media (max-width: 600px) { .outcome-list { grid-template-columns: 1fr; } }

/* =========================================================
   09 プロフィール（明るいカード）
   ========================================================= */
.founder {
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: start;
  margin: clamp(2.75rem, 6vw, 4rem) 0 0; padding: clamp(1.75rem, 4vw, 2.5rem);
  background: #fff; border: 1px solid var(--color-border); border-radius: 14px;
  box-shadow: 0 14px 34px rgba(27, 42, 74, 0.05);
}
.founder-photo img { width: 100%; border-radius: 90px 90px 8px 8px; background: var(--color-canvas-cool); }
.founder-role { margin: 0 0 0.25rem; font-size: 0.75rem; letter-spacing: 0.14em; color: var(--color-text-muted); }
.founder-name { margin: 0 0 1.25rem; font-family: var(--serif); font-size: 1.75rem; letter-spacing: 0.14em; color: var(--color-ink); }
.founder-bio { margin: 0 0 1.5rem; }
.founder-bio p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 2.2; color: var(--color-text-muted); }
.founder-bio p:last-child { margin-bottom: 0; }
.founder-creds { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.founder-creds li { padding: 0.35em 0.9em; border: 1px solid var(--color-border-strong); border-radius: 999px; font-size: 0.75rem; letter-spacing: 0.03em; color: var(--color-text-muted); }
@media (max-width: 640px) { .founder { grid-template-columns: 1fr; } .founder-photo { width: min(56%, 180px); } }

/* =========================================================
   10 向いている方
   ========================================================= */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fit-col { padding: clamp(1.75rem, 3.5vw, 2.5rem); background: #fff; border: 1px solid var(--color-border); border-radius: 12px; }
.fit-head { margin: 0 0 1.1rem; font-family: var(--serif); font-size: 1.0625rem; letter-spacing: 0.05em; color: var(--color-ink); }
.fit-head-yes { position: relative; padding-left: 1rem; }
.fit-head-yes::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 10px; height: 2px; background: var(--color-highlight); }
.fit-col ul { margin: 0; padding: 0; list-style: none; }
.fit-col li { padding: 0.55rem 0; font-size: 0.875rem; line-height: 1.85; color: var(--color-ink); border-top: 1px solid var(--color-border); }
.fit-col li:first-child { border-top: none; }
.fit-muted li { color: var(--color-text-muted); }
@media (max-width: 640px) { .fit { grid-template-columns: 1fr; } }

/* =========================================================
   11 最終CTA
   ========================================================= */
.final-cta {
  padding: clamp(5rem, 13vw, 9rem) 0; text-align: center;
  background: radial-gradient(70% 90% at 50% 0%, var(--color-canvas-cool) 0%, transparent 62%), var(--color-canvas-warm);
}
.final-title { margin: 0 0 1.75rem; font-family: var(--serif); font-size: clamp(1.5rem, 4.6vw, 2.375rem); font-weight: 500; line-height: 1.8; letter-spacing: 0.06em; color: var(--color-ink); }
.final-lead { margin: 0 auto 2.75rem; max-width: 34rem; font-size: 0.9375rem; line-height: 2.2; color: var(--color-text-muted); }
.final-note { margin: 1.5rem 0 0; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--color-text-muted); }

/* =========================================================
   フッター（明るい）
   ========================================================= */
.site-footer { padding: 3.5rem 0; text-align: center; background: var(--color-canvas-warm); border-top: 1px solid var(--color-border); }
.footer-brand { margin: 0 0 0.5rem; font-family: var(--script); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.2em; color: var(--color-ink); }
.footer-tagline { margin: 0 0 1.75rem; font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--color-text-muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin: 0 0 1.5rem; font-size: 0.8125rem; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--color-ink); }
.copyright { margin: 0; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--color-text-muted); }

/* =========================================================
   モーション（Level 1〜2・安全設計）
   ========================================================= */
.js-anim .reveal { opacity: 0; transform: translateY(22px); }
.js-anim .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity var(--motion-emphasis) var(--ease-enter), transform var(--motion-scene) var(--ease-enter);
}

/* 画像＋テキストの行：ブロック自体は隠さず、画像と本文を両側からスライドイン */
.js-anim .feature.reveal { opacity: 1; transform: none; }
.js-anim .feature .feature-media { opacity: 0; transform: translateX(-30px); }
.js-anim .feature .feature-body  { opacity: 0; transform: translateX(30px); }
.js-anim .feature.alt .feature-media { transform: translateX(30px); }
.js-anim .feature.alt .feature-body  { transform: translateX(-30px); }
.js-anim .feature.is-visible .feature-media,
.js-anim .feature.is-visible .feature-body {
  opacity: 1; transform: none;
  transition: opacity var(--motion-emphasis) var(--ease-enter), transform var(--motion-scene) var(--ease-enter);
}
.js-anim .feature.is-visible .feature-body { transition-delay: 0.12s; }
/* 画像はスライドに加えて、ヒーローと同じ「ぼやけ→くっきり」で浮き出る */
.js-anim .feature .feature-media img { filter: blur(9px); transform: scale(1.035); }
.js-anim .feature.is-visible .feature-media img {
  filter: blur(0); transform: none;
  transition: filter var(--motion-scene) var(--ease-enter), transform var(--motion-scene) var(--ease-enter);
}
@media (max-width: 820px) {
  .js-anim .feature .feature-media,
  .js-anim .feature.alt .feature-media { transform: translateY(20px); }
  .js-anim .feature .feature-body,
  .js-anim .feature.alt .feature-body { transform: translateY(20px); }
}

/* ぼやけ→くっきりで現れる版（縦書きコピー等） */
.js-anim .reveal-soft { filter: blur(12px); transform: translateY(10px); }
.js-anim .reveal-soft.is-visible {
  filter: blur(0);
  transition: opacity var(--motion-emphasis) var(--ease-enter),
              transform var(--motion-scene) var(--ease-enter),
              filter var(--motion-scene) var(--ease-enter);
}
.wv-copy p:nth-child(2).is-visible { transition-delay: 0.1s; }
.wv-copy p:nth-child(3).is-visible { transition-delay: 0.2s; }
.wv-copy p:nth-child(4).is-visible { transition-delay: 0.3s; }
.wv-copy p:nth-child(5).is-visible { transition-delay: 0.4s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-text > * { animation: heroIn var(--motion-scene) var(--ease-enter) both; }
/* 文字は画像が浮き出た「あと」に、ゆっくり順に浮かび上がる */
.hero .eyebrow { animation-delay: 1.7s; }
.hero-title { animation-delay: 2s; }
.hero-sub { animation-delay: 2.45s; }
.hero-note { animation-delay: 2.75s; }
.hero-actions { animation-delay: 3.05s; }
.hero-actions-note { animation-delay: 3.3s; }
.hero-text::before { animation: heroIn 1.6s var(--ease-enter) 1.4s both; }

/* ヒーロー画像：ぼやけ→くっきりで浮き出る（参考サイトの主役の動き） */
@keyframes heroImgIn {
  0%   { opacity: 0; filter: blur(16px); transform: scale(1.045); }
  55%  { opacity: 1; }
  100% { opacity: 1; filter: blur(0);    transform: scale(1); }
}
.hero-img { animation: heroImgIn 3s var(--ease-enter) 0.25s both; }
.hero-scroll { animation: heroIn 1.4s var(--ease-enter) 3.4s both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-text > *, .hero-img, .hero-scroll { animation: none; }
  .hero-text::before { animation: none; }
  .hero-img { opacity: 1; filter: none; transform: none; }
  .hero-scroll-ring { animation: none; }
  .js-anim .reveal { opacity: 1; transform: none; }
  .js-anim .reveal-soft { filter: none; transform: none; }
  .js-anim .feature .feature-media,
  .js-anim .feature .feature-body { opacity: 1; transform: none; }
  .js-anim .feature .feature-media img { filter: none; transform: none; }
  .wv-orb { animation: none; }
  .line-accent::after, .gap-line, .gap-dot { transition: none; }
  .btn:hover { transform: none; }
}
