/**
 * NARITA TIME — Top Page v3 (front-page.php 全面再設計)
 *
 * 設計書 NARITA_TIME_TOP_DESIGN_v3.md 準拠。
 * 見本 full-mockup-v3_2.html + hero-prototype-v2.html を本番トークン(--ntm-*)へ
 * 読み替えて移植。クラスは全て ntm-fp- 接頭辞で名前空間を切り、既存
 * top.css / v18-bento.css / components.css とのクラス名衝突を完全に回避する
 * (設計書 4章「クラス名衝突」の教訓)。
 *
 * 演出量は 動(Hero) → 静(Facts以降) の緩急(設計書 0-5)。
 * 全アニメーションに prefers-reduced-motion フォールバックを持つ。
 *
 * 画像URLはこのCSSに持たせず front-page.php からインライン出力する
 * (ダミー→成田実写への差し替えを容易にするため)。
 *
 * @package naritatime
 */

/* ============================================================
   0. 共通ヘルパー(front-page スコープ)
   ============================================================ */

.ntm-fp-wrap {
    max-width: var(--ntm-content-max);
    margin: 0 auto;
    padding: 0 var(--ntm-padding-pc);
}

.ntm-fp-eyebrow {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .9rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--ntm-terracotta);
}

/* スクロール・リビール(top-v3.js が .is-in を付与) */
.ntm-fp-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .9s var(--ntm-ease-out), transform .9s var(--ntm-ease-out);
}
.ntm-fp-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* JS無効/未実行時のフォールバック：演出を切って全要素を表示し、開幕カーテンは隠す
   (html.ntm-js は header.php が同期付与。大企業/行政向けの no-JS 堅牢性) */
html:not(.ntm-js) .ntm-fp-reveal,
html:not(.ntm-js) .ntm-fp-post { opacity: 1 !important; transform: none !important; }
html:not(.ntm-js) .ntm-fp-curtain { display: none !important; }
/* 詩の1行目は JS が文字分割する。JS無効時は aria-label から本文を描画 */
html:not(.ntm-js) .ntm-fp-pl1::after { content: attr(aria-label); }

/* ============================================================
   1. front-page 専用ヘッダー挙動
   既存 .ntm-header を body.home でのみ「Hero上=透明mix-blend →
   スクロールで solid」に上書き(他ページは一切変更しない)。
   ※ app.js が currentScroll>100 で .is-scrolled を付与する。
   ============================================================ */

body.home .ntm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    mix-blend-mode: difference;
    color: #fff;
    transition: background var(--ntm-transition-normal),
                color var(--ntm-transition-normal),
                border-color var(--ntm-transition-normal);
}
body.home .ntm-header .ntm-logo-en,
body.home .ntm-header .ntm-logo-tagline,
body.home .ntm-header .ntm-nav-link,
body.home .ntm-header .ntm-search-toggle,
body.home .ntm-header .ntm-menu-toggle {
    color: #fff;
}
body.home .ntm-header .ntm-menu-toggle-bar {
    background: currentColor;
}

/* スクロール後は mix-blend を解いて solid なアイボリー帯に着地 */
body.home .ntm-header.is-scrolled {
    mix-blend-mode: normal;
    background: rgba(248, 245, 238, .92); /* --ntm-paper @ .92 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: var(--ntm-hairline);
    color: var(--ntm-indigo);
}
body.home .ntm-header.is-scrolled .ntm-logo-en,
body.home .ntm-header.is-scrolled .ntm-nav-link,
body.home .ntm-header.is-scrolled .ntm-search-toggle,
body.home .ntm-header.is-scrolled .ntm-menu-toggle {
    color: var(--ntm-indigo);
}
body.home .ntm-header.is-scrolled .ntm-logo-tagline {
    color: var(--ntm-terracotta);
}

/* ============================================================
   2. 開幕カーテン(hero-prototype-v2 由来・物語の幕開け)
   ============================================================ */

.ntm-fp-curtain {
    position: fixed;
    inset: 0;
    z-index: var(--ntm-z-modal);
    pointer-events: none;
}
.ntm-fp-curtain span {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--ntm-indigo-deep);
    transition: transform 1.4s cubic-bezier(.76, 0, .24, 1);
}
.ntm-fp-curtain-top { top: 0; transform: translateY(0); }
.ntm-fp-curtain-bot { bottom: 0; transform: translateY(0); }
.ntm-fp-curtain.is-open .ntm-fp-curtain-top { transform: translateY(-100%); }
.ntm-fp-curtain.is-open .ntm-fp-curtain-bot { transform: translateY(100%); }
.ntm-fp-curtain-seal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    background: none;
    color: #fff;
    font-family: var(--ntm-font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .4em;
    opacity: 1;
    transition: opacity .5s;
}
.ntm-fp-curtain.is-open .ntm-fp-curtain-seal { opacity: 0; }

/* ============================================================
   3. ① HERO(写真 × 詩。動・最大)
   ============================================================ */

.ntm-fp-hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ntm-indigo-deep);
}
.ntm-fp-hero-bg { position: absolute; inset: 0; z-index: 1; }
/* v1.19.0 motion-spec §1: ヒーロー動画スロット。
   DOM 順で slide より前 = 常に写真の下層。再生開始(.has-video)で写真側が退いて現れる。 */
.ntm-fp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ntm-fp-hero-bg.has-video .ntm-fp-hero-slide {
    animation: none;
    opacity: 0;
    transition: opacity 1.2s var(--ntm-ease-out, ease-out);
}

.ntm-fp-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: ntmFpKenburns 36s infinite;
    will-change: transform, opacity;
}
/* v1.19.0: 先頭に video が入ったため nth-child → nth-of-type(div のみを数える)に変更 */
.ntm-fp-hero-slide:nth-of-type(1) { animation-delay: 0s; }
.ntm-fp-hero-slide:nth-of-type(2) { animation-delay: 9s; }
.ntm-fp-hero-slide:nth-of-type(3) { animation-delay: 18s; }
.ntm-fp-hero-slide:nth-of-type(4) { animation-delay: 27s; }
@keyframes ntmFpKenburns {
    0%   { opacity: 0; transform: scale(1.05) translate(2%, 1%); }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; transform: scale(1.18) translate(-2%, -1.5%); }
}

.ntm-fp-hero-ov {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* どんな写真（明るいネオン等）でも白文字が読めるよう、詩の中央に確実な暗幕を敷く */
    background:
        linear-gradient(180deg, rgba(19, 27, 46, .45), rgba(19, 27, 46, .3) 38%, rgba(19, 27, 46, .6)),
        radial-gradient(115% 80% at 50% 52%, rgba(19, 27, 46, .55) 0%, rgba(19, 27, 46, .15) 55%, transparent 75%);
}

/* フィルムの粒状感(極薄ノイズ) */
.ntm-fp-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 飛行機の軌跡(線を描き、先端を飛行機=点が getPointAtLength で飛ぶ) */
.ntm-fp-hero-trail { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.ntm-fp-hero-trail path {
    fill: none;
    stroke: rgba(255, 255, 255, .55);
    stroke-width: 1.2;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: ntmFpDraw 6s 1.8s forwards cubic-bezier(.4, 0, .2, 1);
}
.ntm-fp-hero-trail .ntm-fp-plane {
    fill: #fff;
    opacity: 0;
    animation: ntmFpPlaneShow 6s 1.8s forwards;
}
@keyframes ntmFpDraw { to { stroke-dashoffset: 0; } }
@keyframes ntmFpPlaneShow { 0% { opacity: 0; } 15% { opacity: .9; } 90% { opacity: .9; } 100% { opacity: 0; } }

/* 詩のキネティック登場 */
.ntm-fp-hero-poem {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    transform: translateY(var(--ntm-fp-parallax, 0));
}
.ntm-fp-pe {
    display: block;
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: clamp(.85rem, 1.4vw, 1.05rem);
    letter-spacing: .5em;
    text-transform: uppercase;
    opacity: 0;
    margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
    animation: ntmFpFadeUp 1.4s 1.2s forwards var(--ntm-ease-out);
}
.ntm-fp-pl1 {
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: clamp(1.9rem, 4.6vw, 3.4rem);
    letter-spacing: .14em;
    margin-bottom: .45em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, .45);
}
.ntm-fp-pl1 .ntm-fp-ch {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-90deg);
    transform-origin: bottom;
    animation: ntmFpCharIn .9s forwards var(--ntm-ease-out);
}
@keyframes ntmFpCharIn { to { opacity: 1; transform: none; } }
.ntm-fp-pl2,
.ntm-fp-pl3 {
    display: block;
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: clamp(1.05rem, 2.1vw, 1.5rem);
    letter-spacing: .18em;
    line-height: 1.9;
    color: #fff;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    animation: ntmFpLineReveal 1.5s forwards var(--ntm-ease-out);
    text-shadow: 0 2px 40px rgba(0, 0, 0, .45);
}
.ntm-fp-pl2 { animation-delay: 2.2s; }
.ntm-fp-pl3 { animation-delay: 2.6s; }
@keyframes ntmFpLineReveal { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes ntmFpFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: .85; transform: none; } }

