/**
 * Future Sense LP — future-sense-final.css
 *
 * 設計思想:
 *   - #fsf-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSS カスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: 深オリーブダーク × ライトゴールド × アイボリー
 *     20代女性向け上質・洗練。暗闇の中に咲く金木犀のイメージ
 *   - フォント: Noto Serif JP（日本語） + Cormorant Garamond（欧文Display）
 *             + IM Fell English（イタリック装飾） + Space Mono（等幅）
 *
 * @package cocoon-child-master
 */

/* ================================================================
   1. COCOON 干渉リセット
   ================================================================ */
.future-sense-final .article,
.future-sense-final .entry-content,
.future-sense-final .main,
.future-sense-final .content,
.future-sense-final .wrap,
.future-sense-final #main,
.future-sense-final #body-in,
.future-sense-final #container,
.future-sense-final #container-in,
.future-sense-final #contents,
.future-sense-final #contents-in {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
  position: static !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
}

.future-sense-final #sidebar,
.future-sense-final .sidebar,
.future-sense-final #sidebar-scroll,
.future-sense-final .sidebar-top,
.future-sense-final .sidebar-bottom {
  display: none !important;
}

.future-sense-final #footer:not(.tp-footer),
.future-sense-final .site-footer:not(.tp-footer),
.future-sense-final .footer:not(.tp-footer) {
  display: none !important;
}

/* ================================================================
   2. CSS カスタムプロパティ（全色・全値）
   ================================================================ */
#fsf-root {
  /* ─ カラーパレット：深オリーブダーク × ライトゴールド ─ */
  --fsf-bg:           #0c1108;      /* 漆黒のオリーブ — 基調 */
  --fsf-bg-2:         #101508;      /* わずかに明るいオリーブ */
  --fsf-bg-3:         #0e1306;      /* セクション交互用 */
  --fsf-bg-card:      rgba(255, 255, 255, 0.032);
  --fsf-olive:        #6e9040;      /* オリーブグリーンアクセント */
  --fsf-olive-dim:    rgba(110, 144, 64, 0.22);
  --fsf-olive-faint:  rgba(110, 144, 64, 0.08);
  --fsf-gold:         #c8a86a;      /* ライトゴールド */
  --fsf-gold-bright:  #e0c285;      /* 明るいゴールド */
  --fsf-gold-dim:     rgba(200, 168, 106, 0.26);
  --fsf-gold-faint:   rgba(200, 168, 106, 0.09);
  --fsf-ivory:        #ede2cc;      /* アイボリー — 主テキスト */
  --fsf-ivory-muted:  rgba(237, 226, 204, 0.55);
  --fsf-ivory-faint:  rgba(237, 226, 204, 0.22);
  --fsf-ivory-ghost:  rgba(237, 226, 204, 0.10);
  --fsf-text:         #ede2cc;
  --fsf-text-2:       rgba(237, 226, 204, 0.55);
  --fsf-border:       rgba(200, 168, 106, 0.18);

  /* ─ タイポグラフィ ─ */
  --fsf-font-sans:    'Noto Serif JP', 'Hiragino Mincho Pro', 'Yu Mincho', serif;
  --fsf-font-serif:   'Noto Serif JP', 'Hiragino Mincho Pro', serif;
  --fsf-font-display: 'Cormorant Garamond', 'Palatino Linotype', serif;
  --fsf-font-fell:    'IM Fell English', 'Palatino Linotype', serif;
  --fsf-font-mono:    'Space Mono', 'Courier New', monospace;

  /* ─ スペーシング ─ */
  --fsf-section-py:     clamp(8vh, 11vw, 11vh);
  --fsf-section-px:     clamp(1.5rem, 13vw, 13vw);
  --fsf-container-max:  900px;
  --fsf-container-wide: 1100px;
  --fsf-radius:         12px;
  --fsf-radius-sm:      8px;
  --fsf-radius-lg:      20px;
  --fsf-radius-pill:    999px;

  /* ─ トランジション ─ */
  --fsf-ease-cio:        cubic-bezier(0.16, 1, 0.3, 1);
  --fsf-transition:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fsf-transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================================================
   3. GLOBAL RESET — #fsf-root スコープ
   ================================================================ */
#fsf-root,
#fsf-root *,
#fsf-root *::before,
#fsf-root *::after {
  box-sizing: border-box;
}

#fsf-root h1,
#fsf-root h2,
#fsf-root h3,
#fsf-root h4,
#fsf-root h5,
#fsf-root h6,
#fsf-root p,
#fsf-root ul,
#fsf-root ol,
#fsf-root li,
#fsf-root figure,
#fsf-root blockquote,
#fsf-root dl,
#fsf-root dd {
  margin: 0;
  padding: 0;
}

#fsf-root ul,
#fsf-root ol {
  list-style: none;
}

#fsf-root {
  background-color: var(--fsf-bg);
  color: var(--fsf-text);
  font-family: var(--fsf-font-sans);
  font-weight: 300;
  line-height: 1.85;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  word-break: auto-phrase;
}

/* ── グレイン質感オーバーレイ ── */
#fsf-root::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9996;
  mix-blend-mode: overlay;
}

