/* ========================================
   THEME OVERRIDES — compass ページ内でテーマ共通CSS
   (reset/common/header/footer) の侵入を打ち消す。
   スコープは body.page-compass（compass.css は compass ページでのみ読まれる）。
   ======================================== */

/* #1: common.css の html{font-size:62.5%} を打ち消し、16px 基準に戻す */
html { font-size: 100% !important; }

/* #2: common.css body{ font-family/line-height/letter-spacing !important } を打ち返す */
body.page-compass {
    font-family: 'Noto Sans JP', sans-serif !important;
    line-height: 1.7 !important;
    letter-spacing: 0 !important;
    background-color: var(--navy-dark) !important;
    color: var(--silver-light) !important;
    font-weight: 400 !important;
}

/* #3: reset.css の h1..h9{font-weight:inherit !important} を打ち消す */
body.page-compass h1,
body.page-compass h2,
body.page-compass h3,
body.page-compass h4,
body.page-compass h5,
body.page-compass h6 {
    font-weight: revert !important;
}

/* #4: common.css の a{display:inline-block} / a:hover{opacity:.6} を打ち消す
   テーマの get_footer() は壊さないよう footer 配下は除外する */
body.page-compass #wrapper > *:not(footer) a {
    display: revert;
    opacity: 1;
    transition: none;
}
body.page-compass #wrapper > *:not(footer) a:hover { opacity: 1; }
/* ---- compass 内のアンカー要素で display/transition を個別復元 ----
   body.page-compass a { display:revert; transition:none } が詳細度(0,1,0,1)で上書きするため、
   各コンポーネントを (0,2,0,0) 以上で明示的に復元する。                  */

/* ヘッダーロゴ（display:flex が必要） */
body.page-compass .header__logo {
    display: flex !important;
    transition: opacity .25s ease !important;
}
body.page-compass .header__logo:hover { opacity: .92; }

/* ヘッダーCTA ボタン（display:inline-flex が必要） */
body.page-compass .header__cta {
    display: inline-flex !important;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease !important;
}
body.page-compass .header__cta:hover { opacity: 1; }

/* ヘッダーナビリンク（transition だけ復元） */
body.page-compass .header__nav-list a,
body.page-compass .mobile-nav__list a {
    transition: color .25s ease !important;
}
body.page-compass .header__nav-list a:hover,
body.page-compass .mobile-nav__list a:hover { opacity: 1; }

/* モバイルナビ CTA（display:inline-flex が必要） */
body.page-compass .mobile-nav__cta a {
    display: inline-flex !important;
}

/* CTA フロートリンク（display:block / transition を復元） */
body.page-compass .cta-float__link {
    display: block !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}
body.page-compass .cta-float__link:hover { opacity: 1; }

/* 右下フローティングCTA：ヘッダー・#contact と導線が重複するため非表示（再表示する場合は次の3行を削除） */
body.page-compass .cta-float {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* #5+#6: header.css の裸 header + js/header.js が付ける _scrolled 系クラスを無効化
   is-scrolled と同時に付与されている場合は除外し、compass の背景色を優先させる */
body.page-compass header.header._scrolled:not(.is-scrolled),
body.page-compass header.header._scrolled_down:not(.is-scrolled),
body.page-compass header.header._scrolled_up:not(.is-scrolled),
body.page-compass header.header.active:not(.is-scrolled) {
    transform: none !important;
    background-color: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}
/* is-scrolled が付いている場合は transform/backdrop-filter のみリセット */
body.page-compass header.header._scrolled.is-scrolled,
body.page-compass header.header._scrolled_down.is-scrolled,
body.page-compass header.header._scrolled_up.is-scrolled,
body.page-compass header.header.active.is-scrolled {
    transform: none !important;
}

/* #8: get_footer() が出す .pagetop（右下固定）を compass 内で非表示化 */
body.page-compass footer .pagetop { display: none !important; }

/* #8-1: footer.php が出すフッター直前の CTA 帯は compass ページでは非表示 */
body.page-compass #wrapper > section.cta {
    display: none !important;
}