/* タグライン(右下・フロート) */
.ntm-fp-hero-tag {
    position: absolute;
    z-index: 4;
    right: 2rem;
    bottom: 2.2rem;
    text-align: right;
    color: #fff;
    opacity: 0;
    animation: ntmFpFadeUp 1.6s 3.2s forwards var(--ntm-ease-out);
}
.ntm-fp-hero-tag .ntm-fp-float { animation: ntmFpFloat 5s 4s ease-in-out infinite; }
.ntm-fp-hero-tag .b { font-family: var(--ntm-font-serif); font-weight: 700; font-size: .95rem; letter-spacing: .1em; }
.ntm-fp-hero-tag .r { display: inline-block; width: 32px; height: 1px; background: var(--ntm-terracotta); margin: .45rem 0; }
.ntm-fp-hero-tag .j { display: block; font-size: .68rem; letter-spacing: .3em; opacity: .85; }
@keyframes ntmFpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* スクロール誘導 */
.ntm-fp-hero-scroll {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: #fff;
    opacity: 0;
    animation: ntmFpFadeUp 1.6s 3.4s forwards var(--ntm-ease-out);
}
.ntm-fp-hero-scroll .l {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .65rem;
    letter-spacing: .4em;
    text-transform: uppercase;
}
.ntm-fp-hero-scroll .ln {
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, #fff, transparent);
    position: relative;
    overflow: hidden;
}
.ntm-fp-hero-scroll .ln::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--ntm-terracotta);
    animation: ntmFpScrollDot 2.2s infinite cubic-bezier(.7, 0, .3, 1);
}
@keyframes ntmFpScrollDot { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(230%); } }

/* ============================================================
   4. ②' LIVE 成田の今(SNSの鼓動・動の余韻)
   ============================================================ */

.ntm-fp-live { padding: 6.5rem 0; background: var(--ntm-paper); }
.ntm-fp-live-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.6rem;
    flex-wrap: wrap;
}
.ntm-fp-live-hl { display: flex; align-items: center; gap: .9rem; }
.ntm-fp-live-dot { position: relative; width: 9px; height: 9px; flex-shrink: 0; }
.ntm-fp-live-dot span { position: absolute; inset: 0; border-radius: 50%; background: var(--ntm-terracotta); }
.ntm-fp-live-dot span::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--ntm-terracotta);
    animation: ntmFpLivePulse 2s var(--ntm-ease-out) infinite;
}
@keyframes ntmFpLivePulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.5); opacity: 0; } }
.ntm-fp-live-t {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .85rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--ntm-terracotta);
}
.ntm-fp-live-t b {
    display: block;
    font-family: var(--ntm-font-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: .08em;
    color: var(--ntm-indigo);
    margin-top: .15rem;
}
.ntm-fp-live-sub {
    font-family: var(--ntm-font-serif);
    font-size: .92rem;
    line-height: 1.9;
    color: var(--ntm-slate);
    text-align: right;
}
.ntm-fp-live-sub a {
    display: inline-block;
    margin-top: .6rem;
    font-family: var(--ntm-font-en);
    font-size: .78rem;
    letter-spacing: .12em;
    color: var(--ntm-indigo);
    text-decoration: none;
    border-bottom: 1px solid var(--ntm-terracotta);
    padding-bottom: 2px;
}
.ntm-fp-live-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--ntm-hairline);
    border: 1px solid var(--ntm-hairline);
}

/* v1.39.0: 成田の今を右→左へ無限スライド（About の Instagram と同方式）。
   track に本体セット＋複製セットを並べ translateX 0→-50% で流す。
   両セットが同一・各タイル margin-right で継ぎ目ゼロ。端は mask でフェード。 */
.ntm-fp-live-marquee {
    position: relative;
    overflow: hidden;
    background: var(--ntm-hairline);   /* タイル間の 1px を従来と同じ罫線色に */
    border: 1px solid var(--ntm-hairline);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.ntm-fp-live-track {
    display: flex;
    width: max-content;
    /* 「1タイルが横切る時間」を一定に保つため枚数比例。1枚≒5秒。 */
    animation: ntm-fp-live-scroll calc(var(--ntm-live-count, 6) * 5s) linear infinite;
    will-change: transform;
}
.ntm-fp-live-marquee:hover .ntm-fp-live-track,
.ntm-fp-live-marquee:focus-within .ntm-fp-live-track { animation-play-state: paused; }
.ntm-fp-live-track .ntm-fp-post {
    flex: 0 0 auto;
    width: clamp(230px, 24vw, 340px);
    margin: 0 1px 0 0;          /* 罫線 1px 分。translateX -50% のズレを出さないため gap は使わない */
    opacity: 1;                  /* マーキー内は出現アニメを無効化（常時表示） */
    transform: none;
}
/* ⚠ 写真は通常 clip-path リビール（.is-in で開く）だが、流れ続けるマーキーでは
   is-in が安定しない。html.ntm-js より高い詳細度で常時表示に固定する。 */
html.ntm-js .ntm-fp-live-track .ntm-fp-post-m { clip-path: none; transition: none; }

/* ============================================================
   ★ Explore Narita（ヒーロー直下の「探す入口」・v1.40.0）
   左=コンセプト地図(象徴)／右=ジャンル×エリアの2軸セレクタ。
   ============================================================ */
.ntm-fp-exp {
    padding: clamp(3.5rem, 6vw, 6.5rem) 0;
    background: var(--ntm-paper);
    border-bottom: 1px solid var(--ntm-hairline);
}
.ntm-fp-exp-in {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}

/* 左: 地図 */
.ntm-fp-exp-map-stage {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
}
.ntm-fp-exp-maplink {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.4rem;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ntm-border);
    font-family: var(--ntm-font-sans);
    font-size: .82rem;
    letter-spacing: .12em;
    color: var(--ntm-indigo);
    text-decoration: none;
    transition: gap .35s var(--ntm-ease), border-color .35s var(--ntm-ease);
}
.ntm-fp-exp-maplink:hover { gap: 1.1rem; border-bottom-color: var(--ntm-indigo); }

/* 右: 2軸ナビ */
.ntm-fp-exp-nav { display: flex; flex-direction: column; gap: clamp(1.6rem, 3vw, 2.6rem); }

.ntm-fp-exp-head h2 {
    margin: .5rem 0 .9rem;
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.4;
    letter-spacing: .04em;
    color: var(--ntm-indigo);
}
.ntm-fp-exp-head p {
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-size: .92rem;
    line-height: 2;
    letter-spacing: .05em;
    color: var(--ntm-slate);
}

.ntm-fp-exp-label {
    display: block;
    margin-bottom: .9rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--ntm-hairline);
    font-family: var(--ntm-font-sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--ntm-slate);
}

/* ジャンル 3 タイル → /zukan/?shop_cat= */
.ntm-fp-exp-cats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.ntm-fp-exp-cat {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: 1.05rem 1rem;
    background: var(--ntm-snow);
    border: 1px solid var(--ntm-hairline);
    text-decoration: none;
    transition: border-color .3s var(--ntm-ease), transform .3s var(--ntm-ease-out), background .3s var(--ntm-ease);
}
.ntm-fp-exp-cat:hover { border-color: var(--ntm-terracotta); transform: translateY(-3px); background: var(--ntm-snow); }
.ntm-fp-exp-cat .ja {
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: .06em;
    color: var(--ntm-indigo);
}
.ntm-fp-exp-cat .en {
    font-family: var(--ntm-font-en);
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ntm-terracotta);
}