/* ================================================================
   4. 大気レイヤー（オリーブ×ゴールド グロウブロブ）
   ================================================================ */
.fsf-atmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transition: opacity 1.8s ease;
}

.fsf-ab {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.fsf-ab1 {
  width: 85vw; height: 85vw;
  background: radial-gradient(circle, rgba(110, 144, 64, 0.028) 0%, transparent 65%);
  top: -25%; left: -20%;
  animation: fsf-ab1 34s ease-in-out infinite;
}

.fsf-ab2 {
  width: 65vw; height: 65vw;
  background: radial-gradient(circle, rgba(200, 168, 106, 0.022) 0%, transparent 65%);
  bottom: -18%; right: -18%;
  animation: fsf-ab2 42s ease-in-out infinite;
}

.fsf-ab3 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(110, 144, 64, 0.016) 0%, transparent 65%);
  top: 38%; right: 8%;
  animation: fsf-ab3 28s ease-in-out infinite;
}

.fsf-ab4 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(200, 168, 106, 0.013) 0%, transparent 65%);
  top: 60%; left: 15%;
  animation: fsf-ab4 50s ease-in-out infinite;
}

@keyframes fsf-ab1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(5vw, 4vh) scale(1.06); }
  66%       { transform: translate(-3vw, 8vh) scale(0.96); }
}
@keyframes fsf-ab2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-5vw, -6vh) scale(1.10); }
}
@keyframes fsf-ab3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(4vw, -5vh) scale(1.08); }
  80%       { transform: translate(-2vw, 3vh) scale(0.94); }
}
@keyframes fsf-ab4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  60%       { transform: translate(3vw, -4vh) scale(1.05); }
}

/* ================================================================
   5. キャンバス
   ================================================================ */
#fsf-cv {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ================================================================
   6. スクロールリビール（仕様書準拠 + LP独自エフェクト）
   ================================================================ */
.fsf-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.9s var(--fsf-ease-cio),
    transform 0.9s var(--fsf-ease-cio);
}

.fsf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fsf-reveal[data-delay="1"] { transition-delay: 0.12s; }
.fsf-reveal[data-delay="2"] { transition-delay: 0.24s; }
.fsf-reveal[data-delay="3"] { transition-delay: 0.38s; }
.fsf-reveal[data-delay="4"] { transition-delay: 0.52s; }
.fsf-reveal[data-delay="5"] { transition-delay: 0.68s; }

/* Hero専用リビール（タイム指定） */
.fsf-r {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity  1.9s var(--fsf-ease-cio),
    transform 1.9s var(--fsf-ease-cio);
}
.fsf-r.fsf-on { opacity: 1; transform: translateY(0); }

/* ================================================================
   7. ゴーストテキスト（空間レイヤー）
   ================================================================ */
.fsf-ghost {
  position: absolute;
  font-family: var(--fsf-font-display);
  font-style: italic;
  font-weight: 300;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.022em;
  animation: fsf-ghost-breathe 15s ease-in-out infinite;
}

.fsf-ghost-l {
  font-size: clamp(88px, 17vw, 200px);
  color: rgba(237, 226, 204, 0.013);
}

.fsf-ghost-s {
  font-size: clamp(56px, 10vw, 120px);
  color: rgba(237, 226, 204, 0.020);
}

@keyframes fsf-ghost-breathe {
  0%, 100% { letter-spacing: -0.022em; }
  50%       { letter-spacing: -0.018em; }
}

/* ================================================================
   8. セクション基本構造
   ================================================================ */
#fsf-root .fsf-section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--fsf-section-py) var(--fsf-section-px);
}

/* ================================================================
   9. サイレンスセクション
   ================================================================ */
.fsf-silence {
  position: relative;
  z-index: 2;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10vh 22vw;
  text-align: center;
}

.fsf-silence--lg { min-height: 88vh; }

.fsf-sl-mark {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(200, 168, 106, 0.22), transparent);
  margin: 0 auto 5vh;
  opacity: 0;
  transition: opacity 2.4s var(--fsf-ease-cio);
}
.fsf-sl-mark.fsf-sl-on { opacity: 1; }

.fsf-sl-q {
  font-family: var(--fsf-font-serif);
  font-weight: 200;
  font-size: clamp(13px, 1.55vw, 19px);
  color: rgba(237, 226, 204, 0.24);
  line-height: 3.0;
  letter-spacing: 0.10em;
  opacity: 0;
  transition: opacity 3.2s 0.6s var(--fsf-ease-cio);
}
.fsf-sl-q.fsf-sl-on { opacity: 1; }

/* ================================================================
   10. セクションクローム（タグ・見出し）
   ================================================================ */
.fsf-sec-tag {
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.44em;
  color: rgba(200, 168, 106, 0.32);
  margin-bottom: 5vh;
  text-transform: uppercase;
}

.fsf-sec-head {
  font-family: var(--fsf-font-display);
  font-style: italic;
  font-size: clamp(48px, 8.5vw, 108px);
  font-weight: 300;
  color: var(--fsf-ivory);
  line-height: 1;
  margin-bottom: 5vh;
  letter-spacing: -0.022em;
}