/* #9: テーマフッターは構造ごと戻しつつ、compass 側の継承だけ最小限で打ち消す */
/* Tailwind CDN の .container が footer 内の .container（テーマBEM）と衝突するため打ち消す */
body.page-compass footer .container {
    width: auto !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-inline: unset !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-inline: unset !important;
}
body.page-compass footer {
    color: var(--black) !important;
    /* common.css body と揃える（page-compass の font-weight:400 継承を打ち消す） */
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
}
body.page-compass footer .lower .container .index .en {
    font-weight: 600 !important;
}
body.page-compass footer a {
    color: inherit !important;
    display: inline-block !important;
    opacity: 1 !important;
    transition: opacity .3s !important;
}
body.page-compass footer a:hover {
    opacity: .6 !important;
}
body.page-compass footer .fs_13 { font-size: 13px !important; }
body.page-compass footer .fs_14 { font-size: 14px !important; }
body.page-compass footer .fs_16 { font-size: 16px !important; }
body.page-compass footer .fs_18 { font-size: 18px !important; }
/* secondary は fs_* が付かないため、テーマの 1.6rem 相当に固定 */
body.page-compass footer .lower .secondary .index,
body.page-compass footer .lower .secondary .index a {
    font-size: 16px !important;
    line-height: 1.75 !important;
}
@media screen and (max-width: 520px) {
    body.page-compass footer .upper .container {
        font-size: 17px !important;
    }
    body.page-compass footer .lower .container .index {
        font-size: 18px !important;
    }
    body.page-compass footer .lower .container .children a,
    body.page-compass footer .lower .secondary .index {
        font-size: 16px !important;
    }
    body.page-compass footer .lower .secondary .index a {
        font-size: 16px !important;
    }
}

        :root {
            --navy-dark: #0a1628;
            --navy-primary: #1a2942;
            --navy-medium: #2d3e5f;
            --navy-light: #4a5f7f;
            --silver-light: #e8ecf1;
            --silver-medium: #c5cdd6;
            --silver-dark: #8b95a5;
            --gold-accent: #c9a961;
            --white-pure: #ffffff;
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
            --content-max: 1480px;
            --content-inset: clamp(24px, 4vw, 48px);
            /* 受講生の声：丸写真のホバー拡大率（--pv-img-scale と掛け合わせる） */
            --pv-photo-hover-mul: 1.05;
        }
        
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Sans JP', sans-serif;
            background-color: var(--navy-dark);
            color: var(--silver-light);
        }
        /* カスタム針カーソル（標準カーソル非表示は .cursor-needle-active 時のみ） */
        body.cursor-needle-active * { cursor: none !important; }
        body.cursor-needle-active { cursor: none !important; }
        /* 羅針盤の針：位置は JS で transform 指定・点滅は opacity + ゴールド光 */
        .cursor-needle {
            position: fixed;
            left: 0;
            top: 0;
            width: 48px;
            height: 48px;
            margin-left: -24px;
            margin-top: -24px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><linearGradient id="gn" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="%23e8d5a3"/><stop offset="50%" stop-color="%23c9a961"/><stop offset="100%" stop-color="%23a68b4a"/></linearGradient></defs><polygon points="16,16 25,27 19,29" fill="url(%23gn)" stroke="%23b0904f" stroke-width="0.9"/><circle cx="21" cy="28" r="1.8" fill="%232a2214" opacity="0.9"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            pointer-events: none;
            z-index: 99999;
            opacity: 0;
            transition: opacity .15s ease-out;
            will-change: transform;
        }
        .cursor-needle.is-visible {
            opacity: 1;
            animation: cursor-needle-blink 1.1s ease-in-out infinite;
        }
        @keyframes cursor-needle-blink {
            0%, 100% { filter: brightness(1) drop-shadow(0 0 4px rgba(201,169,97,0.5)); }
            50% { filter: brightness(1.35) drop-shadow(0 0 12px rgba(201,169,97,0.85)); }
        }
        @media (max-width: 767px) {
            .cursor-needle { display: none !important; }
            body.cursor-needle-active,
            body.cursor-needle-active * { cursor: revert !important; }
        }
        body.menu-open .cursor-needle { opacity: 0 !important; }
        html.print-mode .cursor-needle { display: none !important; }

        .font-serif {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .font-sans-alt {
            font-family: 'Montserrat', sans-serif;
        }
        
        /* ========================================
           KV (Hero) – LOSSCAN-style, single background
           ======================================== */
        .kv {
            position: relative;
            height: 100vh;
            min-height: 680px;
            overflow: hidden;
            background: var(--navy-dark);
        }
        @media (max-width: 768px) {
            .kv { height: 88vh; min-height: 520px; }
            .kv__title-line { font-size: clamp(1.35rem, 4.5vw, 2.25rem); }
            .kv__label { font-size: clamp(0.75rem, 2vw, 0.9rem); }
            .kv__lead { font-size: clamp(1.05rem, 2.8vw, 1.3rem); }
            .kv__sub { font-size: clamp(0.75rem, 2vw, 0.9rem); }
            .kv__actions { flex-direction: column; align-items: stretch; }
            .kv__btn, .kv__btn-outline { width: 100%; min-width: 0; justify-content: center; padding: 14px 32px; font-size: 0.9rem; box-sizing: border-box; }
        }
        @media (max-width: 480px) {
            .kv__title-line { font-size: clamp(1.15rem, 5vw, 1.75rem); }
            .kv__label { font-size: 0.7rem; }
            .kv__lead { font-size: 1rem; }
            .kv__sub { font-size: 0.75rem; }
            .kv__btn, .kv__btn-outline { padding: 12px 24px; font-size: 0.85rem; }
        }

        .kv__slider,
        .kv__slide {
            width: 100%;
            height: 100%;
        }
        .kv__slider {
            will-change: transform;
        }
        .kv__slide {
            background-size: cover;
            background-position: center;
            position: relative;
        }
        @keyframes kvBgPanUp {
            from { background-position: center calc(50% + 32px); }
            to   { background-position: center 50%; }
        }
        .kv__slide.swiper-slide-active {
            animation: kvBgPanUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .kv__slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 22, 40, 0.82) 0%,
                rgba(26, 41, 66, 0.72) 50%,
                rgba(45, 62, 95, 0.60) 100%
            );
            z-index: 1;
            pointer-events: none;
        }
        /* 右側・縦並びの丸ボタン（パギネーション） */
        .kv__pagination {
            position: absolute !important;
            top: 50% !important;
            right: clamp(16px, 3vw, 48px) !important;
            bottom: auto !important;
            left: auto !important;
            width: auto !important;
            transform: translateY(-50%) !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 20px !important;
            align-items: center !important;
            z-index: 10;
        }
        .kv__dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid rgba(232, 236, 241, .5);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: border-color .3s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 0, 0, .2);
        }
        .kv__dot:hover {
            border-color: rgba(232, 236, 241, .75);
            transform: scale(1.1);
        }
        .kv__dot::after {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: transparent;
            transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
        }
        .kv__dot.is-active {
            border-color: var(--gold-accent);
            background: rgba(201, 169, 97, .15);
            box-shadow: 0 0 0 2px rgba(201, 169, 97, .25), 0 0 16px rgba(201, 169, 97, .35);
        }
        .kv__dot.is-active::after {
            background: var(--gold-accent);
            box-shadow: 0 0 10px rgba(201, 169, 97, .9);
            transform: scale(1);
        }
        .kv__dot.is-active::before {
            content: "";
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            height: 1.5px;
            width: 44px;
            background: linear-gradient(to right, rgba(232, 236, 241, .85), rgba(232, 236, 241, .25));
            animation: kvDotLine .45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            border-radius: 1px;
            pointer-events: none;
        }
        @keyframes kvDotLine {
            from { width: 0; opacity: 0; }
            to   { width: 44px; opacity: 1; }
        }

        .kv__inner {
            position: absolute;
            left: calc(max(0px, (100vw - var(--content-max)) / 2) + var(--content-inset));
            right: calc(max(0px, (100vw - var(--content-max)) / 2) + var(--content-inset));
            bottom: clamp(80px, 18vh, 200px);
            max-width: min(860px, calc(var(--content-max) - var(--content-inset) * 2));
            z-index: 10;
            color: var(--silver-light);
        }

        .kv__label {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(.82rem, 1.1vw, 1rem);
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold-accent);
            margin-bottom: 20px;
            opacity: 0;
            animation: kvUp .8s cubic-bezier(0.4, 0, 0.2, 1) forwards .3s;
        }

        .kv__title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            color: var(--silver-light);
            -webkit-font-smoothing: antialiased;
            line-height: 1.3;
            letter-spacing: .03em;
            text-shadow: 0 4px 28px rgba(0,0,0,.4);
            margin-bottom: 24px;
            opacity: 0;
            animation: kvUp .85s cubic-bezier(0.4, 0, 0.2, 1) forwards .55s;
        }
        .kv__title-line {
            display: block;
            font-size: clamp(1.5rem, 4.5vw, 3.9rem);
            white-space: normal;
            word-break: normal;
            overflow-wrap: normal;
        }

        .kv__lead {
            font-size: clamp(1.2rem, 1.8vw, 1.5rem);
            font-weight: 600;
            color: rgba(232, 236, 241, .95);
            line-height: 2;
            padding-left: 16px;
            border-left: 2px solid rgba(201, 169, 97, .6);
            margin-bottom: 24px;
            opacity: 0;
            animation: kvUp .8s cubic-bezier(0.4, 0, 0.2, 1) forwards .8s;
        }
        .kv__lead p { margin-bottom: 0.35em; }
        .kv__lead p:last-child { margin-bottom: 0; }
        .kv__lead-accent {
            color: var(--gold-accent);
            text-shadow: 0 0 16px rgba(201, 169, 97, 0.6);
        }

        .kv__sub {
            font-size: clamp(.8rem, 1.05vw, .95rem);
            font-weight: 400;
            color: rgba(232, 236, 241, .9);
            line-height: 1.8;
            margin-bottom: 32px;
            opacity: 0;
            animation: kvUp .8s cubic-bezier(0.4, 0, 0.2, 1) forwards 1s;
        }

        .kv__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            opacity: 0;
            animation: kvUp .8s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.2s;
        }

        .kv__btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 40px;
            background: linear-gradient(135deg, #c9a961 0%, #dcc486 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,.25);
            box-shadow: 0 4px 22px rgba(201, 169, 97, .4),
                        0 1px 0 rgba(255,255,255,.2) inset;
            transition: background .3s cubic-bezier(0.4, 0, 0.2, 1),
                        transform .3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color .3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }
        .kv__btn:hover {
            background: linear-gradient(135deg, #dcc486 0%, #c9a961 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201, 169, 97, .55),
                        0 1px 0 rgba(255,255,255,.25) inset;
            border-color: rgba(255,255,255,.35);
        }

        .kv__btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 40px;
            background: transparent;
            color: var(--silver-light);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            border-radius: 4px;
            border: 2px solid var(--silver-medium);
            transition: border-color .3s ease, background .3s ease, color .3s ease, transform .3s ease;
            text-decoration: none;
        }
        .kv__btn-outline:hover {
            border-color: var(--gold-accent);
            background: rgba(201, 169, 97, 0.1);
            color: var(--gold-accent);
            transform: translateY(-2px);
        }

        @keyframes kvUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        /* SCROLL：left:50% 中央寄せの translateX(-50%) をアニメ終了後も維持（kvUp だけだと X が消えて右にずれる） */
        @keyframes kvScrollUp {
            from { opacity: 0; transform: translateX(-50%) translateY(28px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .kv__scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 10;
            opacity: 0;
            animation: kvScrollUp .8s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.5s;
            text-decoration: none;
            color: inherit;
        }
        .kv__scroll-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.35em;
            color: var(--gold-accent);
            text-shadow: 0 0 12px rgba(201, 169, 97, 0.5);
        }
        .kv__scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        .kv__scroll-line {
            width: 2px;
            height: 56px;
            background: linear-gradient(to bottom, var(--gold-accent), rgba(201, 169, 97, 0.1));
            box-shadow: 0 0 14px rgba(201, 169, 97, 0.6);
            border-radius: 1px;
            transform-origin: top;
            animation: scrollLineExtend 2s ease-in-out infinite;
        }
        @keyframes scrollLineExtend {
            0%   { transform: scaleY(0.2); opacity: 0.8; }
            40%  { transform: scaleY(1); opacity: 1; }
            60%  { transform: scaleY(1); opacity: 1; }
            100% { transform: scaleY(0.2); opacity: 0.8; }
        }

        /* ========================================
           悩み共感セクション
           · max-width 1024px: グリッドの静的レイアウト
           · min-width 1025px: ピン止め＋スクロールで4カードが四方から中央へ収束
           ======================================== */
        .problem-section {
            background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
            padding: 0;
        }
        .problem-pin-wrap {
            position: relative;
            background: inherit;
        }
        .problem-pinned {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .problem-pinned-inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .problem-section-header {
            margin-bottom: clamp(4rem, 7vw, 5.5rem);
            text-align: center;
        }
        .problem-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--silver-light);
            letter-spacing: .02em;
        }
        @media (max-width: 768px) {
            .problem-section-title { font-size: clamp(1.35rem, 4.5vw, 1.85rem); }
        }
        @media (max-width: 480px) {
            .problem-section-title { font-size: clamp(1.15rem, 5vw, 1.5rem); }
        }
        .problem-section-title--accent {
            color: var(--gold-accent);
            text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
        }
        .problem-section-title__line {
            width: 140px;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 50%, transparent 100%);
            margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0;
            box-shadow: 0 0 12px rgba(201, 169, 97, 0.4);
        }
        /* 既定（～1024px含むベース）：3カラムグリッド。1025px以上で下のメディアクエリが上書き */
        .problem-arena {
            display: grid;
            grid-template-columns: 1fr 360px 1fr;
            grid-template-rows: auto auto;
            gap: clamp(2.5rem, 4.5vw, 3.5rem) clamp(3rem, 5vw, 4.5rem);
            max-width: 1240px;
            margin: 0 auto;
            align-items: center;
        }
        .problem-center {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            width: 100%;
            height: clamp(340px, 40vw, 420px);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        @media (min-width: 1025px) {
            /* 収束アニメーションに使うスクロール距離（旧 260vh から約 1/3 短縮） */
            .problem-pin-wrap {
                height: calc(520vh / 3);
                padding-top: clamp(7rem, 12vw, 9rem);
                box-sizing: border-box;
            }
            .problem-section {
                padding-bottom: clamp(5rem, 10vw, 8rem);
            }
            .problem-pinned {
                position: sticky;
                top: 72px;
                min-height: calc(100vh - 72px);
                height: calc(100vh - 72px);
                overflow: hidden;
            }
            .problem-pinned-inner .problem-section-header {
                margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
            }
            /* アリーナ：3カラム×2行グリッドで四隅にカード・中央に写真（重なり防止）。寄りは JS の transform のみ */
            .problem-arena {
                display: grid;
                grid-template-columns: minmax(0, 1fr) 360px minmax(0, 1fr);
                grid-template-rows: 1fr 1fr;
                column-gap: min(3.5rem, 3vw);
                row-gap: clamp(0.85rem, 1.5vw, 1.25rem);
                width: 100%;
                max-width: 1180px;
                height: 400px;
                margin: 0 auto;
                flex-shrink: 0;
                align-items: stretch;
            }
            .problem-center {
                grid-column: 2 / 3;
                grid-row: 1 / -1;
                align-self: center;
                justify-self: center;
                width: 360px;
                height: 300px;
                max-width: 100%;
                position: relative;
                z-index: 2;
                will-change: transform, opacity;
            }
            .problem-pin-wrap .problem-card {
                position: relative;
                width: 100%;
                min-height: 0;
                height: clamp(5.75rem, 13vh, 6.75rem);
                max-height: 6.75rem;
                box-sizing: border-box;
                z-index: 1;
                will-change: transform, opacity;
                transition: none;
                padding: clamp(0.55rem, 1vw, 0.7rem) clamp(1.2rem, 1.85vw, 1.55rem);
            }
            .problem-card--tl {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
                align-self: center;
                justify-self: stretch;
            }
            .problem-card--tr {
                grid-column: 3 / 4;
                grid-row: 1 / 2;
                align-self: center;
                justify-self: stretch;
            }
            .problem-card--bl {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
                align-self: center;
                justify-self: stretch;
            }
            .problem-card--br {
                grid-column: 3 / 4;
                grid-row: 2 / 3;
                align-self: center;
                justify-self: stretch;
            }
            /* 4枚同じ外寸の中に収める（行高を抑えた分、字組をやや詰める） */
            .problem-arena .problem-card__text {
                font-size: clamp(0.92rem, 1.15vw, 1.06rem);
                line-height: 1.45;
            }
        }
        @media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
            .problem-pin-wrap .problem-card,
            .problem-center {
                will-change: auto;
            }
        }
        .problem-center::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 20px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }
        .problem-center--namecard {
            background: var(--white-pure);
            border: none;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
        }
        .problem-center img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }
        .problem-card {
            padding: clamp(1.65rem, 2.8vw, 2.35rem) clamp(1.65rem, 2.8vw, 2.5rem);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(201, 169, 97, 0.5);
            border-radius: 20px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
                        0 0 0 1px rgba(201, 169, 97, 0.5),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            height: auto;
            min-height: clamp(132px, 15vw, 168px);
            position: relative;
            transform: translateY(-8px);
            transition: none;
            overflow: hidden;
            text-decoration: none;
            cursor: default;
        }
        .problem-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
            opacity: 1;
            pointer-events: none;
        }
        .problem-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-accent) 0%, rgba(201, 169, 97, 0.4) 50%, transparent 100%);
            transform: scaleX(1);
            transform-origin: left;
        }
        .problem-card--tl { grid-column: 1 / 2; grid-row: 1 / 2; }
        .problem-card--bl { grid-column: 1 / 2; grid-row: 2 / 3; }
        .problem-card--tr { grid-column: 3 / 4; grid-row: 1 / 2; }
        .problem-card--br { grid-column: 3 / 4; grid-row: 2 / 3; }

        .problem-card__text {
            font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Noto Sans JP', sans-serif;
            font-size: clamp(1.05rem, 1.5vw, 1.22rem);
            font-weight: 600;
            color: #ffffff;
            line-height: 1.65;
            letter-spacing: 0.005em;
            margin: 0;
            text-align: left;
            width: 100%;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
            word-break: normal;
            overflow-wrap: normal;
            line-break: strict;
            text-wrap: pretty;
            hyphens: none;
        }
        @media (max-width: 1024px) {
            .problem-pin-wrap {
                height: auto;
                min-height: 0;
                padding-top: 0;
            }
            .problem-pinned {
                position: static;
                height: auto;
                min-height: 0;
                overflow: visible;
            }
            .problem-section {
                padding: clamp(6rem, 11vw, 7.5rem) 0 clamp(7rem, 12vw, 8.5rem);
            }
            .problem-section-header {
                margin-bottom: clamp(3.5rem, 6vw, 4.5rem);
            }
            .problem-card {
                position: relative;
                width: auto;
                height: auto;
                min-height: 0;
                max-height: clamp(7rem, 30vw, 9.5rem);
                right: auto;
                bottom: auto;
                top: auto;
                left: auto;
                will-change: auto;
                align-self: stretch;
            }
            .problem-arena {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto auto;
                gap: clamp(2rem, 4vw, 3rem);
                align-items: stretch;
            }
            .problem-center {
                position: relative;
                left: auto;
                right: auto;
                top: auto;
                margin-top: 0;
                grid-column: 1 / 3;
                grid-row: 1 / 2;
                width: 100%;
                max-width: 440px;
                margin-left: auto;
                margin-right: auto;
                height: clamp(320px, 45vw, 380px);
                will-change: auto;
            }
            .problem-card--tl { grid-column: 1 / 2; grid-row: 2 / 3; }
            .problem-card--tr { grid-column: 2 / 3; grid-row: 2 / 3; }
            .problem-card--bl { grid-column: 1 / 2; grid-row: 3 / 4; }
            .problem-card--br { grid-column: 2 / 3; grid-row: 3 / 4; }
        }
        @media (max-width: 768px) {
            .problem-section { padding: 4.5rem 0 5.5rem; }
            .problem-section-header { margin-bottom: 2.5rem; }
            .problem-card {
                padding: 0.85rem 1.05rem;
                min-height: 0;
                max-height: none;
                border-radius: 14px;
            }
            .problem-card__text {
                font-size: 0.94rem;
                line-height: 1.45;
            }
        }
        @media (max-width: 640px) {
            .problem-card {
                padding: 0.75rem 0.95rem;
                border-radius: 12px;
            }
            .problem-arena {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 1.5rem;
            }
            .problem-center {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
                height: clamp(280px, 60vw, 320px);
            }
            .problem-card--tl { grid-column: 1 / 2; grid-row: 2 / 3; }
            .problem-card--tr { grid-column: 1 / 2; grid-row: 3 / 4; }
            .problem-card--bl { grid-column: 1 / 2; grid-row: 4 / 5; }
            .problem-card--br { grid-column: 1 / 2; grid-row: 5 / 6; }
            .problem-card__text {
                font-size: 0.9rem;
                line-height: 1.42;
            }
        }

        /* ========================================
           Reason（EXECUTIVE COMPASS とは）– ピン止め横スライド・3枚
           ======================================== */
        .reason-section {
            padding: 0;
            margin: 0;
        }
        .reason-pin-wrap {
            width: 100%;
            height: 260vh;
            position: relative;
            background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
            color: var(--silver-light);
            border-top: 1px solid rgba(232, 236, 241, 0.08);
            margin: 0;
        }
        .reason-pinned {
            position: sticky;
            top: 72px;
            height: calc(100vh - 72px);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        .reason-pinned__header {
            flex-shrink: 0;
            padding: 48px 24px 40px;
            text-align: center;
            max-width: 960px;
            margin: 0 auto;
        }
        .reason-pinned__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 700;
            margin: 0 0 24px 0;
            position: relative;
            padding-bottom: 16px;
            display: block;
            white-space: nowrap;
        }
        .reason-pinned__title-silver {
            color: #e8ecf1;
        }
        .reason-pinned__title-gold {
            color: var(--gold-accent);
            text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
        }
        .reason-pinned__title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 50%, transparent 100%);
        }
        .reason-pinned__desc {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            color: var(--silver-medium);
            line-height: 1.85;
            margin: 0;
            text-align: center;
        }
        .reason-pinned__desc strong { color: var(--gold-accent); font-weight: 600; }
        /* 4番目スライド（動画）を非表示。戻す場合はこのルールを削除し index.html の data-slides="4" に戻す */
        .reason-track .reason-slide:nth-child(4) {
            display: none !important;
        }
        .reason-pinned__body {
            flex: 1;
            min-height: 0;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .reason-track {
            display: flex;
            height: 100%;
            width: fit-content;
            transform: translate3d(0, 0, 0);
            will-change: transform;
            flex-shrink: 0;
        }
        .reason-slide {
            width: 56vw;
            min-width: 56vw;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.2rem;
            padding: 0.4rem 1rem 0.75rem;
            box-sizing: border-box;
            flex-shrink: 0;
            background: transparent;
        }
        /* 最初のカードを画面中央(左に20vw空ける)に配置。2枚目以降はカード幅がそのまま間隔（マージンなし） */
        .reason-slide:first-child {
            margin-left: 20vw;
        }
        .reason-slide + .reason-slide {
            margin-left: 0;
        }
        /* 最後のカードの右側にも余白を持たせておく */
        .reason-slide:last-child {
            margin-right: 20vw;
        }
        .reason-slide-img {
            width: min(88%, 460px);
            aspect-ratio: 3/2;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(232, 236, 241, 0.08);
        }
        .reason-slide-img img,
        .reason-slide-img video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .reason-slide-img + .reason-slide-num {
            margin-top: 1.1rem;
        }
        .reason-slide-img.reason-slide-video {
            width: min(98%, 880px);
            position: relative;
        }
        .video-controls {
            position: absolute;
            bottom: 12px;
            right: 12px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }
        .video-control-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(10, 22, 40, 0.85);
            border: 1px solid rgba(232, 236, 241, 0.2);
            color: var(--silver-light);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s, border-color .2s, color .2s;
        }
        .video-control-btn:hover {
            background: rgba(201, 169, 97, 0.3);
            border-color: var(--gold-accent);
            color: var(--gold-accent);
        }
        .video-control-btn i { font-size: 1rem; }
        .reason-slide-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold-accent);
            letter-spacing: -.02em;
            line-height: 1;
        }
        .reason-slide-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.05rem, 2.2vw, 1.25rem);
            font-weight: 700;
            color: var(--silver-light);
            text-align: center;
            line-height: 1.5;
            margin: 0;
        }
        .reason-slide-desc {
            font-size: .9rem;
            color: rgba(232, 236, 241, .82);
            max-width: 40ch;
            text-align: left;
            line-height: 1.75;
            margin: 0;
        }
        /* 03スライド注意書き：見出し・番号と揃えて中央 */
        .reason-slide-note {
            max-width: 40ch;
            width: 100%;
            box-sizing: border-box;
            margin: 0.65rem auto 0;
            padding: 0;
            text-align: center;
            font-size: 0.72rem;
            line-height: 1.45;
            color: rgba(148, 163, 184, 0.95);
            letter-spacing: 0.02em;
        }
        @media (max-width: 768px) {
            .reason-pin-wrap { height: auto; }
            .reason-pinned { position: static; height: auto; overflow: visible; padding: 48px 0 40px; }
            .reason-pinned__header { padding: 40px 16px 36px; }
            .reason-pinned__body { overflow: visible; padding-top: 0.75rem; }
            .reason-track {
                flex-direction: column;
                width: 100%;
                transform: none;
                gap: 1.25rem;
            }
            .reason-slide {
                width: 100%;
                min-width: 0;
                padding: 0.75rem 14px 0.6rem;
                gap: 0.2rem;
            }
            /* 横スクロール用の左右マージンは縦積みでは不要（1枚目だけ右にずれる原因） */
            .reason-slide:first-child {
                margin-left: 0;
            }
            .reason-slide:last-child {
                margin-right: 0;
            }
            .reason-slide-img + .reason-slide-num {
                margin-top: 0.85rem;
            }
            .reason-slide-img {
                width: min(95%, 360px);
                margin-left: auto;
                margin-right: auto;
            }
            .reason-slide-img.reason-slide-video {
                width: min(98%, 520px);
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 768px) {
            .reason-pinned__title { font-size: clamp(1.75rem, 5vw, 2.25rem); }
            .reason-pinned__header { max-width: 90%; padding: 36px 16px 32px; }
        }
        @media (max-width: 480px) {
            .reason-pinned__title { font-size: clamp(1.4rem, 5.5vw, 1.75rem); white-space: normal; }
            .reason-pinned__header { max-width: 95%; padding: 28px 12px 24px; }
            .reason-pinned__desc { font-size: .88rem; }
            .reason-slide-num { font-size: 2rem; }
            .reason-slide-title { font-size: 1rem; }
            .reason-slide-desc { font-size: .85rem; }
        }

        /* ========================================
           5つの視点 – 左画像・右アコーディオン（トグル）
           ======================================== */
        body.page-compass .features-section {
            padding: 0;
            width: 100%;
            overflow: visible;
            background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
        }
        body.page-compass .features-layout {
            display: flex;
            flex-direction: column;
            min-height: min(100vh, 800px);
            width: 100%;
        }
        @media (min-width: 1024px) {
            body.page-compass .features-layout {
                display: grid;
                grid-template-columns: minmax(360px, 54%) 1fr;
                grid-template-rows: 1fr;
                min-height: min(100vh, 720px);
                align-items: stretch;
            }
        }
        body.page-compass .features-visual {
            position: relative;
            width: 100%;
            min-height: 50vh;
            overflow: hidden;
            background: var(--navy-dark);
        }
        @media (min-width: 1024px) {
            body.page-compass .features-visual {
                min-height: min(100vh, 720px);
                position: sticky;
                top: 72px;
                height: min(100vh, 720px);
                align-self: start;
            }
        }
        body.page-compass .features-visual__img-wrap {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        body.page-compass .features-visual__overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, .35);
            z-index: 1;
            pointer-events: none;
        }
        body.page-compass .features-visual__img {
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        @media (min-width: 1024px) {
            body.page-compass .features-visual__img {
                top: -18%;
                height: 136%;
                will-change: transform;
                object-position: center center;
            }
        }
        body.page-compass .features-visual__caption {
            position: absolute;
            bottom: 2.5rem;
            left: 2rem;
            right: 2rem;
            z-index: 2;
        }
        @media (min-width: 1024px) {
            body.page-compass .features-visual__caption {
                bottom: 3rem;
                left: 2.5rem;
                right: 2.5rem;
            }
        }
        body.page-compass .features-visual__label {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(232, 236, 241, .9);
            margin-bottom: .75rem;
        }
        body.page-compass .features-visual__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 700;
            color: var(--silver-light);
            line-height: 1.3;
        }
        body.page-compass .features-visual__title em {
            font-style: italic;
            color: var(--gold-accent);
            text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
        }
        body.page-compass .features-content {
            width: 100%;
            flex: 1;
            background: var(--navy-primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        @media (min-width: 1024px) {
            body.page-compass .features-content {
                min-width: 0;
                overflow: visible;
                justify-content: flex-start;
                border-left: 1px solid rgba(232, 236, 241, .08);
                padding: 0;
                position: relative;
                z-index: 1;
            }
        }
        body.page-compass .features-content__inner {
            padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
            width: 100%;
            box-sizing: border-box;
        }
        @media (min-width: 1024px) {
            body.page-compass .features-content__inner {
                padding: 3rem 4rem 4rem 4rem;
                width: 100%;
            }
        }
        body.page-compass .features-content__intro { margin-bottom: 1.75rem; }
        @media (min-width: 1024px) {
            body.page-compass .features-content__intro { margin-bottom: 2.5rem; }
        }
        body.page-compass .features-content__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.35rem, 2.5vw, 1.65rem);
            font-weight: 700;
            color: var(--silver-light);
            line-height: 1.4;
            margin-bottom: .75rem;
        }
        body.page-compass .features-content__lead {
            font-size: .95rem;
            color: var(--silver-medium);
            line-height: 1.7;
        }
        body.page-compass .features-list {
            border-top: 1px solid rgba(232, 236, 241, .12);
        }
        body.page-compass .features-list__item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(232, 236, 241, .12);
        }
        body.page-compass .features-list__num {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gold-accent);
            width: 2.5rem;
            flex-shrink: 0;
        }
        body.page-compass .features-list__content {
            flex: 1;
            min-width: 0;
        }
        body.page-compass .features-content .features-list__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 600;
            color: #c9a961;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45),
                         0 0 20px rgba(201, 169, 97, 0.28);
            margin-bottom: 0.5rem;
        }
        body.page-compass .features-list__body {
            color: var(--silver-medium);
            font-size: .95rem;
            line-height: 1.75;
            margin: 0;
        }
        @media (max-width: 1023px) {
            body.page-compass .features-layout { min-height: 0; }
            body.page-compass .features-visual { min-height: 40vh; }
            body.page-compass .features-visual__caption {
                bottom: 1.5rem;
                left: 1rem;
                right: 1rem;
            }
            body.page-compass .features-visual__title { font-size: clamp(1.75rem, 5vw, 2.75rem); }
        }
        @media (max-width: 480px) {
            body.page-compass .features-content__inner { padding: 1.5rem 1rem; }
            body.page-compass .features-list__item { padding: 1rem 0; }
            body.page-compass .features-visual__title { font-size: clamp(1.5rem, 6vw, 2rem); }
            body.page-compass .features-visual__label { font-size: 0.875rem; }
        }

        /* ========================================
           お問い合わせセクション（リッチ・サイト統一）
           ======================================== */
        .contact-section__bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(201, 169, 97, .06) 0%, transparent 50%),
                        radial-gradient(ellipse 70% 40% at 80% 70%, rgba(232, 236, 241, .04) 0%, transparent 50%);
        }
        .contact-card {
            background: linear-gradient(145deg, rgba(42, 57, 79, 0.85), rgba(26, 41, 66, 0.92));
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(232, 236, 241, 0.1);
            border-top: 3px solid var(--gold-accent);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .25),
                        0 0 0 1px rgba(201, 169, 97, .08) inset,
                        0 16px 48px rgba(0, 0, 0, .2);
        }
        @media (min-width: 768px) {
            .contact-card { padding: 3rem 2.5rem; }
        }
        .contact-card input,
        .contact-card textarea,
        .contact-card select {
            background: rgba(10, 22, 40, 0.6) !important;
            border: 1px solid rgba(232, 236, 241, 0.15) !important;
            border-radius: 10px !important;
            transition: border-color .25s ease, box-shadow .25s ease !important;
        }
        .contact-card input:focus,
        .contact-card textarea:focus,
        .contact-card select:focus {
            border-color: rgba(201, 169, 97, .5) !important;
            box-shadow: 0 0 0 2px rgba(201, 169, 97, .15) !important;
            outline: none !important;
        }
        .contact-card__submit {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, #c9a961 0%, #d4b56e 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-family: 'Montserrat', sans-serif;
            font-size: .9rem;
            font-weight: 700;
            letter-spacing: .1em;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, .2);
            box-shadow: 0 2px 12px rgba(201, 169, 97, .3), inset 0 1px 0 rgba(255, 255, 255, .25);
            cursor: pointer;
            transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
        }
        .contact-card__submit:hover {
            background: linear-gradient(135deg, #d4b56e 0%, #c9a961 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(201, 169, 97, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
        }
        /* お問い合わせ下部の電話案内を一時的に非表示（戻すときは display を削除） */
        .contact-card__info {
            display: none !important;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(232, 236, 241, 0.12);
        }
        .contact-disclaimer {
            margin-top: 2rem;
            padding: 1rem 1.5rem;
            text-align: center;
            background: rgba(10, 22, 40, 0.4);
            border-radius: 12px;
            border: 1px solid rgba(232, 236, 241, 0.06);
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* ---- compass-form（自前フォーム）スタイル ---- */
        .compass-form__row {
            margin-bottom: 1.25rem;
        }
        .compass-form__label {
            display: block;
            margin-bottom: .4rem;
            font-size: .85rem;
            font-weight: 600;
            color: var(--silver-medium);
            letter-spacing: .05em;
        }
        .compass-form__required {
            display: inline-block;
            margin-left: .35em;
            padding: .1em .45em;
            background: rgba(201, 169, 97, .18);
            color: var(--gold-accent);
            font-size: .7rem;
            border-radius: 3px;
            font-weight: 700;
            letter-spacing: .05em;
        }
        .compass-form__input,
        .compass-form__textarea {
            display: block;
            width: 100%;
            padding: .75rem 1rem;
            background: rgba(10, 22, 40, 0.6);
            border: 1px solid rgba(232, 236, 241, 0.15);
            border-radius: 10px;
            color: var(--silver-light);
            font-family: 'Noto Sans JP', sans-serif;
            font-size: .95rem;
            transition: border-color .25s ease, box-shadow .25s ease;
            outline: none;
            box-sizing: border-box;
        }
        .compass-form__input::placeholder,
        .compass-form__textarea::placeholder {
            color: var(--silver-dark);
            opacity: .7;
        }
        .compass-form__input:focus,
        .compass-form__textarea:focus {
            border-color: rgba(201, 169, 97, .5);
            box-shadow: 0 0 0 2px rgba(201, 169, 97, .15);
        }
        .compass-form__input.is-error,
        .compass-form__textarea.is-error {
            border-color: rgba(220, 80, 80, .6);
        }
        .compass-form__textarea {
            resize: vertical;
            min-height: 120px;
        }
        .compass-form__error {
            display: none;
            margin-top: .3rem;
            font-size: .78rem;
            color: #e07070;
        }
        .compass-form__submit-wrap {
            margin-top: 1.75rem;
        }
        .compass-form__submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .75rem;
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, #c9a961 0%, #d4b56e 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-family: 'Montserrat', sans-serif;
            font-size: .9rem;
            font-weight: 700;
            letter-spacing: .1em;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, .2);
            box-shadow: 0 2px 12px rgba(201, 169, 97, .3), inset 0 1px 0 rgba(255, 255, 255, .25);
            cursor: pointer;
            transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
        }
        .compass-form__submit:hover:not(:disabled) {
            background: linear-gradient(135deg, #d4b56e 0%, #c9a961 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(201, 169, 97, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
        }
        .compass-form__submit:disabled {
            opacity: .6;
            cursor: not-allowed;
        }
        .compass-form__result {
            margin-top: 1.25rem;
            padding: 0;
            font-size: .9rem;
            text-align: center;
            border-radius: 8px;
        }
        .compass-form__result:not(:empty) {
            padding: .85rem 1rem;
        }
        .compass-form__result.is-success {
            background: rgba(60, 180, 100, .12);
            border: 1px solid rgba(60, 180, 100, .3);
            color: #7ddba3;
        }
        .compass-form__result.is-error {
            background: rgba(220, 80, 80, .1);
            border: 1px solid rgba(220, 80, 80, .3);
            color: #e07070;
        }

        /* ========================================
           流れる文字（プログラム内容セクション内）
           ======================================== */
        .newsletter-block {
            position: relative;
            margin-top: 5rem;
            padding: 4.5rem 0;
            overflow: hidden;
            width: 100vw;
            left: 50%;
            margin-left: -50vw;
        }
        .newsletter-block__track {
            display: flex;
            width: max-content;
            animation: newsletter-flow 28s linear infinite;
            pointer-events: none;
        }
        .newsletter-block__track span {
            font-family: 'Oswald', 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: clamp(2.5rem, 9vw, 6.5rem);
            line-height: 0.95;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(150, 155, 165, 0.4);
            white-space: nowrap;
            padding-right: 1em;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }
        .newsletter-block__gold {
            color: rgba(201, 169, 97, 0.55);
            text-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
        }
        @media (max-width: 768px) {
            .newsletter-block { padding: 2.5rem 0; margin-top: 3rem; }
            .newsletter-block__track span { font-size: clamp(2rem, 8vw, 3.5rem); }
        }
        @media (max-width: 480px) {
            .newsletter-block { padding: 2rem 0; margin-top: 2.5rem; }
            .newsletter-block__track span { font-size: clamp(1.5rem, 7vw, 2.5rem); letter-spacing: 0.1em; }
        }
        @keyframes newsletter-flow {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* シルバーメタリック効果 */
        .metallic-silver {
            background: linear-gradient(135deg, #e8ecf1 0%, #c5cdd6 50%, #e8ecf1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .metallic-gold {
            background: linear-gradient(135deg, #f4e5c2 0%, #c9a961 50%, #f4e5c2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.5));
        }
        /* 送信完了トースト等（main.js の showSuccessMessage で使用） */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translate(-50%, -20px);
            }
            to {
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }
        
        /* 高級カードデザイン */
        .luxury-card {
            background: linear-gradient(145deg, rgba(42, 57, 79, 0.8), rgba(26, 41, 66, 0.9));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(232, 236, 241, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .luxury-card:hover {
            transform: translateY(-8px);
            border-color: rgba(201, 169, 97, 0.3);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1),
                        0 0 30px rgba(201, 169, 97, 0.2);
        }
        
        /* プレミアムボタン */
        .btn-premium {
            background: linear-gradient(135deg, #c9a961 0%, #dcc486 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-weight: 600;
            letter-spacing: 0.05em;
            box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(201, 169, 97, 0.6),
                        inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--silver-medium);
            color: var(--silver-light);
            font-weight: 500;
            letter-spacing: 0.05em;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            border-color: var(--gold-accent);
            background: rgba(201, 169, 97, 0.1);
            color: var(--gold-accent);
            box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
        }
        
        /* フェードインアニメーション */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ヘッダー（LOSSCAN風：最初は透明、スクロールで色がつく） */
        body.page-compass .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 72px;
            z-index: 10000;
            background: transparent !important;
            background-color: transparent !important;
            border-bottom: 1px solid transparent !important;
            box-shadow: none !important;
            transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease !important;
        }
        body.page-compass .header.is-scrolled {
            background: rgba(10, 22, 40, 0.97) !important;
            background-color: rgba(10, 22, 40, 0.97) !important;
            backdrop-filter: blur(14px) !important;
            -webkit-backdrop-filter: blur(14px) !important;
            border-bottom: 1px solid rgba(232, 236, 241, 0.12) !important;
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
        }
        .header-inner {
            max-width: var(--content-max);
            margin: 0 auto;
            padding-left: var(--content-inset);
            padding-right: var(--content-inset);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .header__logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            text-decoration: none;
            transition: opacity .25s ease;
        }
        .header__logo:hover { opacity: .92; }
        .header__logo-icon {
            width: clamp(52px, 7vw, 72px);
            height: clamp(52px, 7vw, 72px);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }
        .header__logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .header__logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.05rem, 2.7vw, 1.5rem);
            font-weight: 600;
            letter-spacing: clamp(0.1em, 1.5vw, 0.2em);
            text-transform: uppercase;
            -webkit-font-smoothing: antialiased;
            padding-top: 3px;
        }
        .header__logo-executive {
            color: #e8ecf1;
        }
        .header__logo-compass {
            color: #c9a961;
        }
        .header__nav {
            display: none;
        }
        /* 1024px 未満はハンバーガー（lg 未満。それ以上は横並びナビ） */
        @media (min-width: 1024px) {
            .header__right {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-left: auto;
            }
            .header__nav {
                display: flex;
                align-items: center;
            }
        }
        @media (min-width: 1024px) and (max-width: 1240px) {
            .header__right { gap: 16px; }
            .header__nav-list { gap: 0.75rem; }
            .header__nav-list a { font-size: 0.875rem; letter-spacing: 0.05em; }
            .header__logo-text { font-size: 1.05rem; letter-spacing: 0.12em; }
            .header__cta { padding: 8px 16px; font-size: 0.65rem; }
        }
        .header__nav-list {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: clamp(0.875rem, 2vw, 1.5rem);
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .header__nav-list a {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
            font-weight: 600;
            color: rgba(232, 236, 241, .9);
            letter-spacing: clamp(0.05em, 1vw, 0.12em);
            text-transform: uppercase;
            white-space: nowrap;
            text-decoration: none;
            position: relative;
            padding-bottom: 4px;
            transition: color .25s ease;
            -webkit-font-smoothing: antialiased;
        }
        .header__nav-list a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-accent);
            transition: width .3s ease;
        }
        .header__nav-list a:hover { color: var(--gold-accent); }
        .header__nav-list a:hover::after { width: 100%; }
        .header__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: clamp(8px, 1.2vw, 10px) clamp(16px, 2.5vw, 24px);
            background: linear-gradient(135deg, #c9a961 0%, #d4b56e 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.65rem, 1vw, 0.75rem);
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, .2);
            box-shadow: 0 2px 12px rgba(201, 169, 97, .3), inset 0 1px 0 rgba(255, 255, 255, .25);
            text-decoration: none;
            transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
            flex-shrink: 0;
        }
        .header__cta:hover {
            background: linear-gradient(135deg, #d4b56e 0%, #c9a961 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(201, 169, 97, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
        }
        .header__menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            border: none;
            background: none;
            cursor: pointer;
            z-index: 10001;
            position: relative;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .header__menu-icon {
            position: absolute;
            display: block;
            font-size: 1.5rem;
            color: #ffffff !important;
            transition: opacity .25s ease;
        }
        .header__menu-icon--close {
            opacity: 0;
        }
        .header__menu-icon--open {
            opacity: 1;
        }
        body.menu-open .header__menu-icon--open {
            opacity: 0;
        }
        body.menu-open .header__menu-icon--close {
            opacity: 1;
        }
        @media (min-width: 1024px) {
            .header__menu-toggle { display: none; }
            .header__nav-cta { display: none; }
        }
        @media (max-width: 1023px) {
            .header__right { display: none; }
            /* ハンバーガー表示時はアイコン＋メニューのみ（EXECUTIVE COMPASS テキストは非表示） */
            body.page-compass .header__logo-text {
                display: none !important;
            }
            body.page-compass .header__logo-icon {
                margin-right: 0;
            }
        }
        @media (max-width: 767px) {
            .header {
                background: var(--navy-dark);
            }
        }
        
        /* モバイルメニューオーバーレイ */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9998;
            background: var(--navy-dark);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .3s ease, visibility .3s ease;
        }
        body.menu-open .mobile-nav {
            display: block;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .mobile-nav__panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100%;
            padding: 6rem 2rem 2rem;
        }
        .mobile-nav__list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
        }
        .mobile-nav__list a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: rgba(232, 236, 241, .95);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            white-space: nowrap;
            transition: color .25s ease;
        }
        .mobile-nav__list a:hover { color: var(--gold-accent); }
        .mobile-nav__cta {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(232, 236, 241, 0.15);
        }
        .mobile-nav__cta a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: linear-gradient(135deg, #c9a961 0%, #d4b56e 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border-radius: 4px;
            box-shadow: 0 2px 12px rgba(201, 169, 97, 0.3);
        }
        .mobile-nav__cta a:hover {
            background: linear-gradient(135deg, #d4b56e 0%, #c9a961 100%);
            box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
        }
        @media (min-width: 1024px) {
            .mobile-nav { display: none !important; }
        }
        
        /* セクション背景・上下余白 */
        body.page-compass .section-dark {
            background: linear-gradient(to bottom, #0a1628 0%, #1a2942 100%);
        }
        body.page-compass .section-navy {
            background: var(--navy-primary);
        }
        .ec-flow-section,
        .ec-benefits-section,
        body.page-compass .section-flow,
        body.page-compass .section-benefits,
        .section-contact {
            padding-top: 8rem;
            padding-bottom: 8rem;
        }
        body.page-compass .section-benefits {
            position: relative;
            overflow-x: hidden;
            padding-bottom: 5rem;
            background-image: linear-gradient(to bottom, rgba(10, 22, 40, 0.82), rgba(26, 41, 66, 0.88)),
                              url('../img/compass/problem-story-bg.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }
        /* プログラム内容（#flow） — section-flow クラス用 */
        body.page-compass .section-flow {
            position: relative;
            overflow: hidden;
            background-color: #0a1628;
        }
        body.page-compass .flow-split-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2.5rem, 5vw, 4rem);
            align-items: flex-start;
            margin-bottom: clamp(2.5rem, 6vw, 4rem);
        }
        @media (min-width: 1024px) {
            body.page-compass .flow-split-layout {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1.52fr);
                gap: 3.5rem 3.25rem;
                align-items: start;
            }
        }
        @media (min-width: 1280px) {
            body.page-compass .flow-split-layout {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1.68fr);
                gap: 4rem 3.5rem;
            }
        }
        body.page-compass .flow-content-col { min-width: 0; }
        body.page-compass .flow-steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
        }
        body.page-compass .flow-steps::before {
            content: '';
            position: absolute;
            left: 1.75rem;
            top: 1rem;
            bottom: 1rem;
            width: 1px;
            background: linear-gradient(to bottom, rgba(201, 169, 97, 0.5), rgba(201, 169, 97, 0.1));
            z-index: 0;
        }
        body.page-compass .flow-step {
            position: relative;
            padding-left: 5rem;
            z-index: 1;
        }
        body.page-compass .flow-step__header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
            position: relative;
        }
        body.page-compass .flow-step__number {
            position: absolute;
            left: -5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
            color: transparent;
            z-index: 3;
            pointer-events: none;
        }
        body.page-compass .flow-step__number::before {
            content: '';
            width: 2.95rem;
            height: 2.95rem;
            background-image: url('../img/compass/icon.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 3px 6px rgba(10, 22, 40, 0.22));
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        body.page-compass .flow-step:hover .flow-step__number::before {
            transform: scale(1.06);
            filter: drop-shadow(0 4px 10px rgba(201, 169, 97, 0.35));
        }
        body.page-compass .flow-step__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #c9a961;
            margin: 0;
            letter-spacing: 0.05em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 18px rgba(201, 169, 97, 0.25);
        }
        body.page-compass .flow-step__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        body.page-compass .flow-step__list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: #cbd5e1;
            line-height: 1.6;
        }
        body.page-compass .flow-step__list li:last-child { margin-bottom: 0; }
        body.page-compass .flow-step__list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 0.5rem;
            height: 0.5rem;
            border-top: 1px solid #c9a961;
            border-right: 1px solid #c9a961;
            transform: rotate(45deg);
        }
        body.page-compass .flow-step__note {
            margin-top: 1rem;
            font-size: 0.8rem;
            color: #94a3b8;
        }
        body.page-compass .flow-video-col {
            position: static;
            top: auto;
            margin-top: 0;
            min-width: 0;
        }
        @media (min-width: 1024px) {
            body.page-compass .flow-video-col {
                position: sticky;
                top: clamp(5.5rem, 14vh, 7.5rem);
                margin-top: 4.25rem;
            }
        }
        @media (min-width: 1280px) {
            body.page-compass .flow-video-col { margin-top: 5rem; }
        }
        body.page-compass .flow-video-wrapper {
            position: relative;
            width: 100%;
            max-width: none;
            aspect-ratio: 16 / 9;
            min-height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 28px 56px rgba(0,0,0,.55), 0 12px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(201,169,97,.12);
        }
        body.page-compass .flow-video-wrapper > video {
            width: 100%;
            height: 100%;
            border-radius: 0;
            display: block;
            background: #0a1628;
            object-fit: cover;
            outline: none;
            position: relative;
            z-index: 0;
        }
        body.page-compass .flow-video-play-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.5rem;
            margin: 0;
            border: none;
            cursor: pointer;
            font: inherit;
            color: inherit;
            background: linear-gradient(160deg, rgba(10,22,40,.82) 0%, rgba(26,41,66,.75) 50%, rgba(10,22,40,.88) 100%);
            -webkit-tap-highlight-color: transparent;
            transition: opacity .35s ease, visibility .35s ease;
        }
        body.page-compass .flow-video-play-overlay:hover {
            background: linear-gradient(160deg, rgba(10,22,40,.88) 0%, rgba(26,41,66,.82) 50%, rgba(10,22,40,.92) 100%);
        }
        body.page-compass .flow-video-play-overlay:focus { outline: none; }
        body.page-compass .flow-video-play-overlay:focus-visible {
            box-shadow: inset 0 0 0 2px rgba(201,169,97,.85), inset 0 0 0 4px rgba(10,22,40,.9);
        }
        body.page-compass .flow-video-play-overlay.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        body.page-compass .flow-video-play-overlay__circle {
            width: clamp(4rem, 12vw, 5.25rem);
            height: clamp(4rem, 12vw, 5.25rem);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(201,169,97,.95) 0%, rgba(212,181,110,.98) 50%, rgba(201,169,97,.95) 100%);
            color: var(--navy-dark);
            box-shadow: 0 12px 36px rgba(201,169,97,.45), 0 0 0 1px rgba(255,255,255,.25) inset;
            transition: transform .25s ease, box-shadow .25s ease;
        }
        body.page-compass .flow-video-play-overlay:hover .flow-video-play-overlay__circle {
            transform: scale(1.06);
            box-shadow: 0 16px 44px rgba(201,169,97,.55), 0 0 0 1px rgba(255,255,255,.35) inset;
        }
        body.page-compass .flow-video-play-overlay__icon {
            font-size: clamp(1.35rem, 4.5vw, 1.85rem);
            margin-left: 0.2em;
        }
        body.page-compass .flow-video-play-overlay__label {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: clamp(.8rem, 2.2vw, .95rem);
            font-weight: 700;
            letter-spacing: .06em;
            color: rgba(232,236,241,.95);
            text-shadow: 0 2px 12px rgba(0,0,0,.45);
        }
        @media (prefers-reduced-motion: reduce) {
            body.page-compass .flow-video-play-overlay,
            body.page-compass .flow-video-play-overlay__circle { transition: none; }
        }
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls],
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-enclosure,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-panel,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-play-button,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-overlay-play-button,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-timeline,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-current-time-display,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-time-remaining-display,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-mute-button,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-volume-slider,
        body.cursor-needle-active .section-flow .flow-video-wrapper > video[controls]::-webkit-media-controls-fullscreen-button {
            cursor: none !important;
        }
        body.page-compass .flow-cta-box {
            --flow-cta-icon-size: 4rem;
            --flow-icon-offset-top: -1.05rem;
            --flow-icon-offset-left: -0.25rem;
            background: rgba(30,41,59,.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(201,169,97,.3);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
            padding: 0;
            position: relative;
            overflow: visible;
            transition: border-color .3s ease, box-shadow .35s ease, background .3s ease;
            margin-top: 0;
            width: 100%;
        }
        body.page-compass .flow-cta-box.fade-in--band {
            opacity: 0;
            transform: translate3d(0, 14px, 0);
            transition: opacity 1.15s cubic-bezier(.16,1,.3,1), transform 1.15s cubic-bezier(.16,1,.3,1),
                        border-color .35s ease, box-shadow .4s ease, background .35s ease;
        }
        body.page-compass .flow-cta-box.fade-in--band.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        @media (prefers-reduced-motion: reduce) {
            body.page-compass .flow-cta-box.fade-in--band { transition-duration: .01ms; transform: none; }
            body.page-compass .flow-cta-box.fade-in--band:not(.visible) { opacity: 0; }
            body.page-compass .flow-cta-box.fade-in--band.visible { opacity: 1; transform: none; }
        }
        body.page-compass .flow-cta-box--full { grid-column: 1 / -1; }
        body.page-compass .flow-cta-box:hover {
            background: rgba(30,41,59,.6);
            border-color: rgba(201,169,97,.5);
            box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 4px 16px rgba(201,169,97,.2);
        }
        body.page-compass .flow-cta-box__content {
            position: relative;
            padding: 3rem 1.5rem 2rem;
            text-align: center;
            max-width: 36rem;
            margin: 0 auto;
            z-index: 3;
        }
        body.page-compass .flow-cta-box__visual {
            position: relative;
            min-height: 200px;
            background-image: linear-gradient(to bottom right, rgba(10,22,40,.18), rgba(10,22,40,.6)),
                              url('../img/compass/flow-active-learning.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            z-index: 1;
            border-radius: 0 0 20px 20px;
            overflow: hidden;
        }
        body.page-compass .flow-cta-box__icon {
            position: absolute;
            top: var(--flow-icon-offset-top);
            left: var(--flow-icon-offset-left);
            width: var(--flow-cta-icon-size);
            height: var(--flow-cta-icon-size);
            margin: 0;
            display: inline-block;
            font-size: 0;
            background-image: url('../img/compass/icon.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 4px 8px rgba(201,169,97,.24));
            z-index: 5;
        }
        body.page-compass .flow-cta-box__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #c9a961;
            margin: 0 0 1rem 0;
            letter-spacing: .02em;
            text-shadow: 0 2px 4px rgba(0,0,0,.5);
        }
        body.page-compass .flow-cta-box__text {
            font-size: .95rem;
            color: #cbd5e1;
            line-height: 1.75;
            margin: 0;
        }
        @media (min-width: 1024px) {
            body.page-compass .flow-cta-box--full {
                display: grid;
                grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr);
                align-items: stretch;
                border-radius: 20px;
            }
            body.page-compass .flow-cta-box__content { max-width: none; padding: 3.5rem 3rem; text-align: left; }
            body.page-compass .flow-cta-box__visual { min-height: 0; border-radius: 0 20px 20px 0; }
        }
        @media (max-width: 768px) {
            body.page-compass .section-flow,
            body.page-compass .section-benefits,
            .section-contact {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
            body.page-compass .section-benefits { padding-bottom: 3.25rem; }
        }
        .ec-benefits-section {
            position: relative;
            overflow-x: hidden;
            /* 共通 8rem より下だけ詰める（ロゴ帯＋セクション余白の二重感を解消） */
            padding-bottom: 5rem;
            background-image: linear-gradient(to bottom, rgba(10, 22, 40, 0.82), rgba(26, 41, 66, 0.88)),
                              url('../images/problem-story-bg.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }
        @media (max-width: 768px) {
            .ec-flow-section,
            .ec-benefits-section,
            .section-contact {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
            .ec-benefits-section {
                padding-bottom: 3.25rem;
            }
        }

        /* プログラム内容（#flow）— シネマティック・スプリット（左コンテンツ・右動画） */
        .ec-flow-section {
            position: relative;
            overflow: hidden;
            background-color: #0a1628; /* section-navyに近い色 */
        }
        .ec-flow-split {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2.5rem, 5vw, 4rem);
            align-items: flex-start;
            margin-bottom: clamp(2.5rem, 6vw, 4rem);
        }
        @media (min-width: 1024px) {
            .ec-flow-split {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1.52fr);
                gap: 3.5rem 3.25rem;
                align-items: start;
            }
        }
        @media (min-width: 1280px) {
            .ec-flow-split {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1.68fr);
                gap: 4rem 3.5rem;
            }
        }
        .ec-flow-col {
            min-width: 0;
        }
        
        /* 左側：ステップデザイン（洗練されたリスト） */
        .ec-flow-steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
        }
        /* 左側の縦線 */
        .ec-flow-steps::before {
            content: '';
            position: absolute;
            left: 1.75rem;
            top: 1rem;
            bottom: 1rem;
            width: 1px;
            background: linear-gradient(to bottom, rgba(201, 169, 97, 0.5), rgba(201, 169, 97, 0.1));
            z-index: 0;
        }
        .ec-flow-step {
            position: relative;
            padding-left: 5rem;
            z-index: 1;
        }
        .ec-flow-step__header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
            position: relative;
        }
        .ec-flow-step__num {
            position: absolute;
            left: -5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
            color: transparent;
            z-index: 3;
            pointer-events: none;
        }
        .ec-flow-step__num::before {
            content: '';
            width: 2.95rem;
            height: 2.95rem;
            background-image: url('../images/icon.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 3px 6px rgba(10, 22, 40, 0.22));
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        .ec-flow-step:hover .ec-flow-step__num::before {
            transform: scale(1.06);
            filter: drop-shadow(0 4px 10px rgba(201, 169, 97, 0.35));
        }
        .ec-flow-step__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #c9a961;
            margin: 0;
            letter-spacing: 0.05em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                         0 0 18px rgba(201, 169, 97, 0.25);
        }
        .ec-flow-step__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .ec-flow-step__list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: #cbd5e1;
            line-height: 1.6;
        }
        .ec-flow-step__list li:last-child {
            margin-bottom: 0;
        }
        .ec-flow-step__list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 0.5rem;
            height: 0.5rem;
            border-top: 1px solid #c9a961;
            border-right: 1px solid #c9a961;
            transform: rotate(45deg);
        }
        .ec-flow-step__note {
            margin-top: 1rem;
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* 右側：動画（タブレット以下は sticky 解除 — オーバーフロー・タップ領域の不具合防止） */
        .ec-flow-video-col {
            position: static;
            top: auto;
            margin-top: 0;
            min-width: 0;
        }
        @media (min-width: 1024px) {
            .ec-flow-video-col {
                position: sticky;
                top: clamp(5.5rem, 14vh, 7.5rem);
                margin-top: 4.25rem;
            }
        }
        @media (min-width: 1280px) {
            .ec-flow-video-col {
                margin-top: 5rem;
            }
        }
        .ec-flow-video-wrapper {
            position: relative;
            width: 100%;
            max-width: none;
            aspect-ratio: 16 / 9;
            min-height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55),
                        0 12px 28px rgba(0, 0, 0, 0.35),
                        0 0 0 1px rgba(201, 169, 97, 0.12);
        }
        .ec-flow-video-wrapper > video {
            width: 100%;
            height: 100%;
            border-radius: 0;
            display: block;
            background: #0a1628;
            object-fit: cover;
            outline: none;
            position: relative;
            z-index: 0;
        }
        /* #flow 動画：初回・終了後は大きな再生 UI（クリックで play、再生中は非表示） */
        .ec-flow-video-play-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.5rem;
            margin: 0;
            border: none;
            cursor: pointer;
            font: inherit;
            color: inherit;
            background: linear-gradient(160deg, rgba(10, 22, 40, 0.82) 0%, rgba(26, 41, 66, 0.75) 50%, rgba(10, 22, 40, 0.88) 100%);
            -webkit-tap-highlight-color: transparent;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .ec-flow-video-play-overlay:hover {
            background: linear-gradient(160deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 41, 66, 0.82) 50%, rgba(10, 22, 40, 0.92) 100%);
        }
        .ec-flow-video-play-overlay:focus {
            outline: none;
        }
        .ec-flow-video-play-overlay:focus-visible {
            box-shadow: inset 0 0 0 2px rgba(201, 169, 97, 0.85), inset 0 0 0 4px rgba(10, 22, 40, 0.9);
        }
        .ec-flow-video-play-overlay.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .ec-flow-video-play-overlay__circle {
            width: clamp(4rem, 12vw, 5.25rem);
            height: clamp(4rem, 12vw, 5.25rem);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(201, 169, 97, 0.95) 0%, rgba(212, 181, 110, 0.98) 50%, rgba(201, 169, 97, 0.95) 100%);
            color: var(--navy-dark);
            box-shadow: 0 12px 36px rgba(201, 169, 97, 0.45),
                        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .ec-flow-video-play-overlay:hover .ec-flow-video-play-overlay__circle {
            transform: scale(1.06);
            box-shadow: 0 16px 44px rgba(201, 169, 97, 0.55),
                        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
        }
        .ec-flow-video-play-overlay__icon {
            font-size: clamp(1.35rem, 4.5vw, 1.85rem);
            margin-left: 0.2em;
        }
        .ec-flow-video-play-overlay__label {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: clamp(0.8rem, 2.2vw, 0.95rem);
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: none;
            color: rgba(232, 236, 241, 0.95);
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
        }
        @media (prefers-reduced-motion: reduce) {
            .ec-flow-video-play-overlay,
            .ec-flow-video-play-overlay__circle {
                transition: none;
            }
        }
        /* 針カーソル＋ネイティブ controls 併用時の二重ポインター防止（#flow の video[controls] のみ） */
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls],
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-enclosure,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-panel,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-play-button,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-overlay-play-button,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-timeline,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-current-time-display,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-time-remaining-display,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-mute-button,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-volume-slider,
        body.cursor-needle-active .ec-flow-section .ec-flow-video-wrapper > video[controls]::-webkit-media-controls-fullscreen-button {
            cursor: none !important;
        }
        /* アクティブ・ラーニングの効果 — 全幅バンド（1〜3ステップとは別枠） */
        .ec-flow-cta-box {
            --flow-cta-icon-size: 4rem;
            --flow-icon-offset-top: -1.05rem;
            --flow-icon-offset-left: -0.25rem;
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(201, 169, 97, 0.3);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.05);
            padding: 0;
            position: relative;
            overflow: visible;
            transition: border-color .3s ease, box-shadow .35s ease, background .3s ease;
            margin-top: 0;
            width: 100%;
        }
        /* 全幅バンド：.ec-flow-cta-box の transition が opacity/transform を潰していたため統合し、出現を滑らかに */
        .ec-flow-cta-box.fade-in--band {
            opacity: 0;
            transform: translate3d(0, 14px, 0);
            transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.35s ease,
                        box-shadow 0.4s ease,
                        background 0.35s ease;
        }
        .ec-flow-cta-box.fade-in--band.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        @media (prefers-reduced-motion: reduce) {
            .ec-flow-cta-box.fade-in--band {
                transition-duration: 0.01ms;
                transform: none;
            }
            .ec-flow-cta-box.fade-in--band:not(.visible) {
                opacity: 0;
            }
            .ec-flow-cta-box.fade-in--band.visible {
                opacity: 1;
                transform: none;
            }
        }
        .ec-flow-cta-box--full {
            grid-column: 1 / -1;
        }
        .ec-flow-cta-box:hover {
            background: rgba(30, 41, 59, 0.6);
            border-color: rgba(201, 169, 97, 0.5);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4),
                        0 4px 16px rgba(201, 169, 97, 0.2);
        }
        .ec-flow-cta-box__content {
            position: relative;
            padding: 3rem 1.5rem 2rem;
            text-align: center;
            max-width: 36rem;
            margin: 0 auto;
            z-index: 3;
        }
        .ec-flow-cta-box__visual {
            position: relative;
            min-height: 200px;
            background-image: linear-gradient(to bottom right, rgba(10, 22, 40, 0.18), rgba(10, 22, 40, 0.6)),
                              url('../images/flow-active-learning.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            z-index: 1;
            border-radius: 0 0 20px 20px;
            overflow: hidden;
        }
        .ec-flow-cta-box__icon {
            position: absolute;
            top: var(--flow-icon-offset-top);
            left: var(--flow-icon-offset-left);
            width: var(--flow-cta-icon-size);
            height: var(--flow-cta-icon-size);
            margin: 0;
            display: inline-block;
            font-size: 0;
            background-image: url('../images/icon.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 4px 8px rgba(201, 169, 97, 0.24));
            z-index: 5;
        }
        .ec-flow-cta-box__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #c9a961;
            margin: 0 0 1rem 0;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .ec-flow-cta-box__text {
            font-size: 0.95rem;
            color: #cbd5e1;
            line-height: 1.75;
            margin: 0;
        }
        @media (min-width: 1024px) {
            .ec-flow-cta-box--full {
                display: grid;
                grid-template-columns: minmax(0, 1.28fr) minmax(300px, 1fr);
                align-items: stretch;
                border-radius: 20px;
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__content {
                padding: 2.75rem 2.75rem 2.75rem 3.25rem;
                text-align: left;
                max-width: none;
                margin: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__icon {
                top: var(--flow-icon-offset-top);
                left: var(--flow-icon-offset-left);
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__visual {
                min-height: 240px;
                height: 100%;
                border-radius: 0 20px 20px 0;
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__title {
                font-size: clamp(1.65rem, 2.2vw, 2rem);
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__text {
                font-size: 1.05rem;
                line-height: 1.8;
                max-width: 48rem;
            }
        }
        @media (min-width: 1280px) {
            .ec-flow-cta-box--full {
                grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1fr);
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__content {
                padding: 3rem 3rem 3rem 3.5rem;
            }
            .ec-flow-cta-box--full .ec-flow-cta-box__visual {
                min-height: 280px;
            }
        }

        /* 導入効果 タイムライン型 */
        .benefits-timeline {
            position: relative;
            width: 100%;
            max-width: 1500px;
            margin: 0 auto 0.5rem;
            padding: 2rem 1.5rem 1.5rem;
            overflow: visible;
        }
        .benefits-timeline__track {
            position: relative;
            min-height: 320px;
            overflow: visible;
        }
        .benefits-timeline__line--lg {
            display: none;
        }
        .benefits-timeline__line--sm {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 1.25rem;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(201, 169, 97, 0.5), transparent);
            z-index: 0;
        }
        .benefits-timeline__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            position: relative;
            z-index: 1;
        }
        .benefits-timeline__item {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 0;
            padding: 0 0 3rem;
        }
        .benefits-timeline__item:last-child {
            padding-bottom: 0;
        }
        .benefits-timeline__watermark {
            position: absolute;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(4rem, 12vw, 6rem);
            font-weight: 700;
            color: rgba(232, 236, 241, 0.42);
            -webkit-text-stroke: 1px rgba(201, 169, 97, 0.5);
            left: -0.5rem;
            top: -0.5rem;
            pointer-events: none;
            z-index: 2;
            user-select: none;
            letter-spacing: 0.12em;
        }
        .benefits-timeline__content {
            flex: 1;
            padding-left: 1.5rem;
            z-index: 3;
        }
        .benefits-timeline__content--below { padding-top: 0; }
        .benefits-timeline__content--above { padding-top: 0; }
        .benefits-timeline__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.65rem;
            font-weight: 600;
            color: var(--gold-accent);
            margin-bottom: 0.75rem;
            text-align: center;
        }
        .benefits-timeline__desc {
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.75;
            margin: 0;
            font-weight: 500;
            text-align: left;
        }

        /* 縦タイムライン時：ウォーターマークを縦線（line--sm の left と同じ）の中心に合わせる */
        @media (max-width: 1023px) {
            .benefits-timeline__watermark {
                --bt-line-x: 1.25rem;
                --bt-wm-top: -1.45rem;
                left: var(--bt-line-x);
                top: var(--bt-wm-top);
                transform: translateX(-50%);
                font-size: clamp(1.65rem, 6.5vw, 2.35rem);
                letter-spacing: 0.06em;
                color: rgba(232, 236, 241, 0.28);
                -webkit-text-stroke: 0.5px rgba(201, 169, 97, 0.35);
            }
            /* 線より右に本文を置く（線位置 1.25rem と揃え） */
            .benefits-timeline__content {
                padding-left: 2.35rem;
            }
        }
        @media (max-width: 767px) {
            .benefits-timeline__watermark {
                --bt-wm-top: -1.85rem;
            }
        }

        @media (min-width: 1024px) {
            .benefits-timeline {
                padding: 3rem 2rem 0.75rem;
            }
            .benefits-timeline__track {
                position: relative;
                min-height: 320px;
            }
            .benefits-timeline__line--lg {
                display: block;
                position: absolute;
                top: 25%;
                left: 0;
                width: 100%;
                height: 1px;
                margin-top: -1px;
                background: linear-gradient(to right, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.85) 20%, rgba(201, 169, 97, 0.9) 50%, rgba(201, 169, 97, 0.85) 80%, rgba(201, 169, 97, 0.2));
                box-shadow: 0 0 8px rgba(201, 169, 97, 0.35);
                z-index: 0;
            }
            .benefits-timeline__line--sm {
                display: none;
            }
            .benefits-timeline__grid {
                position: relative;
                z-index: 1;
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: 1fr auto 1fr;
                gap: 0 2rem;
                min-height: 320px;
                align-items: center;
            }
            .benefits-timeline__item {
                display: grid;
                grid-template-rows: 1fr auto 1fr;
                align-items: center;
                padding: 0;
                position: relative;
            }
            /* 奇数(1,3): コンテンツは線の下 */
            .benefits-timeline__item--1 .benefits-timeline__content,
            .benefits-timeline__item--3 .benefits-timeline__content {
                grid-row: 3;
                align-self: start;
                padding: 1.5rem 0 0;
                max-width: 18rem;
                margin: 0 auto;
            }
            /* 偶数(2,4): コンテンツは線の上（ノード・アイコンなし） */
            .benefits-timeline__item--2 .benefits-timeline__content,
            .benefits-timeline__item--4 .benefits-timeline__content {
                grid-row: 1;
                align-self: end;
                padding: 0 0 1.5rem;
                max-width: 18rem;
                margin: 0 auto;
            }
            .benefits-timeline__watermark {
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                font-size: clamp(2rem, 5vw, 3.5rem);
                color: rgba(232, 236, 241, 0.42);
                -webkit-text-stroke: 1px rgba(201, 169, 97, 0.5);
                letter-spacing: 0.1em;
            }
        }
        /* タブレット〜デスクトップ：ウォーターマークを常に横書き1行（狭い4列などで縦に折れて本文と被るのを防ぐ） */
        @media (min-width: 768px) {
            .benefits-timeline__watermark {
                white-space: nowrap;
                writing-mode: horizontal-tb;
            }
        }

        /* 導入企業一覧 見出し（声カードとの間を空けて詰まりを解消） */
        .benefits-logos-heading-wrap {
            margin-top: 2rem;
            padding-top: 2.5rem;
        }
        @media (min-width: 768px) {
            .benefits-logos-heading-wrap {
                margin-top: 2.5rem;
                padding-top: 3.5rem;
            }
        }
        @media (min-width: 1024px) {
            .benefits-logos-heading-wrap {
                margin-top: 3rem;
                padding-top: 4rem;
            }
        }
        .benefits-logos-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 700;
            color: var(--silver-light);
            margin: 0;
        }
        /* ロゴエリアラッパー（注釈の基準） */
        .benefits-logos-area {
            position: relative;
            width: 100%;
            padding-bottom: 2rem;
        }
        .benefits-logos-note {
            position: absolute;
            bottom: 0;
            right: 0;
            margin: 0;
            padding-left: 1rem;
            padding-top: 0.35rem;
            max-width: min(100%, 22rem);
            font-size: 0.6875rem;
            line-height: 1.45;
            color: rgba(148, 163, 184, 0.92);
            text-align: right;
            letter-spacing: 0.02em;
            z-index: 2;
        }
        @media (max-width: 640px) {
            .benefits-logos-note {
                position: relative;
                bottom: auto;
                right: auto;
                max-width: 100%;
                padding-left: 0;
                padding-top: 1.35rem;
                text-align: right;
            }
            .benefits-logos-area {
                padding-bottom: 0;
            }
            .benefits-logos-bg {
                margin-bottom: 0;
            }
        }
        /* 導入企業の声＋背後に流れるロゴ（1行・右→左） */
        .benefits-voices-with-logos {
            position: relative;
            overflow: visible;
            padding: 0 0 2.25rem;
        }
        /* 狭い幅：タイムライン直後の「受講生の声」上に余白を確保 */
        @media (max-width: 1023px) {
            .benefits-voices-with-logos {
                padding-top: clamp(2.25rem, 6vw, 3.25rem);
            }
        }
        .benefits-logos-bg {
            width: 100vw;
            position: relative;
            left: 50%;
            margin-left: -50vw;
            display: block;
            padding-top: 2rem;
            margin-bottom: 1.25rem;
            overflow: hidden;
        }
        .benefits-logos-row {
            overflow: hidden;
            width: 100%;
        }
        .benefits-logos-track {
            display: flex;
            width: max-content;
            animation: benefits-logos-scroll-left 75s linear infinite;
        }
        .benefits-logos-slide {
            display: flex;
            gap: 2rem;
            flex-shrink: 0;
            padding: 0 1rem;
        }
        /* 流れるロゴ：白ベース・ガラス風（カードと統一） */
        /* 企業の声のロゴ背景と同じ白に統一 */
        .benefits-logo-card {
            flex-shrink: 0;
            width: 100px;
            height: 48px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                        0 1px 3px rgba(0, 0, 0, 0.04),
                        inset 0 1px 0 rgba(255, 255, 255, 0.98),
                        inset 0 -1px 0 rgba(0, 0, 0, 0.04);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            opacity: 0.95;
            transition: opacity 0.3s ease, box-shadow 0.3s ease;
        }
        .benefits-voices-with-logos:hover .benefits-logo-card {
            opacity: 1;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                        0 1px 3px rgba(0, 0, 0, 0.05),
                        inset 0 1px 0 rgba(255, 255, 255, 0.98);
        }
        .benefits-logo-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
        }
        .benefits-logo-placeholder {
            font-size: 0.65rem;
            color: #64748b;
            text-align: center;
        }

        /* 受講生の声（3列カード＋モーダル） */
        .participant-voices {
            position: relative;
            padding-top: 0;
            padding-bottom: 0.5rem;
            margin-top: 0;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .participant-voices {
                margin-bottom: 2.5rem;
            }
        }
        .participant-voices__lead {
            max-width: 36rem;
            margin: 0 auto;
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(148, 163, 184, 0.95);
            letter-spacing: 0.02em;
        }
        @media (min-width: 768px) {
            .participant-voices__lead {
                font-size: 1rem;
            }
        }
        .participant-voices__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: stretch;
        }
        @media (min-width: 768px) {
            .participant-voices__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.75rem;
            }
        }
        @media (min-width: 1024px) {
            .participant-voices__grid {
                gap: 2rem;
            }
        }
        .participant-voice-card {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            text-align: left;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 1.25rem 1.2rem 1.35rem;
            box-sizing: border-box;
            font: inherit;
            color: inherit;
            cursor: pointer;
            border: 1px solid rgba(201, 169, 97, 0.35);
            border-radius: 20px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.35s ease;
            position: relative;
            overflow: hidden;
        }
        .participant-voice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg,
                rgba(201, 169, 97, 0.2) 0%,
                rgba(201, 169, 97, 0.75) 50%,
                rgba(201, 169, 97, 0.2) 100%);
            pointer-events: none;
        }
        .participant-voice-card:hover {
            outline: none;
            transform: translateY(-4px);
            border-color: rgba(201, 169, 97, 0.6);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(201, 169, 97, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }
        .participant-voice-card:focus-visible {
            outline: none;
            transform: translateY(-4px);
            border-color: rgba(201, 169, 97, 0.6);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(201, 169, 97, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }
        .participant-voice-card__photo {
            width: 128px;
            height: 128px;
            flex-shrink: 0;
            align-self: center;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 0.9rem;
            border: 2px solid rgba(201, 169, 97, 0.45);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35),
                inset 0 0 0 1px rgba(255, 255, 255, 0.08);
            background: rgba(15, 23, 42, 0.6);
            /* 丸写真：修飾クラスで --pv-img-* を上書き（transform / object-position を一箇所に集約） */
            --pv-img-tx: 0px;
            --pv-img-scale: 1;
            --pv-img-op-x: 50%;
            --pv-img-op-y: 0%;
        }
        @media (min-width: 768px) {
            .participant-voice-card__photo {
                width: 120px;
                height: 120px;
                margin-bottom: 0.95rem;
            }
        }
        @media (min-width: 1024px) {
            .participant-voice-card__photo {
                width: 128px;
                height: 128px;
            }
        }
        .participant-voice-card__photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: var(--pv-img-op-x) var(--pv-img-op-y);
            display: block;
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateX(var(--pv-img-tx)) scale(var(--pv-img-scale));
            transform-origin: center center;
        }
        /* コンサル枠：右寄せトリミング＋拡大（変数のみ上書き） */
        .participant-voice-card__photo--face-offset-right {
            --pv-img-tx: 26px;
            --pv-img-scale: 1.42;
            --pv-img-op-x: 92%;
            --pv-img-op-y: 22%;
        }
        /* IT枠：軽い右寄せ＋わずかな拡大 */
        .participant-voice-card__photo--face-nudge-it {
            --pv-img-tx: 4px;
            --pv-img-scale: 1.08;
            --pv-img-op-x: 52%;
            --pv-img-op-y: 20%;
        }
        .participant-voice-card:hover .participant-voice-card__photo img,
        .participant-voice-card:focus-visible .participant-voice-card__photo img {
            transform: translateX(var(--pv-img-tx)) scale(calc(var(--pv-img-scale) * var(--pv-photo-hover-mul)));
        }
        .participant-voice-card__body {
            width: 100%;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
            min-width: 0;
            min-height: 0;
        }
        /* メタ＋見出しを「行数固定」で3枚の縦リズムを揃える（全文はモーダル） */
        .participant-voice-card__meta {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            flex-shrink: 0;
            margin-bottom: 0.55rem;
        }
        .participant-voice-card__industry {
            margin: 0;
            padding-bottom: 0.45rem;
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: none;
            color: rgba(201, 169, 97, 0.95);
            line-height: 1.45;
            text-align: center;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: calc(1.45em * 2);
            max-height: calc(1.45em * 2);
        }
        @media (min-width: 768px) {
            .participant-voice-card__industry {
                font-size: 0.78rem;
            }
        }
        .participant-voice-card__role {
            margin: 0.5rem 0 0;
            padding-top: 0.45rem;
            border-top: 1px solid rgba(201, 169, 97, 0.22);
            font-size: 0.76rem;
            line-height: 1.45;
            letter-spacing: 0.02em;
            color: rgba(248, 250, 252, 0.98);
            font-weight: 800;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            word-break: break-word;
            min-height: calc(1.45em * 3);
            max-height: calc(1.45em * 3);
        }
        @media (min-width: 768px) {
            .participant-voice-card__role {
                font-size: 0.8rem;
            }
        }
        /* カード上の見出しはやや小さめ・最大4行で統一（モーダルで全文） */
        .participant-voice-card__headline {
            margin: 0;
            flex: 0 0 auto;
            font-size: 0.8rem;
            line-height: 1.5;
            font-weight: 500;
            color: rgba(226, 232, 245, 0.9);
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            word-break: break-word;
            min-height: calc(1.5em * 4);
            max-height: calc(1.5em * 4);
        }
        @media (min-width: 768px) {
            .participant-voice-card__headline {
                font-size: 0.76rem;
                line-height: 1.48;
                min-height: calc(1.48em * 4);
                max-height: calc(1.48em * 4);
            }
        }
        .participant-voice-card__cta {
            margin-top: auto;
            padding-top: 0.55rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: rgba(201, 169, 97, 0.95);
            flex-shrink: 0;
            border-top: 1px solid rgba(201, 169, 97, 0.15);
        }
        .participant-voice-card__cta .fa-quote-left {
            font-size: 0.7rem;
            opacity: 0.85;
        }
        @media (prefers-reduced-motion: reduce) {
            .participant-voice-card,
            .participant-voice-card__photo img {
                transition: none;
            }
            .participant-voice-card:hover,
            .participant-voice-card:focus-visible {
                transform: none;
            }
            .participant-voice-card:hover .participant-voice-card__photo img,
            .participant-voice-card:focus-visible .participant-voice-card__photo img {
                transform: translateX(var(--pv-img-tx)) scale(var(--pv-img-scale));
            }
        }

        .participant-voice-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .participant-voice-modal.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .participant-voice-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 6, 23, 0.72);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .participant-voice-modal__dialog {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 36rem;
            max-height: min(88vh, 720px);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border-radius: 20px;
            border: 1px solid rgba(201, 169, 97, 0.35);
            background: linear-gradient(165deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            transform: translateY(12px) scale(0.98);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .participant-voice-modal.is-open .participant-voice-modal__dialog {
            transform: translateY(0) scale(1);
        }
        .participant-voice-modal__close {
            position: absolute;
            top: 0.85rem;
            right: 0.85rem;
            z-index: 2;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(201, 169, 97, 0.35);
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.85);
            color: rgba(226, 232, 240, 0.95);
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }
        .participant-voice-modal__close:hover,
        .participant-voice-modal__close:focus-visible {
            outline: none;
            background: rgba(201, 169, 97, 0.2);
            border-color: rgba(201, 169, 97, 0.6);
            color: #fff;
        }
        .participant-voice-modal__header {
            flex-shrink: 0;
            padding: 1.5rem 3.25rem 1rem 1.5rem;
            border-bottom: 1px solid rgba(201, 169, 97, 0.15);
        }
        .participant-voice-modal__industry {
            margin: 0 0 0.2rem;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: none;
            color: rgba(201, 169, 97, 0.95);
            line-height: 1.4;
        }
        @media (min-width: 768px) {
            .participant-voice-modal__industry {
                font-size: 0.92rem;
                letter-spacing: 0.04em;
            }
        }
        .participant-voice-modal__role {
            margin: 0 0 0.65rem;
            padding-top: 0.35rem;
            border-top: 1px solid rgba(201, 169, 97, 0.2);
            font-size: 0.88rem;
            line-height: 1.45;
            font-weight: 600;
            color: rgba(203, 213, 225, 0.96);
        }
        .participant-voice-modal__title {
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.45;
            color: rgba(248, 250, 252, 0.98);
            letter-spacing: 0.02em;
        }
        @media (min-width: 768px) {
            .participant-voice-modal__title {
                font-size: 1.35rem;
            }
        }
        .participant-voice-modal__body {
            flex: 1;
            overflow-y: auto;
            padding: 1.25rem 1.5rem 1.5rem;
            -webkit-overflow-scrolling: touch;
        }
        .participant-voice-modal__quote {
            margin: 0;
            font-size: 1rem;
            line-height: 1.85;
            color: rgba(226, 232, 240, 0.94);
            letter-spacing: 0.02em;
        }
        @media (min-width: 768px) {
            .participant-voice-modal__quote {
                font-size: 1.05rem;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .participant-voice-modal,
            .participant-voice-modal__dialog {
                transition: none;
            }
            .participant-voice-modal.is-open .participant-voice-modal__dialog {
                transform: none;
            }
        }

        /* 3枚同一セットを横に並べ、1セット分左へ進めるとシームレスにループ */
        @keyframes benefits-logos-scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.3333333333%); }
        }

        /* 対象者セクション（円形コンパス風）— PCで一画面に収めるよう縮小・見出しサイズは維持 */
        .target-section {
            padding: 3.25rem 0 4.25rem;
        }
        @media (min-width: 768px) {
            .target-section {
                padding: 3.75rem 0 4.75rem;
            }
        }
        @media (min-width: 1024px) {
            .target-section {
                padding: 4.25rem 0 5.25rem;
            }
        }
        .target-header {
            margin-bottom: 1.25rem;
        }
        @media (min-width: 768px) {
            .target-header {
                margin-bottom: 1.75rem;
            }
        }
        @media (min-width: 1024px) {
            .target-header {
                margin-bottom: 2rem;
            }
        }
        /* 見出し・装飾線は HTML の mb-8 / mb-10 と他セクション（#flow 等）と同じ余白に任せる */
        .target-header p {
            margin-top: 0;
            margin-bottom: 0;
            padding: 0.875rem 0 1.125rem;
            font-size: clamp(0.8125rem, 2.2vw, 1.1rem);
        }
        @media (min-width: 768px) {
            .target-header p {
                padding: 1rem 0 1.25rem;
            }
        }
        @media (min-width: 1024px) {
            .target-header p {
                padding: 1.125rem 0 1.375rem;
            }
        }
        .target-compass {
            --compass-ring: 280px;
            --compass-radius: 140px;
            position: relative;
            width: 100%;
            max-width: 560px;
            min-height: 360px;
            margin: 1rem auto 1.5rem;
            aspect-ratio: 1;
            overflow: visible;
            opacity: 1;
        }
        @media (min-width: 768px) {
            .target-compass {
                margin: 1.25rem auto 1.75rem;
            }
        }
        @media (min-width: 1024px) {
            .target-compass {
                margin: 1.5rem auto 2rem;
            }
        }
        @media (min-width: 1200px) {
            .target-compass {
                --compass-ring: 360px;
                --compass-radius: 180px;
                max-width: 800px;
                min-height: 800px;
            }
        }
        @media (min-width: 1024px) and (max-width: 1199px) {
            .target-compass {
                --compass-ring: 320px;
                --compass-radius: 160px;
                max-width: 700px;
                min-height: 700px;
            }
        }
        @media (min-width: 1024px) {
            /* 左右カード（1・2・4・5）：共通の margin-top で基準を合わせ、translateY で上段／下段を分離（rem 差だけだと数 px で見えないため） */
            .target-compass {
                --cc-side-gap: 52px;
                --cc-side-pull: 278px;
            }
            .target-compass__item {
                width: 52px;
                height: 52px;
                margin-left: -26px;
                margin-top: -26px;
            }
            .target-compass__icon {
                width: 52px;
                height: 52px;
                font-size: 1.15rem;
            }
            .target-compass__icon-img {
                width: 31px;
                height: 31px;
            }
            .target-compass__content {
                width: 240px;
                margin-left: -120px;
                padding: 0.65rem 0.85rem 0.65rem 0.95rem;
            }
            .target-compass__item--0 .target-compass__content { top: auto; margin-bottom: 0; bottom: calc(100% + var(--cc-side-gap)); }
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content {
                left: calc(100% + var(--cc-side-gap));
                top: 50%;
                margin-left: 0;
                margin-top: -2.65rem;
            }
            .target-compass__item--1 .target-compass__content { transform: translateY(-12px); }
            .target-compass__item--2 .target-compass__content { transform: translateY(12px); }
            .target-compass__item--3 .target-compass__content { top: calc(100% + var(--cc-side-gap)); margin-top: 0; }
            .target-compass__item--4 .target-compass__content,
            .target-compass__item--5 .target-compass__content {
                left: 0;
                top: 50%;
                margin-left: calc(-1 * var(--cc-side-pull));
                margin-top: -2.65rem;
            }
            .target-compass__item--4 .target-compass__content { transform: translateY(12px); }
            .target-compass__item--5 .target-compass__content { transform: translateY(-12px); }
        }
        @media (min-width: 1200px) {
            .target-compass {
                --cc-side-gap: 58px;
                --cc-side-pull: 324px;
            }
            .target-compass__item {
                width: 56px;
                height: 56px;
                margin-left: -28px;
                margin-top: -28px;
            }
            .target-compass__icon {
                width: 56px;
                height: 56px;
                font-size: 1.2rem;
            }
            .target-compass__content {
                width: 272px;
                margin-left: -136px;
                padding: 0.7rem 1rem 0.7rem 1.05rem;
            }
            .target-compass__item--3 .target-compass__content { top: calc(100% + var(--cc-side-gap)); margin-top: 0; }
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content { margin-top: -2.85rem; }
            .target-compass__item--1 .target-compass__content { transform: translateY(-16px); }
            .target-compass__item--2 .target-compass__content { transform: translateY(16px); }
            .target-compass__item--4 .target-compass__content,
            .target-compass__item--5 .target-compass__content { margin-top: -2.85rem; }
            .target-compass__item--4 .target-compass__content { transform: translateY(16px); }
            .target-compass__item--5 .target-compass__content { transform: translateY(-16px); }
        }
        .target-compass__rotator {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            transform-origin: center center;
            z-index: 1;
        }
        .target-compass__ring {
            position: absolute;
            left: 50%;
            top: 50%;
            z-index: 0;
            width: var(--compass-ring);
            height: var(--compass-ring);
            margin-left: calc(var(--compass-ring) / -2);
            margin-top: calc(var(--compass-ring) / -2);
            border-radius: 50%;
            border: 1px solid rgba(201, 169, 97, 0.28);
            box-shadow: 0 0 40px rgba(201, 169, 97, 0.08),
                        inset 0 0 24px rgba(201, 169, 97, 0.04);
            opacity: 0;
            transform-origin: center center;
            overflow: visible;
        }
        /* コンパス目盛り（細い目盛り・60分割で左右対称） */
        .target-compass__ticks {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='49' fill='none' stroke='rgba(201,169,97,0.4)' stroke-width='0.5' stroke-dasharray='0.65 4.48'/%3E%3C/svg%3E");
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            pointer-events: none;
            z-index: 1;
        }
        .target-compass.visible .target-compass__ring {
            animation: compass-ring-in 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        @keyframes compass-ring-in {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }
        .target-compass__ring::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: calc(var(--compass-ring) * 0.72);
            height: calc(var(--compass-ring) * 0.72);
            margin-left: calc(var(--compass-ring) * -0.36);
            margin-top: calc(var(--compass-ring) * -0.36);
            border-radius: 50%;
            border: 1px solid rgba(201, 169, 97, 0.1);
        }
        .target-compass__ring::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 16px;
            height: 16px;
            margin-left: -8px;
            margin-top: -8px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, rgba(220, 196, 130, 0.95), rgba(201, 169, 97, 0.5));
            box-shadow: 0 0 16px rgba(201, 169, 97, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }
        /* 方位ラベル（N/E/S/W）：コンパス縮小に合わせて少し縮小 */
        .target-compass__cardinal {
            position: absolute;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            z-index: 2;
            color: rgba(201, 169, 97, 0.75);
        }
        .target-compass__cardinal--n {
            left: 50%;
            top: 14%;
            transform: translate(-50%, -50%);
            color: rgba(201, 169, 97, 0.9);
        }
        .target-compass__cardinal--e {
            right: 14%;
            top: 50%;
            transform: translate(50%, -50%);
        }
        .target-compass__cardinal--s {
            left: 50%;
            bottom: 14%;
            transform: translate(-50%, 50%);
        }
        .target-compass__cardinal--w {
            left: 14%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        /* 針：羅針盤風デザイン（中央の棒＋N/S両端に矢印） */
        .target-compass__needle {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 3px;
            height: calc(var(--compass-radius) * 0.74);
            margin-left: -1.5px;
            margin-top: calc(var(--compass-radius) * -0.44);
            background: linear-gradient(to bottom,
                rgba(220, 196, 130, 0.9) 0%,
                rgba(201, 169, 97, 0.85) 50%,
                rgba(180, 155, 90, 0.75) 100%);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(201, 169, 97, 0.35),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform-origin: 50% 50%;
            opacity: 0;
        }
        /* N側の矢印（ゴールド・小さめの三角） */
        .target-compass__needle::before {
            content: '';
            position: absolute;
            left: 50%;
            top: -20px;
            width: 0;
            height: 0;
            margin-left: -8px;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 20px solid rgba(220, 196, 130, 0.95);
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
        }
        /* S側の矢印（細く・控えめ） */
        .target-compass__needle::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 0;
            height: 0;
            margin-left: -4px;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 6px solid rgba(170, 145, 85, 0.8);
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        }
        .target-compass.visible .target-compass__needle {
            animation: compass-needle-in 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
        }
        @keyframes compass-needle-in {
            from { opacity: 0; transform: scale(0.7); }
            to { opacity: 1; transform: scale(1); }
        }
        .target-compass__item {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 56px;
            height: 56px;
            margin-left: -28px;
            margin-top: -28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-origin: 50% 50%;
            z-index: 1;
            opacity: 0;
        }
        .target-compass.visible .target-compass__item {
            animation: compass-item-in 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        .target-compass.visible .target-compass__item--0 { animation-delay: 0.3s; }
        .target-compass.visible .target-compass__item--1 { animation-delay: 0.5s; }
        .target-compass.visible .target-compass__item--2 { animation-delay: 0.7s; }
        .target-compass.visible .target-compass__item--3 { animation-delay: 0.9s; }
        .target-compass.visible .target-compass__item--4 { animation-delay: 1.1s; }
        .target-compass.visible .target-compass__item--5 { animation-delay: 1.3s; }
        @keyframes compass-item-in {
            from {
                opacity: 0;
                transform: rotate(var(--item-angle)) translateY(0) rotate(calc(-1 * var(--item-angle)));
            }
            to {
                opacity: 1;
                transform: rotate(var(--item-angle)) translateY(calc(var(--compass-radius) * -1)) rotate(calc(-1 * var(--item-angle)));
            }
        }
        .target-compass__item--0 { transform: rotate(0deg) translateY(calc(var(--compass-radius) * -1)) rotate(0deg); }
        .target-compass__item--1 { transform: rotate(60deg) translateY(calc(var(--compass-radius) * -1)) rotate(-60deg); }
        .target-compass__item--2 { transform: rotate(120deg) translateY(calc(var(--compass-radius) * -1)) rotate(-120deg); }
        .target-compass__item--3 { transform: rotate(180deg) translateY(calc(var(--compass-radius) * -1)) rotate(-180deg); }
        .target-compass__item--4 { transform: rotate(240deg) translateY(calc(var(--compass-radius) * -1)) rotate(-240deg); }
        .target-compass__item--5 { transform: rotate(300deg) translateY(calc(var(--compass-radius) * -1)) rotate(-300deg); }
        .target-compass__icon {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(26, 41, 66, 0.98) 0%, rgba(10, 22, 40, 0.99) 100%);
            border: 2px solid rgba(201, 169, 97, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            box-shadow: 0 0 24px rgba(201, 169, 97, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
            opacity: 0;
        }
        .target-compass__icon-img {
            width: 34px;
            height: 34px;
            object-fit: contain;
            display: block;
            pointer-events: none;
        }
        .target-compass.visible .target-compass__icon {
            animation: compass-icon-spin 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        .target-compass.visible .target-compass__item--0 .target-compass__icon { animation-delay: 0.3s; }
        .target-compass.visible .target-compass__item--1 .target-compass__icon { animation-delay: 0.5s; }
        .target-compass.visible .target-compass__item--2 .target-compass__icon { animation-delay: 0.7s; }
        .target-compass.visible .target-compass__item--3 .target-compass__icon { animation-delay: 0.9s; }
        .target-compass.visible .target-compass__item--4 .target-compass__icon { animation-delay: 1.1s; }
        .target-compass.visible .target-compass__item--5 .target-compass__icon { animation-delay: 1.3s; }
        @keyframes compass-icon-spin {
            from { transform: rotate(-360deg); opacity: 0; }
            to { transform: rotate(0deg); opacity: 1; }
        }
        .target-compass__item:hover .target-compass__icon {
            transform: scale(1.08) rotate(8deg);
            border-color: rgba(201, 169, 97, 0.7);
            box-shadow: 0 0 28px rgba(201, 169, 97, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }
        .target-compass__content {
            position: absolute;
            left: 50%;
            top: calc(100% + 24px);
            background: linear-gradient(165deg, rgba(26, 41, 66, 0.97) 0%, rgba(10, 22, 40, 0.99) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(201, 169, 97, 0.2);
            border-radius: 8px;
            text-align: left;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
            transition: all .3s ease;
        }
        @media (max-width: 1023px) {
            .target-compass {
                --cc-side-gap: 34px;
                --cc-side-pull: 262px;
            }
            .target-compass__content {
                width: 228px;
                margin-left: -114px;
                padding: 0.65rem 0.9rem 0.65rem 1rem;
            }
            .target-compass__item--0 .target-compass__content { top: auto; bottom: calc(100% + var(--cc-side-gap)); margin-top: 0; margin-bottom: 0; }
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content {
                left: calc(100% + var(--cc-side-gap));
                top: 50%;
                margin-left: 0;
                margin-top: -2.35rem;
            }
            .target-compass__item--1 .target-compass__content { transform: translateY(-10px); }
            .target-compass__item--2 .target-compass__content { transform: translateY(10px); }
            .target-compass__item--3 .target-compass__content { top: calc(100% + var(--cc-side-gap)); bottom: auto; margin-top: 0; margin-bottom: 0; }
            .target-compass__item--4 .target-compass__content,
            .target-compass__item--5 .target-compass__content {
                left: 0;
                top: 50%;
                margin-left: calc(-1 * var(--cc-side-pull));
                margin-top: -2.35rem;
            }
            .target-compass__item--4 .target-compass__content { transform: translateY(10px); }
            .target-compass__item--5 .target-compass__content { transform: translateY(-10px); }
        }
        .target-compass__content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 1.5px;
            background: linear-gradient(to bottom, transparent, rgba(201, 169, 97, 0.5), transparent);
            border-radius: 1px;
        }
        .target-compass__item:hover .target-compass__content {
            border-color: rgba(201, 169, 97, 0.35);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(201, 169, 97, 0.08);
        }
        .target-compass__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold-accent);
            margin: 0 0 0.4rem 0;
            letter-spacing: 0.03em;
            text-align: center;
        }
        @media (min-width: 1024px) {
            .target-compass__title {
                font-size: 1.2rem;
            }
        }
        @media (min-width: 1200px) {
            .target-compass__title {
                font-size: 1.25rem;
            }
        }
        .target-compass__desc {
            font-size: 0.875rem;
            color: rgba(232, 236, 241, 0.88);
            line-height: 1.55;
            margin: 0;
            letter-spacing: 0.02em;
        }
        @media (min-width: 1024px) {
            .target-compass__desc {
                font-size: 0.9rem;
            }
        }
        @media (min-width: 1200px) {
            .target-compass__desc {
                font-size: 0.9375rem;
            }
        }
        @media (max-width: 900px) {
            .target-compass__rotator {
                position: relative;
            }
            .target-compass.visible .target-compass__item {
                animation: compass-item-fade 0.8s ease-out forwards;
            }
            .target-compass.visible .target-compass__item--0 { animation-delay: 0.2s; }
            .target-compass.visible .target-compass__item--1 { animation-delay: 0.35s; }
            .target-compass.visible .target-compass__item--2 { animation-delay: 0.5s; }
            .target-compass.visible .target-compass__item--3 { animation-delay: 0.65s; }
            .target-compass.visible .target-compass__item--4 { animation-delay: 0.8s; }
            .target-compass.visible .target-compass__item--5 { animation-delay: 0.95s; }
            .target-compass.visible .target-compass__icon {
                animation: compass-icon-spin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            }
            .target-compass.visible .target-compass__item--0 .target-compass__icon { animation-delay: 0.2s; }
            .target-compass.visible .target-compass__item--1 .target-compass__icon { animation-delay: 0.35s; }
            .target-compass.visible .target-compass__item--2 .target-compass__icon { animation-delay: 0.5s; }
            .target-compass.visible .target-compass__item--3 .target-compass__icon { animation-delay: 0.65s; }
            .target-compass.visible .target-compass__item--4 .target-compass__icon { animation-delay: 0.8s; }
            .target-compass.visible .target-compass__item--5 .target-compass__icon { animation-delay: 0.95s; }
            @keyframes compass-item-fade {
                from { opacity: 0; transform: translateY(12px); }
                to { opacity: 1; transform: translateY(0); }
            }
            .target-compass__needle {
                display: none;
            }
            .target-compass {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                aspect-ratio: auto;
                min-height: auto;
                max-width: 560px;
            }
            .target-compass__ring {
                display: none;
            }
            .target-compass__item {
                position: relative;
                left: auto;
                top: auto;
                width: 100%;
                height: auto;
                margin: 0 0 1rem 0;
                padding: 0;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 1.5rem;
                transform: none;
            }
            .target-compass__item:last-child {
                margin-bottom: 0;
            }
            .target-compass__icon {
                flex-shrink: 0;
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }
            .target-compass__icon-img {
                width: 28px;
                height: 28px;
            }
            .target-compass__content {
                position: relative;
                left: auto;
                top: auto;
                bottom: auto;
                width: 100%;
                flex: 1;
                min-width: 0;
                margin: 0;
                padding: 0.875rem 1rem;
                text-align: center;
            }
            .target-compass__content::before {
                display: none;
            }
            .target-compass__item--0 .target-compass__content,
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content,
            .target-compass__item--3 .target-compass__content,
            .target-compass__item--4 .target-compass__content,
            .target-compass__item--5 .target-compass__content {
                left: auto;
                top: auto;
                bottom: auto;
                margin: 0;
                transform: none;
            }
        }
        
        /* ナンバーサークル */
        .number-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c9a961 0%, #dcc486 50%, #c9a961 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--navy-dark);
            box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4),
                        inset 0 2px 4px rgba(255, 255, 255, 0.3);
            position: relative;
        }
        
        .number-circle::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            border: 2px solid rgba(201, 169, 97, 0.3);
        }
        
        /* アイコンボックス */
        .icon-box {
            width: 90px;
            height: 90px;
            background: linear-gradient(145deg, rgba(232, 236, 241, 0.05), rgba(197, 205, 214, 0.08));
            border: 1px solid rgba(232, 236, 241, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--gold-accent);
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .luxury-card:hover .icon-box {
            transform: scale(1.1);
            color: var(--silver-light);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3),
                        0 0 20px rgba(201, 169, 97, 0.4);
        }
        
        /* セクション見出し（統一サイズ・レスポンシブ） */
        .section-heading {
            font-size: clamp(2.25rem, 5vw, 3.75rem) !important;
        }
        @media (max-width: 768px) {
            .section-heading { font-size: clamp(1.75rem, 5.5vw, 2.5rem) !important; }
        }
        @media (max-width: 480px) {
            .section-heading { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
        }

        /* ライン装飾 */
        .decorative-line {
            width: 140px;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 50%, transparent 100%);
            margin: 0 auto;
        }
        
        /* テキストシャドウ */
        .text-glow {
            text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
        }
        
        /* スクロールバー */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--navy-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--silver-dark), var(--navy-medium));
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--gold-accent), var(--silver-dark));
        }
        
        /* レスポンシブ調整 */
        @media (max-width: 768px) {
            .number-circle {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .icon-box {
                width: 70px;
                height: 70px;
                font-size: 32px;
            }
        }

        /* 右下ふわっと表示の無料体験カード（ビューポート連続スケール・縁はみ出し防止） */
        .cta-float {
            position: fixed;
            z-index: 900;
            --cta-float-inset: clamp(12px, 3.5vw, 24px);
            bottom: max(var(--cta-float-inset), env(safe-area-inset-bottom, 0px));
            right: max(var(--cta-float-inset), env(safe-area-inset-right, 0px));
            opacity: 0;
            transform: translateY(20px) scale(0.96);
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }
        .cta-float.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .cta-float__link {
            display: block;
            line-height: 0;
            text-decoration: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
            transition: transform .2s ease, box-shadow .2s ease;
            /* 上限を抑えつつ、狭い幅では vw 比でも大きくなりすぎないよう二重に制限 */
            max-width: min(220px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 58vw);
        }
        /* 横長バナー版のみやや広く（従来どおり v2 用） */
        .cta-float__link--banner-v2 {
            max-width: min(260px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 62vw);
        }
        @media (max-width: 1024px) {
            .cta-float__link {
                max-width: min(200px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 56vw);
            }
            .cta-float__link--banner-v2 {
                max-width: min(230px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 60vw);
            }
        }
        @media (max-width: 768px) {
            .cta-float__link {
                max-width: min(168px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 52vw);
            }
            .cta-float__link--banner-v2 {
                max-width: min(190px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 56vw);
            }
        }
        @media (max-width: 480px) {
            .cta-float__link {
                max-width: min(140px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 48vw);
            }
            .cta-float__link--banner-v2 {
                max-width: min(150px, calc(100vw - 2 * var(--cta-float-inset) - 16px), 52vw);
            }
        }
        .cta-float__link:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
        }
        .cta-float__link img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* フッター：get_footer() でテーマフッターを使用するため compass 独自のフッター CSS は不要 */

        /* =========================
           Print Mode (?print=1)
           ========================= */
        html.print-mode *,
        html.print-mode *::before,
        html.print-mode *::after {
            animation: none !important;
            transition: none !important;
            scroll-behavior: auto !important;
            caret-color: auto !important;
        }
        html.print-mode {
            scroll-snap-type: none !important;
        }
        html.print-mode [style*="position:fixed"],
        html.print-mode [style*="position: fixed"],
        html.print-mode [style*="position:sticky"],
        html.print-mode [style*="position: sticky"] {
            position: static !important;
        }
        html.print-mode header,
        html.print-mode nav,
        html.print-mode .sticky,
        html.print-mode .is-sticky,
        html.print-mode .is-fixed,
        html.print-mode .fixed,
        html.print-mode .header,
        html.print-mode .site-header {
            position: static !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
            backdrop-filter: none !important;
        }
        html.print-mode [style*="transform"],
        html.print-mode .parallax,
        html.print-mode .scroll-anim,
        html.print-mode .fade-in,
        html.print-mode .reveal,
        html.print-mode .animate,
        html.print-mode .motion {
            transform: none !important;
            will-change: auto !important;
        }
        html.print-mode video {
            display: none !important;
        }
        html.print-mode .floating,
        html.print-mode .fab,
        html.print-mode .chat-widget,
        html.print-mode .cookie-banner,
        html.print-mode .toast,
        html.print-mode .modal,
        html.print-mode .overlay,
        html.print-mode .cta-float {
            display: none !important;
        }
