:root {
            --primary: #E06080;
            --primary-dark: #C0405F;
            --primary-pale: #FDE8EF;
            --teal: #4CBBCA;
            --green: #5CB85C;
            --orange: #F0A500;
            --purple: #9B59B6;
            --cta-red: #C62828;
            --bg: #FFF7F9;
            --white: #FFFFFF;
            --text: #2E2E2E;
            --mid: #555555;
            --border: #E8E8E8;
        }

        .member-sub-label {
            font-size: .8em;
            font-weight: inherit;
            white-space: nowrap;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            /* hidden だと html がスクロールコンテナ化し、position:sticky のヘッダーが振動する。
               clip は横はみ出しを防ぎつつスクロールコンテナを作らないので sticky が安定する。 */
            overflow-x: clip;
        }

        body {
            font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 20px;
            line-height: 1.85;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .num {
            font-family: 'Noto Sans JP', 'BIZ UDPGothic', sans-serif;
        }

        .skip-link {
            position: absolute;
            top: -48px;
            left: 0;
            background: var(--primary);
            color: #fff;
            padding: 8px 16px;
            z-index: 9999;
            font-size: 16px;
            font-weight: 700;
            border-radius: 0 0 6px 0;
            transition: top .2s;
        }

        .skip-link:focus {
            top: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container_family {
            max-width: 740px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 64px 0;
        }

        @media(max-width:640px) {
            .section {
                padding: 40px 0;
            }
        }

        .sec-head {
            text-align: center;
            margin-bottom: 40px;
        }

        .sec-head h2 {
            font-size: 27px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .sec-head h2 em {
            font-style: normal;
            color: var(--primary);
        }

        /* 「小さいわが家のお葬式」が を必ず1単位として扱い、途中改行を防止 */
        .reasons-brand {
            display: inline-block;
            white-space: nowrap;
        }

        @media(max-width:560px) {
            #reasons-heading {
                font-size: 22px;
            }
        }

        .sec-head p {
            font-size: 16px;
            color: var(--mid);
        }

        .btn-red {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--cta-red);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            padding: 14px 28px;
            border-radius: 6px;
            transition: background .2s;
        }

        .btn-red:hover {
            background: #a01c1c;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            font-weight: 700;
            font-size: 16px;
            padding: 12px 24px;
            border-radius: 6px;
            transition: background .2s, color .2s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ══════════════════════════════════════
       ヘッダー上段：ロゴ＋電話CTA
       ※ 現行サイトのデザインを踏襲
    ══════════════════════════════════════ */
        .site-header {
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
            position: sticky;
            top: 0;
            z-index: 200;
            transition: box-shadow .2s ease;
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 20px;
            transition: height .2s ease;
        }

        /* スクロール時：ヘッダーをコンパクトに */
        .site-header.is-scrolled .header-top {
            height: 48px;
        }

        .site-header.is-scrolled .site-logo img {
            height: 32px;
            transition: height .2s ease;
        }

        .site-logo img {
            transition: height .2s ease;
        }

        .site-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .site-logo img {
            height: 48px;
            width: auto;
        }

        .logo-fallback {
            display: none;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
        }

        .logo-fallback .small {
            font-size: 12px;
            color: var(--mid);
            font-weight: 400;
            display: block;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .header-tel-link {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            padding: 6px 16px 7px;
            background: #fff;
            border: 2px solid var(--cta-red);
            border-radius: 6px;
            text-decoration: none;
            transition: background .2s, color .2s;
            box-shadow: 0 2px 6px rgba(192, 64, 95, .15);
        }
        .header-tel-link:hover {
            background: var(--cta-red);
        }
        .header-tel-link:hover .header-tel-num,
        .header-tel-link:hover .header-tel-note {
            color: #fff;
        }
        .header-tel-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: var(--cta-red);
            letter-spacing: .04em;
            line-height: 1;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .header-tel-num::before {
            content: "📞";
            font-size: 16px;
            line-height: 1;
        }
        .header-tel-note {
            font-size: 12px;
            color: var(--mid);
            line-height: 1;
        }

        .header-emergency {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--cta-red);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 6px;
            white-space: nowrap;
            box-shadow: 0 2px 6px rgba(192, 64, 95, .25);
            transition: background .2s;
        }

        .header-emergency:hover {
            background: #a01c1c;
            color: #fff;
        }

        .header-cta-stack {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 4px;
            align-self: stretch;
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: 4px;
            white-space: nowrap;
            line-height: 1.2;
            text-decoration: none;
            transition: background .2s, color .2s, border-color .2s;
            flex: 1;
        }

        .header-cta--outline {
            background: #fff;
            color: var(--teal);
            border: 2px solid var(--teal);
        }

        .header-cta--outline:hover {
            background: var(--teal);
            color: #fff;
        }

        .header-cta--solid {
            background: var(--primary);
            color: #fff;
            border: 2px solid var(--primary);
            box-shadow: 0 2px 6px rgba(224, 96, 128, .25);
        }

        .header-cta--solid:hover {
            background: #c34b6f;
            border-color: #c34b6f;
            color: #fff;
        }

        @media(max-width:1180px) {
            .header-right {
                gap: 10px;
            }

            .header-cta {
                font-size: 13px;
                padding: 8px 10px;
            }
        }

        /* ══════════════════════════════════════
       ヘッダー下段：グローバルナビゲーション
       ※ 現行サイトのメニュー項目をそのまま使用
          → Chrome接続後に実際の項目を要確認
    ══════════════════════════════════════ */
        .site-nav {
            background: var(--white);
            border-top: 1px solid var(--border);
        }

        .nav-inner {
            display: flex;
            align-items: stretch;
            gap: 0;
        }

        /* 通常メニュー項目 */
        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0 16px;
            height: 44px;
            font-size: 20px;
            font-weight: 500;
            color: var(--text);
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: color .2s, border-color .2s;
        }

        .nav-link:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .nav-link.current {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        /* ドロップダウン（プラン） */
        .nav-item:hover .nav-dropdown {
            display: block;
        }

        .nav-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 160px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
            border-top: 3px solid var(--primary);
            border-radius: 0 0 6px 6px;
            z-index: 100;
        }

        .nav-dropdown a {
            display: block;
            padding: 11px 18px;
            font-size: 16px;
            color: var(--text);
            border-bottom: 1px solid var(--border);
            transition: background .15s, color .15s;
        }

        .nav-dropdown a:last-child {
            border-bottom: none;
        }

        .nav-dropdown a:hover {
            background: var(--primary-pale);
            color: var(--primary);
        }

        /* お急ぎの方ボタン（強調） */
        .nav-link.nav-emergency {
            background: var(--cta-red);
            color: #fff !important;
            margin: 8px 0 8px 8px;
            height: 32px;
            padding: 0 16px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            border-bottom: none !important;
        }

        .nav-link.nav-emergency:hover {
            background: #a01c1c;
        }

        /* ハンバーガー（SP） */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 8px;
            cursor: pointer;
            border: none;
            background: transparent;
        }

        .nav-hamburger-bars {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
        }

        .nav-hamburger-bars span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: .2s;
        }

        .nav-hamburger-label,
        .nav-hamburger-label-close {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            color: var(--text);
            line-height: 1;
        }

        .nav-hamburger-label-close {
            display: none;
        }

        /* メニュー開閉時：3本線→×、MENU→CLOSE に切替 */
        .nav-hamburger.is-open .nav-hamburger-bars {
            position: relative;
            width: 22px;
            height: 22px;
        }
        .nav-hamburger.is-open .nav-hamburger-bars span {
            position: absolute;
            top: 50%;
            left: 0;
            margin: 0;
        }
        .nav-hamburger.is-open .nav-hamburger-bars span:nth-child(1) {
            transform: translateY(-50%) rotate(45deg);
        }
        .nav-hamburger.is-open .nav-hamburger-bars span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.is-open .nav-hamburger-bars span:nth-child(3) {
            transform: translateY(-50%) rotate(-45deg);
        }
        .nav-hamburger.is-open .nav-hamburger-label {
            display: none;
        }
        .nav-hamburger.is-open .nav-hamburger-label-close {
            display: block;
        }

        .nav-sp {
            display: none;
        }

        /* ── MV ── */
        .mv {
            background:
                linear-gradient(100deg,
                    rgba(255, 255, 255, .88) 0%,
                    rgba(255, 255, 255, .78) 38%,
                    rgba(255, 255, 255, .45) 65%,
                    rgba(255, 255, 255, .25) 100%),
                url('../wagaya2026/images/mv_saijyo_bg.jpg') center 30% / cover no-repeat;
            padding: 72px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @media(max-width:640px) {
            .mv {
                padding: 24px 0 20px;
            }
            .mv-cta-section {
                padding: 24px 0 28px;
            }
        }

        /* ── MV 直下 CTA セクション（式場背景なし） ── */
        .mv-cta-section {
            background: var(--bg);
            padding: 44px 0 56px;
            position: relative;
        }

        .mv-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary) 40%, var(--primary) 60%, transparent);
            border-radius: 2px;
        }

        .mv-inner {
            position: relative;
        }

        .mv-split {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .mv-text-col {
            flex: 1;
            min-width: 480px;
            text-align: left;
        }

        .mv-photo-col {
            flex: 0 0 auto;
            max-width: none;
            display: flex;
            flex-direction: row;
            align-items: flex-end;
            gap: 0;
        }

        .mv-person-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateY(-20px);
        }

        .mv-person-caption {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-top: 6px;
            color: var(--text);
            line-height: 1.2;
        }

        .mv-person-role {
            font-size: 16px;
            font-weight: 700;
            color: var(--mid);
            letter-spacing: .04em;
        }

        .mv-person-name {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: .04em;
        }

        .mv-person-img {
            position: relative;
            height: 420px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            object-position: bottom center;
            filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
            display: block;
            margin-bottom: 0;
        }

        .mv-cta-area {
            width: 100%;
        }

        .mv-speed-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .mv-speed-badges--above-strip {
            justify-content: center;
            margin: 24px auto 18px;
            padding: 0 20px;
        }

        .mv-speed-badge {
            background: #fff;
            color: var(--primary);
            font-size: 20px;
            font-weight: 700;
            padding: 7px 18px;
            border-radius: 50px;
            letter-spacing: .03em;
            border: 2px solid var(--primary);
        }

        @media(max-width:760px) {
            .mv-photo-col {
                flex: 0 0 100%;
                max-width: 480px;
                width: 100%;
                margin: 8px auto 0;
                flex-direction: column;
                align-items: center;
            }

            .mv-person-img {
                height: 280px;
                max-width: 80%;
            }

            .mv-text-col {
                text-align: center;
                min-width: 0;
            }

            .mv-speed-badges {
                justify-content: center;
            }
        }

        .mv-area-tag {
            display: inline-block;
            background: var(--white);
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 16px;
            font-weight: 700;
            padding: 5px 16px;
            border-radius: 50px;
            margin-bottom: 4px;
            letter-spacing: .06em;
        }

        .mv-service-name {
            font-size: 44px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 0px;
            letter-spacing: -.01em;
            color: var(--text);
            white-space: nowrap;
        }

        .mv-service-name .accent {
            color: var(--primary);
        }

        .mv-zero-lead {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .02em;
            line-height: 1.2;
            margin-bottom: 2px;
        }

        .mv-zero-lead strong {
            color: var(--cta-red);
            font-weight: 900;
            font-size: 1.1em;
        }

        .mv-zero-main {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        .mv-zero-headline {
            font-size: 68px;
            font-weight: 900;
            color: var(--text);
            line-height: 1;
            letter-spacing: .01em;
            margin: 0 0 22px;
            display: flex;
            align-items: flex-end;
            flex-wrap: wrap;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        .mv-zero-headline .zero-num {
            color: var(--cta-red);
            /* font-family: "Reggae One", "Noto Sans JP", sans-serif; */
            font-size: 2.2em;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.02em;
            margin: 0 4px;
            transform: translateY(10px);
        }

        .mv-zero-headline .mv-zero-yen {
            font-size: .65em;
        }

        /* ── MV プラン価格カード（火葬式プラン最低価格） ── */
        .mv-plan-price {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin: 8px 0 8px;
            padding: 18px 18px;
            background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
            border: 2px solid var(--primary-dark);
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(192, 64, 95, .15);
        }

        /* リボン風バッジ（左上、下端に切り込み） */
        .mv-plan-price-badge {
            position: absolute;
            top: -14px;
            left: -4px;
            background: linear-gradient(180deg, #e54a6a 0%, #c0405f 100%);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            padding: 5px 12px 11px;
            letter-spacing: .08em;
            line-height: 1.2;
            white-space: nowrap;
            box-shadow: 0 3px 6px rgba(192, 64, 95, .3);
            text-shadow: 0 1px 1px rgba(0, 0, 0, .15);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
            z-index: 2;
        }

        .mv-plan-price-label {
            background: var(--primary-dark);
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: .03em;
            line-height: 1.2;
            white-space: nowrap;
        }

        .mv-plan-price-num {
            font-size: 15px;
            color: var(--text);
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
        }

        .mv-plan-price-num strong {
            font-size: 30px;
            color: var(--cta-red);
            font-weight: 900;
            letter-spacing: -.01em;
            margin: 0 2px;
        }

        .mv-plan-price-num small {
            font-size: 15px;
            color: var(--mid);
            margin-left: 2px;
        }

        /* ── MV 無料3点 強調カード（枠なし） ── */
        .mv-free-card {
            position: relative;
            padding: 0;
            margin: 22px 0 26px;
        }

        .mv-free-title {
            font-size: 16px;
            font-weight: 700;
            color: #2e2e2e;
            margin: 0 0 14px;
            padding: 8px 14px;
            display: block;
            text-align: center;
            background: linear-gradient(180deg, #fff7e0 0%, #ffeec0 100%);
            border-radius: 4px;
            letter-spacing: .02em;
        }
        .mv-free-title strong {
            color: #C62828;
            font-weight: 900;
            font-size: 1.08em;
        }

        .mv-free-body {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 18px;
        }

        .mv-free-item {
            flex: 0 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 26px;
            position: relative;
        }

        .mv-free-ribbon {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(180deg, #e54a6a 0%, #c0405f 100%);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            padding: 5px 14px;
            border-radius: 50px;
            white-space: nowrap;
            letter-spacing: .03em;
            box-shadow: 0 3px 6px rgba(192, 64, 95, .3);
        }

        .mv-free-ribbon::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid #c0405f;
        }

        .mv-free-icon {
            width: 116px;
            height: 116px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid #6b4a2f;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            box-shadow: 0 4px 10px rgba(107, 74, 47, .2);
            overflow: hidden;
            padding: 4px 6px 4px;
            box-sizing: border-box;
            gap: 2px;
        }

        .mv-free-icon svg,
        .mv-free-icon img {
            width: 76px;
            height: 76px;
            object-fit: contain;
            display: block;
        }

        .mv-free-icon-text {
            font-size: 13px;
            font-weight: 800;
            color: var(--text);
            line-height: 1.2;
            letter-spacing: .02em;
            text-align: center;
            white-space: nowrap;
        }

        .mv-free-note {
            display: block;
            margin-top: 4px;
            font-size: 12px;
            font-weight: 400;
            color: var(--mid);
            line-height: 1.5;
            letter-spacing: 0;
            text-align: center;
        }

        .mv-free-supnote {
            position: absolute;
            bottom: 14px;
            right: -2px;
            font-size: 10px;
            font-weight: 800;
            color: #c0405f;
            background: #fff;
            border: 1px solid #c0405f;
            border-radius: 10px;
            padding: 2px 6px;
            line-height: 1;
            white-space: nowrap;
            z-index: 2;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
            letter-spacing: 0;
        }

        @media(max-width:760px) {
            .mv-free-card {
                padding: 0;
                margin: 18px auto 22px;
                max-width: 480px;
            }

            .mv-free-body {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0px 0px;
                justify-items: center;
            }

            .mv-free-item {
                padding-top: 22px;
                flex: none;
                width: 100%;
                max-width: 160px;
            }

            .mv-free-ribbon {
                font-size: 12px;
                padding: 3px 10px;
            }

            .mv-free-ribbon::after {
                bottom: -4px;
                border-left-width: 4px;
                border-right-width: 4px;
                border-top-width: 5px;
            }

            .mv-free-icon {
                width: 120px;
                height: 120px;
                border-width: 2.5px;
                padding: 3px 4px 3px;
                gap: 2px;
            }

            .mv-free-icon svg,
            .mv-free-icon img {
                width: 80px;
                height: 80px;
            }

            .mv-free-icon-text {
                font-size: 13px;
                letter-spacing: -1px;
            }

            .mv-free-supnote {
                bottom: 10px;
                right: -2px;
                font-size: 9px;
                padding: 1px 4px;
            }
        }

        /* ── MV ゴールド メダル（パンフレットP2準拠） ── */
        .mv-medal-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            position: relative;
        }

        .mv-medal-note {
            font-size: 12px;
            color: var(--mid);
            line-height: 1;
            letter-spacing: .02em;
            position: absolute;
            bottom: 28px;
            right: 12px;
        }

        .mv-disclaimers-row {
            max-width: 1100px;
            padding: 8px 20px 0;
            margin-top: 8px;
            color: var(--mid);
        }
        .mv-disclaimers-row p {
            font-size: 11px;
            line-height: 1.6;
            margin: 0;
            letter-spacing: .02em;
            text-align: left;
        }

        .mv-disclaimers {
            padding: 14px 20px 22px;
            color: var(--mid);
            text-align: right;
        }

        .mv-disclaimers p {
            font-size: 12px;
            line-height: 1.6;
            white-space: nowrap;
            overflow-x: auto;
            margin: 0;
        }

        .mv-medals {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0;
            flex-wrap: nowrap;
            margin: 0;
            width: auto;
            position: relative;
            z-index: 2;
        }

        .mv-medals .mv-medal-cell + .mv-medal-cell {
            margin-top: -20px;
        }

        .mv-medal-img {
            display: block;
            width: 190px;
            height: 190px;
            object-fit: contain;
            flex: 0 0 auto;
        }

        /* スマホ用の上部メダル行（PCでは非表示） */
        .mv-medals--top {
            display: none;
        }

        /* PCでは .mv-top-row はラッパーとしてのみ機能 */
        .mv-top-row {
            display: contents;
        }

        /* PCでは sp-only の改行は無効 */
        br.sp-only {
            display: none;
        }
        @media(max-width:760px) {
            br.sp-only {
                display: inline;
            }
        }

        /* スタッフ画像：PCでは .mv-photo-col 内のみ表示。.mv-zero-wrap はラッパーのみ */
        .mv-zero-wrap {
            display: contents;
        }
        .mv-zero-staff {
            display: none;
        }
        @media(max-width:760px) {
            /* PCの右側スタッフ写真ブロック全体を非表示 */
            .mv-photo-col {
                display: none;
            }

            /* 「追加料金0円」見出しの右にスタッフ画像を配置 */
            .mv-zero-wrap {
                display: flex;
                align-items: center;
                gap: 8px;
                justify-content: center;
            }

            .mv-zero-headline {
                flex: 1 1 auto;
                min-width: 0;
                flex-wrap: nowrap;
            }

            /* 「追加料金 0円」を1行に収めるためサイズ調整 */
            .mv-zero-main {
                font-size: 30px;
            }

            .mv-zero-headline .zero-num {
                font-size: 2.6em;
            }

            .mv-zero-headline .mv-zero-yen {
                font-size: .55em;
            }

            .mv-zero-staff {
                display: block;
                width: auto;
                height: 110px;
                flex: 0 0 auto;
                object-fit: contain;
            }
        }

        @media(max-width:760px) {
            /* 元の画像横メダル行はスマホで非表示 */
            .mv-photo-col .mv-medals {
                display: none;
            }

            /* スマホ：メダル + エリアタグを横並びに */
            .mv-top-row {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                margin: 0 0 4px;
                flex-wrap: nowrap;
            }

            .mv-top-row .mv-area-tag {
                font-size: 8px;
                padding: 4px 6px;
                margin-bottom: 0;
                line-height: 1.3;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .mv-medals--top {
                flex-shrink: 1;
                min-width: 0;
            }

            .mv-medals--top .mv-medal-img {
                width: 80px;
                height: 80px;
            }

            /* テキストベースの高級メダル（スマホ用） */
            .mv-medal-cell--text {
                width: 78px;
                height: 78px;
                border-radius: 50%;
                background:
                    radial-gradient(circle at 32% 28%, rgba(255, 255, 240, .9) 0%, rgba(255, 240, 180, 0) 38%),
                    radial-gradient(circle at 65% 78%, rgba(120, 78, 0, .25) 0%, rgba(120, 78, 0, 0) 60%),
                    linear-gradient(155deg, #fff1b3 0%, #f1cb5a 28%, #d3a72e 55%, #a87216 100%);
                box-shadow:
                    0 6px 14px rgba(120, 78, 0, .35),
                    0 2px 4px rgba(0, 0, 0, .15),
                    inset 0 -4px 8px rgba(80, 50, 0, .25),
                    inset 0 2px 5px rgba(255, 255, 255, .55),
                    inset 0 0 0 1.5px rgba(255, 240, 180, .55),
                    inset 0 0 0 4px rgba(160, 110, 0, .35);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 1px;
                color: #4a2a00;
                text-align: center;
                position: relative;
                text-shadow: 0 1px 0 rgba(255, 240, 200, .5);
            }

            .mv-medal-cell--text::before {
                content: "";
                position: absolute;
                inset: 6px;
                border-radius: 50%;
                border: 1px dashed rgba(120, 78, 0, .35);
                pointer-events: none;
            }

            .mv-medal-cell--text + .mv-medal-cell--text {
                margin-left: -8px;
            }

            .mv-medal-text-label {
                font-size: 8px;
                font-weight: 800;
                letter-spacing: .04em;
                line-height: 1;
                color: #6b3a00;
            }

            .mv-medal-text-value {
                font-family: 'Oswald', 'Noto Sans JP', sans-serif;
                font-size: 24px;
                font-weight: 900;
                line-height: 1;
                letter-spacing: -.02em;
                color: #6b1f1f;
                text-shadow:
                    0 1px 0 rgba(255, 240, 200, .8),
                    0 -1px 1px rgba(0, 0, 0, .15);
            }

            .mv-medal-text-unit {
                font-family: 'Noto Sans JP', sans-serif;
                font-size: 10px;
                font-weight: 800;
                margin-left: 1px;
            }

            .mv-medal-text-note {
                position: absolute;
                right: 4px;
                bottom: 6px;
                font-size: 8px;
                font-weight: 700;
                color: #6b3a00;
                line-height: 1;
                opacity: .85;
            }

            .mv-medals--top .mv-medal-cell + .mv-medal-cell {
                margin-left: -6px;
            }

            .mv-medals {
                flex-direction: row;
                flex-wrap: nowrap;
                gap: 0;
                margin-top: -115px;
                width: 100%;
            }

            .mv-medals .mv-medal-cell + .mv-medal-cell {
                margin-top: 0;
                margin-left: -16px;
            }

            .mv-medal-img {
                width: 160px;
                height: 160px;
            }

            /* サービス名の上に小さく並べるメダル行 */
            .mv-medals--top {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                gap: 0;
                margin: 0 0 4px;
                width: 100%;
            }

            .mv-medals--top .mv-medal-cell {
                position: relative;
            }

            .mv-medals--top .mv-medal-cell + .mv-medal-cell {
                margin-left: -8px;
            }

            .mv-medals--top .mv-medal-img {
                width: 72px;
                height: 72px;
            }
        }

        /* MV CTA 2カードレイアウト */
        .mv-cta-area {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .mv-cta-card {
            position: relative;
            border-radius: 6px;
            padding: 30px 26px 26px;
            text-align: center;
            flex: 1 1 0;
            min-width: 0;
            max-width: none;
            display: flex;
            flex-direction: column;
        }

        .mv-cta-card .mv-btn-phone,
        .mv-cta-card .mv-btn-web {
            margin-top: auto;
        }

        .mv-cta-headline {
            text-align: center;
            margin-bottom: 24px;
        }

        .mv-cta-headline h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            margin: 0;
            letter-spacing: .02em;
        }

        .mv-cta-situation {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 50px;
            white-space: nowrap;
            letter-spacing: .04em;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
        }

        .mv-cta-situation--sim {
            background: var(--teal);
        }

        .mv-cta-situation--phone {
            background: var(--cta-red);
        }

        .mv-cta-card--featured {
            box-shadow: 0 8px 24px rgba(192, 64, 95, .25);
            transform: translateY(-4px);
        }

        .mv-cta-phone {
            background: var(--white);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
        }

        .mv-cta-member {
            background: #e0506e;
        }

        .mv-cta-member .mv-cta-card-icon {
            background: rgba(255, 255, 255, .22);
        }

        .mv-cta-member .mv-cta-card-icon svg {
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mv-cta-web {
            background: linear-gradient(140deg, #3aabb9 0%, #4CBBCA 60%, #5eccda 100%);
            box-shadow: 0 8px 28px rgba(76, 187, 202, .38);
        }

        .mv-cta-card-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mv-cta-phone .mv-cta-card-icon {
            background: #ffeaea;
        }

        .mv-cta-web .mv-cta-card-icon {
            background: rgba(255, 255, 255, .22);
        }

        .mv-cta-card-icon svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mv-cta-phone .mv-cta-card-icon svg {
            stroke: var(--cta-red);
        }

        .mv-cta-web .mv-cta-card-icon svg {
            stroke: #fff;
        }

        .mv-cta-card-label {
            font-size: 16px;
            color: var(--mid);
            margin-bottom: 5px;
        }

        .mv-tel-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 34px;
            font-weight: 900;
            color: var(--cta-red);
            letter-spacing: .05em;
            line-height: 1;
            margin-bottom: 4px;
        }

        .mv-tel-sub {
            font-size: 12px;
            color: var(--mid);
            margin-bottom: 16px;
        }

        .mv-btn-phone {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            width: 100%;
            min-height: 48px;
            background: #fff;
            color: var(--cta-red);
            font-size: 16px;
            font-weight: 700;
            padding: 13px 20px;
            border: 2px solid var(--cta-red);
            border-radius: 50px;
            box-shadow: 0 4px 14px rgba(198, 40, 40, .18);
            transition: background .2s, color .2s, transform .15s;
        }

        .mv-btn-phone:hover {
            background: var(--cta-red);
            color: #fff;
            transform: translateY(-1px);
        }

        .mv-cta-web-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .mv-cta-web-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, .85);
            margin-bottom: 18px;
            line-height: 1.7;
        }

        /* 割引額の特大強調表示 */
        .mv-cta-discount-big {
            display: block;
            text-align: center;
            margin: 6px 0 10px;
            line-height: 1.1;
        }
        .mv-cta-discount-big .mv-cta-discount-pre {
            display: inline-block;
            font-size: 16px;
            font-weight: 700;
            color: rgba(255,255,255,.92);
            margin-right: 4px;
            vertical-align: middle;
        }
        .mv-cta-discount-big .mv-cta-discount-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 56px;
            font-weight: 900;
            color: #ffd84d;
            letter-spacing: .01em;
            vertical-align: middle;
            line-height: 1;
        }
        .mv-cta-discount-big .mv-cta-discount-unit {
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            margin-left: 2px;
            vertical-align: middle;
        }
        .mv-cta-discount-big .mv-cta-discount-suffix {
            display: inline-block;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-left: 4px;
            vertical-align: middle;
        }
        @media(max-width:768px){
            .mv-cta-discount-big .mv-cta-discount-num { font-size: 44px; }
            .mv-cta-discount-big .mv-cta-discount-unit { font-size: 20px; }
            .mv-cta-discount-big .mv-cta-discount-suffix { font-size: 16px; }
        }

        .mv-btn-web {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            min-height: 48px;
            background: #fff;
            color: var(--text);
            font-size: 16px;
            font-weight: 700;
            padding: 13px 20px;
            border-radius: 50px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
            transition: background .2s, transform .15s, color .2s;
        }

        .mv-btn-web:hover {
            background: rgba(255, 255, 255, .92);
            transform: translateY(-1px);
            color: var(--text);
        }

        @media(max-width:640px) {
            .mv-cta-card {
                max-width: 100%;
                min-width: 0;
                padding: 26px 20px 22px;
            }

            .mv-cta-headline h2 {
                font-size: 20px;
            }

            .mv-cta-situation {
                font-size: 12px;
                padding: 4px 12px;
                top: -12px;
            }

            .mv-cta-web-title {
                font-size: 16px;
            }

            .mv-cta-web-desc {
                font-size: 16px;
            }

            .mv-tel-num {
                font-size: 26px;
            }

            .mv-cta-card-label,
            .mv-tel-sub {
                font-size: 16px;
            }
        }

        /* ── 20名までの少人数葬訴求 ── */
        .small-funeral-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--primary-pale) 100%);
            padding: 50px 0;
        }

        .small-funeral-inner {
            display: flex;
            align-items: center;
            gap: 36px;
            background: #fff;
            border-radius: 6px;
            padding: 32px 36px;
            border: 2px solid var(--primary);
            box-shadow: 0 6px 22px rgba(192, 64, 95, .08);
            position: relative;
            overflow: hidden;
        }

        .small-funeral-image {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 38%;
            pointer-events: none;
            z-index: 0;
        }

        .small-funeral-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .35) 25%, rgba(0, 0, 0, .85) 60%, #000 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .35) 25%, rgba(0, 0, 0, .85) 60%, #000 100%);
        }

        .small-funeral-badge,
        .small-funeral-text {
            position: relative;
            z-index: 1;
        }

        .small-funeral-badge {
            flex: 0 0 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, #d4567a 100%);
            color: #fff;
            text-align: center;
            box-shadow: 0 4px 16px rgba(192, 64, 95, .3);
        }

        .small-funeral-badge-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -.02em;
        }

        .small-funeral-badge-num small {
            display: block;
            font-size: 16px;
            font-weight: 700;
            margin-top: 4px;
            letter-spacing: .04em;
        }

        .small-funeral-badge-label {
            margin-top: 6px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: .04em;
            line-height: 1.3;
        }

        .small-funeral-text {
            flex: 1;
            min-width: 0;
        }

        .small-funeral-eyebrow {
            font-size: 16px;
            color: var(--primary);
            font-weight: 700;
            margin: 0 0 6px;
            letter-spacing: .06em;
        }

        .small-funeral-headline {
            font-size: 30px;
            font-weight: 900;
            color: var(--text);
            margin: 0 0 12px;
            line-height: 1.3;
            letter-spacing: .02em;
        }

        .small-funeral-headline em {
            color: var(--primary);
            font-style: normal;
        }

        .small-funeral-desc {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin: 0 0 14px;
            /* background: rgba(255, 255, 255, .65); */
            padding: 10px 14px;
            border-radius: 4px;
            /* backdrop-filter: blur(2px); */
            -webkit-backdrop-filter: blur(2px);
            text-shadow: 1px 1px 1px #fff;
        }

        .small-funeral-points {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .small-funeral-points li {
            position: relative;
            padding-left: 24px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
            font-weight: 600;
        }

        .small-funeral-points li::before {
            content: '✓';
            position: absolute;
            left: 4px;
            top: 0;
            color: var(--primary);
            font-weight: 800;
        }

        @media(max-width:768px) {
            .small-funeral-inner {
                flex-direction: column;
                gap: 20px;
                padding: 24px 20px;
                text-align: center;
            }

            .small-funeral-image {
                display: none;
            }

            .small-funeral-badge {
                width: 130px;
                height: 130px;
                flex: 0 0 auto;
            }

            .small-funeral-badge-num {
                font-size: 38px;
            }

            .small-funeral-headline {
                font-size: 22px;
            }

            .small-funeral-points li {
                text-align: left;
            }
        }

        /* ── プラン（MV直下・4列横並び） ── */
        .plans-section {
            background: var(--white);
            padding: 52px 0 60px;
        }

        .plans-section .sec-head {
            margin-bottom: 32px;
        }

        /* 割引制度のイントロ */
        .discount-intro {
            max-width: 880px;
            margin: 0 auto 32px;
            text-align: center;
            padding: 26px 28px;
            background: var(--primary-pale);
            border-radius: 6px;
        }

        .discount-intro-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 10px;
            letter-spacing: .02em;
        }

        .discount-intro-title em {
            color: var(--primary);
            font-style: normal;
        }

        .discount-intro-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin: 0 0 22px;
        }

        .discount-intro-text strong {
            color: var(--primary);
            font-weight: 800;
        }

        .discount-compare {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            align-items: stretch;
            margin-bottom: 14px;
        }

        .discount-compare-card {
            background: #fff;
            border-radius: 6px;
            padding: 18px 18px;
            text-align: left;
            border: 2px solid transparent;
        }

        .discount-compare-card--member {
            border-color: var(--primary);
        }

        .discount-compare-card--sim {
            border-color: var(--teal);
        }

        .discount-compare-head {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px dashed var(--border);
        }

        .discount-compare-head h4 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin: 0;
            letter-spacing: .02em;
        }

        .discount-compare-pill {
            display: inline-block;
            background: var(--cta-red);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 50px;
            letter-spacing: .04em;
        }

        .discount-compare-pill--sim {
            background: var(--teal);
        }

        .discount-compare-amount {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            padding: 8px 12px;
            background: var(--bg);
            border-radius: 6px;
            text-align: center;
        }

        .discount-compare-amount strong {
            color: var(--cta-red);
            font-size: 1.3em;
            font-weight: 900;
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            margin: 0 4px;
        }

        .discount-compare-card--sim .discount-compare-amount strong {
            color: var(--teal);
        }

        .discount-compare-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .discount-compare-card li {
            display: flex;
            gap: 8px;
            font-size: 16px;
            line-height: 1.5;
            color: var(--text);
        }

        .discount-compare-card li span {
            flex: 0 0 76px;
            color: var(--mid);
            font-size: 12px;
            padding: 2px 0;
        }

        .discount-compare-card li em {
            flex: 1;
            font-style: normal;
            font-weight: 700;
            color: var(--text);
        }

        .discount-compare-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Oswald", sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--mid);
            padding: 0 4px;
        }

        .discount-compare-note {
            font-size: 16px;
            line-height: 1.7;
            color: var(--mid);
            margin: 0;
            text-align: center;
        }

        .discount-compare-note strong {
            color: var(--cta-red);
            font-weight: 700;
        }

        @media(max-width:768px) {
            .discount-compare {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .discount-compare-vs {
                padding: 6px 0;
            }
        }

        @media(max-width:560px) {
            .discount-intro {
                padding: 20px 16px;
            }

            .discount-intro-title {
                font-size: 20px;
            }

            .discount-intro-text {
                font-size: 16px;
            }

            .discount-compare-head h4 {
                font-size: 16px;
            }

            .discount-compare-amount {
                font-size: 16px;
            }
        }

        /* トグルスイッチ */
        .plans-toggle-wrap {
            max-width: 720px;
            margin: 0 auto 32px;
            text-align: center;
            position: relative;
        }

        .plans-toggle-lead {
            font-size: 16px;
            color: var(--mid);
            margin: 0 0 10px;
            font-weight: 600;
        }

        /* タブ切替ヒント（タブ上にオーバーレイ） */
        .plans-toggle-hint {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding: 6px 12px 5px;
            background: rgba(40, 40, 40, .82);
            border-radius: 6px;
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
            backdrop-filter: blur(4px);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            pointer-events: none;
            transition: opacity .4s ease;
        }

        .plans-toggle-hint-arrows {
            display: block;
            width: 44px;
            height: 12px;
            line-height: 0;
        }

        .plans-toggle-hint-arrows svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .plans-toggle-hint-hand {
            display: block;
            width: 20px;
            height: 26px;
            line-height: 0;
            animation: handTapPulse 1.6s ease-in-out infinite;
        }

        .plans-toggle-hint-hand svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .plans-toggle-hint-label {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            letter-spacing: .02em;
            margin-top: 1px;
        }

        @keyframes handTapPulse {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-3px) scale(1.06);
            }
        }

        /* タブをクリック後はヒントを非表示にフェード */
        .plans-toggle-wrap.is-used .plans-toggle-hint {
            opacity: 0;
            visibility: hidden;
        }

        .plans-toggle-wrap.is-used .plans-toggle-hint-hand {
            animation: none;
        }

        .plans-toggle {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: #f1f1f1;
            border-radius: 50px;
            padding: 6px;
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, .08);
        }

        .plans-toggle-slider {
            position: absolute;
            top: 6px;
            bottom: 6px;
            left: 6px;
            width: calc(50% - 6px);
            background: linear-gradient(135deg, var(--primary) 0%, #d4567a 100%);
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(192, 64, 95, .3);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1), background .3s;
            z-index: 1;
        }

        .plans-toggle[data-active="simulation"] .plans-toggle-slider {
            transform: translateX(100%);
            background: linear-gradient(135deg, var(--teal) 0%, #5eccda 100%);
            box-shadow: 0 4px 12px rgba(76, 187, 202, .3);
        }

        .plans-toggle-option {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            padding: 16px 12px;
            background: transparent;
            border: none;
            color: var(--mid);
            cursor: pointer;
            transition: color .3s;
        }

        .plans-toggle-option.is-active {
            color: #fff;
        }

        .plans-toggle-option:not(.is-active):hover {
            color: var(--text);
        }

        .plans-toggle-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .04em;
            padding: 2px 8px;
            background: #ffd84d;
            color: #5a3a00;
            border-radius: 50px;
            line-height: 1.2;
            margin-bottom: 2px;
        }

        .plans-toggle-option:not(.is-active) .plans-toggle-badge {
            background: var(--cta-red);
            color: #fff;
        }

        .plans-toggle-label {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: .02em;
        }

        .plans-toggle-sub {
            font-size: 12px;
            font-weight: 600;
            opacity: .9;
            letter-spacing: .02em;
        }

        @media(max-width:560px) {
            .plans-toggle-label {
                font-size: 16px;
            }

            .plans-toggle-sub {
                font-size: 12px;
                line-height: 1.4;
            }

            .plans-toggle-option {
                padding: 10px 6px;
            }

            .plans-toggle-badge {
                font-size: 12px;
                padding: 2px 6px;
            }

            .plans-toggle-hint {
                padding: 8px 14px 6px;
            }

            .plans-toggle-hint-arrows {
                width: 48px;
                height: 14px;
            }

            .plans-toggle-hint-hand {
                width: 24px;
                height: 30px;
            }

            .plans-toggle-hint-label {
                font-size: 12px;
            }
        }

        /* 価格バリアント切替 */
        .plans-wrapper[data-active="member"] .plan-price-variant[data-variant="simulation"],
        .plans-wrapper[data-active="simulation"] .plan-price-variant[data-variant="member"] {
            display: none;
        }

        /* 割引制度カード（タブ連動） */
        .plans-wrapper[data-active="member"] .plans-dflow-variant[data-variant="simulation"],
        .plans-wrapper[data-active="simulation"] .plans-dflow-variant[data-variant="member"] {
            display: none;
        }

        /* タブ直下の適用条件リンク（plans-wrapperの外） */
        .plans-stripe.is-tab-member .plan-condition-trigger-row .plans-dflow-variant[data-variant="simulation"],
        .plans-stripe.is-tab-simulation .plan-condition-trigger-row .plans-dflow-variant[data-variant="member"] {
            display: none;
        }

        /* タブ連動の着色帯（タブ〜会員適用条件の範囲のみ） */
        .plans-stripe {
            transition: background-color .4s ease;
            padding: 32px 0 36px;
            margin-top: 12px;
        }

        .plans-stripe.is-tab-member {
            background: rgba(192, 64, 95, .05);
        }

        .plans-stripe.is-tab-simulation {
            background: rgba(76, 187, 202, .06);
        }

        /* 切替時のフラッシュアニメーション */
        .plan-price-variant {
            animation: priceVariantSwitch .55s ease-out;
        }

        .plans-dflow-variant {
            animation: priceVariantSwitch .55s ease-out;
        }

        @keyframes priceVariantSwitch {
            0% {
                opacity: 0;
                transform: translateY(6px);
            }
            40% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* タブクリック直後の強調表示 */
        .plans-wrapper.is-switched .plan-price-area {
            animation: priceAreaFlash .8s ease-out;
        }

        @keyframes priceAreaFlash {
            0% {
                box-shadow: 0 0 0 0 rgba(192, 64, 95, .35);
            }
            40% {
                box-shadow: 0 0 0 6px rgba(192, 64, 95, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(192, 64, 95, 0);
            }
        }

        .plans-wrapper.is-switched[data-active="simulation"] .plan-price-area {
            animation-name: priceAreaFlashSim;
        }

        @keyframes priceAreaFlashSim {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 187, 202, .35);
            }
            40% {
                box-shadow: 0 0 0 6px rgba(76, 187, 202, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(76, 187, 202, 0);
            }
        }

        .plans-dflow-area {
            margin-top: 40px;
        }

        .plans-dflow-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 22px;
            color: var(--text);
        }

        .plans-dflow-link-arrow {
            font-size: 22px;
            color: var(--mid);
            line-height: 1;
        }

        .plans-dflow-link-text {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: .02em;
            color: var(--text);
            text-align: center;
        }

        .plans-dflow-link-text strong {
            color: var(--primary);
            font-weight: 800;
        }

        .plans-dflow-question {
            text-align: center;
            font-size: 16px;
            font-weight: 700;
            color: var(--mid);
            margin: 0 0 8px;
            letter-spacing: .02em;
        }

        .plans-dflow-question strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        @media(max-width:560px) {
            .plans-dflow-link-text {
                font-size: 20px;
            }
        }

        .plan-label--sim {
            background: var(--teal) !important;
        }

        @media(max-width:560px) {
            .plans-tab {
                min-width: 0;
                width: calc(50% - 6px);
                padding: 12px 12px;
            }

            .plans-tab-label {
                font-size: 16px;
            }

            .plans-tab-sub {
                font-size: 12px;
            }
        }

        .plans-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .plan-card {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
            display: flex;
            flex-direction: column;
            transition: transform .2s, box-shadow .2s;
        }

        .plan-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
        }

        .plan-card-top {
            padding: 14px 14px 10px;
            color: var(--white);
            text-align: center;
        }

        .plan-kasou .plan-card-top {
            background: var(--teal);
        }

        .plan-noukan .plan-card-top {
            background: var(--green);
        }

        .plan-ichinichi .plan-card-top {
            background: var(--orange);
        }

        .plan-futsuka .plan-card-top {
            background: var(--purple);
        }

        .plan-subtitle {
            font-size: 16px;
            opacity: .92;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .plan-name-h {
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
            font-family: "Oswald", "Noto Sans JP", sans-serif;
        }

        .plan-name-h .sfx {
            font-size: 20px;
            font-weight: 400;
            margin-left: 4px;
            font-family: "Oswald", "Noto Sans JP", sans-serif;
        }

        .plan-photo {
            width: 100%;
            height: 110px;
            object-fit: cover;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #aaa;
        }

        .plan-photo img {
            width: 100%;
            height: 110px;
            object-fit: cover;
        }

        .plan-card-body {
            padding: 14px 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .plan-flow {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            margin-bottom: 14px;
        }

        .p-step {
            font-size: 12px;
            padding: 8px 6px;
            border-radius: 6px;
            font-weight: 500;
            white-space: nowrap;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .p-step.on {
            background: #555;
            color: #fff;
        }

        .p-step.off {
            background: #e0e0e0;
            color: #bbb;
        }

        .p-arr {
            font-size: 12px;
            color: #ccc;
        }

        .plan-meta {
            font-size: 13px;
            color: var(--mid);
            margin-bottom: 0;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .plan-meta-item {
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 3px 8px;
        }

        .plan-price-area {
            margin-bottom: 12px;
            flex: 1;
        }

        .plan-price-variant {
            display: grid;
            grid-template-columns: auto 1fr;
            column-gap: 10px;
            row-gap: 6px;
            align-items: center;
        }

        .plan-price-variant > .plan-regular {
            grid-column: 1 / -1;
        }

        .plan-price-variant > .plan-label {
            grid-column: 1;
            justify-self: start;
        }

        .plan-price-variant > .plan-price-main {
            grid-column: 2;
        }

        .plan-label {
            display: inline-block;
            background: #b24d68;
            color: #fff;
            font-size: 12px;
            font-weight: 400;
            padding: 5px 5px;
            border-radius: 6px;
            margin-bottom: 7px;
            text-align: center;
            line-height: 1.4;
        }

        .plan-label-num {
            font-weight: 900;
            font-size: 1.15em;
        }

        .plan-price-main {
            display: flex;
            align-items: end;
            gap: 1px;
            line-height: 1;
            font-family: "Google Sans", sans-serif;
            font-optical-sizing: auto;
            font-variation-settings: "GRAD" 0;
            width: 100%;
            flex-wrap: wrap;
        }

        .plan-price-num {
            font-size: 30px;
            font-weight: 700;
            font-family: "Oswald", "Noto Sans JP", sans-serif;
            letter-spacing: 0px;
        }

        .plan-kasou .plan-price-num {
            color: var(--teal);
        }

        .plan-noukan .plan-price-num {
            color: var(--green);
        }

        .plan-ichinichi .plan-price-num {
            color: var(--orange);
        }

        .plan-futsuka .plan-price-num {
            color: var(--purple);
        }

        .plan-price-tax-unit {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2px;
            margin-left: 2px;
        }

        .plan-price-tax {
            font-size: 12px;
            color: var(--mid);
        }

        .plan-price-unit {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .plan-price-incl {
            font-size: 16px;
            color: var(--mid);
            margin-left: 0;
            width: 100%;
            margin-top: 3px;
        }

        .plan-regular {
            font-size: 16px;
            color: var(--mid);
            /* background: #f5f5f5; */
            border-radius: 3px;
            padding: 6px 10px;
            margin-top: 0;
            text-align: center;
        }

        .plan-regular-tax {
            display: block;
            text-align: right;
        }

        .plan-btn {
            display: block;
            text-align: center;
            padding: 12px 22px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            border: 2px solid;
            background: #fff;
            transition: background .2s, color .2s;
        }

        .plan-kasou .plan-btn {
            border-color: var(--teal);
            color: var(--teal);
        }

        .plan-noukan .plan-btn {
            border-color: var(--green);
            color: var(--green);
        }

        .plan-ichinichi .plan-btn {
            border-color: var(--orange);
            color: var(--orange);
        }

        .plan-futsuka .plan-btn {
            border-color: var(--purple);
            color: var(--purple);
        }

        .plan-kasou .plan-btn:hover {
            background: var(--teal);
            color: #fff;
        }

        .plan-noukan .plan-btn:hover {
            background: var(--green);
            color: #fff;
        }

        .plan-ichinichi .plan-btn:hover {
            background: var(--orange);
            color: #fff;
        }

        .plan-futsuka .plan-btn:hover {
            background: var(--purple);
            color: #fff;
        }

        /* ── 数字バー ── */
        .facts-bar {
            background: var(--text);
            padding: 28px 0;
        }

        .facts-row {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fact-item {
            flex: 1;
            text-align: center;
            padding: 10px 16px;
            border-right: 1px solid rgba(255, 255, 255, .15);
        }

        .fact-item:last-child {
            border-right: none;
        }

        @media(max-width:760px) {
            .facts-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                align-items: stretch;
                gap: 12px;
                padding: 0 16px;
            }

            .fact-item {
                border: 1px solid rgba(255, 255, 255, 0.4);
                border-radius: 6px;
                padding: 16px 10px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .fact-item:last-child {
                border-right: 1px solid rgba(255, 255, 255, 0.4);
            }
        }

        .fact-val {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
            color: var(--primary);
        }

        .fact-val .u {
            font-size: 16px;
        }

        .fact-lbl {
            font-size: 16px;
            color: rgba(255, 255, 255, .7);
            margin-top: 4px;
        }

        .fact-sub {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 2px 25px;
            border-radius: 50px;
            margin-top: 6px;
        }

        /* ── 式場横スクロール ── */
        .venue-section {
            background: var(--bg);
        }

        /* 公営斎場セクション内 統計バッジ */
        .venue-stats {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 20px;
            padding: 14px 32px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,.06);
        }
        .venue-stat {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .venue-stat-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .venue-stat-unit {
            font-size: 16px;
            color: var(--text);
            font-weight: 800;
            margin-left: 2px;
        }
        .venue-stat-label {
            font-size: 16px;
            color: var(--mid);
            font-weight: 700;
        }
        .venue-stat-sep {
            font-size: 28px;
            color: var(--border);
            font-weight: 300;
        }
        @media(max-width:560px){
            .venue-stats { padding: 12px 18px; gap: 14px; }
            .venue-stat-num { font-size: 32px; }
            .venue-stat-unit { font-size: 16px; }
            .venue-stat-label { font-size: 12px; }
            .venue-stat-sep { font-size: 22px; }
        }

        .venue-note {
            padding-top: 14px;
        }

        .venue-note p {
            font-size: 16px;
            color: var(--mid);
            margin: 0;
            text-align: right;
        }

        .venue-scroll-wrap {
            overflow-x: auto;
            padding: 8px 24px 24px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }

        .venue-scroll {
            display: flex;
            gap: 16px;
            width: max-content;
        }

        .venue-card {
            width: 220px;
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0, 0, 0, .09);
            flex-shrink: 0;
            display: block;
            color: inherit;
            text-decoration: none;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        a.venue-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
        }

        .venue-card-img {
            position: relative;
            height: 130px;
        }

        .venue-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .venue-price {
            position: absolute;
            bottom: 8px;
            left: 8px;
            font-size: 16px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
        }

        .venue-price--free {
            background: var(--teal);
            color: #fff;
        }

        .venue-price--paid {
            background: #e06080;
            color: #fff;
        }

        .venue-card-body {
            padding: 10px 12px 12px;
        }

        .venue-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .venue-area {
            font-size: 16px;
            color: var(--mid);
        }

        /* ── 式場をさがす ── */
        .saijyo-section {
            background: #fff;
        }

        .saijyo-head-row {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .saijyo-head-text {
            flex: 1;
            min-width: 220px;
        }

        .saijyo-eyebrow {
            display: inline-block;
            font-size: 16px;
            font-weight: 700;
            color: var(--mid);
            background: var(--bg);
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 10px;
            letter-spacing: .06em;
        }

        .saijyo-title {
            font-size: 22px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .saijyo-desc {
            font-size: 20px;
            line-height: 1.8;
            color: var(--text);
        }

        .saijyo-map {
            flex: 0 0 320px;
        }

        .saijyo-map-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .saijyo-pref-block {
            margin-bottom: 24px;
        }

        .saijyo-pref-header {
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 6px 6px 0 0;
            margin-bottom: 0;
        }

        .saijyo-city-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid #ddd;
            border-top: none;
        }

        .saijyo-city {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 11px 16px;
            font-size: 16px;
            color: var(--text);
            text-decoration: none;
            border-right: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            transition: background .15s, color .15s;
        }

        .saijyo-city:nth-child(4n) {
            border-right: none;
        }

        .saijyo-city:hover {
            background: var(--primary-pale);
            color: var(--primary);
        }

        .saijyo-city span {
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
        }

        @media(max-width:640px) {
            .saijyo-city-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .saijyo-city:nth-child(4n) {
                border-right: 1px solid #ddd;
            }

            .saijyo-city:nth-child(2n) {
                border-right: none;
            }

            .saijyo-map {
                display: none;
            }
        }

        /* ── 会員登録 ── */
        .member-section {
            background: var(--white);
        }

        .member-inner {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .member-text {
            flex: 1;
            min-width: 260px;
        }

        .member-eyebrow {
            display: inline-block;
            background: var(--teal);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 50px;
            margin-bottom: 14px;
            letter-spacing: .05em;
        }

        .member-text h2 {
            font-size: 26px;
            font-weight: 900;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .member-text h2 em {
            color: var(--primary);
            font-style: normal;
        }

        .member-text h2 strong {
            color: var(--teal);
            font-size: 36px;
        }

        .member-list {
            list-style: none;
            padding: 0;
            margin-bottom: 28px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .member-list li {
            font-size: 16px;
            line-height: 1.5;
        }

        .member-list li strong {
            color: var(--primary);
        }

        .btn-member {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 6px;
            text-decoration: none;
            transition: background .2s;
        }

        .btn-member:hover {
            background: var(--primary-dark);
        }

        .member-visual {
            flex: 0 0 200px;
            display: flex;
            justify-content: center;
        }

        .member-badge-big {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, var(--primary) 0%, #e8507a 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            box-shadow: 0 8px 28px rgba(200, 60, 100, .35);
        }

        .member-badge-label {
            font-size: 12px;
            font-weight: 700;
            opacity: .85;
            margin-bottom: 4px;
            letter-spacing: .05em;
        }

        .member-badge-price {
            font-size: 16px;
            line-height: 1.3;
        }

        .member-badge-price strong {
            font-size: 38px;
            font-weight: 900;
            font-family: "Oswald", sans-serif;
            display: block;
            line-height: 1;
        }

        .member-badge-price strong span {
            font-size: 20px;
        }

        @media(max-width:600px) {
            .member-visual {
                display: none;
            }
        }

        /* ── 選ばれる理由 ── */
        .reasons-section {
            background: var(--white);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .reason-card {
            border: 2px solid var(--primary-pale);
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
            text-align: center;
            transition: box-shadow .2s, transform .2s;
        }

        .reason-card:hover {
            /* hover effect disabled */
        }

        .reason-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--primary-pale);
        }

        .reason-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .3s;
        }

        .reason-card:hover .reason-image img {
            /* zoom effect disabled */
        }

        .reason-card h3,
        .reason-card p {
            padding-left: 22px;
            padding-right: 22px;
        }

        .reason-card h3 {
            padding-top: 22px;
        }

        .reason-card p {
            padding-bottom: 26px;
        }

        .reason-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .reason-card p {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.8;
        }

        .reason-card .reason-card-text {
            text-align: left;
        }

        /* ── 会員適用条件ポップアップ ── */
        .plan-condition-trigger-row {
            text-align: center;
            margin-top: 24px;
        }

        .plan-condition-trigger-row--top {
            margin-top: 0;
            margin-bottom: 18px;
        }

        .plan-condition-trigger-row--multi {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        @media(max-width:560px) {
            .plan-condition-trigger-row--multi {
                flex-direction: column;
                gap: 8px;
            }

            .plan-condition-trigger {
                font-size: 16px;
                padding: 9px 14px;
            }
        }

        .plan-condition-trigger--compare {
            border-color: var(--text);
            color: var(--text);
        }

        .plan-condition-trigger--compare:hover {
            background: var(--text);
            color: #fff;
            border-color: var(--text);
        }

        .plan-condition-trigger--compare:hover .plan-condition-trigger-icon {
            color: #fff;
        }

        .plan-condition-trigger--compare .plan-condition-trigger-icon {
            color: var(--text);
            font-size: 16px;
        }

        .plan-condition-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 16px;
            font-weight: 600;
            padding: 10px 18px;
            border-radius: 50px;
            cursor: pointer;
            transition: background .15s, border-color .15s, color .15s;
        }

        .plan-condition-trigger:hover {
            background: var(--primary-pale);
            border-color: var(--primary);
            color: var(--primary);
        }

        .plan-condition-trigger-icon {
            color: var(--primary);
            font-size: 16px;
            line-height: 1;
        }

        .plan-condition-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .55);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .plan-condition-modal.is-open {
            display: flex;
        }

        .plan-condition-modal-inner {
            position: relative;
            background: #fff;
            border-radius: 6px;
            padding: 32px 28px 24px;
            max-width: 480px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
        }

        .plan-condition-modal-close {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 36px;
            height: 36px;
            border: none;
            background: transparent;
            font-size: 26px;
            line-height: 1;
            color: var(--mid);
            cursor: pointer;
            border-radius: 50%;
        }

        .plan-condition-modal-close:hover {
            background: var(--bg);
            color: var(--text);
        }

        .plan-condition-modal-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            text-align: center;
        }

        .plan-condition-modal-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .plan-condition-modal-list li {
            position: relative;
            padding: 12px 14px 12px 36px;
            background: var(--bg);
            border-left: 3px solid var(--primary);
            border-radius: 6px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
        }

        .plan-condition-modal-list li::before {
            content: '✓';
            position: absolute;
            left: 12px;
            top: 12px;
            color: var(--primary);
            font-weight: 800;
        }

        .plan-condition-modal-list li small {
            display: block;
            font-size: 16px;
            color: var(--mid);
            margin-top: 4px;
        }

        .plan-condition-modal-actions {
            text-align: center;
        }

        .plan-condition-modal-link {
            display: inline-block;
            font-size: 16px;
            color: var(--primary);
            font-weight: 700;
            text-decoration: underline;
        }

        .plan-condition-modal-link:hover {
            color: #a01c1c;
        }

        @media(max-width:480px) {
            .plan-condition-modal-inner {
                padding: 28px 20px 20px;
            }

            .plan-condition-modal-title {
                font-size: 20px;
            }
        }

        /* ── 割引制度フロー ── */
        .discount-flow-section {
            background: var(--bg);
        }

        .dflow-card {
            background: #fff;
            border-radius: 6px;
            padding: 28px 28px 24px;
            margin-bottom: 20px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
            border: 1px solid var(--border);
        }

        .dflow-card--featured {
            border: 2px solid var(--primary);
            background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
        }

        .dflow-card-head {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 16px;
            align-items: center;
            padding-bottom: 18px;
            border-bottom: 1px dashed var(--border);
            margin-bottom: 18px;
        }

        .dflow-pill {
            justify-self: end;
        }

        .dflow-num {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 64px;
            padding: 6px 10px;
            background: var(--primary);
            color: #fff;
            border-radius: 6px 6px 0 0;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .06em;
            line-height: 1.2;
            position: relative;
            top: -28px;
        }

        .dflow-num::before {
            content: '割引';
            display: block;
            font-size: 12px;
            opacity: .9;
            margin-bottom: 2px;
        }

        .dflow-num--sim {
            background: var(--teal);
        }

        .dflow-title-area {
            flex: 1;
            min-width: 0;
        }

        .dflow-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 4px;
            letter-spacing: .02em;
        }

        .dflow-title em {
            color: var(--primary);
            font-style: normal;
        }

        .dflow-sub {
            font-size: 16px;
            color: var(--mid);
            margin: 0;
            line-height: 1.5;
        }
        /* ピンクマーカー（強調用） */
        .hl-pink {
            background: linear-gradient(transparent 60%, #fcd6e0 60%);
            padding: 0 2px;
            font-weight: 800;
            color: var(--text);
        }

        .dflow-pill {
            display: inline-block;
            padding: 8px 16px;
            background: var(--cta-red);
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            border-radius: 50px;
            white-space: nowrap;
            letter-spacing: .02em;
        }

        .dflow-pill--best {
            background: var(--cta-red);
        }

        .dflow-pill--sim {
            background: var(--teal);
        }

        .dflow-amounts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 16px;
        }

        .dflow-card .dflow-amounts:has(> :only-child) {
            grid-template-columns: 1fr;
        }

        .dflow-amount {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--bg);
            border-radius: 6px;
            border-left: 4px solid var(--primary);
        }

        .dflow-amount--sim {
            border-left-color: var(--teal);
        }

        .dflow-amount-label {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .dflow-amount-num {
            font-size: 16px;
            font-weight: 900;
            color: var(--cta-red);
        }

        .dflow-amount--sim .dflow-amount-num {
            color: var(--teal);
        }

        .dflow-arrow {
            text-align: center;
            font-size: 20px;
            color: var(--primary);
            line-height: 1;
            margin: 14px 0 10px;
        }

        .dflow-section-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            text-align: center;
            margin: 0 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
            width: auto;
            letter-spacing: .04em;
        }

        .dflow-card--featured > .dflow-section-title {
            display: block;
            width: max-content;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .dflow-member-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: stretch;
            margin: 0 0 20px;
        }

        .dflow-membercard {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px;
            background: linear-gradient(135deg, #fff8e6 0%, #fff 100%);
            border-radius: 6px;
            border: 1px dashed #ffd84d;
        }

        .dflow-membercard img {
            max-width: 280px;
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }

        .dflow-membercard.is-empty {
            display: none;
        }

        .dflow-membercard-caption {
            font-size: 16px;
            color: var(--mid);
            margin: 0;
            font-weight: 600;
            letter-spacing: .04em;
        }

        .dflow-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .dflow-benefits--side {
            grid-template-columns: 1fr;
            margin: 0;
            gap: 10px;
            align-content: center;
        }

        .dflow-benefits--side li strong {
            margin-bottom: 0;
        }

        .dflow-benefits-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            margin-right: 8px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            font-size: 16px;
            font-weight: 800;
            line-height: 1;
            vertical-align: middle;
            flex-shrink: 0;
        }

        .dflow-benefits li {
            background: #fff;
            padding: 12px 14px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--mid);
            border-radius: 6px;
        }

        .dflow-benefits li strong {
            display: block;
            color: var(--text);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        @media(max-width:768px) {
            .dflow-benefits {
                grid-template-columns: 1fr;
            }

            .dflow-member-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .dflow-details {
            margin-bottom: 20px;
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        .dflow-details summary {
            font-size: 16px;
            font-weight: 800;
            color: var(--primary);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 14px 18px;
            background: #fff;
            border: 2px solid var(--primary);
            border-radius: 6px;
            transition: background .2s, color .2s;
            letter-spacing: .02em;
        }

        .dflow-details summary:hover {
            background: var(--primary-pale);
        }

        .dflow-details summary::-webkit-details-marker {
            display: none;
        }

        .dflow-details summary::after {
            content: '＋';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            transition: transform .25s ease, background .2s;
            flex-shrink: 0;
        }

        .dflow-details[open] summary {
            background: var(--primary-pale);
            border-radius: 6px 6px 0 0;
        }

        .dflow-details[open] summary::after {
            transform: rotate(135deg);
            background: var(--cta-red);
        }

        .dflow-details-body {
            margin-top: 12px;
            padding: 14px 16px;
            background: var(--bg);
            border-radius: 6px;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
        }

        .dflow-details-body ol {
            margin: 0;
            padding-left: 20px;
        }

        .dflow-details-body li {
            margin-bottom: 4px;
        }

        /* リッチ詳細 */
        .dflow-details-body--rich {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .dflow-rich-lead {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin: 0;
        }

        .dflow-rich-lead strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        .dflow-rich-lead small {
            display: block;
            font-size: 12px;
            color: var(--mid);
            margin-top: 4px;
        }

        .dflow-rich-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        @media(max-width:640px) {
            .dflow-rich-row {
                grid-template-columns: 1fr;
            }
        }

        .dflow-rich-block {
            background: #fff;
            border-radius: 6px;
            padding: 14px 16px;
            border: 1px solid var(--border);
        }

        .dflow-rich-block h5 {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 10px;
            padding-bottom: 6px;
            border-bottom: 2px solid var(--primary);
            letter-spacing: .04em;
        }

        .dflow-rich-discounts {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .dflow-rich-discounts li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: var(--bg);
            border-radius: 4px;
            font-size: 16px;
        }

        .dflow-rich-discounts li span {
            color: var(--text);
            font-weight: 700;
        }

        .dflow-rich-discounts li em {
            font-style: normal;
            color: var(--cta-red);
            font-weight: 800;
            font-size: 16px;
        }

        /* 価格比較バー（通常→会員）横3列 */
        .dflow-discount-chart {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        .dflow-discount-chart li {
            background: #fff;
            border-radius: 8px;
            padding: 14px 16px;
            box-shadow: 0 1px 4px rgba(0,0,0,.06);
            display: flex;
            flex-direction: column;
        }
        @media(max-width:768px){
            .dflow-discount-chart {
                grid-template-columns: 1fr;
            }
        }
        .price-row-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            flex-wrap: wrap;
            gap: 6px;
        }
        .price-plan-name {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
        }
        .price-savings-badge {
            background: linear-gradient(135deg, #C62828, #e0506e);
            color: #fff;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 900;
            white-space: nowrap;
            box-shadow: 0 2px 6px rgba(198,40,40,.25);
        }
        .price-savings-badge .num {
            font-family: "Oswald", sans-serif;
            font-size: 16px;
            color: #ffd84d;
            margin: 0 2px;
        }
        /* 縦棒グラフ */
        .price-bars {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 24px;
            min-height: 220px;
            padding-top: 8px;
            margin-top: auto;
        }
        .price-bar-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 220px;
            justify-content: flex-end;
        }
        .price-bar {
            width: 56px;
            border-radius: 4px 4px 0 0;
            transform-origin: bottom center;
            animation: barGrowVertical 1s cubic-bezier(.2,.8,.3,1) both;
        }
        .price-bar--regular {
            background: #b0b0b0;
        }
        .price-bar--member {
            background: linear-gradient(180deg, #E06080 0%, #C0405F 100%);
            box-shadow: 0 2px 8px rgba(224, 96, 128, .25);
        }
        .price-bar--competitor {
            background: #888;
        }
        .price-bar--addition {
            background: linear-gradient(180deg, #ff6b6b 0%, #d04848 100%);
            box-shadow: 0 2px 4px rgba(208, 72, 72, .2);
            border-radius: 4px 4px 0 0;
        }
        .price-bar--base {
            border-radius: 0 !important;
        }
        .price-bar-col--wagaya .price-bar-amount {
            color: var(--primary);
        }
        .price-bar-addition-note {
            display: block;
            font-size: 11px;
            color: #d04848;
            font-weight: 700;
            margin-top: 2px;
            white-space: nowrap;
        }
        .price-bar-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin-top: 18px;
            padding-top: 14px;
            border-top: 1px dashed #ddd;
            font-size: 12px;
            color: var(--mid);
            justify-content: center;
        }
        .price-bar-legend-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .price-bar-legend-color {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 2px;
            flex-shrink: 0;
        }
        .price-bar-note {
            font-size: 12px;
            color: var(--mid);
            text-align: center;
            margin-top: 10px;
            line-height: 1.6;
        }
        .price-bar-amount {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 16px;
            font-weight: 900;
            color: var(--text);
            margin-top: 6px;
            text-align: center;
            white-space: nowrap;
        }
        .price-bar--regular ~ .price-bar-amount {
            color: #888;
            text-decoration: line-through;
        }
        .price-bar-label {
            font-size: 12px;
            color: var(--mid);
            margin-top: 2px;
            text-align: center;
            font-weight: 700;
        }
        .price-bar-col--member .price-bar-amount {
            color: var(--primary);
        }
        @keyframes barGrowVertical {
            from { transform: scaleY(0); opacity: 0; }
            to   { transform: scaleY(1); opacity: 1; }
        }
        @media(max-width:560px){
            /* スマホ: バーグラフを横スクロール可能に */
            .dflow-rich-block {
                max-width: 100%;
                overflow: hidden;
                padding: 12px 0;
            }
            .price-bars {
                gap: 18px;
                min-height: 180px;
                overflow-x: auto;
                overflow-y: hidden;
                justify-content: flex-start;
                padding: 8px 16px;
                -webkit-overflow-scrolling: touch;
                width: 100%;
            }
            .price-bar-col {
                height: 180px;
                flex: 0 0 70px;
                min-width: 70px;
                max-width: 70px;
            }
            .price-bar { width: 56px; }
            .price-bar-amount { font-size: 13px; }
            .price-bar-label { font-size: 12px; }
            .price-plan-name { font-size: 13px; }
            .price-bar-addition-note { font-size: 10px; }
        }

        .dflow-rich-note {
            font-size: 12px;
            color: var(--mid);
            margin: 0 0 8px;
            line-height: 1.5;
        }

        .dflow-rich-fields {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .dflow-rich-fields li {
            display: inline-block;
            padding: 5px 12px;
            background: var(--primary-pale);
            color: var(--primary);
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            margin: 0;
        }

        .dflow-rich-steps {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .dflow-rich-steps li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: var(--bg);
            border-radius: 4px;
            font-size: 16px;
            color: var(--text);
            margin: 0;
        }

        .dflow-rich-step-num {
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--teal);
            color: #fff;
            font-family: "Oswald", sans-serif;
            font-size: 16px;
            font-weight: 800;
        }

        .dflow-rich-step-num--opt {
            background: var(--mid);
        }

        .dflow-rich-step-num--done {
            background: var(--primary);
        }

        .dflow-rich-caution {
            font-size: 12px;
            line-height: 1.7;
            color: var(--mid);
            margin: 0;
            padding: 10px 12px;
            background: #fff8e6;
            border-left: 3px solid #ffd84d;
            border-radius: 0 4px 4px 0;
        }

        .dflow-rich-contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 14px 16px;
            background: var(--primary-pale);
            border-radius: 6px;
            text-align: center;
        }

        .dflow-rich-contact span {
            font-size: 16px;
            color: var(--text);
            font-weight: 700;
        }

        .dflow-rich-contact a {
            font-family: "Oswald", sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--cta-red);
            letter-spacing: .04em;
        }

        .dflow-cta {
            display: inline-block;
            text-align: center;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
            transition: transform .2s, box-shadow .2s, background .2s;
        }

        .dflow-card--featured > .dflow-cta {
            display: block;
            width: max-content;
            max-width: 100%;
            margin: 0 auto;
        }

        .dflow-cta--bottom {
            display: block;
            width: max-content;
            max-width: 100%;
            margin: 18px auto 0;
        }

        .dflow-cta:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        .dflow-cta--primary {
            background: var(--primary);
        }

        .dflow-cta--primary:hover {
            background: #a01c1c;
            box-shadow: 0 6px 16px rgba(192, 64, 95, .3);
        }

        .dflow-cta--sim {
            background: var(--teal);
        }

        .dflow-cta--sim:hover {
            background: #2f96a6;
            box-shadow: 0 6px 16px rgba(76, 187, 202, .3);
        }

        /* 比較トリガー */
        .dflow-compare-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            margin: 0 auto 14px;
            background: #fff;
            color: var(--primary);
            border: 1.5px solid var(--primary);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s, color .2s;
        }

        .dflow-compare-trigger:hover {
            background: var(--primary);
            color: #fff;
        }

        .dflow-compare-trigger--sim {
            color: var(--teal);
            border-color: var(--teal);
        }

        .dflow-compare-trigger--sim:hover {
            background: var(--teal);
            color: #fff;
        }

        .dflow-card--featured > .dflow-compare-trigger,
        .dflow-card--compact > .dflow-compare-trigger {
            display: block;
            width: max-content;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        /* 比較モーダル */
        .discount-compare-modal-inner {
            max-width: 720px;
        }

        /* コンパクト版 */
        .dflow-card--compact {
            padding: 20px 24px 16px;
        }

        .dflow-compact-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .dflow-compact-info {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex: 1;
            min-width: 240px;
        }

        .dflow-num--compact {
            position: static;
            top: auto;
            flex-shrink: 0;
        }

        .dflow-compact-text {
            flex: 1;
            min-width: 0;
        }

        .dflow-compact-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 4px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            letter-spacing: .02em;
        }

        .dflow-compact-pill {
            display: inline-block;
            background: var(--teal);
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: .02em;
        }

        .dflow-compact-sub {
            font-size: 16px;
            color: var(--mid);
            margin: 0;
            line-height: 1.5;
        }

        .dflow-cta--compact {
            flex-shrink: 0;
            padding: 12px 24px;
            font-size: 16px;
            white-space: nowrap;
        }

        .dflow-card--compact .dflow-details {
            margin-top: 14px;
            margin-bottom: 0;
            padding-top: 12px;
        }

        /* 「念のため会員登録もおすすめ」ヒント */
        .dflow-tip {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: stretch;
            margin-top: 16px;
            padding: 16px 18px;
            background: linear-gradient(135deg, #fff 0%, var(--primary-pale) 100%);
            border: 1.5px dashed var(--primary);
            border-radius: 6px;
        }

        .dflow-tip-image {
            position: relative;
            aspect-ratio: 4 / 3;
            background: #f4ede4;
            border: 1px dashed #c9b89a;
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dflow-tip-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .dflow-tip-image-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: #a59078;
            letter-spacing: .04em;
            text-align: center;
            line-height: 1.5;
            pointer-events: none;
        }

        .dflow-tip-image img:not([src=""]) + .dflow-tip-image-placeholder {
            display: none;
        }

        .dflow-tip-image.is-empty .dflow-tip-image-placeholder {
            display: flex;
        }

        .dflow-tip-icon {
            font-size: 22px;
            line-height: 1;
            margin-right: 4px;
            vertical-align: middle;
        }

        .dflow-tip-text {
            flex: 1;
            min-width: 0;
            align-self: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .dflow-tip-lead {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 6px;
            line-height: 1.5;
            letter-spacing: .02em;
        }

        .dflow-tip-lead strong {
            color: var(--primary);
        }

        .dflow-tip-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            margin: 0 0 10px;
        }

        .dflow-tip-desc strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        .dflow-tip-link {
            align-self: flex-start;
            display: inline-block;
            width: max-content;
            max-width: 100%;
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            padding: 8px 16px;
            background: #fff;
            border: 1.5px solid var(--primary);
            border-radius: 50px;
            transition: background .2s, color .2s;
        }

        .dflow-tip-link:hover {
            background: var(--primary);
            color: #fff;
        }

        @media(max-width:768px) {
            .dflow-tip {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }

        @media(max-width:560px) {
            .dflow-tip-image {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }

            .dflow-tip-icon {
                font-size: 20px;
            }

            .dflow-tip-link {
                display: block;
                text-align: center;
            }
        }

        @media(max-width:640px) {
            .dflow-compact-row {
                flex-direction: column;
                align-items: stretch;
            }

            .dflow-cta--compact {
                width: 100%;
                text-align: center;
            }

            .dflow-compact-title {
                font-size: 16px;
            }
        }

        .dflow-combine {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 18px 0;
            padding: 12px 20px;
            background: #fff;
            border: 1px dashed var(--mid);
            border-radius: 6px;
        }

        .dflow-combine-mark {
            font-size: 20px;
            font-weight: 900;
            color: var(--cta-red);
        }

        .dflow-combine-text {
            font-size: 16px;
            color: var(--text);
            line-height: 1.5;
        }

        .dflow-combine-text strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        .dflow-compat {
            margin-top: 36px;
            padding: 24px;
            background: #fff;
            border-radius: 6px;
            border-left: 4px solid var(--primary);
        }

        .dflow-compat-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dflow-compat-title::before {
            content: '📋';
        }

        .dflow-compat-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 16px;
        }

        .dflow-compat-tablewrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .dflow-compat-table th,
        .dflow-compat-table td {
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .dflow-compat-table th {
            background: var(--bg);
            font-weight: 700;
            color: var(--text);
        }

        .dflow-compat-table tr:last-child td {
            border-bottom: none;
        }

        .dflow-compat-num {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 3px;
            margin-right: 6px;
        }

        .dflow-compat-num--sim {
            background: var(--teal);
        }

        .dflow-compat-no {
            color: var(--cta-red);
            font-weight: 700;
        }

        .dflow-compat-note {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.7;
            margin: 12px 0 0;
        }

        .dflow-compat-note strong {
            color: var(--text);
            font-weight: 700;
        }

        .dflow-final {
            margin-top: 36px;
            padding: 32px 28px;
            background: linear-gradient(135deg, #fff 0%, #fdecf0 100%);
            border: 2px solid var(--primary);
            border-radius: 6px;
            text-align: center;
        }

        .dflow-final-lead {
            font-size: 16px;
            color: var(--text);
            margin: 0 0 8px;
            font-weight: 700;
        }

        .dflow-final-headline {
            font-size: 22px;
            font-weight: 900;
            color: var(--text);
            margin: 0 0 18px;
            line-height: 1.4;
        }

        .dflow-final-headline strong {
            color: var(--cta-red);
        }

        .dflow-final-btn {
            display: inline-block;
            padding: 16px 36px;
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            border-radius: 50px;
            box-shadow: 0 4px 14px rgba(192, 64, 95, .3);
            transition: transform .2s, box-shadow .2s, background .2s;
            margin-bottom: 18px;
        }

        .dflow-final-btn:hover {
            background: #a01c1c;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(192, 64, 95, .4);
        }

        .dflow-final-emergency {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding-top: 18px;
            border-top: 1px dashed var(--border);
            font-size: 16px;
            color: var(--mid);
            flex-wrap: wrap;
        }

        .dflow-final-tel {
            font-family: "Oswald", sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--cta-red);
            letter-spacing: .04em;
        }

        @media(max-width:768px) {
            .dflow-card {
                padding: 24px 20px 20px;
            }

            .dflow-card-head {
                grid-template-columns: 1fr;
                grid-template-areas: "title" "pill";
                gap: 10px;
            }

            .dflow-num {
                grid-area: num;
                top: -20px;
            }

            .dflow-title-area {
                grid-area: title;
            }

            .dflow-pill {
                grid-area: pill;
                justify-self: center;
                margin-top: 4px;
            }

            .dflow-title {
                font-size: 20px;
            }

            .dflow-card {
                padding: 22px 18px 20px;
            }

            .dflow-amounts {
                grid-template-columns: 1fr;
            }

            .dflow-compat-table {
                font-size: 16px;
            }

            .dflow-compat-table th,
            .dflow-compat-table td {
                padding: 8px;
            }

            .dflow-final-headline {
                font-size: 20px;
            }
        }

        /* ── 会員登録誘導バナー ── */
        .member-promo-section {
            padding: 40px 0;
            background: #fff;
        }

        .member-promo {
            display: grid;
            grid-template-columns: 200px 1fr auto;
            align-items: center;
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, #fff8e6 0%, #fdecc0 100%);
            border-radius: 10px;
            padding: 24px 32px 24px 32px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
            position: relative;
            overflow: visible;
        }

        .member-promo-visual {
            position: relative;
            width: 313px;
            height: 100%;
            min-height: 100px;
        }

        .member-promo-visual img {
            position: absolute;
            left: 28%;
            bottom: -24px;
            transform: translateX(-50%);
            width: 330px;
            height: auto;
            max-height: 280px;
            object-fit: contain;
            object-position: bottom center;
            filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .15));
        }

        .member-promo-section {
            overflow: hidden;
        }

        .member-promo-text {
            min-width: 0;
        }

        .member-promo-lead {
            font-size: 16px;
            color: var(--text);
            margin: 0 0 6px;
            font-weight: 700;
            letter-spacing: .02em;
        }

        .member-promo-lead strong {
            color: var(--primary);
            font-weight: 800;
        }

        .member-promo-headline {
            font-size: 32px;
            font-weight: 900;
            color: var(--text);
            margin: 0 0 12px;
            letter-spacing: .02em;
            line-height: 1.2;
            white-space: nowrap;
        }

        .member-promo-headline strong {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            color: var(--cta-red);
            font-size: 1.4em;
            margin: 0 4px;
        }

        /* 「6万円※」を1単位として右上にラベル付き表示 */
        .member-promo-amount {
            position: relative;
            display: inline-block;
            white-space: nowrap;
        }

        .member-promo-headline sup {
            position: absolute;
            top: -2px;
            right: -10px;
            font-size: .35em;
            color: var(--mid);
            font-weight: 700;
            line-height: 1;
            margin: 0;
        }

        .member-promo-breakdown {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: var(--text);
        }

        .member-promo-breakdown-item {
            background: #fff;
            border: 1px solid #e8d8b8;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
        }

        .member-promo-breakdown-item strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        .member-promo-breakdown-item sup {
            font-size: 12px;
            margin-left: 1px;
        }

        .member-promo-breakdown-plus {
            font-size: 16px;
            font-weight: 700;
            color: var(--mid);
        }

        .member-promo-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .member-promo-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 16px 32px;
            background: #fff;
            color: var(--text);
            border: 2px solid var(--primary);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(192, 64, 95, .15);
            transition: background .2s, transform .2s, color .2s;
            text-align: center;
            min-width: 220px;
        }

        .member-promo-btn:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

        .member-promo-btn-sub {
            font-size: 16px;
            font-weight: 700;
        }

        .member-promo-btn-main {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: .04em;
        }

        .member-promo-note {
            font-size: 12px;
            color: var(--mid);
            margin: 0;
            text-align: center;
            line-height: 1.5;
        }

        .member-promo-footnote {
            font-size: 12px;
            color: var(--mid);
            margin: 12px 0 0;
            text-align: center;
            line-height: 1.6;
        }

        /* インラインvisual: PCでは非表示、SPで使用 */
        .member-promo-visual--inline {
            display: none;
        }

        @media(max-width:900px) {
            .member-promo-section {
                padding: 20px 0;
                background: #fff;
            }

            .member-promo {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 24px 20px;
            }

            /* SP: 元のvisualは非表示、インライン版を見出し左に表示 */
            .member-promo > .member-promo-visual {
                display: none;
            }

            .member-promo-headline-row {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin: 0 0 10px;
            }

            .member-promo-visual--inline {
                display: block;
                position: relative;
                width: 90px;
                height: 90px;
                flex: 0 0 auto;
                overflow: visible;
            }

            .member-promo-visual--inline img {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 110px;
                height: auto;
                max-height: none;
                object-fit: contain;
                filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .15));
            }

            .member-promo-breakdown {
                justify-content: center;
                gap: 6px;
            }

            .member-promo-breakdown-item {
                font-size: 12px;
                padding: 3px 8px;
            }

            .member-promo-headline {
                font-size: 24px;
                margin: 0;
                text-align: left;
            }

            .member-promo-headline strong {
                font-size: 1.25em;
            }

            .member-promo-btn {
                min-width: 0;
                width: 100%;
            }
        }

        /* ── オプション ── */
        .options-section {
            background: #fff;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 8px;
        }

        .option-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: box-shadow .2s, transform .2s;
        }

        .option-card:hover {
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
            transform: translateY(-2px);
        }

        .option-card--featured {
            border: 2px solid var(--primary);
            background: linear-gradient(180deg, #fff 0%, var(--primary-pale) 100%);
        }

        .option-card-image {
            margin: -20px -18px 4px;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            border-radius: 6px 6px 0 0;
            background: var(--bg);
        }

        .option-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .option-card-head {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .option-tag {
            display: inline-block;
            background: var(--cta-red);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            letter-spacing: .04em;
        }

        .option-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin: 0;
            letter-spacing: .02em;
        }

        .option-price {
            display: flex;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 4px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border);
        }

        .option-price-plus {
            font-size: 20px;
            font-weight: 700;
            color: var(--cta-red);
            line-height: 1;
        }

        .option-price-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--cta-red);
            line-height: 1;
            letter-spacing: -.02em;
        }

        .option-price-num--text {
            font-family: inherit;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
        }

        .option-price-unit {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
        }

        .option-price-unit small {
            font-size: 12px;
            font-weight: 500;
            color: var(--mid);
            margin-left: 2px;
        }

        .option-price-tax {
            font-size: 12px;
            color: var(--mid);
            width: 100%;
            margin-top: 2px;
        }

        .option-desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            margin: 0;
        }

        .option-desc small {
            font-size: 12px;
            color: var(--mid);
        }

        .option-rec {
            background: var(--bg);
            border-radius: 6px;
            padding: 10px 12px;
            margin-top: auto;
        }

        .option-rec-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
            background: #fff;
            padding: 2px 8px;
            border-radius: 50px;
            margin-bottom: 6px;
            letter-spacing: .04em;
        }

        .option-rec ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .option-rec li {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text);
            padding-left: 18px;
            position: relative;
        }

        .option-rec li::before {
            content: '✓';
            position: absolute;
            left: 2px;
            top: 0;
            color: var(--primary);
            font-weight: 800;
        }

        .options-note {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.7;
            text-align: center;
            margin-top: 24px;
        }

        .options-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-top: 32px;
            padding: 28px 32px;
            background: linear-gradient(135deg, #fff 0%, var(--primary-pale) 100%);
            border: 2px solid var(--primary);
            border-radius: 6px;
            box-shadow: 0 6px 20px rgba(192, 64, 95, .08);
        }

        .options-cta-text {
            flex: 1;
            min-width: 0;
        }

        .options-cta-lead {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 0 6px;
            letter-spacing: .02em;
        }

        .options-cta-sub {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            margin: 0;
        }

        .options-cta-sub strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        .options-cta-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--primary);
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(192, 64, 95, .3);
            transition: transform .2s, box-shadow .2s, background .2s;
            white-space: nowrap;
        }

        .options-cta-btn:hover {
            background: #a01c1c;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(192, 64, 95, .4);
            color: #fff;
        }

        .options-cta-btn-arrow {
            font-size: 20px;
            line-height: 1;
        }

        @media(max-width:768px) {
            .options-cta {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }

            .options-cta-lead {
                font-size: 20px;
            }

            .options-cta-btn {
                width: 100%;
                justify-content: center;
                font-size: 16px;
                padding: 14px 24px;
            }
        }

        @media(max-width:1024px) {
            .options-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:640px) {
            .options-grid {
                grid-template-columns: 1fr;
            }

            .option-price-num {
                font-size: 28px;
            }
        }

        /* ── 追加料金ゼロバナー ── */
        .zero-banner {
            background: linear-gradient(135deg, #C0405F 0%, var(--primary) 50%, #e8507a 100%);
            padding: 72px 0;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        /* 速度バッジ＋緊急バー（初期固定→スクロールで解除） */
        .urgent-bar.is-fixed {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 950;
            background: #fff;
            box-shadow: 0 -4px 14px rgba(0, 0, 0, .12);
        }

        /* pc-fixed-cta / sp-fixed-cta で代替するため urgent-bar は非表示 */
        #urgent-bar,
        #urgent-anchor {
            display: none !important;
        }

        /* SP: 画面下固定バー(CTA+ボトムナビ)が本文最下部を隠さないようにbody末尾に余白を確保 */
        @media(max-width:768px) {
            body {
                padding-bottom: calc(184px + env(safe-area-inset-bottom));
            }
        }

        /* PC固定CTA（emergency-strip と同じデザイン・下部固定） */
        .pc-fixed-cta {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 949;
            box-shadow: 0 -4px 14px rgba(0, 0, 0, .15);
        }

        /* PC: body下端余白で固定バーを避ける */
        @media(min-width:769px) {
            body {
                padding-bottom: 96px;
            }
        }

        /* SP/狭幅では非表示（sp-fixed-cta が代替） */
        @media(max-width:768px) {
            .pc-fixed-cta {
                display: none;
            }
        }

        /* SP固定CTA（割引バナー + 電話/会員登録ボタン） */
        .sp-fixed-cta {
            display: none;
        }

        @media(max-width:768px) {
            .sp-fixed-cta {
                display: block;
                position: fixed;
                left: 0;
                right: 0;
                bottom: calc(60px + env(safe-area-inset-bottom));
                z-index: 951;
                background: #fff;
                box-shadow: 0 -4px 14px rgba(0, 0, 0, .08);
            }

            .sp-fixed-cta-banner {
                background: linear-gradient(180deg, #c0405f 0%, #8b2c44 100%);
                color: #fff;
                text-align: center;
                font-size: 12px;
                font-weight: 700;
                padding: 8px 12px;
                line-height: 1.4;
            }

            .sp-fixed-cta-banner strong {
                font-size: 15px;
                font-weight: 900;
                margin: 0 4px;
                color: #ffd84d;
            }

            .sp-fixed-cta-banner sup {
                font-size: 9px;
                margin-left: 1px;
            }

            .sp-fixed-cta-actions {
                display: flex;
                align-items: stretch;
                gap: 6px;
                padding: 8px 10px;
                background: #fff7f9;
            }

            .sp-fixed-cta-staff {
                flex: 0 0 56px;
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                font-size: 9px;
                font-weight: 700;
                color: var(--text);
                line-height: 1.2;
                text-align: center;
            }

            .sp-fixed-cta-staff img {
                width: 44px;
                height: 44px;
                border-radius: 50%;
                object-fit: cover;
                border: 2px solid #fff;
                box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
                margin-bottom: 2px;
            }

            .sp-fixed-cta-staff.is-empty img {
                display: none;
            }

            .sp-fixed-cta-staff-label {
                font-size: 9px;
            }

            .sp-fixed-cta-btn {
                flex: 1 1 0;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                padding: 12px 6px;
                border-radius: 6px;
                color: #fff;
                font-size: 14px;
                font-weight: 800;
                text-decoration: none;
                box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
                min-height: 44px;
            }

            .sp-fixed-cta-btn svg {
                width: 18px;
                height: 18px;
                flex-shrink: 0;
            }

            /* 電話：白背景＋赤枠 */
            .sp-fixed-cta-btn--phone {
                background: #fff;
                color: var(--cta-red) !important;
                border: 2px solid var(--cta-red);
                box-shadow: 0 3px 8px rgba(198, 40, 40, .2);
            }

            /* 電話ボタンアイコン：MVと同じリンギング+パルスアニメ */
            .sp-fixed-cta-btn-iconwrap {
                position: relative;
                width: 22px;
                height: 22px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

            .sp-fixed-cta-btn-icon-ring {
                width: 22px;
                height: 22px;
                color: var(--cta-red);
                animation: emergency-ring 1.6s ease-in-out infinite;
            }

            .sp-fixed-cta-btn-pulse {
                position: absolute;
                inset: -2px;
                border-radius: 50%;
                background: rgba(198, 40, 40, .25);
                animation: emergency-pulse 1.6s ease-out infinite;
                pointer-events: none;
            }

            /* 会員登録：ピンク系 */
            .sp-fixed-cta-btn--member {
                background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
            }
        }

        /* SP固定ボトムナビ */
        .sp-bottom-nav {
            display: none;
        }

        /* プラン選択シート（SP下部ナビ「プラン」で上に開く／/plan/ ページが無いため） */
        .sp-plan-sheet {
            display: none;
            position: fixed;
            left: 0; right: 0;
            bottom: calc(60px + env(safe-area-inset-bottom));
            z-index: 1000;
            background: #f6f6f6;
            box-shadow: 0 -6px 20px rgba(0,0,0,.18);
            padding-bottom: calc(8px + env(safe-area-inset-bottom));
            max-height: 64vh;
            overflow-y: auto;
        }
        .sp-plan-sheet.is-open { display: block; }
        .sp-plan-sheet-close {
            position: absolute;
            top: 5px; right: 8px;
            z-index: 2;
            width: 30px; height: 30px;
            display: flex; align-items: center; justify-content: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 50%;
            font-size: 20px; line-height: 1;
            color: var(--mid);
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0,0,0,.15);
        }

        @media(max-width:768px) {
            /* SPでは既存の固定式緊急バーをインラインに（重複防止） */
            .urgent-bar.is-fixed {
                position: static;
                box-shadow: none;
            }

            .sp-bottom-nav {
                display: flex;
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 950;
                background: #fff;
                border-top: 1px solid var(--border);
                box-shadow: 0 -4px 14px rgba(0, 0, 0, .08);
                padding-bottom: env(safe-area-inset-bottom);
            }

            .sp-bottom-nav-item {
                flex: 1 1 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2px;
                padding: 8px 2px 6px;
                background: #fff;
                color: var(--text);
                text-decoration: none;
                border: none;
                cursor: pointer;
                font-family: inherit;
                min-height: 60px;
                transition: background .15s;
            }

            .sp-bottom-nav-item:active {
                background: #f6f6f6;
            }

            .sp-bottom-nav-icon {
                width: 22px;
                height: 22px;
                display: block;
            }

            .sp-bottom-nav-label {
                font-size: 10px;
                font-weight: 700;
                letter-spacing: .04em;
                line-height: 1.2;
            }

            .sp-bottom-nav-item--urgent {
                background: var(--cta-red);
                color: #fff;
            }

            .sp-bottom-nav-item--urgent:active {
                background: #a91f1f;
            }
        }

        .urgent-bar.is-fixed .mv-speed-badges--above-strip {
            margin: 12px auto 8px;
        }

        .urgent-bar.is-inline {
            position: static;
        }

        .urgent-anchor {
            height: 0;
            margin: 0;
            padding: 0;
        }

        /* 緊急電話ストリップ */
        .emergency-strip {
            background: #c0405f;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .emergency-strip-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 24px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
        }

        .emergency-strip-phone {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            color: #fff;
            transition: opacity .2s;
        }

        .emergency-strip-phone:hover {
            color: #fff;
            opacity: .95;
        }

        /* 電話アイコン（パルスアニメーション） */
        .emergency-strip-icon-wrap {
            position: relative;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .18);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .emergency-strip-icon-svg {
            width: 22px;
            height: 22px;
            color: #fff;
            animation: emergency-ring 1.6s ease-in-out infinite;
        }
        @keyframes emergency-ring {
            0%, 100% { transform: rotate(0); }
            10% { transform: rotate(-12deg); }
            20%, 40% { transform: rotate(12deg); }
            30% { transform: rotate(-12deg); }
            50% { transform: rotate(0); }
        }
        .emergency-strip-pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, .35);
            animation: emergency-pulse 1.6s ease-out infinite;
        }
        @keyframes emergency-pulse {
            0% { transform: scale(1); opacity: .8; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        /* テキストエリア */
        .emergency-strip-text-area {
            display: flex;
            flex-direction: column;
            gap: 2px;
            align-items: flex-start;
        }
        .emergency-strip-text {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .04em;
            opacity: .95;
        }
        .emergency-strip-tel-row {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .emergency-strip-tel-pill {
            display: inline-block;
            background: #ffd84d;
            color: #5a3a00;
            font-size: 11px;
            font-weight: 900;
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: .04em;
            white-space: nowrap;
        }
        .emergency-strip-tel-cta {
            display: none;
        }
        .emergency-strip-tel {
            font-family: "Oswald", sans-serif;
            font-size: 28px;
            font-weight: 800;
            letter-spacing: .04em;
            color: #fff;
            line-height: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
        }
        .emergency-strip-tel-notes {
            display: inline-flex;
            flex-direction: column;
            gap: 2px;
            margin-left: 4px;
        }
        .emergency-strip-tel-note {
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            letter-spacing: .02em;
            white-space: nowrap;
            opacity: .95;
        }
        .emergency-strip-tel-note::before {
            content: "✓";
            color: #ffd84d;
            margin-right: 3px;
            font-weight: 900;
        }

        /* アクションボタン群 */
        .emergency-strip-actions {
            display: inline-flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .emergency-strip-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            padding: 9px 18px;
            border-radius: 50px;
            letter-spacing: .04em;
            transition: all .2s;
            white-space: nowrap;
            border: 2px solid;
        }
        .emergency-strip-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
        }
        /* 無料会員（ファミリー会員）：ピンク（メインCTA） */
        .emergency-strip-btn--member {
            background: var(--primary);
            border-color: #fff;
            color: #fff;
            position: relative;
            margin-top: 10px;
        }
        .emergency-strip-btn--member:hover {
            background: #fff;
            color: var(--primary);
        }
        /* セルフ見積：ティール */
        .emergency-strip-btn--sim {
            background: var(--teal);
            border-color: #fff;
            color: #fff;
            position: relative;
            margin-top: 10px;
        }
        .emergency-strip-btn--sim:hover {
            background: #fff;
            color: var(--teal);
        }
        /* お問い合わせ：白アウトライン */
        .emergency-strip-btn--contact {
            background: rgba(255, 255, 255, .15);
            border-color: rgba(255, 255, 255, .6);
            color: #fff;
        }
        .emergency-strip-btn--contact:hover {
            background: #fff;
            color: var(--primary);
        }
        .emergency-strip-btn-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffd84d;
            color: #5a3a00;
            font-size: 10px;
            font-weight: 900;
            padding: 2px 10px;
            border-radius: 50px;
            letter-spacing: .04em;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
        }

        @media(max-width:768px) {
            .emergency-strip-inner {
                gap: 10px;
                padding: 12px 14px;
                justify-content: center;
            }
            .emergency-strip-phone {
                gap: 10px;
            }
            .emergency-strip-icon-wrap {
                width: 36px;
                height: 36px;
            }
            .emergency-strip-icon-svg {
                width: 18px;
                height: 18px;
            }
            .emergency-strip-text {
                font-size: 12px;
            }
            .emergency-strip-tel {
                font-size: 22px;
            }
            .emergency-strip-tel-num {
                display: none;
            }
            .emergency-strip-tel-cta {
                display: inline;
                font-family: 'Noto Sans JP', sans-serif;
                font-size: 18px;
                font-weight: 800;
            }
            .emergency-strip-actions {
                width: 100%;
                justify-content: center;
                gap: 6px;
            }
            .emergency-strip-btn {
                font-size: 13px;
                padding: 12px 14px;
                min-height: 44px;
            }
            /* スマホでは「無料会員登録」のみ表示し、長文の折り返し崩れを防ぐ */
            .emergency-strip-btn .member-sub-label {
                display: none;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .emergency-strip-icon-svg,
            .emergency-strip-pulse {
                animation: none;
            }
        }

        .warning-trigger-section {
            background: var(--bg);
            padding: 24px 0;
        }

        .warning-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 24px;
            background: #fff;
            border: 2px solid #8b8989;
            border-radius: 6px;
            cursor: pointer;
            transition: border-color .2s, box-shadow .2s, background .2s;
            text-align: left;
        }

        .warning-trigger:hover {
            border-color: var(--cta-red);
            box-shadow: 0 4px 14px rgba(192, 64, 95, .12);
            background: #fdf7f8;
        }

        .warning-trigger-icon {
            flex: 0 0 38px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #ffd84d;
            color: #6b4a08;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .warning-trigger-text {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .warning-trigger-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: .02em;
        }

        .warning-trigger-sub {
            font-size: 16px;
            color: var(--mid);
        }

        .warning-trigger-arrow {
            flex: 0 0 auto;
            padding: 6px 14px;
            border-radius: 50px;
            background: #6e6e6e;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
        }

        .warning-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            z-index: 1000;
            align-items: flex-start;
            justify-content: center;
            padding: 32px 16px;
            overflow-y: auto;
        }

        .warning-modal.is-open {
            display: flex;
        }

        .warning-modal-inner {
            position: relative;
            background: #8b8989;
            border-radius: 6px;
            padding: 32px 28px 28px;
            max-width: 880px;
            width: 100%;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
        }

        .warning-modal-close {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(255, 255, 255, .15);
            color: #fff;
            font-size: 26px;
            line-height: 1;
            cursor: pointer;
            border-radius: 50%;
            z-index: 2;
        }

        .warning-modal-close:hover {
            background: rgba(255, 255, 255, .3);
        }

        @media(max-width:560px) {
            .warning-trigger {
                padding: 14px 16px;
                gap: 10px;
            }

            .warning-trigger-title {
                font-size: 16px;
            }

            .warning-trigger-sub {
                font-size: 12px;
            }

            .warning-modal {
                padding: 16px 8px;
            }

            .warning-modal-inner {
                padding: 36px 18px 20px;
            }
        }

        .other-warning-section {
            background: #8b8989;
            padding: 60px 0;
        }

        .zero-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 65%);
            pointer-events: none;
        }

        .zero-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255, 255, 255, .10) 0%, transparent 65%);
            pointer-events: none;
        }

        .zero-banner-inner {
            position: relative;
        }

        .zero-eyebrow {
            display: inline-block;
            background: rgba(255, 255, 255, .2);
            border: 1px solid rgba(255, 255, 255, .5);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            padding: 5px 18px;
            letter-spacing: .08em;
            margin-bottom: 18px;
        }

        .zero-banner h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            opacity: .95;
            letter-spacing: .04em;
        }

        .zero-headline {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 38px;
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: .02em;
            margin-bottom: 14px;
        }

        .zero-headline .zero-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            color: #ffd84d;
            font-size: 1.35em;
            font-weight: 900;
            letter-spacing: -.02em;
            margin: 0 4px;
        }

        .zero-headline .zero-brand {
            color: #fff;
            font-weight: 900;
        }

        .zero-headline .yen {
            font-size: 42px;
            vertical-align: middle;
        }

        .zero-sub {
            font-size: 16px;
            opacity: .9;
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .zero-compare {
            display: flex;
            flex-direction: column;
            background: rgba(0, 0, 0, .25);
            border-radius: 6px;
            padding: 14px 20px 22px;
            margin-bottom: 32px;
            color: rgba(255, 255, 255, .92);
        }

        .zero-compare-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px 10px;
            font-size: 16px;
            color: rgba(255, 255, 255, .85);
        }

        .zero-compare-detail {
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px dashed rgba(255, 255, 255, .35);
            text-align: left;
        }

        .zero-compare-title {
            font-size: 22px;
            font-weight: 800;
            margin: 14px 0 22px;
            color: #fff;
            letter-spacing: .02em;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .zero-compare-title-icon {
            display: inline-flex;
            color: #ffd84d;
            flex-shrink: 0;
        }

        .zero-compare-lead {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.5;
            margin: 0 0 12px;
            color: #fff;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .zero-compare-lead-icon {
            display: inline-flex;
            color: #4ade80;
            flex-shrink: 0;
        }

        .zero-compare-text {
            font-size: 16px;
            line-height: 1.8;
            margin: 0 0 18px;
            color: rgba(255, 255, 255, .92);
            text-align: left;
        }

        .zero-compare-subtitle {
            display: inline-block;
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 10px;
            padding: 4px 14px;
            background: rgba(255, 255, 255, .18);
            border-radius: 6px;
            color: #fff;
        }

        .zero-compare-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .zero-compare-list li {
            display: flex;
            flex-direction: column;
            padding: 12px 14px;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
            text-align: center;
        }

        .zero-compare-list-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            padding-bottom: 8px;
            margin-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }

        .zero-compare-list-desc {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.5;
        }

        .zero-compare-list-arrow {
            display: block;
            text-align: center;
            color: var(--cta-red);
            font-size: 16px;
            line-height: 1;
            margin: 10px 0 6px;
        }

        .zero-compare-list-result {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--cta-red);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            padding: 8px 10px;
            border-radius: 6px;
            line-height: 1.4;
            min-height: 60px;
        }

        .zero-compare-list-rate {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            margin-top: auto;
            padding: 10px 12px;
            background: rgba(0, 0, 0, .06);
            border-radius: 6px;
            font-size: 16px;
            color: var(--text);
            line-height: 1.6;
            text-align: left;
            min-height: 100px;
        }

        .zero-compare-list-rate strong {
            color: var(--cta-red);
            font-weight: 800;
            font-size: 1.05em;
        }

        .zero-compare-list-rate-label {
            display: inline-block;
            background: var(--mid);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 2px;
            letter-spacing: .04em;
        }

        .zero-compare-list-rate-row {
            display: block;
        }

        @media(max-width:768px) {
            .zero-compare-title {
                font-size: 20px;
                margin: 10px 0 18px;
            }

            .zero-compare-title-icon svg {
                width: 22px;
                height: 22px;
            }

            .zero-compare-lead {
                font-size: 16px;
            }

            .zero-compare-text {
                font-size: 16px;
            }

            .zero-compare-list {
                grid-template-columns: 1fr;
            }
        }

        .zero-compare-label {
            background: #fff;
            color: #333;
            border-radius: 6px;
            padding: 2px 8px;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: .04em;
        }

        .zero-compare-item strong {
            color: #FFE082;
            font-weight: 700;
        }

        .zero-compare-sep {
            opacity: .4;
        }

        .zero-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin: 0 auto 40px;
        }

        @media(max-width:768px) {
            .zero-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .zero-headline {
                font-size: 26px;
            }
        }

        @media(max-width:480px) {
            .zero-cards {
                grid-template-columns: 1fr 1fr;
            }
        }

        .zero-card {
            background: rgba(255, 255, 255, .18);
            border: 1.5px solid rgba(255, 255, 255, .5);
            border-radius: 6px;
            padding: 18px 12px;
            backdrop-filter: blur(4px);
        }

        .zero-card-icon {
            width: 100%;
            height: 90px;
            margin: 0 0 12px;
            border-radius: 6px;
            overflow: hidden;
        }

        .zero-card-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .zero-card-icon--contain img {
            object-fit: contain;
            background: #f5f5f5;
        }

        .zero-card-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .zero-card-detail {
            display: inline-block;
            background: #FFE082;
            color: #6B3A00;
            font-size: 16px;
            font-weight: 900;
            padding: 3px 10px;
            border-radius: 50px;
        }

        /* ── 割引特典 ── */
        .discount-section {
            background: var(--bg);
        }

        .discount-note {
            text-align: center;
            font-size: 16px;
            color: var(--mid);
            margin-top: -28px;
            margin-bottom: 36px;
            background: #fff8e1;
            border: 1px solid #ffe082;
            display: inline-block;
            padding: 6px 20px;
            border-radius: 50px;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .discount-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .dc-card {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, .10);
            border: 2px solid transparent;
            transition: transform .2s, box-shadow .2s;
        }

        .dc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
        }

        .dc-card:nth-child(1) {
            border-color: var(--teal);
        }

        .dc-card:nth-child(2) {
            border-color: var(--primary);
        }

        .dc-head {
            padding: 20px 22px 18px;
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dc-card:nth-child(1) .dc-head {
            background: linear-gradient(120deg, #3aabb9 0%, var(--teal) 100%);
        }

        .dc-card:nth-child(2) .dc-head {
            background: linear-gradient(120deg, #c84070 0%, var(--primary) 100%);
        }

        .dc-num {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, .3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            border: 1.5px solid rgba(255, 255, 255, .6);
        }

        .dc-body {
            padding: 26px 24px 24px;
        }

        .dc-discount-badge {
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 16px;
        }

        .dc-discount-label {
            font-size: 16px;
            font-weight: 700;
            color: #666;
            border-bottom: 2px solid currentColor;
            padding-bottom: 2px;
        }

        .dc-amount {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 52px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.02em;
        }

        .dc-card:nth-child(1) .dc-amount {
            color: var(--teal);
        }

        .dc-card:nth-child(2) .dc-amount {
            color: var(--primary);
        }

        .dc-amount .u {
            font-size: 20px;
            font-weight: 700;
            margin-left: 2px;
        }

        .dc-divider {
            height: 1px;
            background: var(--border);
            margin: 16px 0;
        }

        .dc-desc {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .dc-steps {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .dc-step {
            background: #f5f5f5;
            border-radius: 6px;
            padding: 6px 10px;
            font-weight: 600;
            color: var(--text);
        }

        .dc-arr {
            color: #ccc;
        }

        .dc-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 22px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            transition: opacity .2s;
        }

        .dc-link:hover {
            opacity: .85;
        }

        .dc-card:nth-child(1) .dc-link {
            background: var(--teal);
        }

        .dc-card:nth-child(2) .dc-link {
            background: var(--primary);
        }

        /* ── お客様の声（インタビュー動画カード） ── */
        .voices-section {
            background: var(--white);
        }

        /* 手書き風お客様の声（画像） */
        .voices-handwritten {
            margin: 0 0 48px;
        }

        .voices-handwritten-title {
            text-align: center;
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 24px;
            position: relative;
            padding-bottom: 12px;
            letter-spacing: .02em;
        }

        .voices-handwritten-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .voices-handwritten-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .voices-handwritten-item {
            margin: 0;
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px;
        }

        .voices-handwritten-item img {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
            object-fit: contain;
            display: block;
            background: #fff;
            border-radius: 4px;
        }

        .voices-handwritten-item.is-empty img {
            display: none;
        }

        .voices-handwritten-item.is-empty::before {
            content: '画像';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            aspect-ratio: 4 / 3;
            background: #f4ede4;
            border: 1px dashed #c9b89a;
            border-radius: 4px;
            color: #a59078;
            font-size: 16px;
            font-weight: 700;
        }

        .voices-handwritten-item figcaption {
            margin-top: 10px;
            font-size: 16px;
            color: var(--mid);
            font-weight: 700;
            letter-spacing: .04em;
        }

        @media(max-width:768px) {
            .voices-handwritten-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .voices-handwritten-title {
                font-size: 20px;
            }
        }

        @media(max-width:480px) {
            .voices-handwritten-grid {
                grid-template-columns: 1fr;
            }
        }

        .voices-intro {
            text-align: center;
            font-size: 16px;
            color: var(--mid);
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .voices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-bottom: 36px;
        }

        @media(max-width:900px) {
            .voices-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:560px) {
            .voices-grid {
                grid-template-columns: 1fr;
            }
        }

        .voice-card {
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .10);
            background: var(--white);
            transition: transform .2s, box-shadow .2s;
            cursor: pointer;
        }

        .voice-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
        }

        /* サムネイル部分 */
        .voice-thumb {
            position: relative;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #2c2c2c 0%, #555 100%);
            overflow: hidden;
        }

        .voice-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .3s;
        }

        .voice-card:hover .voice-thumb img {
            transform: scale(1.04);
        }

        .voice-thumb-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e8e0f0 0%, #d8eef5 100%);
            font-size: 40px;
        }

        /* 再生ボタンオーバーレイ */
        .voice-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, .92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
            transition: transform .2s, background .2s;
            z-index: 2;
        }

        .voice-card:hover .voice-play-btn {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--primary);
            color: #fff;
        }

        .voice-play-btn::after {
            content: '▶';
            margin-left: 3px;
        }

        /* タイトルバー（ピンク） */
        .voice-title-bar {
            background: var(--primary);
            color: #fff;
            padding: 10px 14px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
        }

        /* カード下部 */
        .voice-card-body {
            padding: 14px 16px 16px;
        }

        .voice-plan-tag {
            display: inline-block;
            background: var(--primary-pale);
            color: var(--primary-dark);
            font-size: 12px;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 50px;
            margin-bottom: 8px;
        }

        .voice-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 10px;
        }

        .voice-author {
            font-size: 16px;
            color: var(--mid);
            font-weight: 500;
        }

        /* インタビュー動画を見るボタン */
        .voices-cta {
            text-align: center;
        }

        .btn-interview {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 50px;
            box-shadow: 0 4px 16px rgba(224, 96, 128, .35);
            transition: background .2s, transform .2s;
        }

        .btn-interview:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ── コラム ── */
        .column-section {
            background: var(--white);
        }

        .column-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 8px;
        }

        .column-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            transition: transform .2s, box-shadow .2s;
            color: var(--text);
        }

        .column-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
            color: var(--text);
        }

        .column-thumb {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg);
        }

        .column-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .3s;
        }

        .column-card:hover .column-thumb img {
            transform: scale(1.04);
        }

        .column-cat {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            letter-spacing: .04em;
        }

        .column-card-body {
            padding: 14px 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .column-date {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 16px;
            color: var(--mid);
            letter-spacing: .04em;
        }

        .column-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .column-more {
            text-align: center;
            margin-top: 32px;
        }

        .column-more-btn,
        .btn-detail-link {
            display: inline-block;
            padding: 12px 28px;
            background: #fff;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            transition: background .2s, color .2s;
        }

        .column-more-btn:hover,
        .btn-detail-link:hover {
            background: var(--primary);
            color: #fff;
        }

        @media(max-width:1024px) {
            .column-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:560px) {
            .column-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── FAQ ── */
        .faq-section {
            background: var(--bg);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .faq-q {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 700;
        }

        .faq-q-ic {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            margin-top: 1px;
        }

        .faq-a {
            padding: 16px 20px 16px 20px;
            background: #fafafa;
            border-top: 1px solid var(--border);
            display: flex;
            gap: 10px;
            font-size: 16px;
            color: var(--mid);
            line-height: 1.85;
        }

        .faq-a-ic {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: var(--teal);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 900;
            margin-top: 2px;
        }

        /* ── CTA ── */
        .cta-section {
            background: linear-gradient(160deg, #1a1a2e 0%, #2d1b3d 40%, #1f1f2e 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(224, 96, 128, .22) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(76, 187, 202, .16) 0%, transparent 65%);
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
        }

        .cta-eyebrow {
            display: inline-block;
            background: rgba(224, 96, 128, .25);
            border: 1px solid rgba(224, 96, 128, .6);
            color: #f8b4c8;
            font-size: 16px;
            font-weight: 700;
            padding: 5px 20px;
            border-radius: 50px;
            letter-spacing: .08em;
            margin-bottom: 20px;
        }

        .cta-section h2 {
            font-size: 30px;
            font-weight: 900;
            margin-bottom: 10px;
            color: #fff;
            line-height: 1.4;
        }

        .cta-section h2 em {
            font-style: normal;
            color: #f9a8c0;
        }

        .cta-section>.container>.cta-inner>.cta-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, .05);
            margin-bottom: 44px;
            line-height: 1.7;
        }

        .cta-lead {
            color: #fff;
            margin-bottom: 20px;
        }

        /* バッジ（安心の3点） */
        .cta-badges {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 44px;
        }

        .cta-badge {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .25);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cta-badge-icon {
            font-size: 16px;
        }

        /* 2カラム CTAカード */
        .cta-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 760px;
            margin: 0 auto 36px;
        }

        @media(max-width:640px) {
            .cta-cards {
                grid-template-columns: 1fr;
            }
        }

        .cta-card {
            border-radius: 6px;
            padding: 32px 28px;
            text-align: center;
        }

        .cta-card-phone {
            background: var(--white);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
        }

        .cta-card-web {
            background: transparent;
            border: 2px solid rgba(76, 187, 202, .6);
            box-shadow: 0 4px 20px rgba(76, 187, 202, .15);
        }

        .cta-card-label {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cta-card-phone .cta-card-label {
            color: var(--mid);
        }

        .cta-card-web .cta-card-label {
            color: rgba(255, 255, 255, .7);
        }

        .cta-tel-num {
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            font-size: 46px;
            font-weight: 900;
            color: var(--cta-red);
            letter-spacing: .04em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .cta-tel-sub {
            font-size: 16px;
            color: var(--mid);
            margin-bottom: 18px;
        }

        .btn-cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cta-red);
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            padding: 15px 32px;
            border-radius: 50px;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(198, 40, 40, .4);
            transition: background .2s, transform .2s;
        }

        .btn-cta-phone:hover {
            background: #a01c1c;
            transform: translateY(-2px);
        }

        .cta-web-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .cta-web-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .cta-web-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 22px;
            line-height: 1.7;
        }

        .btn-cta-web {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--teal);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 14px 28px;
            border-radius: 50px;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(76, 187, 202, .35);
            transition: background .2s, transform .2s;
        }

        .btn-cta-web:hover {
            background: #3aabb9;
            transform: translateY(-2px);
        }

        /* 支払方法 */
        .cta-pay {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .cta-pay-label {
            font-size: 16px;
            color: rgba(255, 255, 255, .5);
        }

        .pay-tag {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 16px;
            color: rgba(255, 255, 255, .75);
        }

        /* ── フッター直上CTA ── */
        .footer-cta-section {
            background: #f5efe3;
            position: relative;
        }

        .footer-cta-banner {
            background: linear-gradient(135deg, #6e2638 0%, #8b2f47 100%);
            text-align: center;
            padding: 18px 24px;
        }

        .footer-cta-banner p {
            margin: 0;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            letter-spacing: .02em;
        }

        .footer-cta-banner strong {
            font-size: 1.25em;
            color: #ffd84d;
        }

        .footer-cta-banner sup {
            font-size: 12px;
            color: #ffd84d;
            margin-left: 2px;
        }

        .footer-cta-inner {
            display: flex;
            align-items: center;
            gap: 32px;
            padding: 36px 20px;
            position: relative;
        }

        .footer-cta-visual {
            flex: 0 0 220px;
            position: relative;
        }

        .footer-cta-photo {
            position: relative;
            width: 220px;
            height: 260px;
            overflow: hidden;
        }

        .footer-cta-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        .footer-cta-bubble {
            position: absolute;
            top: 20px;
            left: -56px;
            background: #fbeb84;
            color: #5a3a00;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 12px;
            font-weight: 800;
            line-height: 1.4;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
            z-index: 2;
        }

        .footer-cta-cards {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            min-width: 0;
        }

        .footer-cta-card {
            background: #fff;
            border-radius: 6px;
            padding: 24px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
        }

        .footer-cta-card-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 6px;
            letter-spacing: .02em;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 8px;
            display: inline-block;
        }

        .footer-cta-card-sub {
            font-size: 16px;
            color: var(--mid);
            margin: 0 0 12px;
        }

        .footer-cta-card-divider {
            display: none;
        }

        .footer-cta-card-lead,
        .footer-cta-card-promo {
            font-size: 16px;
            color: var(--text);
            margin: 0 0 10px;
        }

        .footer-cta-card-promo strong {
            color: var(--cta-red);
            font-weight: 800;
        }

        .footer-cta-tel {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: "Oswald", sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--cta-red);
            letter-spacing: .04em;
            margin-bottom: 12px;
        }

        .footer-cta-tel:hover {
            color: #a01c1c;
        }

        .footer-cta-tel-icon {
            font-size: 22px;
        }

        .footer-cta-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-cta-tags span {
            font-size: 16px;
            border: 1px solid var(--border);
            padding: 4px 12px;
            border-radius: 6px;
            color: var(--text);
        }

        .footer-cta-webbtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 14px 18px;
            background: linear-gradient(180deg, var(--primary) 0%, #a01c1c 100%);
            color: #fff;
            border-radius: 6px;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(192, 64, 95, .3);
            transition: transform .2s, box-shadow .2s;
            margin-bottom: 8px;
        }

        .footer-cta-webbtn:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        .footer-cta-webbtn-icon {
            font-size: 22px;
        }

        .footer-cta-webbtn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            align-items: flex-start;
        }

        .footer-cta-webbtn-label {
            font-size: 16px;
        }

        .footer-cta-webbtn-sub {
            font-size: 12px;
            opacity: .9;
            margin-top: 2px;
        }

        .footer-cta-note {
            font-size: 12px;
            color: var(--mid);
            margin: 0;
            line-height: 1.6;
        }

        @media(max-width:900px) {
            .footer-cta-inner {
                flex-direction: column;
                gap: 24px;
            }

            .footer-cta-visual {
                flex: 0 0 auto;
            }

            .footer-cta-cards {
                width: 100%;
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:560px) {
            .footer-cta-banner p {
                font-size: 16px;
            }

            .footer-cta-photo {
                width: 160px;
                height: 200px;
            }

            .footer-cta-bubble {
                width: 80px;
                height: 80px;
                font-size: 12px;
                top: 8px;
                left: -52px;
            }

            .footer-cta-card-title {
                font-size: 20px;
            }

            .footer-cta-tel {
                font-size: 26px;
            }
        }

        /* ── フッター ── */
        .site-footer {
            background: #2C2C2C;
            color: #ccc;
            padding: 44px 0 24px;
        }

        .footer-top {
            display: flex;
            gap: 48px;
            margin-bottom: 36px;
        }

        .footer-brand {
            flex: 0 0 240px;
        }

        .footer-logo-text {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-corp-info {
            font-size: 16px;
            line-height: 1.8;
            color: #aaa;
        }

        .footer-nav {
            flex: 1;
            display: flex;
            gap: 32px;
        }

        .footer-col {
            flex: 1;
        }

        .footer-col-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            padding-bottom: 6px;
            margin-bottom: 12px;
            border-bottom: 1px solid #444;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul a {
            font-size: 16px;
            color: #aaa;
        }

        .footer-col ul a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 16px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-notice {
            font-size: 12px;
            color: #777;
            line-height: 1.7;
        }

        .footer-copy {
            font-size: 12px;
            color: #666;
            white-space: nowrap;
        }

        /* ── レスポンシブ ── */
        @media(max-width:1024px) {
            .plans-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:960px) {

            /* SP：電話CTAを非表示 */
            .header-right {
                display: none;
            }

            /* SP：ナビをハンバーガーメニューに切り替え */
            .nav-inner {
                display: none;
            }

            /* SP: ハンバーガーは非表示（下部ボトムナビの「メニュー」で代用） */
            .nav-hamburger {
                display: none;
            }

            .site-nav {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                padding: 0;
                border-top: none;
                height: 0px;
                position: relative;
            }

            .nav-sp {
                display: block;
                width: 100%;
                background: var(--white);
                box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
                position: absolute;
                left: 0;
                top: 100%;
                z-index: 201;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .nav-sp a {
                display: block;
                padding: 14px 20px;
                font-size: 20px;
                font-weight: 500;
                border-bottom: 1px solid var(--border);
                color: var(--text);
            }

            .nav-sp a:hover {
                background: var(--primary-pale);
                color: var(--primary);
            }

            /* SPナビ：グループ見出し */
            .nav-sp-heading {
                background: var(--primary-pale);
                color: var(--primary);
                font-size: 13px;
                font-weight: 800;
                letter-spacing: .08em;
                padding: 8px 20px;
                border-bottom: 1px solid var(--border);
            }

            .nav-sp-group {
                border-top: 4px solid var(--bg);
            }

            .nav-sp-group:first-of-type {
                border-top: none;
            }

            .nav-sp-group a {
                padding-left: 32px;
                font-size: 17px;
            }

            .nav-sp-group a::before {
                content: "›";
                color: var(--primary);
                font-weight: 700;
                margin-right: 10px;
                margin-left: -16px;
            }

            /* SPナビ：ゴージャスCTAボタン群（会員登録/セルフ見積/お問い合わせ） */
            /* SPメニューCTA：シンプルなテキスト＋アイコン（派手な装飾を排除） */
            .nav-sp-ctas {
                padding: 0;
                display: block;
                background: #fff;
            }

            .nav-sp-ctas a.nav-sp-cta {
                display: flex !important;
                align-items: center;
                gap: 12px;
                padding: 14px 20px !important;
                border: none !important;
                border-bottom: 1px solid var(--border) !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                background: #fff !important;
                color: var(--text) !important;
                font-weight: 700 !important;
                font-size: inherit !important;
                position: relative;
            }

            .nav-sp-ctas a.nav-sp-cta:active {
                background: #f6f6f6;
            }

            .nav-sp-ctas a.nav-sp-cta::before {
                content: none;
            }

            .nav-sp-cta-icon {
                flex: 0 0 auto;
                width: 28px;
                height: 28px;
                background: none;
                border-radius: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
                color: var(--primary);
            }

            .nav-sp-cta-icon svg {
                width: 24px;
                height: 24px;
                display: block;
            }

            .nav-sp-cta-img {
                width: 26px;
                height: 26px;
                object-fit: contain;
                border-radius: 0;
                box-shadow: none;
            }

            .nav-sp-cta-body {
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 2px;
                min-width: 0;
            }

            .nav-sp-cta-badge {
                display: none; /* バッジ非表示（派手さ抑制） */
            }

            .nav-sp-cta-title {
                font-size: 16px;
                font-weight: 700;
                line-height: 1.3;
                color: var(--text);
            }

            .nav-sp-cta-sub {
                font-size: 11px;
                font-weight: 500;
                line-height: 1.3;
                color: var(--mid);
            }

            .nav-sp-cta-arrow {
                flex: 0 0 auto;
                font-size: 15px;
                font-weight: 700;
                color: var(--mid);
                opacity: .8;
            }

            /* アイコンの色だけ用途別に（背景は白のまま・控えめ） */
            .nav-sp-cta--member .nav-sp-cta-icon { color: #C0405F; }
            .nav-sp-cta--sim .nav-sp-cta-icon { color: #2f96a4; }
            .nav-sp-cta--contact .nav-sp-cta-icon { color: #3d8b3d; }

            /* SPナビ：ゴージャスなプランカード */
            .nav-sp-group--plans {
                background: #f6f6f6;
                padding-bottom: 10px;
            }

            .nav-sp-group--plans a.nav-sp-plan {
                display: flex !important;
                align-items: stretch;
                margin: 8px 14px 0;
                padding: 0 !important;
                border: none !important;
                border-radius: 6px;
                overflow: hidden;
                box-shadow: 0 3px 8px rgba(0, 0, 0, .12);
                font-size: inherit !important;
            }

            .nav-sp-group--plans a.nav-sp-plan::before {
                content: none;
            }

            .nav-sp-plan-label {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                flex: 0 0 90px;
                padding: 8px 6px;
                background: #fff;
                font-size: 14px;
                font-weight: 800;
                line-height: 1.3;
                text-align: center;
            }

            .nav-sp-plan-price {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                gap: 0;
                padding: 8px 14px;
                color: #fff;
                line-height: 1.2;
                white-space: nowrap;
            }
            .nav-sp-plan-reg {
                font-size: 11px;
                font-weight: 600;
                opacity: .85;
            }
            .nav-sp-plan-memlabel {
                font-size: 10px;
                font-weight: 700;
                opacity: .95;
                margin-top: 2px;
            }
            .nav-sp-plan-mem {
                display: flex;
                align-items: baseline;
                gap: 2px;
            }

            /* 料金の左隣に表示するプランごとのサムネイル */
            .nav-sp-plan-thumb {
                flex: 0 0 auto;
                width: 56px;
                height: 56px;
                object-fit: cover;
                border-radius: 6px;
                margin: 8px 0 8px 10px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
                background: rgba(255, 255, 255, .15);
            }

            .nav-sp-plan-tax {
                font-size: 11px;
                font-weight: 700;
                opacity: .9;
            }

            .nav-sp-plan-num {
                font-family: 'Oswald', 'Noto Sans JP', sans-serif;
                font-size: 26px;
                font-weight: 800;
                letter-spacing: -.01em;
                line-height: 1;
            }

            .nav-sp-plan-yen {
                font-size: 12px;
                font-weight: 700;
            }

            /* 火葬式：ティール */
            .nav-sp-plan--kasou {
                background: linear-gradient(135deg, #4CBBCA 0%, #2f96a4 100%);
            }
            .nav-sp-plan--kasou .nav-sp-plan-label {
                color: #2f96a4;
            }

            /* 納棺式：グリーン */
            .nav-sp-plan--noukan {
                background: linear-gradient(135deg, #5CB85C 0%, #3d8b3d 100%);
            }
            .nav-sp-plan--noukan .nav-sp-plan-label {
                color: #3d8b3d;
            }

            /* 1日葬：オレンジ */
            .nav-sp-plan--ichinichi {
                background: linear-gradient(135deg, #F0A500 0%, #c98800 100%);
            }
            .nav-sp-plan--ichinichi .nav-sp-plan-label {
                color: #c98800;
            }

            /* 2日葬：パープル */
            .nav-sp-plan--futsuka {
                background: linear-gradient(135deg, #9B59B6 0%, #743f8b 100%);
            }
            .nav-sp-plan--futsuka .nav-sp-plan-label {
                color: #743f8b;
            }

            /* SPナビ：お急ぎの方へ（PCヘッダーと同じカラー） */
            .nav-sp-emergency {
                display: flex !important;
                align-items: center;
                gap: 10px;
                background: var(--cta-red) !important;
                color: #fff !important;
                font-weight: 800 !important;
                font-size: 18px !important;
                padding: 18px 20px !important;
                border-bottom: 4px solid var(--bg) !important;
                text-decoration: none;
            }

            .nav-sp-emergency:hover {
                background: #a91f1f !important;
                color: #fff !important;
            }

            .nav-sp-emergency::before {
                content: none;
            }

            .nav-sp-emergency-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 28px;
                height: 28px;
                background: #fff;
                color: var(--cta-red);
                border-radius: 50%;
                font-size: 18px;
                font-weight: 900;
                flex-shrink: 0;
                line-height: 1;
            }

            .nav-sp-emergency-text {
                flex: 1;
                text-align: center;
            }

            .nav-sp-emergency-arrow {
                font-size: 20px;
                font-weight: 700;
                flex-shrink: 0;
            }
        }

        @media(max-width:768px) {
            .mv-service-name {
                font-size: 42px;
            }

            .mv-zero-lead {
                font-size: 16px;
                text-align: center;
            }

            .mv-zero-headline {
                font-size: 48px;
                align-items: end;
                margin: 0px 0 0px;
            }

            .mv-zero-main {
                justify-content: center;
            }

            .mv-plan-price {
                padding: 16px 14px 10px;
                gap: 10px;
                margin: 20px 0 0;
                width: 100%;
                justify-content: center;
            }

            .mv-plan-price-badge {
                top: -13px;
                left: -3px;
                font-size: 10px;
                padding: 4px 10px 10px;
            }

            .mv-plan-price-label {
                font-size: 12px;
                padding: 3px 8px;
            }

            .mv-plan-price-num {
                font-size: 13px;
            }

            .mv-plan-price-num strong {
                font-size: 24px;
            }

            .mv-plan-price-num small {
                font-size: 13px;
            }

            .mv-tel-num {
                font-size: 28px;
            }

            .facts-row {
                flex-wrap: wrap;
            }

            .fact-item {
                flex: 0 0 50%;
                border-bottom: 1px solid rgba(255, 255, 255, .1);
            }

            .reasons-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .discount-grid {
                grid-template-columns: 1fr;
            }

            .voices-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                flex-direction: column;
                gap: 24px;
            }

            .footer-brand {
                flex: none;
            }

            .header-tel-num {
                font-size: 20px;
            }
        }

        @media(max-width:560px) {
            .mv-service-name {
                font-size: 32px;
                line-height: 1.25;
                white-space: normal;
            }

            .mv-zero-headline {
                font-size: 36px;
                justify-content: center;
            }

            .mv-cta-discount-num {
                font-size: 38px;
            }

            .mv-free-title {
                font-size: 13px;
            }

            .plans-row {
                grid-template-columns: 1fr;
            }

            .mv-badges {
                flex-direction: column;
                align-items: center;
            }

            .mv-cta-area {
                flex-direction: column;
            }

            .footer-nav {
                flex-wrap: wrap;
            }
        }

        /* ── 追加コンテンツ ── */
        .add-emergency-section {
            background: var(--primary-pale);
            padding: 50px 0;
        }

        .add-em-inner {
            max-width: 600px;
            text-align: center;
        }

        .add-em-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 24px;
            font-style: italic;
        }

        .add-em-phone-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .add-em-phone-box .badg {
            background: var(--teal);
            color: #fff;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 6px;
            line-height: 1.2;
            font-weight: 700;
            text-align: center;
        }

        .add-em-phone-box .ic {
            font-size: 24px;
            color: var(--cta-red);
        }

        .add-em-phone-box .num {
            font-size: 40px;
            font-weight: 900;
            color: var(--cta-red);
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            line-height: 1;
        }

        .add-em-content-box {
            background: #fff;
            border-radius: 6px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .add-em-box-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 16px;
            letter-spacing: 0.1em;
        }

        .add-em-list {
            list-style: none;
            margin-bottom: 16px;
        }

        .add-em-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .add-em-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-size: 16px;
        }

        .add-em-note {
            font-size: 16px;
            color: var(--mid);
            text-align: center;
        }

        .add-banner-section {
            padding: 40px 0;
            background: var(--bg);
        }

        .add-banner-box {
            background: url('https://placehold.jp/1000x200.png?text=Bg+Image') center/cover;
            border: 3px solid var(--teal);
            border-radius: 6px;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .add-banner-text {
            font-size: 20px;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .add-banner-text strong {
            color: var(--cta-red);
            font-size: 24px;
            font-weight: 700;
        }

        .add-banner-time {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .add-banner-btn {
            background: var(--teal);
            color: #fff;
            border-color: var(--teal);
        }

        .add-banner-btn:hover {
            background: #3aabb9;
        }

        .add-rsn-section-band {
            background: linear-gradient(135deg, var(--primary) 0%, #d4567a 100%);
            padding: 28px 0;
            margin-bottom: 40px;
        }

        /* 資料請求バナー */
        .brochure-banner {
            display: block;
            margin: 48px auto 0;
            max-width: 900px;
            padding: 30px 32px 28px;
            background: #fffaf0;
            border-radius: 10px;
            border: 1px solid #f0e6d2;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
            color: var(--text);
            transition: transform .2s, box-shadow .2s;
            text-decoration: none;
        }

        .brochure-banner:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
            color: var(--text);
        }

        .brochure-banner-eyebrow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .brochure-banner-eyebrow-line {
            width: 44px;
            height: 1.5px;
            background: var(--text);
        }

        .brochure-banner-eyebrow-text {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .06em;
        }

        .brochure-banner-body {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .brochure-banner-image {
            position: relative;
            flex: 0 0 180px;
            width: 180px;
            aspect-ratio: 3 / 4;
            transform: rotate(-3deg);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fff 0%, #fdf6e3 100%);
            border: 1px solid #e8d8b8;
            border-radius: 4px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
            overflow: hidden;
        }

        .brochure-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .brochure-banner-image-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #a59078;
            text-align: center;
            line-height: 1.5;
            pointer-events: none;
        }

        .brochure-banner-image img:not([src=""]) + .brochure-banner-image-placeholder {
            display: none;
        }

        .brochure-banner-image.is-empty .brochure-banner-image-placeholder {
            display: flex;
        }

        .brochure-banner-text {
            flex: 1;
            min-width: 0;
            text-align: center;
        }

        .brochure-banner-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 12px;
            letter-spacing: .04em;
        }

        .brochure-banner-points {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px 18px;
            font-size: 16px;
            color: var(--text);
            line-height: 1.5;
        }

        .brochure-banner-points li::before {
            content: '・';
            margin-right: 2px;
        }

        .brochure-banner-present {
            margin: 0 0 12px;
            font-size: 28px;
            font-weight: 900;
            color: var(--text);
            letter-spacing: .04em;
            line-height: 1.2;
        }

        .brochure-banner-present span {
            background: linear-gradient(transparent 60%, #ffe169 60%);
            padding: 0 4px;
        }

        .brochure-banner-cta {
            display: inline-block;
            padding: 10px 28px;
            background: var(--primary);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            transition: background .2s;
        }

        .brochure-banner:hover .brochure-banner-cta {
            background: #a01c1c;
        }

        @media(max-width:640px) {
            .brochure-banner {
                padding: 24px 18px;
            }

            .brochure-banner-body {
                flex-direction: column;
                gap: 18px;
            }

            .brochure-banner-image {
                flex: 0 0 auto;
                width: 140px;
            }

            .brochure-banner-title {
                font-size: 20px;
            }

            .brochure-banner-present {
                font-size: 22px;
            }
        }

        .add-rsn-promise-head {
            text-align: center;
            margin: 40px 0 24px;
        }

        .add-rsn-promise-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--text);
            margin: 0;
            letter-spacing: .02em;
            position: relative;
            padding-bottom: 14px;
        }

        .add-rsn-promise-title em {
            color: var(--primary);
            font-style: normal;
        }

        .add-rsn-promise-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        @media(max-width:768px) {
            .add-rsn-promise-title {
                font-size: 20px;
            }
        }

        .add-rsn-section-title {
            text-align: center;
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin: 0;
            letter-spacing: .06em;
        }

        @media(max-width:768px) {
            .add-rsn-section-band {
                padding: 22px 0;
                margin-bottom: 28px;
            }

            .add-rsn-section-title {
                font-size: 20px;
            }
        }

        .add-reasons-section {
            padding: 0 0 60px;
            background: #fff;
        }

        .add-rsn-head {
            text-align: center;
            margin-bottom: 40px;
        }

        .add-rsn-head h2 .nowrap-block {
            display: inline-block;
            white-space: nowrap;
        }

        @media(max-width:640px) {
            .add-rsn-head h2 {
                font-size: 22px;
                line-height: 1.45;
            }
        }

        .add-rsn-head h3 {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .add-rsn-head h3 span {
            color: var(--primary);
            font-size: 28px;
        }

        .add-rsn-desc {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.8;
        }

        .add-rsn-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .add-rsn-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 20px;
            display: flex;
            gap: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }

        .add-rsn-num {
            font-size: 24px;
            color: var(--primary);
            font-weight: 900;
            font-family: "Oswald", 'Noto Sans JP', sans-serif;
            line-height: 1;
            flex-shrink: 0;
        }

        .add-rsn-card-content {
            flex: 1;
        }

        .add-rsn-card-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .add-rsn-card-desc {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.6;
        }

        .add-staff-section {
            padding: 70px 0;
            background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
        }

        .staff-eyebrow {
            display: inline-block;
            background: var(--teal);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 5px 18px;
            border-radius: 50px;
            letter-spacing: .08em;
            margin-bottom: 10px;
        }

        .staff-message {
            display: flex;
            align-items: center;
            gap: 40px;
            background: #fff;
            border-radius: 6px;
            padding: 32px 36px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
            margin-bottom: 40px;
        }

        .staff-message-photo {
            flex: 0 0 220px;
            border-radius: 6px;
            overflow: hidden;
            background: var(--bg);
        }

        .staff-message-photo img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        .staff-message-body {
            flex: 1;
            min-width: 0;
        }

        .staff-message-quote {
            font-size: 20px;
            line-height: 1.85;
            color: var(--text);
            margin: 0 0 18px;
            font-weight: 600;
            letter-spacing: .02em;
        }

        .staff-message-sign {
            display: flex;
            flex-direction: column;
            gap: 2px;
            border-left: 3px solid var(--primary);
            padding-left: 14px;
        }

        .staff-message-role {
            font-size: 16px;
            color: var(--mid);
            letter-spacing: .04em;
        }

        .staff-message-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: .04em;
        }

        .staff-voices {
            margin-bottom: 32px;
        }

        .staff-voices-head {
            text-align: center;
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }

        .staff-voices-head::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .staff-voices-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .staff-voices-list li {
            background: #fff;
            border-radius: 6px;
            padding: 18px 18px 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            position: relative;
        }

        .staff-voices-list li::before {
            content: '"';
            position: absolute;
            top: 4px;
            left: 14px;
            font-family: Georgia, serif;
            font-size: 36px;
            color: var(--primary-pale);
            line-height: 1;
        }

        .staff-voices-list p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            margin: 0 0 10px;
            padding-left: 20px;
        }

        .staff-voices-list span {
            display: block;
            font-size: 12px;
            color: var(--mid);
            text-align: right;
        }

        .staff-cta {
            text-align: center;
        }

        .staff-cta-btn {
            display: inline-block;
            padding: 14px 36px;
            background: var(--teal);
            color: #fff;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            transition: background .2s, transform .2s;
        }

        .staff-cta-btn:hover {
            background: #2f96a6;
            color: #fff;
            transform: translateY(-2px);
        }

        @media(max-width:768px) {
            .staff-message {
                flex-direction: column;
                gap: 20px;
                padding: 24px 20px;
            }

            .staff-message-photo {
                flex: 0 0 auto;
                width: 180px;
            }

            .staff-message-photo img {
                height: 220px;
            }

            .staff-message-quote {
                font-size: 16px;
            }

            .staff-voices-list {
                grid-template-columns: 1fr;
            }
        }

        .add-facility-section {
            padding: 60px 0;
            background: #fff;
        }

        .add-fac-body {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        /* 自社斎場 見出し直下のキャッチ・リード */
        .add-fac-catch {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            margin: 14px 0 8px;
            letter-spacing: .02em;
        }
        .add-fac-lead {
            font-size: 16px;
            color: var(--text);
            line-height: 1.85;
            margin: 0 0 24px;
            max-width: 880px;
            margin-left: auto;
            margin-right: auto;
        }

        /* シンプル3列レイアウト（画像+斎場名のみ） */
        .add-fac-body--simple {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
        }
        .add-fac-card {
            display: block;
            text-decoration: none;
            color: var(--text);
            transition: transform .2s, box-shadow .2s;
        }
        .add-fac-card:hover {
            transform: translateY(-4px);
        }
        .add-fac-card .add-fac-img {
            flex: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,.08);
            transition: box-shadow .2s;
        }
        .add-fac-card:hover .add-fac-img {
            box-shadow: 0 6px 20px rgba(0,0,0,.15);
        }
        .add-fac-card-name {
            margin-top: 14px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            text-align: center;
            letter-spacing: .02em;
        }
        @media(max-width:768px){
            .add-fac-body--simple {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .add-fac-card-name {
                font-size: 18px;
            }
        }

        .add-fac-img {
            flex: 1;
            border-radius: 6px;
            overflow: hidden;
        }

        /* 画像枠（アンカーで包んだ場合）— 高さを揃えるため固定アスペクト比＋cover */
        .add-fac-img > a {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 6px;
        }

        .add-fac-img > a img,
        .add-fac-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 画像直接配置（フォールバック）の場合も同じ枠を確保 */
        .add-fac-img > img {
            aspect-ratio: 4 / 3;
            border-radius: 6px;
        }

        .add-fac-text-box {
            flex: 1;
        }

        .add-fac-name {
            font-size: 24px;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 4px;
            letter-spacing: .02em;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }

        .add-fac-catch {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin: 12px 0 16px;
        }

        .add-fac-desc {
            font-size: 16px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        @media(max-width: 768px) {
            .add-rsn-grid {
                grid-template-columns: 1fr;
            }

            .add-em-phone-box .num {
                font-size: 32px;
            }

            .add-fac-body {
                flex-direction: column;
                gap: 20px;
            }

            .add-staff-banner {
                display: flex;
                flex-direction: column;
            }

            .add-staff-content {
                position: relative;
                flex-direction: column;
                padding: 20px;
                align-items: stretch;
                gap: 16px;
                background: #3aabb9;
            }

            .add-staff-title {
                margin-right: 0;
            }

            .add-staff-btn {
                position: relative;
                bottom: auto;
                right: auto;
                text-align: center;
            }

            .add-staff-img {
                aspect-ratio: 16/9;
                object-fit: cover;
            }
        }

        /* ════════════════════════════════════════
           読みやすさ改善（フィードバック対応：文字サイズ・背景同化）
           - 注釈・小さいテキストの最小サイズを底上げ
           - 薄いグレー系の文字色を濃く
        ════════════════════════════════════════ */
        /* 10px台の極小テキストを11.5px以上に */
        .mv-disclaimers p,
        .mvb-disclaimers p,
        .mv-medal-note,
        .mvb-medal-note,
        .dflow-rich-note,
        .fact-sub,
        .small-funeral-card-meta {
            font-size: 12px;
            color: #6a6a6a;
        }
        /* セクションサブテキスト等の可読性UP */
        .sec-head p,
        .small-funeral-desc,
        .mv-tel-sub,
        .reason-card-text {
            color: #444;
        }
        /* 注釈系（※）の濃度UP */
        .mv-free-note,
        small {
            color: #5a5a5a;
        }
        /* バッジ・色付きカード内のsmallは親要素のカラーを継承（白文字を維持） */
        .small-funeral-badge small,
        .mv-cta-card small,
        .header-tel-link small {
            color: inherit;
        }
        /* リード文を読みやすく（本文より少しだけ大きく） */
        .add-rsn-desc,
        .small-funeral-desc {
            font-size: 16px;
            line-height: 1.9;
        }
        /* 見出し下のサブテキスト同化対策 */
        .dflow-sub,
        .plans-toggle-sub {
            color: #444;
            font-weight: 700;
        }

        .plans-toggle-option.is-active .plans-toggle-sub {
            color: #fff;
        }

/* ===== プランオプション カード（旧インラインstyle属性を集約） ===== */
.plan-opt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:24px;}
.plan-opt-card{background:#fff;border-radius:6px;overflow:hidden;border:1px solid var(--border);border-top:4px solid var(--primary);}
.plan-opt-card > h3{font-size:19px;font-weight:800;color:var(--primary);margin:0;padding:16px 24px;border-bottom:1px solid var(--border);}
.plan-opt-card-body{display:flex;gap:20px;padding:22px 24px;align-items:flex-start;}
.plan-opt-card-img{flex:0 0 200px;}
.plan-opt-card-body > p{flex:1;font-size:15px;color:var(--text);line-height:1.9;margin:0;}
.plan-opt-card-price{padding:14px 24px;background:var(--bg);border-top:1px solid var(--border);display:flex;align-items:center;justify-content:flex-end;gap:8px;}
.plan-opt-price-num{font-size:20px;font-weight:900;color:var(--primary);}
.plan-opt-gcard{background:#fff;border-radius:6px;overflow:hidden;border:1px solid var(--border);display:flex;flex-direction:column;box-shadow:0 2px 8px rgba(0,0,0,.05);}
.plan-opt-gcard-img{aspect-ratio:4/3;background:#f5f5f5;overflow:hidden;}
.plan-opt-gcard-body{padding:18px 18px 20px;display:flex;flex-direction:column;flex:1;}
.plan-opt-gcard-body > h3{font-size:17px;font-weight:800;color:var(--primary);margin:0 0 8px;}
.plan-opt-gcard-body > p{font-size:14px;color:var(--mid);line-height:1.8;margin:0 0 14px;}
.plan-opt-gcard-price{margin-top:auto;padding-top:12px;border-top:1px solid var(--border);text-align:right;}
.plan-opt-gcard-price-num{font-size:18px;font-weight:900;color:var(--primary);}
/* ===== プランオプション グリッド（旧テンプレ末尾インライン由来） ===== */
@media(max-width:900px){ .plan-opt-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media(max-width:640px){
    .plan-opt-grid { grid-template-columns: 1fr !important; }
    .plan-opt-card-body { flex-direction: column; gap: 14px !important; }
    .plan-opt-card-img { flex: none !important; width: 100%; max-width: 280px; margin: 0 auto; }
}