.fsf-sec-sub {
  font-family: var(--fsf-font-serif);
  font-size: clamp(17px, 2.2vw, 27px);
  font-weight: 200;
  color: var(--fsf-ivory-muted);
  line-height: 2.1;
  max-width: 520px;
  margin-bottom: 5vh;
}

.fsf-sec-body {
  font-family: var(--fsf-font-serif);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 300;
  color: rgba(237, 226, 204, 0.36);
  line-height: 2.9;
  max-width: 460px;
}

.fsf-gold { color: var(--fsf-gold); }

/* ================================================================
   11. HERO セクション
   ================================================================ */
.fsf-hero {
  min-height: 100vh;
  padding-inline: var(--fsf-section-px) !important;
}

.fsf-hero-tag {
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.40em;
  color: rgba(200, 168, 106, 0.33);
  margin-bottom: 9vh;
}

.fsf-hero-q {
  font-family: var(--fsf-font-serif);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 200;
  line-height: 1.9;
  color: var(--fsf-ivory);
  max-width: 600px;
  margin-bottom: 5vh;
}

.fsf-hero-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(200, 168, 106, 0.45), transparent);
  margin-bottom: 5vh;
}

.fsf-hero-ans {
  font-family: var(--fsf-font-serif);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.44);
  line-height: 2.8;
  max-width: 460px;
}

.fsf-scroll-hint {
  position: absolute;
  bottom: 8vh;
  left: var(--fsf-section-px);
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  color: rgba(237, 226, 204, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}

.fsf-scroll-tick {
  width: 34px;
  height: 0.5px;
  background: rgba(237, 226, 204, 0.15);
  animation: fsf-tick-pulse 3.4s ease-in-out infinite;
}

@keyframes fsf-tick-pulse {
  0%, 100% { width: 34px; opacity: 0.15; }
  50%       { width: 52px; opacity: 0.28; }
}

/* ================================================================
   12. コンセプトクラウド（s1 Diagnosis）
   ================================================================ */
.fsf-concept-cloud {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 34vw;
  height: 58vh;
  pointer-events: none;
}

.fsf-cw {
  position: absolute;
  font-family: var(--fsf-font-serif);
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 200;
  color: rgba(200, 168, 106, 0.14);
  white-space: nowrap;
}

@keyframes fsf-float-cw {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ================================================================
   13. MEANING セクション（FALSE / TRUE 対比）
   ================================================================ */
.fsf-stmt-pair { margin-bottom: 7vh; }

.fsf-stmt-label {
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  margin-bottom: 8px;
}

.fsf-stmt-label--false { color: rgba(237, 226, 204, 0.14); }
.fsf-stmt-label--true  { color: rgba(200, 168, 106, 0.42); }

.fsf-stmt-false {
  font-family: var(--fsf-font-serif);
  font-size: clamp(20px, 3.2vw, 42px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.15);
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.fsf-stmt-false::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.5px;
  background: rgba(237, 226, 204, 0.10);
  transform: translateY(-50%);
}

.fsf-stmt-true {
  font-family: var(--fsf-font-serif);
  font-size: clamp(28px, 5vw, 70px);
  font-weight: 200;
  color: var(--fsf-ivory);
  letter-spacing: 0.04em;
}

.fsf-divot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.fsf-divot-line {
  width: 46px;
  height: 0.5px;
  background: rgba(200, 168, 106, 0.18);
}

.fsf-divot-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200, 168, 106, 0.28);
}

/* ================================================================
   14. SHIFT セクション（BEFORE / AFTER グリッド）
   ================================================================ */
.fsf-shift-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 680px;
  margin-bottom: 7vh;
}

.fsf-shift-col { display: flex; flex-direction: column; gap: 24px; }
.fsf-shift-col--left  { padding-right: 54px; align-items: flex-end; }
.fsf-shift-col--right { padding-left: 54px;  align-items: flex-start; }

.fsf-shift-sep {
  background: rgba(237, 226, 204, 0.055);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fsf-shift-sep span {
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(200, 168, 106, 0.28);
  writing-mode: vertical-rl;
}

.fsf-shift-meta {
  font-family: var(--fsf-font-mono);
  font-size: 8px;
  letter-spacing: 0.30em;
  color: rgba(237, 226, 204, 0.15);
  margin-bottom: 4px;
}
.fsf-shift-meta--after { color: rgba(200, 168, 106, 0.32); }

.fsf-shift-old {
  font-family: var(--fsf-font-serif);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(237, 226, 204, 0.20);
  text-decoration: line-through;
  text-decoration-color: rgba(237, 226, 204, 0.09);
}

.fsf-shift-new {
  font-family: var(--fsf-font-serif);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--fsf-ivory);
}

/* ================================================================
   15. PRACTICE セクション（タイムライン）
   ================================================================ */
.fsf-timeline {
  max-width: 500px;
  margin-bottom: 7vh;
}

.fsf-ti-row {
  display: grid;
  grid-template-columns: 76px 0.5px 1fr;
  gap: 22px;
  padding-bottom: 44px;
  align-items: stretch;
}
.fsf-ti-row:last-child { padding-bottom: 0; }

