        :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);
        }
        
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Sans JP', sans-serif;
            background-color: var(--navy-dark);
            color: var(--silver-light);
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="2" fill="%23c9a961"/><circle cx="12" cy="12" r="4" fill="%23c9a961" opacity="0.4"/></svg>') 12 12, auto;
        }
        a, button, [role="button"] {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="2" fill="%23c9a961"/><circle cx="12" cy="12" r="4" fill="%23c9a961" opacity="0.4"/></svg>') 12 12, pointer;
        }
        .cursor-compass {
            position: fixed;
            width: 72px;
            height: 72px;
            margin-left: -36px;
            margin-top: -36px;
            pointer-events: none;
            z-index: 99999;
            opacity: 0;
            transition: opacity .2s ease;
        }
        .cursor-compass.is-visible {
            opacity: 0.9;
        }
        /* ハンバーガーメニュー時は羅針盤を非表示 */
        @media (max-width: 767px) {
            .cursor-compass {
                opacity: 0 !important;
                visibility: hidden;
                pointer-events: none;
            }
        }
        body:has(.header.is-open) .cursor-compass {
            opacity: 0 !important;
            visibility: hidden;
            pointer-events: none;
        }
        .cursor-compass img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .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.75rem, 5.5vw, 2.75rem); }
            .kv__label { font-size: clamp(0.75rem, 2vw, 0.9rem); }
            .kv__lead { font-size: clamp(0.9rem, 2.5vw, 1.05rem); }
            .kv__sub { font-size: clamp(0.75rem, 2vw, 0.9rem); }
            .kv__btn, .kv__btn-outline { padding: 14px 32px; font-size: 0.9rem; }
        }
        @media (max-width: 480px) {
            .kv__title-line { font-size: clamp(1.5rem, 6vw, 2rem); white-space: normal; }
            .kv__label { font-size: 0.7rem; }
            .kv__lead { font-size: 0.85rem; }
            .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(2.25rem, 4.8vw, 3.9rem);
            white-space: nowrap;
        }

        .kv__lead {
            font-size: clamp(1rem, 1.35vw, 1.2rem);
            font-weight: 600;
            color: rgba(232, 236, 241, .95);
            line-height: 1.9;
            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: 2px; }
        .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); }
        }

        .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: kvUp .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; }
        }

        /* ========================================
           悩み共感セクション（ピン止め＋カード収束）
           ======================================== */
        .problem-section {
            background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
            padding: 0;
        }
        .problem-pin-wrap {
            height: 260vh;
            position: relative;
            background: transparent;
        }
        .problem-pinned {
            position: sticky;
            top: 72px;
            height: calc(100vh - 72px);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .problem-pinned-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        .problem-section-header {
            margin-bottom: 36px;
            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: 20px auto 0;
            box-shadow: 0 0 12px rgba(201, 169, 97, 0.4);
        }
        .problem-arena {
            position: relative;
            width: 664px;
            height: 560px;
            flex-shrink: 0;
        }
        /* 中央写真：名刺風（ビジネス向け） */
        .problem-center {
            position: absolute;
            left: 172px;
            top: 140px;
            width: 320px;
            height: 280px;
            overflow: hidden;
            will-change: transform, opacity;
        }
        .problem-center--namecard {
            background: var(--white-pure);
            border: 1px solid rgba(232, 236, 241, 0.5);
            border-top: 3px solid var(--gold-accent);
            border-radius: 6px;
            box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04),
                        0 4px 12px rgba(0, 0, 0, 0.08),
                        0 0 0 1px rgba(201, 169, 97, 0.12) inset;
        }
        .problem-center img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }
        .problem-card {
            position: absolute;
            width: 200px;
            height: 120px;
            padding: 12px 16px 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            background: linear-gradient(145deg, rgba(42, 57, 79, 0.92), rgba(26, 41, 66, 0.95));
            border: 1px solid rgba(232, 236, 241, 0.12);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                        inset 0 1px 0 rgba(255, 255, 255, 0.06);
            will-change: transform, opacity;
        }
        .problem-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-accent) 0%, rgba(201, 169, 97, .25) 100%);
            border-radius: 12px 12px 0 0;
        }
        .problem-card--tl { left: 0;    top: 0;   }
        .problem-card--tr { left: 464px; top: 0;   }
        .problem-card--bl { left: 0;    top: 440px; }
        .problem-card--br { left: 464px; top: 440px; }
        .problem-card__text {
            font-size: .84rem;
            font-weight: 600;
            color: var(--silver-light);
            line-height: 1.5;
            margin: 0;
            text-align: left;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            width: 100%;
        }
        .problem-story-wrap {
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            padding: 180px 0;
        }
        .problem-story-wrap__bg {
            position: absolute;
            top: -35%;
            left: 0;
            right: 0;
            bottom: -35%;
            background-image: url('../images/problem-story-bg.jpg');
            background-size: cover;
            background-position: center center;
            will-change: transform;
        }
        .problem-story-wrap__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 41, 66, 0.92) 50%, rgba(10, 22, 40, 0.95) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .problem-story {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
        }
        .problem-story__label {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gold-accent);
            margin-bottom: 28px;
            display: block;
        }
        .problem-story__block {
            text-align: left;
        }
        .problem-story__p {
            font-size: clamp(0.95rem, 2.5vw, 1.15rem);
            font-weight: 600;
            line-height: 2;
            color: rgba(232, 236, 241, 0.95);
            margin-bottom: 2rem;
        }
        .problem-story__p:last-child { margin-bottom: 0; }
        .problem-story__p strong {
            color: var(--gold-accent);
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .problem-pin-wrap { height: auto; }
            .problem-pinned { position: static; height: auto; overflow: visible; padding: 64px 0 40px; }
            .problem-arena {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-areas: "tl tr" "center center" "bl br";
                gap: 12px;
                width: auto;
                height: auto;
                max-width: 480px;
                margin: 0 auto;
                padding: 0 20px;
            }
            .problem-center {
                position: static;
                width: 100%;
                height: 260px;
                grid-area: center;
            }
            .problem-center--namecard { border-radius: 6px; }
            .problem-card {
                position: static;
                width: auto;
                height: auto;
                opacity: 1 !important;
                transform: none !important;
            }
            .problem-card--tl { grid-area: tl; }
            .problem-card--tr { grid-area: tr; }
            .problem-card--bl { grid-area: bl; }
            .problem-card--br { grid-area: br; }
            .problem-story-wrap { min-height: 60vh; padding: 100px 0; }
        }
        @media (max-width: 480px) {
            .problem-arena {
                grid-template-columns: 1fr;
                grid-template-areas: "center" "tl" "tr" "bl" "br";
                padding: 0 16px;
            }
            .problem-center { height: 280px; }
            .problem-card__text { font-size: .82rem; }
            .problem-story-wrap { min-height: 55vh; padding: 80px 0; }
        }

        /* ========================================
           Reason（EXECUTIVE COMPASS とは）– ピン止め横スライド・3枚
           ======================================== */
        .reason-section {
            padding: 0;
            margin: 0;
        }
        .reason-pin-wrap {
            width: 100%;
            height: 400vh;
            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; }
        .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: 300vw;
            transform: translate3d(0, 0, 0);
            will-change: transform;
            flex-shrink: 0;
        }
        .reason-slide {
            width: 100vw;
            min-width: 100vw;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.5rem 2rem 2rem;
            box-sizing: border-box;
            flex-shrink: 0;
            background: transparent;
        }
        .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-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;
        }
        @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; }
            .reason-track {
                flex-direction: column;
                width: 100%;
                transform: none;
                gap: 2rem;
            }
            .reason-slide {
                width: 100%;
                min-width: 0;
                padding: 0 16px 2rem;
            }
            .reason-slide-img { width: min(95%, 360px); }
            .reason-slide-img.reason-slide-video { width: min(98%, 520px); }
        }
        @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つの視点 – 左画像・右アコーディオン（トグル）
           ======================================== */
        .features-section {
            padding: 0;
            width: 100%;
            overflow: visible;
            background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
        }
        .features-layout {
            display: flex;
            flex-direction: column;
            min-height: min(100vh, 800px);
            width: 100%;
        }
        @media (min-width: 1024px) {
            .features-layout {
                display: grid;
                grid-template-columns: minmax(360px, 54%) 1fr;
                grid-template-rows: 1fr;
                min-height: min(100vh, 720px);
                align-items: stretch;
            }
        }
        .features-visual {
            position: relative;
            width: 100%;
            min-height: 50vh;
            overflow: hidden;
            background: var(--navy-dark);
        }
        @media (min-width: 1024px) {
            .features-visual {
                min-height: min(100vh, 720px);
                position: sticky;
                top: 72px;
                height: min(100vh, 720px);
                align-self: start;
            }
        }
        .features-visual__img-wrap {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        .features-visual__overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, .35);
            z-index: 1;
            pointer-events: none;
        }
        .features-visual__img {
            position: absolute;
            top: -5%;
            left: 0;
            width: 100%;
            height: 110%;
            object-fit: cover;
            object-position: center;
        }
        @media (min-width: 1024px) {
            .features-visual__img { will-change: transform; }
        }
        .features-visual__caption {
            position: absolute;
            bottom: 2.5rem;
            left: 2rem;
            right: 2rem;
            z-index: 2;
        }
        @media (min-width: 1024px) {
            .features-visual__caption {
                bottom: 3rem;
                left: 2.5rem;
                right: 2.5rem;
            }
        }
        .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;
        }
        .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;
        }
        .features-visual__title em {
            font-style: italic;
            color: var(--gold-accent);
            text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
        }
        .features-content {
            width: 100%;
            flex: 1;
            background: var(--navy-primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        @media (min-width: 1024px) {
            .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;
            }
        }
        .features-content__inner {
            padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
            width: 100%;
            box-sizing: border-box;
        }
        @media (min-width: 1024px) {
            .features-content__inner {
                padding: 3rem 4rem 4rem 4rem;
                width: 100%;
            }
        }
        .features-content__intro { margin-bottom: 1.75rem; }
        @media (min-width: 1024px) {
            .features-content__intro { margin-bottom: 2.5rem; }
        }
        .features-content__label {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold-accent);
            margin-bottom: .75rem;
        }
        .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;
        }
        .features-content__lead {
            font-size: .95rem;
            color: var(--silver-medium);
            line-height: 1.7;
        }
        .features-list {
            border-top: 1px solid rgba(232, 236, 241, .12);
        }
        .features-list__item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(232, 236, 241, .12);
        }
        .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;
        }
        .features-list__content {
            flex: 1;
            min-width: 0;
        }
        .features-list__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 600;
            color: var(--silver-light);
            margin-bottom: 0.5rem;
        }
        .features-list__body {
            color: var(--silver-medium);
            font-size: .95rem;
            line-height: 1.75;
            margin: 0;
        }
        .features-cta-wrap {
            margin-top: 2.5rem;
            padding-top: 2rem;
            text-align: center;
        }
        @media (min-width: 1024px) {
            .features-cta-wrap { margin-top: 3rem; padding-top: 2.5rem; }
        }
        .features-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            padding: 14px 28px;
            background: linear-gradient(135deg, #c9a961 0%, #d4b56e 50%, #c9a961 100%);
            color: var(--navy-dark);
            font-family: 'Montserrat', sans-serif;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            border-radius: 4px;
            text-decoration: none;
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .features-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 169, 97, .4);
        }
        @media (max-width: 1023px) {
            .features-layout { min-height: 0; }
            .features-visual { min-height: 40vh; }
            .features-visual__caption {
                bottom: 1.5rem;
                left: 1rem;
                right: 1rem;
            }
            .features-visual__title { font-size: clamp(1.75rem, 5vw, 2.75rem); }
        }
        @media (max-width: 480px) {
            .features-content__inner { padding: 1.5rem 1rem; }
            .features-list__item { padding: 1rem 0; }
            .features-visual__title { font-size: clamp(1.5rem, 6vw, 2rem); }
            .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);
        }
        .contact-card__info {
            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;
        }

        /* ========================================
           流れる文字（プログラム内容セクション内）
           ======================================== */
        .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));
        }
        
        /* 高級カードデザイン */
        .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風：最初は透明、スクロールで色がつく） */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 72px;
            z-index: 1000;
            background: transparent;
            border-bottom: 1px solid transparent;
            box-shadow: none;
            transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
        }
        .header.is-scrolled {
            background: rgba(10, 22, 40, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(232, 236, 241, 0.12);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
        }
        .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(30px, 4vw, 36px);
            height: clamp(30px, 4vw, 36px);
            flex-shrink: 0;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            overflow: hidden;
        }
        .header__logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .header__logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.75rem, 1.8vw, 1.125rem);
            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;
        }
        @media (min-width: 768px) {
            .header__right {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-left: auto;
            }
            .header__nav {
                display: flex;
                align-items: center;
            }
        }
        @media (min-width: 768px) and (max-width: 950px) {
            .header__right { gap: 16px; }
            .header__nav-list { gap: 0.75rem; }
            .header__nav-list a { font-size: 0.75rem; letter-spacing: 0.05em; }
            .header__logo-text { font-size: 0.8rem; 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.75rem, 1.2vw, 0.9375rem);
            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;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            padding: 0;
            border: none;
            background: none;
            cursor: pointer;
            z-index: 1002;
            position: relative;
        }
        .header__menu-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--silver-light);
            border-radius: 1px;
            transition: transform .25s ease, opacity .25s ease;
        }
        .header.is-open .header__menu-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .header.is-open .header__menu-toggle span:nth-child(2) { opacity: 0; }
        .header.is-open .header__menu-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
        @media (min-width: 768px) {
            .header__menu-toggle { display: none; }
            .header__nav-cta { display: none; }
        }
        @media (max-width: 767px) {
            .header__right {
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                overflow: visible;
            }
            .header__cta { display: none !important; }
            .header__nav {
                display: flex;
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(10, 22, 40, 0.98);
                backdrop-filter: blur(12px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity .3s ease, visibility .3s ease;
                z-index: 999;
            }
            .header.is-open .header__nav {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }
            .header__nav-list {
                flex-direction: column;
                align-items: center;
                gap: 1.25rem;
                list-style: none;
                margin: 0;
                padding: 0;
            }
            .header__nav-list a {
                font-size: 1.125rem;
                white-space: nowrap;
                text-align: center;
            }
            .header__nav-cta {
                margin-top: 1.5rem;
                padding-top: 1.5rem;
                border-top: 1px solid rgba(232, 236, 241, 0.15);
            }
            .header__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, .3);
            }
            .header__nav-cta a::after { display: none; }
            .header__nav-cta a:hover {
                background: linear-gradient(135deg, #d4b56e 0%, #c9a961 100%);
                box-shadow: 0 4px 16px rgba(201, 169, 97, .4);
            }
        }
        
        /* セクション背景・上下余白 */
        .section-dark {
            background: linear-gradient(to bottom, #0a1628 0%, #1a2942 100%);
        }
        .section-navy {
            background: var(--navy-primary);
        }
        .section-flow,
        .section-benefits,
        .section-contact {
            padding-top: 8rem;
            padding-bottom: 8rem;
        }
        .section-benefits {
            position: relative;
            overflow-x: hidden;
            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) {
            .section-flow,
            .section-benefits,
            .section-contact {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
        }

        /* 導入効果 タイムライン型 */
        .benefits-timeline {
            position: relative;
            width: 100%;
            max-width: 1500px;
            margin: 0 auto 1.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;
            -webkit-text-stroke: 1px rgba(139, 149, 165, 0.08);
            color: transparent;
            left: -0.5rem;
            top: -0.5rem;
            pointer-events: none;
            z-index: 0;
            user-select: none;
        }
        .benefits-timeline__content {
            flex: 1;
            padding-left: 2.5rem;
            order: 2;
            z-index: 1;
        }
        .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.5rem;
            font-weight: 600;
            color: var(--silver-light);
            margin-bottom: 0.75rem;
        }
        .benefits-timeline__desc {
            font-size: 0.9rem;
            color: var(--silver-dark);
            line-height: 1.75;
            margin: 0;
        }
        .benefits-timeline__node {
            position: relative;
            left: 0;
            top: 0;
            width: 2.5rem;
            min-width: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
            order: 1;
        }
        .benefits-timeline__node--top {
            top: 0;
        }
        /* アイコン：icon-box等との競合を避け、Font Awesomeが正しく表示されるようスコープ */
        .benefits-timeline__icon {
            width: 2rem;
            height: 2rem;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border: 1px solid var(--gold-accent);
            background: var(--navy-dark) !important;
            color: var(--gold-accent) !important;
            z-index: 2;
            flex-shrink: 0;
            box-sizing: border-box;
        }
        .benefits-timeline__icon i,
        .benefits-timeline__icon .fas {
            font-size: 0.75rem !important;
            display: inline-block !important;
            line-height: 1;
            width: 1em;
            text-align: center;
        }
        .benefits-timeline__icon--circle {
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--navy-dark);
        }
        .benefits-timeline__icon--diamond {
            transform: rotate(45deg);
            box-shadow: 0 0 0 4px var(--navy-dark);
        }
        .benefits-timeline__icon--diamond i,
        .benefits-timeline__icon--diamond .fas {
            transform: rotate(-45deg);
            font-size: 0.65rem !important;
        }
        .benefits-timeline__connector {
            display: none;
        }

        @media (min-width: 1024px) {
            .benefits-timeline {
                padding: 3rem 2rem 1.5rem;
            }
            .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;
                text-align: center;
                max-width: 18rem;
                margin: 0 auto;
            }
            .benefits-timeline__item--1 .benefits-timeline__node,
            .benefits-timeline__item--3 .benefits-timeline__node {
                grid-row: 2;
                justify-self: center;
            }
            /* 偶数(2,4): ノードが線上・コンテンツは線の上 */
            .benefits-timeline__item--2 .benefits-timeline__node,
            .benefits-timeline__item--4 .benefits-timeline__node {
                grid-row: 2;
                justify-self: center;
            }
            .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;
                text-align: center;
                max-width: 18rem;
                margin: 0 auto;
            }
            .benefits-timeline__watermark {
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                font-size: clamp(2rem, 5vw, 3.5rem);
            }
            .benefits-timeline .benefits-timeline__icon {
                width: 1.25rem;
                height: 1.25rem;
            }
            .benefits-timeline .benefits-timeline__icon i,
            .benefits-timeline .benefits-timeline__icon .fas {
                font-size: 0.6rem !important;
            }
            .benefits-timeline__icon--circle i,
            .benefits-timeline__icon--circle .fas {
                display: block !important;
            }
            .benefits-timeline__icon--diamond i,
            .benefits-timeline__icon--diamond .fas {
                display: inline-block !important;
            }
        }

        /* 導入企業の声（白背景・ガラス風カード） */
        .benefits-voice-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08),
                        0 1px 3px rgba(0, 0, 0, 0.04),
                        inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border-radius: 14px;
            padding: 1.1rem 1.35rem;
            transition: border-color .25s ease, box-shadow .25s ease;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .benefits-voice-card:hover {
            border-color: rgba(201, 169, 97, 0.4);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                        0 2px 6px rgba(0, 0, 0, 0.05),
                        inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }
        .benefits-voice-card__header {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        /* 企業ロゴを目立たせる */
        .benefits-voice-card__logo {
            flex-shrink: 0;
            width: 80px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
            backdrop-filter: blur(12px) saturate(1.2);
            -webkit-backdrop-filter: blur(12px) saturate(1.2);
            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);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .benefits-voice-card__logo-placeholder {
            font-size: 0.65rem;
            color: rgba(100, 116, 139, 0.8);
            text-align: center;
            line-height: 1.3;
        }
        .benefits-voice-card__logo-placeholder small {
            font-size: 0.55rem;
        }
        .benefits-voice-card__logo-icon {
            display: block;
            font-size: 1.5rem;
            color: rgba(100, 116, 139, 0.5);
            margin-bottom: 0.25rem;
        }
        .benefits-voice-card__logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
        }
        .benefits-voice-card__company {
            flex: 1;
            min-width: 0;
            padding-left: 0.65rem;
            border-left: 2px solid var(--gold-accent);
        }
        .benefits-voice-card__company-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.2rem;
        }
        .benefits-voice-card__company-detail {
            font-size: 0.72rem;
            color: #64748b;
        }
        .benefits-voice-card__quote {
            position: relative;
            padding: 0.6rem 0.85rem;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 8px;
            backdrop-filter: blur(6px);
        }
        .benefits-voice-card__quote-mark {
            position: absolute;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: rgba(201, 169, 97, 0.5);
            line-height: 1;
        }
        .benefits-voice-card__quote-mark--open {
            top: -0.35rem;
            left: 0;
        }
        .benefits-voice-card__quote-mark--close {
            bottom: -0.5rem;
            right: 0.25rem;
        }
        .benefits-voice-card__quote-inner {
            position: relative;
            z-index: 1;
        }
        .benefits-voice-card__quote-main {
            font-size: 0.88rem;
            color: #334155;
            line-height: 1.65;
            margin: 0 0 0.5rem 0;
        }
        .benefits-voice-card__quote-sub {
            font-size: 0.78rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }
        .benefits-voice-card__footer {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.6rem;
            margin-top: auto;
        }
        .benefits-voice-card__person {
            text-align: right;
        }
        .benefits-voice-card__person-title {
            font-size: 0.72rem;
            color: #64748b;
            margin-bottom: 0.1rem;
        }
        .benefits-voice-card__person-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #1e293b;
        }
        .benefits-voice-card__photo {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.06);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .benefits-voice-card__photo-placeholder {
            font-size: 1.25rem;
            color: rgba(100, 116, 139, 0.5);
        }
        .benefits-voice-card__photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        @media (max-width: 767px) {
            .benefits-voice-card {
                padding: 0.9rem 1.1rem;
            }
            .benefits-voice-card__logo {
                width: 68px;
                height: 40px;
            }
            .benefits-voice-card__company-name {
                font-size: 0.95rem;
            }
            .benefits-voice-card__quote-mark {
                font-size: 2rem;
            }
            .benefits-voice-card__photo {
                width: 38px;
                height: 38px;
            }
        }

        /* 導入企業一覧 見出し */
        .benefits-logos-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 700;
            color: var(--silver-light);
            margin: 0;
        }
        /* 導入企業の声＋背後に流れるロゴ（3行） */
        .benefits-voices-with-logos {
            position: relative;
            overflow: visible;
            padding: 0.75rem 0 4rem;
        }
        .benefits-logos-bg {
            width: 100vw;
            position: relative;
            left: 50%;
            margin-left: -50vw;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            padding-top: 2rem;
            overflow: hidden;
        }
        .benefits-logos-row {
            overflow: hidden;
            width: 100%;
        }
        .benefits-logos-track {
            display: flex;
            width: max-content;
            animation: benefits-logos-scroll-left 45s linear infinite;
        }
        .benefits-logos-row--2 .benefits-logos-track {
            animation: benefits-logos-scroll-right 50s linear infinite;
        }
        .benefits-logos-row--3 .benefits-logos-track {
            animation: benefits-logos-scroll-left 42s 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;
        }
        .benefits-voices {
            position: relative;
        }
        .benefits-voices .grid {
            gap: 1rem;
        }
        @keyframes benefits-logos-scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.333%); }
        }
        @keyframes benefits-logos-scroll-right {
            0% { transform: translateX(-33.333%); }
            100% { transform: translateX(0); }
        }

        /* 対象者セクション（円形コンパス風） */
        .target-section {
            padding: 6rem 0 8rem;
        }
        .target-header {
            margin-bottom: 2.5rem;
        }
        .target-header p {
            margin-top: 1.5rem;
            font-size: clamp(0.875rem, 2.5vw, 1.25rem);
        }
        .target-compass {
            --compass-ring: 420px;
            --compass-radius: 210px;
            position: relative;
            width: 100%;
            max-width: 840px;
            min-height: 560px;
            margin: 0 auto;
            aspect-ratio: 1;
            overflow: visible;
            opacity: 1;
        }
        @media (min-width: 1200px) {
            .target-compass {
                --compass-ring: 520px;
                --compass-radius: 260px;
                max-width: 1040px;
                min-height: 1040px;
            }
        }
        @media (min-width: 1100px) and (max-width: 1199px) {
            .target-compass {
                --compass-ring: 480px;
                --compass-radius: 240px;
                max-width: 960px;
                min-height: 960px;
            }
        }
        @media (min-width: 1100px) {
            .target-compass__item {
                width: 64px;
                height: 64px;
                margin-left: -32px;
                margin-top: -32px;
            }
            .target-compass__icon {
                width: 64px;
                height: 64px;
                font-size: 1.35rem;
            }
            .target-compass__content {
                width: 220px;
                margin-left: -110px;
                padding: 0.875rem 1rem 0.875rem 1.125rem;
            }
            .target-compass__item--0 .target-compass__content { top: auto; margin-bottom: 0; bottom: calc(100% + 36px); }
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content { left: calc(100% + 36px); top: 50%; margin-left: 0; margin-top: -2.75rem; }
            .target-compass__item--3 .target-compass__content { top: calc(100% + 36px); margin-top: 0; }
            .target-compass__item--4 .target-compass__content,
            .target-compass__item--5 .target-compass__content { left: 0; top: 50%; margin-left: -256px; margin-top: -2.75rem; }
        }
        @media (min-width: 1200px) {
            .target-compass__item {
                width: 68px;
                height: 68px;
                margin-left: -34px;
                margin-top: -34px;
            }
            .target-compass__icon {
                width: 68px;
                height: 68px;
                font-size: 1.4rem;
            }
            .target-compass__content {
                width: 240px;
                margin-left: -120px;
                padding: 0.875rem 1.125rem 0.875rem 1.25rem;
            }
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content { left: calc(100% + 40px); top: 50%; margin-left: 0; margin-top: -2.75rem; }
            .target-compass__item--3 .target-compass__content { top: calc(100% + 40px); margin-top: 0; }
            .target-compass__item--4 .target-compass__content,
            .target-compass__item--5 .target-compass__content { left: 0; top: 50%; margin-left: -280px; margin-top: -2.75rem; }
        }
        .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）：1個目の円の上、統一サイズ */
        .target-compass__cardinal {
            position: absolute;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            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.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% + 20px);
            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: 1099px) {
            .target-compass__content {
                width: 180px;
                margin-left: -90px;
                padding: 0.75rem 1rem 0.75rem 1.125rem;
            }
            .target-compass__item--0 .target-compass__content { top: auto; bottom: calc(100% + 20px); margin-top: 0; margin-bottom: 0; }
            .target-compass__item--1 .target-compass__content,
            .target-compass__item--2 .target-compass__content { left: calc(100% + 20px); top: 50%; margin-left: 0; margin-top: -2.25rem; }
            .target-compass__item--3 .target-compass__content { top: calc(100% + 20px); 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: -200px; margin-top: -2.25rem; }
        }
        .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: 1rem;
            font-weight: 700;
            color: var(--gold-accent);
            margin: 0 0 0.4rem 0;
            letter-spacing: 0.03em;
            text-align: center;
        }
        .target-compass__desc {
            font-size: 0.8125rem;
            color: rgba(232, 236, 241, 0.88);
            line-height: 1.55;
            margin: 0;
            letter-spacing: 0.02em;
        }
        @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.25rem;
                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__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;
            }
        }
        
        /* ナンバーサークル */
        .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;
            bottom: 24px;
            right: 24px;
            z-index: 900;
            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;
        }
        .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: auto;
            max-width: 260px;
            max-height: 170px;
            height: auto;
            object-fit: contain;
        }
        @media (max-width: 1024px) {
            .cta-float { bottom: 22px; right: 20px; }
            .cta-float__link img { max-width: 220px; max-height: 145px; }
        }
        @media (max-width: 768px) {
            .cta-float { bottom: 20px; right: 18px; }
            .cta-float__link img { max-width: 180px; max-height: 118px; }
        }
        @media (max-width: 640px) {
            .cta-float { bottom: 18px; right: 16px; }
            .cta-float__link img { max-width: 160px; max-height: 105px; }
        }
        @media (max-width: 480px) {
            .cta-float { bottom: 16px; right: 14px; }
            .cta-float__link img { max-width: 140px; max-height: 92px; }
        }

        /* フッター（ページデザインに合わせたブラッシュアップ） */
        .footer {
            background: var(--navy-dark);
            padding: 4rem 0 3rem;
            border-top: 1px solid rgba(232, 236, 241, 0.12);
        }
        .footer__inner {
            max-width: var(--content-max);
            margin: 0 auto;
            padding-left: var(--content-inset);
            padding-right: var(--content-inset);
        }
        .footer__main {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 2.5rem;
        }
        @media (min-width: 768px) {
            .footer__main {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                text-align: left;
            }
        }
        .footer__brand {
            text-align: center;
        }
        @media (min-width: 768px) {
            .footer__brand { text-align: left; }
        }
        .footer__logo-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 14px;
        }
        @media (min-width: 768px) {
            .footer__logo-wrap { justify-content: flex-start; }
        }
        .footer__logo-img {
            width: clamp(36px, 5vw, 44px);
            height: clamp(36px, 5vw, 44px);
            object-fit: contain;
            flex-shrink: 0;
        }
        .footer__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.35rem, 4vw, 1.75rem);
            font-weight: 600;
            letter-spacing: 0.22em;
            margin: 0;
            text-transform: uppercase;
            -webkit-font-smoothing: antialiased;
        }
        .footer__logo-executive {
            color: #e8ecf1;
        }
        .footer__logo-compass {
            color: var(--gold-accent);
        }
        .footer__tagline {
            font-size: 0.8125rem;
            letter-spacing: 0.18em;
            color: var(--silver-dark);
            margin: 0;
            padding-left: 0;
            text-align: center;
            text-transform: uppercase;
        }
        @media (min-width: 768px) {
            .footer__tagline {
                padding-left: calc(clamp(36px, 5vw, 44px) + 20px);
                text-align: left;
            }
        }
        .footer__nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(1.25rem, 3vw, 2rem);
        }
        @media (min-width: 768px) {
            .footer__nav {
                justify-content: flex-end;
                padding-top: 14px;
            }
        }
        .footer__nav-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.875rem, 2vw, 0.9375rem);
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(232, 236, 241, 0.9);
            text-decoration: none;
            position: relative;
            padding-bottom: 4px;
            transition: color 0.25s ease;
            -webkit-font-smoothing: antialiased;
        }
        .footer__nav-link::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-accent);
            transition: width 0.3s ease;
        }
        .footer__nav-link:hover {
            color: var(--gold-accent);
        }
        .footer__nav-link:hover::after {
            width: 100%;
        }
        .footer__bottom {
            margin-top: 3rem;
            padding-top: 2.5rem;
            text-align: center;
        }
        .footer__decorative-line {
            width: 140px;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 50%, transparent 100%);
            margin: 0 auto 1.5rem;
        }
        .footer__copyright {
            font-size: 0.8125rem;
            letter-spacing: 0.06em;
            color: var(--silver-dark);
            margin: 0;
        }