/* エリア チップ → /area/{slug}/（店舗0は非活性） */
.ntm-fp-exp-areas { display: flex; flex-wrap: wrap; gap: .5rem; }
.ntm-fp-exp-area {
    display: inline-block;
    padding: .5rem .95rem;
    border: 1px solid var(--ntm-border);
    border-radius: 999px;
    font-family: var(--ntm-font-sans);
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--ntm-indigo);
    text-decoration: none;
    background: var(--ntm-snow);
    transition: border-color .3s var(--ntm-ease), color .3s var(--ntm-ease), background .3s var(--ntm-ease);
}
a.ntm-fp-exp-area:hover { border-color: var(--ntm-indigo); background: var(--ntm-indigo); color: var(--ntm-paper); }
.ntm-fp-exp-area.is-empty {
    color: var(--ntm-slate-soft);
    border-color: var(--ntm-hairline);
    background: transparent;
    cursor: default;
    opacity: .6;
}

/* 業種で探す（押すと地図がその業種で絞られて開く＝テラコッタ寄りで「絞る」を示す） */
.ntm-fp-exp-genres { display: flex; flex-wrap: wrap; gap: .5rem; }
.ntm-fp-exp-genre {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .95rem;
    border: 1px solid var(--ntm-sand);
    border-radius: 999px;
    font-family: var(--ntm-font-sans);
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--ntm-terracotta-deep);
    text-decoration: none;
    background: var(--ntm-snow);
    transition: border-color .3s var(--ntm-ease), color .3s var(--ntm-ease), background .3s var(--ntm-ease);
}
.ntm-fp-exp-genre::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--ntm-terracotta);
    flex: none;
}
.ntm-fp-exp-genre:hover {
    border-color: var(--ntm-terracotta);
    background: var(--ntm-terracotta);
    color: var(--ntm-snow);
}
.ntm-fp-exp-genre:hover::before { background: var(--ntm-snow); }

@keyframes ntm-fp-live-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
.ntm-fp-post {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ntm-paper);
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px) scale(.97);
    transition: opacity .7s var(--ntm-ease-out), transform .7s var(--ntm-ease-out);
}
.ntm-fp-post.is-in { opacity: 1; transform: none; }
.ntm-fp-post-m { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ntm-paper-deep); }
.ntm-fp-post-m img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92);
    transition: transform 1.2s var(--ntm-ease-out);
}
.ntm-fp-post:hover .ntm-fp-post-m img { transform: scale(1.07); }
.ntm-fp-post-m::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(19, 27, 46, .55));
    opacity: .85;
}
.ntm-fp-post-reel { position: absolute; top: 9px; right: 9px; z-index: 2; color: #fff; }
.ntm-fp-post-reel svg { width: 16px; height: 16px; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .5)); }
.ntm-fp-post-new {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
    font-family: var(--ntm-font-en);
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .2em;
    color: #fff;
    background: var(--ntm-terracotta);
    padding: 3px 7px;
}
.ntm-fp-post-d {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: .7rem .8rem;
    color: #fff;
    font-family: var(--ntm-font-en);
    font-size: .62rem;
    letter-spacing: .1em;
}

/* ============================================================
   5. ② FACTS of Narita(写真背景版・静まる転換点)
   構造: .row > .row-inner(高さ固定) > (.row-bg / .row-ov / .row-content)
   高さは必ず .row-inner に固定する(設計書 4章②の教訓)。
   ============================================================ */

.ntm-fp-facts { padding: 6.5rem 0; background: var(--ntm-snow); }
.ntm-fp-facts-h { text-align: center; margin-bottom: 3.5rem; }
.ntm-fp-facts-h h2 {
    font-family: var(--ntm-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--ntm-indigo);
    line-height: 1.5;
    margin: 1rem 0 .6rem;
}
.ntm-fp-facts-h p {
    font-size: clamp(.92rem, 1.5vw, 1.05rem);
    line-height: 1.95;
    color: var(--ntm-slate);
}
.ntm-fp-board { border: 1px solid var(--ntm-hairline); background: var(--ntm-hairline); position: relative; overflow: hidden; }
/* 全桁着地後の「光の一閃」（完成の合図） */
.ntm-fp-board::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .16) 50%, transparent 58%);
    transform: translateX(-130%);
}
.ntm-fp-board.is-swept::after { transform: translateX(130%); transition: transform 1.1s ease; }

/* Solari フリップの各桁 */
.ntm-fp-num { perspective: 420px; }
.ntm-fp-digit { display: inline-block; transform-origin: center; will-change: transform; }
.ntm-fp-digit--sep { will-change: auto; }
.ntm-fp-digit.is-rolling { animation: ntmFpFlap .12s ease-in-out infinite; }
@keyframes ntmFpFlap { 0%, 100% { transform: rotateX(20deg); } 50% { transform: rotateX(-20deg); } }
.ntm-fp-digit.is-land { animation: ntmFpLand .55s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes ntmFpLand {
    0%   { transform: translateY(-5px); text-shadow: 0 0 14px var(--ntm-terracotta), 0 0 6px var(--ntm-terracotta); }
    100% { transform: none; text-shadow: none; }
}
/* 単位の遅延スライド（JS有効時のみ隠す。no-JSは常時表示） */
html.ntm-js .ntm-fp-num .u { opacity: 0; transform: translateX(8px); transition: opacity .5s var(--ntm-ease-out), transform .5s var(--ntm-ease-out); }
html.ntm-js .ntm-fp-num .u.is-in { opacity: .8; transform: none; }

.ntm-fp-facts-row { display: block; margin-bottom: 1px; }
.ntm-fp-facts-row:last-child { margin-bottom: 0; }
.ntm-fp-row-inner { position: relative; height: 140px; overflow: hidden; }
.ntm-fp-facts-row--feat .ntm-fp-row-inner,
.ntm-fp-facts-row--accent .ntm-fp-row-inner { height: 180px; }
.ntm-fp-row-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(.8);
    transition: transform 1.4s var(--ntm-ease-out);
}
.ntm-fp-row-inner:hover .ntm-fp-row-bg { transform: scale(1.05); }
.ntm-fp-row-ov { position: absolute; inset: 0; z-index: 1; }
.ntm-fp-row-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 2rem;
}
.ntm-fp-row-meta .en {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    display: block;
    margin-bottom: .2rem;
}
.ntm-fp-row-meta .jl {
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    display: block;
}
.ntm-fp-row-meta .ds {
    font-family: var(--ntm-font-serif);
    font-size: .82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    margin-top: .4rem;
    max-width: 30em;
}
.ntm-fp-num {
    font-family: var(--ntm-font-en);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: .15em;
}
.ntm-fp-num .u { font-family: var(--ntm-font-serif); font-size: .3em; font-weight: 400; color: rgba(255, 255, 255, .8); }
.ntm-fp-facts-row--feat .ntm-fp-num { font-size: clamp(2.6rem, 6vw, 3.8rem); }

/* 行ごとのオーバーレイ(背景写真は front-page.php がインライン出力) */
.ntm-fp-facts-row--feat .ntm-fp-row-ov   { background: linear-gradient(100deg, rgba(19, 27, 46, .9), rgba(19, 27, 46, .62)); }
.ntm-fp-facts-row--accent .ntm-fp-row-ov { background: linear-gradient(100deg, rgba(194, 83, 58, .9), rgba(194, 83, 58, .6)); }
.ntm-fp-facts-row--r3 .ntm-fp-row-ov,
.ntm-fp-facts-row--r4 .ntm-fp-row-ov     { background: linear-gradient(100deg, rgba(19, 27, 46, .86), rgba(19, 27, 46, .58)); }

.ntm-fp-board-q { background: var(--ntm-paper); padding: 2.2rem 1.8rem; text-align: center; }
.ntm-fp-board-q p {
    font-family: var(--ntm-font-serif);
    font-size: clamp(1.05rem, 2.2vw, 1.5rem);
    line-height: 1.95;
    color: var(--ntm-indigo);
}
.ntm-fp-board-q b { color: var(--ntm-terracotta); }