.fsf-ti-period {
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(200, 168, 106, 0.42);
  text-align: right;
  padding-top: 3px;
}

.fsf-ti-line {
  background: rgba(237, 226, 204, 0.05);
  position: relative;
}

.fsf-ti-line::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fsf-gold);
  opacity: 0.50;
  box-shadow: 0 0 8px rgba(200, 168, 106, 0.35);
}

.fsf-ti-act {
  font-family: var(--fsf-font-serif);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--fsf-ivory);
  margin-bottom: 7px;
}

.fsf-ti-note {
  font-family: var(--fsf-font-serif);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.28);
  line-height: 2.2;
}

/* ================================================================
   16. CTA セクション
   ================================================================ */
.fsf-cta-section {
  min-height: auto !important;
  padding-block: clamp(6rem, 12vw, 10rem) !important;
  background: linear-gradient(
    135deg,
    rgba(110, 144, 64, 0.065) 0%,
    rgba(200, 168, 106, 0.045) 50%,
    rgba(110, 144, 64, 0.055) 100%
  );
  border-top: 1px solid rgba(200, 168, 106, 0.12);
  border-bottom: 1px solid rgba(200, 168, 106, 0.12);
}

.fsf-cta-wrap {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.fsf-cta-eyebrow {
  font-family: var(--fsf-font-mono);
  font-size: 9px;
  letter-spacing: 0.42em;
  color: rgba(200, 168, 106, 0.55);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.fsf-cta-headline {
  font-family: var(--fsf-font-serif);
  font-size: clamp(28px, 4.8vw, 56px);
  font-weight: 200;
  color: var(--fsf-ivory);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.fsf-cta-desc {
  font-family: var(--fsf-font-serif);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.48);
  line-height: 2.6;
  max-width: 500px;
  margin-bottom: 4rem;
}

.fsf-cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.fsf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.8rem;
  border-radius: var(--fsf-radius-pill);
  color: #fff;
  font-family: var(--fsf-font-serif);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.4s var(--fsf-ease-cio), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(200, 168, 106, 0.18);
}

.fsf-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.fsf-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(200, 168, 106, 0.30);
  color: #fff;
}

.fsf-cta-btn:hover::before { opacity: 1; }

.fsf-cta-btn-inner { position: relative; z-index: 1; }
.fsf-cta-btn-arrow {
  position: relative;
  z-index: 1;
  font-family: var(--fsf-font-display);
  font-size: 1.2em;
  transition: transform 0.35s var(--fsf-ease-cio);
}
.fsf-cta-btn:hover .fsf-cta-btn-arrow { transform: translateX(4px); }

.fsf-cta-subtext {
  font-family: var(--fsf-font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(200, 168, 106, 0.38);
}

/* ================================================================
   17. SENSATION セクション
   ================================================================ */
.fsf-sen-large {
  font-family: var(--fsf-font-display);
  font-style: italic;
  font-size: clamp(36px, 7.2vw, 96px);
  font-weight: 300;
  line-height: 1.22;
  max-width: 720px;
  margin-bottom: 5vh;
  letter-spacing: -0.012em;
  color: var(--fsf-ivory);
}

.fsf-sen-sub {
  font-family: var(--fsf-font-serif);
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.44);
  line-height: 2.8;
  max-width: 480px;
  margin-bottom: 4vh;
}

/* blockquote 白抜き完全解消 */
#fsf-root blockquote {
  background: rgba(255,255,255,0.025) !important;
  border: none !important;
  border-left: 0.5px solid rgba(200, 168, 106, 0.24) !important;
  color: rgba(200, 168, 106, 0.75) !important;
  font-family: var(--fsf-font-serif) !important;
  font-size: clamp(14px, 1.7vw, 20px) !important;
  font-weight: 300 !important;
  line-height: 2.2 !important;
  max-width: 460px !important;
  padding: 0 0 0 24px !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

#fsf-root blockquote::before,
#fsf-root blockquote::after {
  display: none !important;
}

/* ================================================================
   18. BEING セクション（存在哲学）
   ================================================================ */
.fsf-being-head {
  font-family: var(--fsf-font-fell);
  font-style: italic;
  font-size: clamp(26px, 4.2vw, 56px);
  color: rgba(237, 226, 204, 0.65);
  line-height: 1.68;
  max-width: 560px;
  margin-bottom: 6vh;
  font-weight: normal;
}

.fsf-being-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5vh 4vw;
  max-width: 560px;
  margin-bottom: 7vh;
}

.fsf-being-cell {
  transition: transform 0.35s var(--fsf-ease-cio);
}
.fsf-being-cell:hover { transform: translateY(-2px); }

.fsf-being-label {
  font-family: var(--fsf-font-mono);
  font-size: 8px;
  letter-spacing: 0.38em;
  color: rgba(200, 168, 106, 0.26);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.fsf-being-word {
  font-family: var(--fsf-font-serif);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.42);
}

.fsf-being-body {
  font-family: var(--fsf-font-serif);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 200;
  color: rgba(237, 226, 204, 0.30);
  line-height: 3.0;
  max-width: 440px;
  border-left: 0.5px solid rgba(200, 168, 106, 0.14);
  padding-left: 22px;
}

/* ================================================================
   19. CLOSE セクション（儀式的終幕）
   ================================================================ */
.fsf-close-sec {
  min-height: 130vh !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding-inline: 20vw !important;
}

.fsf-close-tag {
  font-family: var(--fsf-font-mono);
  font-size: 8px;
  letter-spacing: 0.46em;
  color: rgba(200, 168, 106, 0.20);
  margin-bottom: 14vh;
}

.fsf-close-main {
  font-family: var(--fsf-font-serif);
  font-size: clamp(15px, 2.2vw, 28px);
  font-weight: 200;
  line-height: 2.8;
  color: rgba(237, 226, 204, 0.68);
  max-width: 500px;
  margin-bottom: 10vh;
}

.fsf-close-rule {
  width: 0.5px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(200, 168, 106, 0.24), transparent);
  margin: 0 auto 10vh;
}

.fsf-orb {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 0.5px solid rgba(200, 168, 106, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 8vh;
}

.fsf-orb::before,
.fsf-orb::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.5px solid rgba(200, 168, 106, 0.07);
  animation: fsf-orb-expand 4.0s ease-out infinite;
}
.fsf-orb::after { animation-delay: 1.1s; }

.fsf-orb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fsf-gold);
  opacity: 0.62;
  animation: fsf-breathe 4.0s ease-in-out infinite;
}

@keyframes fsf-orb-expand {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(2.9); opacity: 0; }
}

@keyframes fsf-breathe {
  0%, 100% { opacity: 0.38; transform: scale(1); }
  50%       { opacity: 0.80; transform: scale(1.18); }
}

.fsf-final-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 8vh;
}

.fsf-cta-btn--final {
  padding: 1.2rem 3.2rem;
  font-size: clamp(14px, 1.5vw, 17px);
}

.fsf-final-mark {
  font-family: var(--fsf-font-mono);
  font-size: 8px;
  letter-spacing: 0.46em;
  color: rgba(200, 168, 106, 0.15);
}

/* ================================================================
   20. ターミナルボイド
   ================================================================ */
.fsf-void-end {
  height: 28vh;
  position: relative;
  z-index: 2;
}

/* ================================================================
   21. テーブル白抜き完全解消
   ================================================================ */
.fsf-table-wrap {
  overflow-x: auto;
  margin-block: 1.5rem;
  border-radius: var(--fsf-radius);
  border: 1px solid var(--fsf-border);
}

.fsf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: transparent !important;
}

.fsf-table thead th {
  background: var(--fsf-bg-card) !important;
  color: var(--fsf-text-2);
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--fsf-border);
}

.fsf-table tbody td {
  background: transparent !important;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(200, 168, 106, 0.08);
  color: var(--fsf-text-2);
  vertical-align: top;
  line-height: 1.65;
}

.fsf-table tbody tr:last-child td { border-bottom: none; }
.fsf-table tbody tr:hover td {
  background: rgba(200, 168, 106, 0.04) !important;
}

/* ================================================================
   22. スクロールバー統一（オリーブ×ゴールド）
   ================================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0c1108; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--fsf-olive-dim), var(--fsf-gold-dim));
  border-radius: 2px;
}

/* テキスト選択ハイライト */
#fsf-root ::selection {
  background: rgba(200, 168, 106, 0.25);
  color: var(--fsf-ivory);
}

/* ================================================================
   23. レスポンシブ: タブレット（768px〜）
   ================================================================ */
@media (min-width: 768px) {
  .fsf-close-sec {
    padding-inline: 18vw !important;
  }
}

/* ================================================================
   24. レスポンシブ: スマートフォン（〜767px）
   ================================================================ */
@media (max-width: 767px) {
  #fsf-root .fsf-section {
    padding: 8vh 8vw !important;
  }

  .fsf-hero {
    padding-inline: 8vw !important;
  }

  .fsf-silence {
    padding: 8vh 8vw;
  }

  .fsf-scroll-hint {
    left: 8vw;
  }

  .fsf-concept-cloud { display: none; }

  .fsf-shift-grid {
    grid-template-columns: 1fr;
  }
  .fsf-shift-sep { display: none; }
  .fsf-shift-col--left {
    padding-right: 0;
    align-items: flex-start;
  }
  .fsf-shift-col--right {
    padding-left: 0;
  }

  .fsf-being-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fsf-close-sec {
    padding-inline: 8vw !important;
    min-height: 100vh !important;
  }

  .fsf-cta-section {
    padding-block: clamp(4rem, 8vw, 6rem) !important;
  }

  .fsf-cta-btn {
    padding: 1rem 2.2rem;
    font-size: 14px;
  }

  .fsf-sec-head {
    font-size: clamp(38px, 12vw, 64px);
  }

  .fsf-hero-q {
    font-size: clamp(28px, 8vw, 48px);
  }

  .fsf-sen-large {
    font-size: clamp(30px, 10vw, 60px);
  }

  .fsf-being-head {
    font-size: clamp(22px, 6vw, 38px);
  }

  .fsf-ghost { display: none; }
}