/* ============================================================
   6. ★ 風景帯(Facts → Stories の区切り・パララックス)
   ============================================================ */

.ntm-fp-band {
    position: relative;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ntm-fp-band-bg {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    filter: saturate(.85) brightness(.62); /* 明るい写真でも白文字が読めるよう画像自体を落とす */
}
/* 全面の暗幕＋中央の追加スクリム（テキストの背後を確実に暗く） */
.ntm-fp-band-ov {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(19, 27, 46, .5), rgba(19, 27, 46, .58)),
        radial-gradient(ellipse 85% 75% at 50% 50%, rgba(19, 27, 46, .45), transparent 78%);
}
.ntm-fp-band-txt { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 1.5rem; }
.ntm-fp-band-txt .e {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    opacity: .85;
}
.ntm-fp-band-txt h3 {
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: clamp(1.5rem, 3.6vw, 2.6rem);
    line-height: 1.9;
    letter-spacing: .1em;
    margin-top: 1rem;
    color: #fff; /* :where(h1..h6) の indigo を上書き（暗背景で白文字に） */
    text-shadow: 0 2px 24px rgba(0, 0, 0, .65), 0 0 2px rgba(0, 0, 0, .5);
}

/* ============================================================
   7. ③ STORIES(取材記事・写真主役)
   ============================================================ */

.ntm-fp-stories { padding: 6.5rem 0; background: var(--ntm-paper); }
.ntm-fp-sec-h {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.8rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.ntm-fp-sec-h h2 {
    font-family: var(--ntm-font-serif);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--ntm-indigo);
    letter-spacing: .04em;
}
.ntm-fp-sec-h h2 small {
    font-family: var(--ntm-font-serif);
    font-weight: 400;
    font-size: .5em;
    color: var(--ntm-slate);
    margin-left: .8rem;
    letter-spacing: .1em;
}
.ntm-fp-sec-more {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .95rem;
    letter-spacing: .1em;
    color: var(--ntm-indigo);
    text-decoration: none;
    border-bottom: 1px solid var(--ntm-terracotta);
    padding-bottom: 2px;
}
/* 主役記事(横長・写真半分) */
.ntm-fp-st-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 0;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1.5rem;
    background: var(--ntm-snow);
    border: 1px solid var(--ntm-hairline);
    overflow: hidden;
}
.ntm-fp-st-lead-img { aspect-ratio: 16/11; overflow: hidden; background: var(--ntm-paper-deep); }
.ntm-fp-st-lead-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94);
    transition: transform 1.2s var(--ntm-ease-out);
}
.ntm-fp-st-lead:hover .ntm-fp-st-lead-img img { transform: scale(1.05); }
.ntm-fp-st-lead-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.ntm-fp-st-cat {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ntm-terracotta);
}
.ntm-fp-st-lead-body h3 {
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.6;
    color: var(--ntm-indigo);
    margin: .7rem 0;
    letter-spacing: .03em;
}
.ntm-fp-st-lead-body p { font-size: .9rem; line-height: 1.9; color: var(--ntm-slate); }
.ntm-fp-st-date { font-family: var(--ntm-font-en); font-size: .72rem; letter-spacing: .1em; color: var(--ntm-slate); margin-top: 1rem; }

.ntm-fp-st-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.ntm-fp-st { display: block; text-decoration: none; color: inherit; }
.ntm-fp-st-img { aspect-ratio: 4/3; overflow: hidden; background: var(--ntm-paper-deep); margin-bottom: 1rem; }
.ntm-fp-st-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94);
    transition: transform 1.1s var(--ntm-ease-out);
}
.ntm-fp-st:hover .ntm-fp-st-img img { transform: scale(1.05); }
.ntm-fp-st-ttl {
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ntm-indigo);
    margin: .4rem 0;
    letter-spacing: .03em;
}
.ntm-fp-st-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px dashed var(--ntm-hairline);
    aspect-ratio: 4/3;
    color: var(--ntm-slate);
}
.ntm-fp-st-soon span {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .9rem;
    letter-spacing: .2em;
    color: var(--ntm-terracotta);
    margin-bottom: .5rem;
}
.ntm-fp-st-soon p { font-size: .85rem; line-height: 1.7; }

/* 画像のマスクリビール（下から拭うように立ち上がる・攻めた演出）。
   LIVE / Stories / Join で統一。JS有効時のみ初期マスク。reveal の is-in で開く。
   no-JS / reduced-motion は無効。 */
html.ntm-js .ntm-fp-st-lead-img,
html.ntm-js .ntm-fp-st-img,
html.ntm-js .ntm-fp-post-m,
html.ntm-js .ntm-fp-jc-bg {
    clip-path: inset(0 0 101% 0);
    transition: clip-path 1.05s var(--ntm-ease-out);
}
.ntm-fp-st-lead.is-in .ntm-fp-st-lead-img,
.ntm-fp-st.is-in .ntm-fp-st-img,
.ntm-fp-post.is-in .ntm-fp-post-m,
.ntm-fp-jc.is-in .ntm-fp-jc-bg { clip-path: inset(0); }

/* ============================================================
   8. ④ 編集宣言(全画面写真パララックス・静)
   ============================================================ */

.ntm-fp-creed {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.ntm-fp-creed-bg {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    filter: saturate(.85) brightness(.58);
}
.ntm-fp-creed-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 27, 46, .74), rgba(19, 27, 46, .66) 50%, rgba(19, 27, 46, .8));
}
/* v1.21.0 motion-spec §4: 章見出しの配置(コンポーネント本体は components.css) */
.ntm-fp-ch-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
}
@media (max-width: 768px) {
    .ntm-fp-ch-wrap { margin-bottom: 32px; }
}

/* ── v1.20.0 motion-spec §2: 漂う写真レイヤー ──
   位置は PHP から CSS 変数(--float-x/y/w)で1枚ずつ供給。
   外側 span = パララックス transform(JS)、内側 i = 出現演出。役割分離で transform 競合なし。
   テキスト帯(中央 max-width 760px)と重ならない座標のみを使う(spec: 詩が常に主役)。 */
.ntm-fp-creed-float {
    position: absolute;
    inset: 0;
    z-index: 1; /* creed-ov(暗幕)の上・creed-in(テキスト z2)の下 */
    pointer-events: none;
}
.ntm-fp-fl {
    position: absolute;
    left: var(--float-x);
    top: var(--float-y);
    width: var(--float-w);
    will-change: transform;
}
.ntm-fp-fl-ph {
    display: block;
    aspect-ratio: var(--float-ar, 3 / 4);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ntm-ease-out), transform 1s var(--ntm-ease-out);
    transition-delay: var(--float-delay, 0ms); /* JS が 80ms 差で供給 */
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}
.ntm-fp-creed-float.is-in .ntm-fp-fl-ph {
    opacity: var(--float-o, .7);
    transform: translateY(0);
}
.ntm-fp-fl-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 本番写真が入るまでのブランド色プレースホルダー(淡い3トーン) */
.ntm-fp-fl-ph.is-tone-a { background: linear-gradient(160deg, var(--ntm-paper-deep), var(--ntm-sand-soft)); }
.ntm-fp-fl-ph.is-tone-b { background: linear-gradient(160deg, var(--ntm-sand-soft), var(--ntm-sand)); }
.ntm-fp-fl-ph.is-tone-c { background: linear-gradient(160deg, var(--ntm-terracotta-light), var(--ntm-terracotta)); }

/* 手書き風の一筆線(詩の直下・進入時に描画) */
.ntm-fp-creed-line {
    width: min(320px, 60%);
    height: 30px;
    margin: -6px auto 10px;
    display: block;
    overflow: visible;
}
.ntm-fp-creed-line path {
    stroke: var(--ntm-sand);
    stroke-width: 1.6;
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}
.ntm-fp-creed-in.is-in .ntm-fp-creed-line path {
    animation: ntmFpCreedLine 1.6s var(--ntm-ease-out) .5s forwards;
}
@keyframes ntmFpCreedLine { to { stroke-dashoffset: 0; } }

.ntm-fp-creed-in { position: relative; z-index: 2; color: #fff; max-width: 760px; padding: 0 2rem; }
.ntm-fp-creed-in .ntm-fp-eyebrow { color: var(--ntm-sand); }
.ntm-fp-creed-in h2 {
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: clamp(1.7rem, 3.8vw, 2.8rem);
    line-height: 1.9;
    letter-spacing: .08em;
    margin: 1.5rem 0;
    color: #fff; /* :where(h1..h6) の indigo を上書き */
    text-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}
.ntm-fp-creed-in h2 b { color: var(--ntm-terracotta); font-weight: 600; }
.ntm-fp-creed-in p {
    font-family: var(--ntm-font-serif);
    font-size: clamp(.95rem, 1.7vw, 1.15rem);
    line-height: 2.2;
    /* base.css の body.ntm-theme p{color:ink}(0,1,2) に勝てないため !important で白を強制 */
    color: rgba(255, 255, 255, .9) !important;
    text-shadow: 0 1px 20px rgba(0, 0, 0, .5);
}
.ntm-fp-creed-sign {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: .2em;
    color: var(--ntm-sand);
    margin-top: 2rem;
}

/* ============================================================
   9. ⑤ JOIN(関わり方・静)
   ============================================================ */

.ntm-fp-join { padding: 6.5rem 0; background: var(--ntm-snow); }
.ntm-fp-join-h { text-align: center; margin-bottom: 3rem; }
.ntm-fp-join-h h2 {
    font-family: var(--ntm-font-serif);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--ntm-indigo);
    margin: 1rem 0 .6rem;
}
.ntm-fp-join-h p { font-size: .95rem; line-height: 1.9; color: var(--ntm-slate); }
.ntm-fp-join-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 1.5rem; }
.ntm-fp-jc {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    text-decoration: none;
    color: inherit;
    transition: transform .4s var(--ntm-ease-out);
}
.ntm-fp-jc:hover { transform: translateY(-4px); }
.ntm-fp-jc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ntm-ease-out); }
.ntm-fp-jc:hover .ntm-fp-jc-bg { transform: scale(1.06); }
.ntm-fp-jc-ov { position: absolute; inset: 0; }
.ntm-fp-jc--main .ntm-fp-jc-ov { background: linear-gradient(120deg, rgba(31, 42, 68, .92), rgba(31, 42, 68, .7)); }
.ntm-fp-jc--sub .ntm-fp-jc-ov  { background: linear-gradient(120deg, rgba(31, 42, 68, .85), rgba(31, 42, 68, .6)); }
.ntm-fp-jc-body {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ntm-fp-jc .lab {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--ntm-sand);
}
.ntm-fp-jc h3 { font-family: var(--ntm-font-serif); font-weight: 600; font-size: 1.35rem; line-height: 1.6; margin: 1rem 0; letter-spacing: .04em; color: #fff; /* :where(h1..h6) の indigo を上書き */ }
.ntm-fp-jc--sub h3 { font-size: 1.15rem; }
.ntm-fp-jc p { font-size: .88rem; line-height: 1.8; color: rgba(255, 255, 255, .88) !important; } /* body.ntm-theme p の墨黒を上書き */
.ntm-fp-jc .go {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .95rem;
    letter-spacing: .1em;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--ntm-sand);
    transition: gap .3s var(--ntm-ease-out);
}
.ntm-fp-jc:hover .go { gap: .9rem; }

/* ============================================================
   ★ Map ゲートウェイ（成田の店、ぜんぶ。/ 目玉への入口・軽量）
   ============================================================ */
.ntm-fp-mapcta {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--ntm-indigo-deep);
}
.ntm-fp-mapcta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(.55) brightness(.5) contrast(1.05);
}
.ntm-fp-mapcta-ov {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(19, 27, 46, .82), rgba(19, 27, 46, .9)),
        radial-gradient(120% 90% at 50% 40%, rgba(19, 27, 46, .35), rgba(19, 27, 46, .82));
}
/* 街に灯る店（装飾の光るピン） */
.ntm-fp-mapcta-pins { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ntm-fp-mappin { position: absolute; width: 10px; height: 10px; transform: translate(-50%, -50%); }
.ntm-fp-mappin::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--ntm-terracotta);
    box-shadow: 0 0 8px rgba(194, 83, 58, .85);
}
.ntm-fp-mappin::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--ntm-terracotta);
    animation: ntmFpLivePulse 2.6s var(--ntm-ease-out) infinite;
}
.ntm-fp-mappin--hot { width: 13px; height: 13px; }
.ntm-fp-mappin--hot::before { box-shadow: 0 0 14px rgba(232, 181, 71, .9), 0 0 6px rgba(194, 83, 58, .9); }
.ntm-fp-mappin--hot::after { animation-duration: 2s; }

.ntm-fp-mapcta-in { position: relative; z-index: 2; }
.ntm-fp-mapcta-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.ntm-fp-mapcta-head h2 {
    font-family: var(--ntm-font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.4;
    letter-spacing: .06em;
    color: #fff; /* :where(h) を上書き */
    margin: 1rem 0 .8rem;
    text-shadow: 0 2px 36px rgba(0, 0, 0, .45);
}
.ntm-fp-mapcta-head p {
    font-family: var(--ntm-font-serif);
    font-size: clamp(.95rem, 1.7vw, 1.15rem);
    line-height: 1.95;
    color: rgba(255, 255, 255, .88) !important; /* body.ntm-theme p を上書き */
}

/* おすすめ店カード */
.ntm-fp-mapcta-shops {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ntm-fp-mapshop { display: block; text-decoration: none; color: inherit; }
/* v1.29.3: 店主の顔・ロゴが切れないよう contain(全体表示)。
   枠は 4/3 のまま揃え、余った部分は淡い地色で埋める */
.ntm-fp-mapshop-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ntm-paper-deep);
    margin-bottom: .8rem;
    border: 1px solid var(--ntm-hairline);
}
.ntm-fp-mapshop-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: saturate(.92);
    transition: transform 1.1s var(--ntm-ease-out);
}
.ntm-fp-mapshop:hover .ntm-fp-mapshop-img img { transform: scale(1.06); }
.ntm-fp-mapshop-area {
    display: block;
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ntm-sand);
}
.ntm-fp-mapshop-name {
    display: block;
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin-top: .25rem;
}

/* CTA ボタン */
.ntm-fp-mapcta-btn {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin: 0 auto;
    width: fit-content;
    justify-self: center;
    font-family: var(--ntm-font-serif);
    font-weight: 600;
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    letter-spacing: .06em;
    color: #fff;
    background: var(--ntm-terracotta);
    padding: 1rem 2.2rem;
    text-decoration: none;
    transition: background var(--ntm-transition-normal), gap var(--ntm-transition-normal), transform var(--ntm-transition-normal);
}
.ntm-fp-mapcta-in { display: flex; flex-direction: column; align-items: center; }
.ntm-fp-mapcta-shops { width: 100%; }
.ntm-fp-mapcta-btn:hover { background: var(--ntm-terracotta-deep); gap: 1.1rem; transform: translateY(-2px); }
.ntm-fp-mapcta-arrow { font-family: var(--ntm-font-en); }

/* ============================================================
   10. レスポンシブ
   ============================================================ */