/* ================================================================
   25. デスクトップ: 1280px〜
   ================================================================ */
@media (min-width: 1280px) {
  --fsf-section-px: 14vw;
}

/* ================================================================
   26. reduced-motion 対応
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .fsf-r,
  .fsf-reveal,
  .fsf-sl-q,
  .fsf-sl-mark {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fsf-r.fsf-on { opacity: 1; }
  .fsf-reveal.is-visible { opacity: 1; }
  .fsf-sl-mark.fsf-sl-on { opacity: 1; }
  .fsf-sl-q.fsf-sl-on { opacity: 1; }

  .fsf-orb::before,
  .fsf-orb::after,
  .fsf-orb-dot { animation: none; }

  .fsf-ab1, .fsf-ab2, .fsf-ab3, .fsf-ab4 { animation: none; }
  .fsf-scroll-tick { animation: none; }
  .fsf-ghost { animation: none; }

  #fsf-cv { display: none; }
}

/* ================================================================
   27. タッチデバイス — カーソル調整
   ================================================================ */
@media (pointer: coarse), (hover: none) {
  .fsf-cta-btn:hover {
    transform: none;
    box-shadow: 0 4px 28px rgba(200, 168, 106, 0.18);
  }
  .fsf-cta-btn:hover .fsf-cta-btn-arrow {
    transform: none;
  }
  .fsf-being-cell:hover { transform: none; }
}

/* ================================================================
   28. 画像コンポーネント — 5画像 完全実装
   デザイン思想:
     - 全画像に多層グラデーションオーバーレイ（ページ背景と自然に溶け込む）
     - オリーブ×ゴールドのグロウを光源として各画像に埋め込む
     - filter: brightness / saturate / sepia でダークテーマと統一
     - パララックス: data-fsf-parallax 属性値で個別速度制御
     - will-change: transform + backface-visibility で GPU 合成レイヤー確保
   ================================================================ */

/* ── 共通ベース ── */
#fsf-root .fsf-img {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

#fsf-root .fsf-img-el {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── オーバーレイ共通 ── */
.fsf-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


/* ----------------------------------------------------------------
   画像1 — Hero フルスクリーン背景
   ---------------------------------------------------------------- */
.fsf-hero { position: relative; overflow: hidden !important; }

.fsf-img-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.fsf-img-hero .fsf-img-el {
  width: 100%;
  height: 100%;
  object-position: 68% center;
  filter: brightness(0.50) saturate(0.72) sepia(0.08);
  transform: scale(1.08);
  transform-origin: center center;
}

/* テキストコンテンツをhero画像の上に重ねる */
.fsf-hero > :not(.fsf-img-hero) {
  position: relative;
  z-index: 1;
}

/* ヒーロー多層グラデーションオーバーレイ */
.fsf-img-overlay--hero {
  background:
    /* 左: テキスト側を強く暗く、右へ向かって徐々に開く */
    linear-gradient(
      to right,
      rgba(12, 17, 8, 0.94) 0%,
      rgba(12, 17, 8, 0.75) 36%,
      rgba(12, 17, 8, 0.32) 62%,
      rgba(12, 17, 8, 0.10) 100%
    ),
    /* 下辺: 次セクションへ滑らかに接続 */
    linear-gradient(
      to top,
      rgba(12, 17, 8, 0.99) 0%,
      transparent 26%
    ),
    /* 上辺: ヘッダー領域保護 */
    linear-gradient(
      to bottom,
      rgba(12, 17, 8, 0.72) 0%,
      transparent 16%
    ),
    /* ゴールドグロウ: 被写体の右中央に灯す */
    radial-gradient(
      ellipse 55% 60% at 72% 50%,
      rgba(200, 168, 106, 0.07) 0%,
      transparent 100%
    ),
    /* オリーブグロウ: 左下にかすかな地面反射 */
    radial-gradient(
      ellipse 40% 30% at 18% 82%,
      rgba(110, 144, 64, 0.04) 0%,
      transparent 100%
    );
}

/* ページロード後: 画像ゆっくりフェードイン + スケール収縮 */
.fsf-img-hero .fsf-img-el {
  animation: fsf-hero-img-fadein 2.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fsf-hero-img-fadein {
  0%   { opacity: 0; transform: scale(1.13); }
  100% { opacity: 1; transform: scale(1.08); }
}


/* ----------------------------------------------------------------
   画像2 — Diagnosis後 全幅エディトリアルストリップ
   ---------------------------------------------------------------- */
.fsf-img-strip {
  position: relative;
  width: 100%;
  height: clamp(240px, 38vw, 480px);
  overflow: hidden;
}

.fsf-img-strip__fig {
  position: absolute;
  inset: 0;
  margin: 0;
}

.fsf-img-strip__fig .fsf-img-el {
  width: 100%;
  height: 100%;
  object-position: center 35%;
  filter: brightness(0.42) saturate(0.62) sepia(0.10);
  transform: scale(1.08);
}

/* ストリップ多層オーバーレイ */
.fsf-img-overlay--strip {
  background:
    /* 上下をページ背景に溶け込ませる — 重要 */
    linear-gradient(
      to bottom,
      rgba(12, 17, 8, 0.92) 0%,
      rgba(12, 17, 8, 0.16) 20%,
      rgba(12, 17, 8, 0.10) 60%,
      rgba(12, 17, 8, 0.92) 100%
    ),
    /* オリーブグロウ: 情報の混乱を左から照らす */
    radial-gradient(
      ellipse 58% 68% at 26% 52%,
      rgba(110, 144, 64, 0.07) 0%,
      transparent 100%
    ),
    /* ゴールドグロウ: 右寄りのスクリーン光源 */
    radial-gradient(
      ellipse 42% 52% at 72% 40%,
      rgba(200, 168, 106, 0.06) 0%,
      transparent 100%
    );
}

/* キャプション群 — 左下に静かに配置 */
.fsf-img-strip__caption {
  position: absolute;
  bottom: clamp(1.4rem, 2.8vh, 2.4rem);
  left: clamp(1.5rem, 13vw, 13vw);
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  z-index: 1;
}

.fsf-img-strip__label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.44em;
  color: rgba(200, 168, 106, 0.34);
  text-transform: uppercase;
}

.fsf-img-strip__num {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', serif;
  font-style: italic;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: rgba(200, 168, 106, 0.055);
  letter-spacing: -0.03em;
}


/* ----------------------------------------------------------------
   画像3 — Shift セクション内 エディトリアルスプリット
   ---------------------------------------------------------------- */
.fsf-img-split {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: clamp(190px, 26vw, 340px);
  overflow: hidden;
  margin-bottom: 5vh;
  /* 極薄ゴールドのダブルフレーム */
  box-shadow:
    0 0 0 0.5px rgba(200, 168, 106, 0.14),
    0 0 0 6px  rgba(12, 17, 8, 0.92),
    0 0 0 6.5px rgba(200, 168, 106, 0.07);
}

.fsf-img-split .fsf-img-el {
  width: 100%;
  height: 100%;
  object-position: center 40%;
  filter: brightness(0.46) saturate(0.66) sepia(0.08);
  transform: scale(1.08);
  transition: filter 0.9s ease;
}

.fsf-img-split:hover .fsf-img-el {
  filter: brightness(0.54) saturate(0.72) sepia(0.05);
}

.fsf-img-overlay--split {
  background:
    /* 四隅を暗くしフレームとして機能させる */
    linear-gradient(
      135deg,
      rgba(12, 17, 8, 0.70) 0%,
      rgba(12, 17, 8, 0.20) 42%,
      rgba(12, 17, 8, 0.50) 100%
    ),
    /* 中央: ゴールドの神秘的な光 */
    radial-gradient(
      ellipse 52% 62% at 60% 46%,
      rgba(200, 168, 106, 0.09) 0%,
      transparent 100%
    ),
    /* オリーブ: 左下の深み */
    radial-gradient(
      ellipse 38% 48% at 22% 62%,
      rgba(110, 144, 64, 0.05) 0%,
      transparent 100%
    );
}

.fsf-img-split__caption {
  position: absolute;
  bottom: 0.9rem;
  right: 1.1rem;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 8px;
  letter-spacing: 0.38em;
  color: rgba(200, 168, 106, 0.24);
  text-transform: uppercase;
  z-index: 1;
}


/* ----------------------------------------------------------------
   画像4 — Practice セクション デスクライフスタイル
   ---------------------------------------------------------------- */
.fsf-img-practice {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: clamp(175px, 24vw, 320px);
  overflow: hidden;
  margin-bottom: 5vh;
}

/* 内側の光フレーム — インセットシャドウ */
.fsf-img-practice::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 0.5px rgba(200, 168, 106, 0.13),
    inset 0 0 32px rgba(200, 168, 106, 0.04);
  pointer-events: none;
  z-index: 2;
}

.fsf-img-practice .fsf-img-el {
  width: 100%;
  height: 100%;
  object-position: center 25%;
  filter: brightness(0.44) saturate(0.68) sepia(0.12);
  transform: scale(1.08);
  transition: filter 0.9s ease;
}

.fsf-img-practice:hover .fsf-img-el {
  filter: brightness(0.52) saturate(0.74) sepia(0.08);
}

/* デスクランプのウォームゴールド光を演出 */
.fsf-img-overlay--practice {
  background:
    /* 下辺: テキストへ滑らかに繋げる */
    linear-gradient(
      to top,
      rgba(12, 17, 8, 0.94) 0%,
      rgba(12, 17, 8, 0.36) 32%,
      transparent 58%
    ),
    /* 左辺: テキスト重なり保護 */
    linear-gradient(
      to right,
      rgba(12, 17, 8, 0.52) 0%,
      transparent 42%
    ),
    /* ゴールド暖光: デスク右奥のランプ */
    radial-gradient(
      ellipse 48% 52% at 66% 60%,
      rgba(200, 168, 106, 0.11) 0%,
      rgba(200, 168, 106, 0.04) 38%,
      transparent 100%
    ),
    /* オリーブ: PCスクリーンの環境光 */
    radial-gradient(
      ellipse 35% 40% at 44% 36%,
      rgba(110, 144, 64, 0.05) 0%,
      transparent 100%
    );
}