@media (max-width: 900px) {
    .ntm-fp-live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    /* SP はタイルを小さくして、一度に複数枚が流れて見えるように */
    .ntm-fp-live-track .ntm-fp-post { width: clamp(160px, 46vw, 230px); }
    /* Explore は縦積み（地図 → ジャンル → エリア） */
    .ntm-fp-exp-in { grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 2.6rem); }
    .ntm-fp-exp-map { order: 1; }
    .ntm-fp-exp-nav { order: 2; }
    .ntm-fp-exp-map-stage { max-width: 460px; }
}
@media (max-width: 420px) {
    .ntm-fp-exp-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .4rem; }
    .ntm-fp-exp-cat { padding: .8rem .6rem; }
    .ntm-fp-exp-cat .ja { font-size: .92rem; }
}
@media (max-width: 860px) {
    .ntm-fp-st-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .ntm-fp-st-lead { grid-template-columns: 1fr; }
    .ntm-fp-join-grid { grid-template-columns: 1fr; }
    .ntm-fp-hero-tag { right: 1.4rem; bottom: 5.5rem; }
    .ntm-fp-mapcta-shops { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .ntm-fp-row-inner,
    .ntm-fp-facts-row--feat .ntm-fp-row-inner,
    .ntm-fp-facts-row--accent .ntm-fp-row-inner { height: auto; min-height: 120px; }
    .ntm-fp-row-content { flex-direction: column; align-items: flex-start; justify-content: center; padding: 1.4rem; gap: .8rem; }
}

/* ============================================================
   11. prefers-reduced-motion(全演出の静止フォールバック)
   ============================================================ */

/* v1.20.0 motion-spec §2: SP は 4 枚(sp座標を持つもの)に削減し、SP専用座標へ */
@media (max-width: 768px) {
    .ntm-fp-fl.pc-only { display: none; }
    .ntm-fp-fl {
        left: var(--float-x-sp, var(--float-x));
        top: var(--float-y-sp, var(--float-y));
        width: var(--float-w-sp, var(--float-w));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ntm-fp-curtain { display: none; }
    /* v1.20.0: 漂う写真は静止・最終状態(視差もスタガーもなし) */
    .ntm-fp-fl { transform: none !important; }
    .ntm-fp-fl-ph { transition: none; opacity: var(--float-o, .7); transform: none; }
    .ntm-fp-creed-line path { animation: none; stroke-dashoffset: 0; }
    .ntm-fp-hero-slide { animation: none; opacity: 1; }
    .ntm-fp-hero-slide:nth-of-type(n+2) { opacity: 0; }
    /* v1.19.0: reduced-motion では動画を一切見せない(静止写真=posterと同一の1枚目で固定) */
    .ntm-fp-hero-video { display: none; }
    .ntm-fp-pl1 .ntm-fp-ch,
    .ntm-fp-pl2,
    .ntm-fp-pl3,
    .ntm-fp-pe,
    .ntm-fp-hero-tag,
    .ntm-fp-hero-scroll { animation: none; opacity: 1; transform: none; filter: none; }
    .ntm-fp-hero-tag .ntm-fp-float { animation: none; }
    .ntm-fp-hero-trail path { animation: none; stroke-dashoffset: 0; }
    .ntm-fp-hero-trail .ntm-fp-plane { animation: none; opacity: .9; }
    .ntm-fp-hero-scroll .ln::after { animation: none; }
    .ntm-fp-live-dot span::before { animation: none; }
    .ntm-fp-mappin::after { animation: none; }
    .ntm-fp-reveal,
    .ntm-fp-post { opacity: 1; transform: none; }
    /* 成田の今マーキー: スライドを止め、従来の4列グリッドに戻す（複製セットは隠す） */
    .ntm-fp-live-marquee {
        -webkit-mask-image: none;
        mask-image: none;
        gap: 1px;
    }
    .ntm-fp-live-track {
        animation: none;
        width: auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1px;
    }
    .ntm-fp-live-track .ntm-fp-post { width: auto; margin: 0; }
    .ntm-fp-live-track .ntm-fp-post.is-dup { display: none; }
    .ntm-fp-post-m img,
    .ntm-fp-st-img img,
    .ntm-fp-st-lead-img img,
    .ntm-fp-row-bg,
    .ntm-fp-band-bg,
    .ntm-fp-creed-bg,
    .ntm-fp-jc-bg { transition: none; }
    /* Facts フリップは停止（数字は即確定・単位は表示・光一閃なし） */
    .ntm-fp-digit.is-rolling,
    .ntm-fp-digit.is-land { animation: none; }
    .ntm-fp-board::after { display: none; }
    html.ntm-js .ntm-fp-num .u { opacity: .8; transform: none; transition: none; }
    /* 画像マスクリビールも無効（即表示） */
    html.ntm-js .ntm-fp-st-lead-img,
    html.ntm-js .ntm-fp-st-img,
    html.ntm-js .ntm-fp-post-m,
    html.ntm-js .ntm-fp-jc-bg { clip-path: none; transition: none; }
}

/* ============================================================
   v1.27.0-A: FACTS 静穏リデザイン(.ntm-fp-board.is-quiet)
   写真バナー型を廃止 → 罫線×タイポグラフィのエディトリアル型。
   数字ロール演出(.ntm-fp-digit)は継続。
   ============================================================ */
.ntm-fp-board.is-quiet { background: none; }
.ntm-fp-fq-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 2rem;
    padding: 2.1rem 0.5rem;
    border-top: 1px solid var(--ntm-hairline);
}
.ntm-fp-board.is-quiet .ntm-fp-fq-row:last-of-type { border-bottom: 1px solid var(--ntm-hairline); }
.ntm-fp-fq-meta .en {
    display: block;
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: .8rem;
    letter-spacing: .16em;
    color: var(--ntm-terracotta);
    margin-bottom: .35rem;
}
.ntm-fp-fq-meta .jl {
    display: block;
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: .14em;
    color: var(--ntm-indigo);
}
.ntm-fp-fq-meta .ds {
    margin: .5rem 0 0;
    font-family: var(--ntm-font-serif);
    font-size: .82rem;
    letter-spacing: .05em;
    line-height: 1.9;
    color: var(--ntm-slate-soft) !important; /* body p 色の上書き */
}
.ntm-fp-board.is-quiet .ntm-fp-num {
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    letter-spacing: .02em;
    color: var(--ntm-indigo);
    line-height: 1;
    white-space: nowrap;
}
.ntm-fp-board.is-quiet .ntm-fp-num .u {
    font-family: var(--ntm-font-serif);
    font-style: normal;
    font-size: .95rem;
    letter-spacing: .1em;
    color: var(--ntm-slate);
    margin-left: .4rem;
}
.ntm-fp-board-q.is-quiet {
    background: var(--ntm-paper);
    margin-top: 2.5rem;
}
@media (max-width: 640px) {
    .ntm-fp-fq-row { grid-template-columns: 1fr; gap: .6rem; padding: 1.6rem 0.25rem; }
    .ntm-fp-board.is-quiet .ntm-fp-num { text-align: right; }
}

/* ============================================================
   v1.27.0-B: エリア概念図(.ntm-cmap / parts/concept-map.php)
   moments「エリア概念図」型。Map ゲートウェイを紙色に反転。
   ※SVG text は root の fill:none を継承するため、各 text に fill 必須
   ============================================================ */
.ntm-fp-mapcta.is-cmap { background: var(--ntm-paper); }
.ntm-fp-mapcta.is-cmap .ntm-fp-mapcta-head h2 { color: var(--ntm-indigo); text-shadow: none; }
.ntm-fp-mapcta.is-cmap .ntm-fp-mapcta-head p { color: var(--ntm-slate) !important; }
.ntm-fp-mapcta.is-cmap .ntm-fp-mapshop-img { background: var(--ntm-paper-deep); border-color: var(--ntm-hairline); }
.ntm-fp-mapcta.is-cmap .ntm-fp-mapshop-area { color: var(--ntm-terracotta); }
.ntm-fp-mapcta.is-cmap .ntm-fp-mapshop-name { color: var(--ntm-indigo); }

.ntm-fp-cmap-stage {
    position: relative;
    max-width: 1440px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
/* v1.36.0: 図そのもの(.ntm-cmap / .ntm-cmap-svg / .ntm-cmap-pin / .ntm-cmap-note)は
   assets/css/concept-map.css へ切り出した(/about/ でも同じ部品を使うため)。
   ここに残すのは「トップの Map ゲートウェイという配置」に属する枠だけ。 */

/* タイトルオーバーレイ(moments 式・左下) */
.ntm-fp-cmap-title {
    position: absolute;
    left: 3%;
    bottom: 8%;
    z-index: 2;
    pointer-events: none;
}
.ntm-fp-cmap-title .en {
    display: block;
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: .06em;
    color: var(--ntm-indigo);
}
.ntm-fp-cmap-title .poem {
    margin: 1.1rem 0 0;
    font-family: var(--ntm-font-serif);
    font-size: .85rem;
    letter-spacing: .14em;
    line-height: 2.3;
    color: var(--ntm-slate) !important;
}
@media (max-width: 768px) {
    .ntm-fp-cmap-title { position: static; padding: 0 20px 1.6rem; pointer-events: auto; }
    .ntm-fp-cmap-title .en br { display: none; }
    .ntm-fp-cmap-title .en { font-size: 1.7rem; }
}

/* ============================================================
   v1.28.0: 漂う写真=ページ全体ドリフト(.ntm-fp-drift)
   固定レイヤー。写真はJSが生成し transform のみで上昇(CLSゼロ)。
   リンクなし(pointer-events:none)・本文の可読域を避けた両サイド帯のみ。
   ヒーロー滞在中(.is-on なし)は非表示。reduced-motion はJS側で生成しない。
   ============================================================ */
.ntm-fp-drift {
    position: fixed;
    inset: 0;
    /* v1.29.2: 前面(z:4)に戻す。写真は左右ゾーンに全体表示され、
       中央の見出し帯は避ける = はっきり見える・見切れない・見出しは守る */
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s var(--ntm-ease-out);
}
.ntm-fp-drift.is-on { opacity: 1; }
body.home .ntm-main > section,
body.home .ntm-main > article { position: relative; }
/* v1.29.2: 背景グラデーション方式を廃止(セクション内容が透明帯に食い込み
   見切れて見える事故のため)。セクション背景は従来どおり不透過に戻し、
   写真はコンテンツ幅の外側(左右の余白)でのみ見える = 見切れゼロ・衝突ゼロ。 */
body.home .ntm-fp-facts { background: var(--ntm-snow); }
body.home .ntm-fp-mapcta.is-cmap { background: var(--ntm-paper); }
body.home { background: var(--ntm-paper); }

.ntm-fp-drift img {
    position: absolute;
    top: 0;
    height: auto;
    display: block;
    box-shadow: 0 18px 50px rgba(19, 27, 46, .28);
    will-change: transform;
    transition: opacity .9s var(--ntm-ease-out);
}

/* ============================================================
   v1.29.3: カードが主役のセクションは漂う写真(z:4)より前面へ。
   店舗カード・LIVE・Stories の上に装飾写真が乗らない = 商品性を最優先。
   FACTS / 編集宣言 / 風景帯 / JOIN では写真が前面に出て流れる。
   ============================================================ */
body.home .ntm-fp-mapcta,
body.home .ntm-fp-live,
body.home .ntm-fp-stories {
    position: relative;
    z-index: 5;
}

/* ============================================================
   v1.30.0-A: Editorial Statement(.ntm-fp-state)
   moments型の暗い詩セクション。ヒーロー直下。
   左下のマークは sticky でセクション中ずっと留まる。
   漂う写真(.ntm-fp-drift z:4)はこのセクションの上を流れる(z指定しない)。
   ============================================================ */
.ntm-fp-state {
    position: relative;
    background: var(--ntm-indigo-deep);
    color: var(--ntm-paper);
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(6rem, 14vw, 11rem);
    overflow: hidden;
}
.ntm-fp-state-in {
    max-width: var(--ntm-content-max);
    margin: 0 auto;
    padding: 0 var(--ntm-padding-pc);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
/* 左下に留まるマーク */
.ntm-fp-state-mark {
    position: sticky;
    top: 45vh;
    align-self: end;
}
.ntm-fp-state-mark .en {
    display: block;
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.7rem, 3.6vw, 2.9rem);
    line-height: 1.24;
    letter-spacing: .06em;
    color: var(--ntm-paper);
}
.ntm-fp-state-mark .rule {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--ntm-sand);
    margin: 1.4rem 0 1.1rem;
}
.ntm-fp-state-mark .sub {
    font-family: var(--ntm-font-serif);
    font-size: .82rem;
    line-height: 2.1;
    letter-spacing: .14em;
    color: rgba(248, 245, 238, .72) !important;
    margin: 0;
}
/* 右の詩 */
.ntm-fp-state-body .lead,
.ntm-fp-state-body .poem {
    font-family: var(--ntm-font-serif);
    color: rgba(248, 245, 238, .92) !important;
    letter-spacing: .1em;
    margin: 0 0 2.2rem;
}
.ntm-fp-state-body .lead {
    font-size: clamp(1rem, 1.9vw, 1.22rem);
    line-height: 2.3;
}
.ntm-fp-state-body .poem {
    font-size: clamp(.92rem, 1.6vw, 1.05rem);
    line-height: 2.5;
}
.ntm-fp-state-body .poem:last-child { margin-bottom: 0; }
.ntm-fp-state-line { margin: 0 0 2.4rem; opacity: .9; }

@media (max-width: 900px) {
    .ntm-fp-state-in { grid-template-columns: 1fr; gap: 2.6rem; }
    .ntm-fp-state-mark { position: static; }
    .ntm-fp-state-mark .en { font-size: 1.6rem; }
}

/* ============================================================
   v1.30.0-B: ALL SHOPS インデックス(.ntm-fp-index)
   moments「食/文化/自然」型の3カラム。左端に縦書きレール。
   ============================================================ */
.ntm-fp-index {
    position: relative;
    background: var(--ntm-paper);
    padding: clamp(4.5rem, 10vw, 8rem) var(--ntm-padding-pc) clamp(4rem, 9vw, 7rem);
    z-index: 5; /* カード群は漂う写真より前面 */
}
.ntm-fp-index-rail {
    position: absolute;
    left: max(12px, 2vw);
    top: clamp(5rem, 11vw, 9rem);
    writing-mode: vertical-rl;
    font-family: var(--ntm-font-en);
    font-size: .72rem;
    letter-spacing: .3em;
    color: var(--ntm-slate-soft);
}
.ntm-fp-index-rail::before {
    content: "";
    display: block;
    width: 1px;
    height: 46px;
    background: var(--ntm-border);
    margin: 0 auto .9rem;
}
.ntm-fp-index-cols {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.6rem, 4vw, 3.4rem);
}
.ntm-fp-index .ntm-fp-index-cat {
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: .2em;
    color: var(--ntm-indigo);
    margin: 0 0 2.6rem;
}
.ntm-fp-index-cat a { color: inherit; text-decoration: none; }
.ntm-fp-index-cat a:hover { color: var(--ntm-terracotta); }
.ntm-fp-index-list { list-style: none; margin: 0; padding: 0; }
.ntm-fp-index-item { margin-bottom: 2.6rem; }
.ntm-fp-index-link {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    text-decoration: none;
}
.ntm-fp-index-link .thumb {
    display: block;
    width: 62px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ntm-paper-deep);
}
.ntm-fp-index-link .thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--ntm-ease-out);
}
.ntm-fp-index-link:hover .thumb img { transform: scale(1.06); }
.ntm-fp-index-link .catch {
    font-family: var(--ntm-font-serif);
    font-size: .95rem;
    line-height: 1.95;
    letter-spacing: .06em;
    color: var(--ntm-indigo);
    /* v1.48.0: 紹介文の長短で高さがバラつくのを防ぐ。常に2行の高さに揃え、
       溢れは … で省略（全文は個店ページ）。これで3カラムの行が整う。 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.95em * 2);
}
.ntm-fp-index-link:hover .catch { color: var(--ntm-terracotta); }
.ntm-fp-index-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 0 0;
    padding-left: 76px;
}
.ntm-fp-index-foot .arw {
    flex: none;
    width: 38px; height: 38px;
    border: 1px solid var(--ntm-border);
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ntm-indigo);
    transition: background-color .4s var(--ntm-ease), color .4s var(--ntm-ease), border-color .4s var(--ntm-ease);
}
.ntm-fp-index-foot .arw:hover {
    background: var(--ntm-indigo);
    border-color: var(--ntm-indigo);
    color: var(--ntm-paper);
}
.ntm-fp-index-foot .name {
    font-family: var(--ntm-font-sans);
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .1em;
    color: var(--ntm-slate);
    border-left: 1px solid var(--ntm-border);
    padding-left: 12px;
}
.ntm-fp-index-empty {
    font-family: var(--ntm-font-serif);
    font-size: .85rem;
    letter-spacing: .1em;
    color: var(--ntm-slate-soft) !important;
}
.ntm-fp-index-more { text-align: right; max-width: 1180px; margin: 2.4rem auto 0; }
.ntm-fp-index-more a {
    font-family: var(--ntm-font-serif);
    font-size: .88rem;
    letter-spacing: .12em;
    color: var(--ntm-indigo);
    text-decoration: none;
    border-bottom: 1px solid var(--ntm-border);
    padding-bottom: 4px;
}
.ntm-fp-index-more a:hover { color: var(--ntm-terracotta); border-color: var(--ntm-terracotta); }

@media (max-width: 900px) {
    .ntm-fp-index-rail { display: none; }
    .ntm-fp-index-cols { grid-template-columns: 1fr; gap: 3rem; }
    .ntm-fp-index .ntm-fp-index-cat { margin-bottom: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    .ntm-fp-index-link .thumb img { transition: none; }
}

/* ============================================================
   v1.31.0: SPメニューの可読性(T指摘)
   front-page のヘッダーは mix-blend-mode:difference のため、メニューを開くと
   白文字が背景と差分合成されて読めなくなる。展開中は必ず解除する。
   ============================================================ */
body.ntm-menu-open.home .ntm-header,
body.ntm-menu-open .ntm-header {
    mix-blend-mode: normal !important;
    background: transparent;
}
body.ntm-menu-open.home .ntm-header .ntm-logo-en,
body.ntm-menu-open.home .ntm-header .ntm-menu-toggle,
body.ntm-menu-open.home .ntm-header .ntm-search-toggle {
    color: var(--ntm-paper) !important;
}
body.ntm-menu-open.home .ntm-header .ntm-logo-tagline {
    color: var(--ntm-sand) !important;
}
body.ntm-menu-open.home .ntm-header .ntm-menu-toggle-bar {
    background: var(--ntm-paper) !important;
}

/* ============================================================
   v1.33.0: FACTS を動画背景 × 縦書きコピー型に(moments 全画面型)
   ============================================================ */
.ntm-fp-facts.is-cinema { background: var(--ntm-snow); padding-top: 0; }
.ntm-fp-facts-stage {
    position: relative;
    height: 92svh;
    min-height: 560px;
    overflow: hidden;
    background: var(--ntm-indigo-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(3rem, 8vw, 6rem);
}
.ntm-fp-facts-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ntm-fp-facts-ov {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(19,27,46,.5), rgba(19,27,46,.28) 40%, rgba(19,27,46,.62)),
        radial-gradient(120% 80% at 50% 50%, rgba(19,27,46,.45) 0%, rgba(19,27,46,.1) 60%, transparent 80%);
}
/* 縦書きコピー(2行・右から左へ) */
.ntm-fp-facts-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    gap: clamp(1.2rem, 3vw, 2.6rem);
    align-items: flex-start;
    height: min(62vh, 620px);
}
.ntm-fp-facts-copy p {
    writing-mode: vertical-rl;
    font-family: var(--ntm-font-serif);
    font-weight: 500;
    color: #fff !important;
    letter-spacing: .28em;
    line-height: 1.9;
    margin: 0;
    text-shadow: 0 2px 26px rgba(0,0,0,.5);
}
.ntm-fp-facts-copy .v1 { font-size: clamp(1.15rem, 2.4vw, 1.75rem); }
.ntm-fp-facts-copy .v2 { font-size: clamp(1rem, 2vw, 1.45rem); margin-top: clamp(2rem, 6vw, 5rem); }
/* 下部の署名 / クレジット */
.ntm-fp-facts-sign {
    position: absolute;
    left: 50%;
    bottom: clamp(2.2rem, 5vw, 4rem);
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    font-family: var(--ntm-font-en-italic);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: .2em;
    color: rgba(255,255,255,.94) !important;
}
.ntm-fp-facts-sign .of { font-size: .78em; margin: 0 .35em; }
.ntm-fp-facts-credit {
    position: absolute;
    right: clamp(1rem, 3vw, 2.4rem);
    bottom: clamp(1rem, 2vw, 1.6rem);
    z-index: 2;
    margin: 0;
    font-family: var(--ntm-font-serif);
    font-size: .72rem;
    letter-spacing: .2em;
    color: rgba(255,255,255,.6) !important;
}
@media (max-width: 768px) {
    .ntm-fp-facts-stage { height: 86svh; min-height: 480px; }
    .ntm-fp-facts-copy { height: min(58vh, 460px); }
}
@media (prefers-reduced-motion: reduce) {
    .ntm-fp-facts-video { display: none; }
}

/* v1.33.0: 写真を出さない領域の制御(JS が付けるクラス)
   .is-muted     = 映像セクション表示中 → 写真を完全に隠す
   .is-left-only = 詩セクション表示中 → 文字がある右側の写真だけ隠す */
.ntm-fp-drift.is-muted { opacity: 0 !important; }
.ntm-fp-drift.is-left-only img[style*="right"] {
    opacity: 0 !important;
    transition: opacity .6s var(--ntm-ease-out);
}

/* v1.33.0b: 詩セクションの左下タイトル(A Story Of NARITA)を写真より前面に。
   .ntm-fp-drift(z:4) より上に出すことで、タイトルが必ず読める。
   ⚠ v1.59.0: ここは PC 専用にすること。無条件に書くと、後方にあるこの宣言が
   @media(max-width:900px) の `position: static` を上書きし(同詳細度=後勝ち)、
   SP で sticky が復活してタイトルが詩本文に重なる事故になった(iPhone 実機で検出)。 */
@media (min-width: 901px) {
    .ntm-fp-state-mark {
        position: sticky;
        z-index: 6;
    }
}
.ntm-fp-state-body { position: relative; z-index: 6; }

/* v1.59.0: SP は左右の余白が無く、漂う写真が詩の真上に来て可読性を壊す。
   詩セクション滞在中(JS が .is-left-only を付与)は SP では写真を完全に隠す
   ＝「詩が常に主役」(motion-spec §2)を SP でも守る。 */