/* ----------------------------------------------------------------
   画像5 — シネマティック全画面（Sensation〜Being間）
   ---------------------------------------------------------------- */
.fsf-img-cinema {
  position: relative;
  width: 100%;
  height: clamp(440px, 80vh, 840px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.fsf-img-cinema__fig {
  position: absolute;
  inset: 0;
  margin: 0;
}

.fsf-img-cinema__fig .fsf-img-el {
  width: 100%;
  height: 100%;
  object-position: center 18%;
  filter: brightness(0.36) saturate(0.56) sepia(0.10);
  transform: scale(1.08);
}

/* シネマティック最詩的オーバーレイ */
.fsf-img-overlay--cinema {
  background:
    /* 上下: sl5→cinema→s6 を一連の流れとして溶かす */
    linear-gradient(
      to bottom,
      rgba(12, 17, 8, 0.96) 0%,
      rgba(12, 17, 8, 0.38) 16%,
      transparent 32%,
      transparent 50%,
      rgba(12, 17, 8, 0.52) 70%,
      rgba(12, 17, 8, 0.97) 100%
    ),
    /* 左辺: テキストオーバーレイ保護 */
    linear-gradient(
      to right,
      rgba(12, 17, 8, 0.74) 0%,
      rgba(12, 17, 8, 0.26) 34%,
      transparent 56%
    ),
    /* ゴールドグロウ: 被写体を照らす遠くの光源 */
    radial-gradient(
      ellipse 50% 56% at 60% 36%,
      rgba(200, 168, 106, 0.12) 0%,
      rgba(200, 168, 106, 0.04) 42%,
      transparent 100%
    ),
    /* オリーブグロウ: 大気の深み・グラウンドから上がる光 */
    radial-gradient(
      ellipse 68% 44% at 28% 68%,
      rgba(110, 144, 64, 0.05) 0%,
      transparent 100%
    ),
    /* 微細な粒子感を演出するノイズ様グラデーション */
    radial-gradient(
      ellipse 30% 30% at 85% 20%,
      rgba(200, 168, 106, 0.03) 0%,
      transparent 100%
    );
}

/* テキストオーバーレイ — 画像左下 */
.fsf-img-cinema__text {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 13vw, 13vw) clamp(2.8rem, 5.5vh, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.fsf-img-cinema__en {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.6vw, 50px);
  color: rgba(237, 226, 204, 0.50);
  line-height: 1.52;
  letter-spacing: -0.007em;
}

.fsf-img-cinema__rule {
  width: 28px;
  height: 0.5px;
  background: linear-gradient(to right, rgba(200, 168, 106, 0.36), transparent);
}


/* ----------------------------------------------------------------
   レスポンシブ: スマートフォン（〜767px）
   ---------------------------------------------------------------- */
@media (max-width: 767px) {

  /* Hero: 縦長ビューポートでも被写体が映えるよう位置調整 */
  .fsf-img-hero .fsf-img-el {
    object-position: 72% center;
    filter: brightness(0.40) saturate(0.68) sepia(0.10);
  }

  /* Hero overlay: スマホはほぼ全面を暗くしてテキスト可読性確保 */
  .fsf-img-overlay--hero {
    background:
      linear-gradient(
        to right,
        rgba(12, 17, 8, 0.97) 0%,
        rgba(12, 17, 8, 0.90) 52%,
        rgba(12, 17, 8, 0.62) 100%
      ),
      linear-gradient(
        to top,
        rgba(12, 17, 8, 0.99) 0%,
        transparent 30%
      ),
      linear-gradient(
        to bottom,
        rgba(12, 17, 8, 0.74) 0%,
        transparent 20%
      );
  }

  .fsf-img-strip {
    height: clamp(190px, 50vw, 280px);
  }

  .fsf-img-strip__num {
    font-size: clamp(40px, 11vw, 68px);
  }

  .fsf-img-split {
    max-width: 100%;
    height: clamp(160px, 46vw, 260px);
    box-shadow:
      0 0 0 0.5px rgba(200, 168, 106, 0.12),
      0 0 0 4px   rgba(12, 17, 8, 0.92),
      0 0 0 4.5px rgba(200, 168, 106, 0.06);
  }

  .fsf-img-practice {
    max-width: 100%;
    height: clamp(155px, 42vw, 250px);
  }

  .fsf-img-cinema {
    height: clamp(320px, 58vh, 520px);
  }

  .fsf-img-cinema__en {
    font-size: clamp(18px, 6vw, 32px);
  }
}

/* ----------------------------------------------------------------
   タブレット（768px〜1023px）微調整
   ---------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {

  .fsf-img-split,
  .fsf-img-practice {
    max-width: 100%;
  }

  .fsf-img-cinema {
    height: clamp(380px, 65vh, 680px);
  }
}

/* ----------------------------------------------------------------
   reduced-motion: 全アニメーション無効化
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .fsf-img-el {
    will-change: auto;
    transform: scale(1.0) !important;
    animation: none !important;
    transition: none !important;
  }
}