@media (max-width: 900px) {
    .ntm-fp-drift.is-left-only { opacity: 0 !important; }
    /* マークと本文の間隔を確保(重なりの再発防止) */
    .ntm-fp-state-mark { position: static !important; z-index: 6; margin-bottom: 2rem; }
}

/* ============================================================
   v1.35.0: 縦組みコピーの組版を作り直す(T指摘)
   ・高さ制限で折り返していた → 各行を1本の柱として流し切る
   ・明朝の縦組みらしく字間を締め、行間(=柱の間隔)を広くとる
   ・2行目は1行目の肩から下げて、雁行(がんこう)の構図にする
   ============================================================ */
.ntm-fp-facts-copy {
    height: auto !important;
    align-items: flex-start;
    gap: clamp(2rem, 4.5vw, 4.2rem) !important;
    padding-bottom: clamp(3rem, 8vh, 6rem);
}
.ntm-fp-facts-copy p {
    writing-mode: vertical-rl !important;
    text-orientation: upright;
    font-family: var(--ntm-font-serif);
    font-weight: 400 !important;
    letter-spacing: .18em !important;   /* 縦組みは詰めた方が端正 */
    line-height: 1.75 !important;       /* 柱と柱の間隔 */
    max-height: none !important;
    text-shadow: 0 1px 30px rgba(0, 0, 0, .55);
}
/* 1行目=主役。2行目=受け(小さく・低く始める) */
.ntm-fp-facts-copy .v1 {
    font-size: clamp(1.05rem, 1.9vw, 1.6rem) !important;
    margin-top: 0 !important;
}
.ntm-fp-facts-copy .v2 {
    font-size: clamp(.92rem, 1.5vw, 1.22rem) !important;
    color: rgba(255, 255, 255, .82) !important;
    margin-top: clamp(3.5rem, 9vh, 8rem) !important;
    letter-spacing: .22em !important;
}
/* 署名は下端から十分に離し、コピーと衝突させない */
.ntm-fp-facts-sign {
    bottom: clamp(1.6rem, 3.5vh, 2.8rem);
    font-size: clamp(.88rem, 1.5vw, 1.15rem);
    letter-spacing: .26em;
    opacity: .9;
}
@media (max-width: 768px) {
    .ntm-fp-facts-copy { gap: 1.6rem !important; padding-bottom: 3.5rem; }
    .ntm-fp-facts-copy .v1 { font-size: 1.02rem !important; }
    .ntm-fp-facts-copy .v2 { font-size: .88rem !important; margin-top: 2.4rem !important; }
}
