﻿        /* 不要な要素を非表示にしてLP化 */
        header,
        footer,
        .float-btn,
        .float-btn+div,
        .menu-btn,
        .totop,
        main,
        .pankuzu {
            display: none !important;
        }

        /* BIZREACH風レイアウト CSS */
        .biz-mv-wrap {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            background: linear-gradient(135deg, #fdfbf7 0%, #f4eee1 100%);
            /* クリーム色系グラデーション */
            padding: 40px 5% 40px;
            /* フッターが入る余白を下部に確保 */
            position: relative;
            overflow: visible;
            /* ★コンテンツのはみ出し（消滅）を防ぐ */
            overflow-x: hidden;
            min-height: 100vh;
            /* 画面いっぱいの高さに */
            min-height: 100dvh;
        }

        /* 左側の情報エリア */
        .biz-mv-left {
            flex: 1;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 450px;
            padding-bottom: 40px;
        }

        .biz-mv-default-text h2 {
            font-size: 32px;
            line-height: 1.4;
            margin-bottom: 20px;
            color: #3b2f2f;
            /* ダークブラウン */
            font-weight: bold;
            text-shadow: none;
        }

        .biz-mv-default-text h2 span {
            color: #c9a75d;
            /* ゴールド */
            font-size: 42px;
            display: block;
            margin-top: 10px;
            text-shadow: none;
        }

        .biz-mv-default-text p {
            font-size: 20px;
            /* 文字を大きく */
            line-height: 1.6;
            color: #3b2f2f !important;
            /* ダークブラウン */
            font-weight: bold;
            text-shadow: none;
            /* 影を消す */
        }

        .biz-notice {
            margin-bottom: 15px;
            padding: 10px 15px;
            background: #fdfbf7;
            border: 1px solid #e0d5c1;
            border-radius: 8px;
            font-size: 12px;
            color: #5c4738;
            line-height: 1.5;
        }

        .biz-notice strong {
            display: block;
            color: #a37a2c;
            font-size: 13px;
            margin-bottom: 5px;
            border-bottom: 1px solid #e0d5c1;
            padding-bottom: 5px;
        }

        .biz-notice ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .biz-notice ul li {
            position: relative;
            padding-left: 1.2em;
            margin-bottom: 4px;
        }

        .biz-notice ul li::before {
            content: "※";
            position: absolute;
            left: 0;
            top: 0;
            color: #a37a2c;
        }

        /* フォームのテキスト切り替え用 */
        .text-sp {
            display: none;
        }

        .text-pc {
            display: inline;
        }

        /* 中央の画像エリア */
        .biz-mv-img {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            z-index: 1;
        }

        .biz-mv-img img {
            max-height: 100%;
            max-width: 150%;
            object-fit: contain;
            position: absolute;
            bottom: 0;
            opacity: 0.8;
        }

        /* 右側のフォームカード */
        .biz-mv-right {
            flex: 1;
            z-index: 2;
            display: flex;
            align-items: center;
            /* 縦の中央 */
            justify-content: flex-end;
            max-width: 550px;
            /* フォームの横幅を広げる */
            padding-bottom: 40px;
        }

        .biz-card {
            background: #fff;
            border-radius: 12px;
            width: 100%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            color: #333;
        }

        .biz-card-head {
            background: #f8f9fa;
            padding: 15px;
            /* 高さを抑えるために縮小 */
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        .biz-card-head p {
            font-size: 15px;
            font-weight: bold;
            margin: 0;
        }

        .biz-card-head strong {
            color: #c9a75d;
            font-size: 22px;
        }

        .biz-card-body {
            padding: 20px;
            /* 30pxから縮小 */
        }

        .biz-stepper {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 15px;
            /* 25pxから縮小 */
            padding: 0 10px;
        }

        .biz-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .biz-step .step-circle {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #ddd;
            margin-bottom: 8px;
            margin-top: 4px;
            /* activeと中心を合わせるため */
            transition: all 0.3s;
        }

        .biz-step.active .step-circle {
            width: 22px;
            height: 22px;
            background: #dfbc74;
            /* ゴールド */
            margin-bottom: 4px;
            margin-top: 0;
            box-shadow: 0 0 5px rgba(223, 188, 116, 0.5);
        }

        .biz-step .step-text {
            font-size: 11px;
            color: #999;
            white-space: nowrap;
        }

        .biz-step.active .step-text {
            color: #dfbc74;
            font-weight: bold;
            font-size: 12px;
        }

        .biz-stepper .step-line {
            flex: 1;
            height: 2px;
            background: #eee;
            margin: 10px 5px 0;
            /* 中心(11px)付近に線を引く */
            z-index: 1;
        }

        .biz-label {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .biz-select-wrap select {
            width: 100%;
            padding: 12px;
            font-size: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 15px;
            /* 30pxから縮小 */
            background: #fff;
        }

        .biz-btn-next {
            display: block;
            width: 100%;
            background: #c9a75d;
            color: #fff;
            text-align: center;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .biz-btn-next:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .biz-btn-next:not(:disabled):hover {
            background: #b0914d;
        }

        /* 選択後のクリニック情報用 */
        .biz-mv-clinic-info {
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            border-radius: 8px;
            color: #333;
            max-height: none;
            /* スクロールを消して全表示 */
            overflow-y: visible;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 15px;
        }

        .biz-mv-clinic-info::after {
            content: "";
            display: block;
            clear: both;
        }

        /* 中に展開される要素のスタイル調整 (PCでは画像を左に浮かせる) */
        /* pictureを使用しているクリニック用 */
        .biz-mv-clinic-info>a>picture {
            float: left;
            width: 140px;
            margin-right: 15px;
            margin-bottom: 0;
        }

        .biz-mv-clinic-info>a>picture img {
            width: 100%;
            height: 100px;
            /* 画像の高さを揃える */
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 0;
        }

        /* imgを直接使用しているクリニック用 (例: 町田エス歯科) */
        .biz-mv-clinic-info>a>img {
            float: left;
            width: 140px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
            margin-bottom: 0;
        }

        .biz-mv-clinic-info>a>h3 {
            font-size: 16px;
            color: #3b2f2f;
            margin-top: 0;
            margin-bottom: 8px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
            font-weight: bold;
        }

        .biz-mv-clinic-info>p {
            font-size: 12px;
            margin-bottom: 0;
            line-height: 1.4;
        }

        .biz-mv-clinic-info .schedule {
            display: none;
            /* MV内ではスケジュールは非表示にしてすっきりさせる */
        }

        .biz-mv-clinic-info .btn-wrap,
        .biz-mv-clinic-info a.btn {
            display: none !important;
        }

        /* -------------------------------------
           デザインの洗練・リッチ化 (かっこよくする)
           ------------------------------------- */
        .biz-mv-default-text h2 {
            font-size: 36px !important;
            letter-spacing: 0.05em;
            color: #2c1e16 !important;
            /* より深みのあるブラウン */
            margin-bottom: 25px !important;
        }

        .biz-mv-default-text h2 span {
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 46px !important;
            font-weight: 900 !important;
            letter-spacing: 0.02em;
            margin-top: 12px !important;
        }

        .biz-mv-logo {
            width: 250px;
            max-width: 100%;
            margin-bottom: 25px;
            display: block;
        }

        .biz-mv-default-text p {
            letter-spacing: 0.03em;
            font-size: 18px !important;
            color: #6a4c38 !important;
            /* 確実に茶色とわかる色 */
        }

        .biz-card {
            border-radius: 16px !important;
            box-shadow: 0 15px 35px rgba(59, 47, 47, 0.08) !important;
            border: 1px solid rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.95) !important;
        }

        .biz-card-head {
            background: transparent !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        }

        .biz-card-head strong {
            color: #b38b36 !important;
        }

        .biz-step .step-circle {
            width: 12px !important;
            height: 12px !important;
            background: #e0e0e0 !important;
        }

        .biz-step.active .step-circle {
            width: 22px !important;
            height: 22px !important;
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%) !important;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4) !important;
        }

        /* セレクトボックスの洗練 */
        #biz-clinic-select {
            appearance: none;
            -webkit-appearance: none;
            background: #fafafa url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"%3E%3Cpath fill="none" d="M0 0h24v24H0z"/%3E%3Cpath d="M12 16l-6-6h12z" fill="rgba(170,119,28,1)"/%3E%3C/svg%3E') no-repeat right 15px center;
            background-size: 20px;
            border: 1px solid #ddd !important;
            border-radius: 8px !important;
            padding: 16px 20px !important;
            font-size: 16px !important;
            color: #3b2f2f !important;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) inset;
            transition: all 0.3s ease;
        }

        #biz-clinic-select:focus {
            outline: none;
            border-color: #d4af37 !important;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
        }

        /* ボタンの洗練 */
        #biz-btn-next {
            border-radius: 30px !important;
            font-size: 18px !important;
            font-weight: bold !important;
            padding: 18px 0 !important;
            transition: all 0.3s ease !important;
            border: none !important;
        }

        #biz-btn-next:not(:disabled) {
            background: linear-gradient(135deg, #e3c473 0%, #c9a75d 100%) !important;
            box-shadow: 0 8px 20px rgba(201, 167, 93, 0.4) !important;
            color: #fff !important;
            cursor: pointer;
        }

        #biz-btn-next:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(201, 167, 93, 0.5) !important;
        }

        #biz-btn-next:disabled {
            background: #f0f0f0 !important;
            color: #aaa !important;
        }

        /* LP専用フッター */
        .biz-lp-footer-sp {
            display: none;
        }

        .biz-lp-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: transparent;
            padding: 10px 20px;
            text-align: center;
            z-index: 10;
        }

        .biz-lp-footer-inner p {
            margin-bottom: 12px;
        }

        .biz-lp-copyright {
            font-size: 10px;
            color: #999;
            letter-spacing: 0.05em;
        }

        /* スマホ表示用 */
        @media screen and (max-width: 768px) {
            .biz-lp-footer {
                display: none;
            }

            .biz-lp-footer-sp {
                display: block;
                text-align: center;
                margin-top: 15px;
            }

            .biz-lp-footer-sp .biz-lp-copyright {
                font-size: 10px;
                color: #999;
                letter-spacing: 0;
            }

            .biz-mv-default-text p {
                font-size: 14px !important;
                /* 文字を小さく */
                line-height: 1.5;
                color: #6a4c38 !important;
                /* 茶色く */
            }

            .biz-notice {
                margin-bottom: 15px;
                padding: 8px;
                font-size: 10px;
                line-height: 1.3;
            }

            .biz-notice strong {
                font-size: 10px;
                margin-bottom: 2px;
            }

            .biz-mv-logo {
                width: 180px;
                margin-bottom: 15px;
            }

            .biz-mv-wrap {
                flex-direction: column;
                padding: 40px 0 0;
                /* フッターをrelativeにしたので下部余白を減らす */
                /* フォームを画面幅いっぱいにするため左右の余白をなくす */
                height: auto;
                /* 高さを自然に任せて無駄な空白を防ぐ */
                justify-content: flex-start;
                gap: 0;
                overflow-y: visible;
                overflow-x: hidden;
            }

            .biz-mv-left {
                max-width: 100%;
                padding: 0 5%;
                z-index: 3;
                flex: 0 0 auto;
            }

            .biz-mv-right {
                max-width: 100%;
                width: 100%;
                padding-bottom: 0;
                /* ★ここにも余白を設ける */
                z-index: 3;
                position: relative;
                flex: none;
                /* 自然な高さに任せる */
                display: block;
                margin-top: -60px;
                /* 画像に少し被せるように上に詰める */
            }

            .biz-card {
                width: 100%;
                border-radius: 20px 20px 0 0;
                /* 下部ピタ付け用の角丸 */
                box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            }

            .biz-mv-default-text h2 {
                font-size: 22px;
                margin-bottom: 5px;
            }

            .biz-mv-default-text h2 span {
                font-size: 30px;
                margin-top: 5px;
            }

            .biz-mv-default-text p {
                font-size: 16px;
                /* 14pxから16pxに大きく */
                line-height: 1.5;
                color: #3b2f2f !important;
                text-shadow: none;
            }

            .text-pc {
                display: none;
            }

            .text-sp {
                display: inline;
            }

            .biz-mv-img {
                position: relative;
                /* absoluteをやめて自然な流れにする */
                top: auto;
                right: auto;
                width: 100%;
                height: auto;
                z-index: 1;
                margin: 15px 0 0 0;
                /* マイナスマージンをやめて余白をとる */
                display: flex;
                justify-content: flex-end;
                /* 右寄せ */
            }

            .biz-mv-img img {
                position: static;
                width: 90%;
                height: auto;
                object-fit: contain;
                opacity: 0.6;
            }

            /* カード内の余白・文字サイズ */
            .biz-card-head {
                padding: 10px;
            }

            .biz-card-head p {
                font-size: 12px;
            }

            .biz-card-head strong {
                font-size: 16px;
            }

            .biz-card-body {
                padding: 15px 20px 25px;
                /* 下部を少し空ける */
            }

            .biz-stepper {
                margin-bottom: 15px;
                padding: 0 5px;
            }

            .biz-step .step-text {
                font-size: 10px;
            }

            .biz-step.active .step-text {
                font-size: 11px;
            }

            .biz-label {
                font-size: 13px;
                margin-bottom: 5px;
            }

            .biz-select-wrap select {
                padding: 8px;
                margin-bottom: 10px;
                font-size: 14px;
            }

            .biz-btn-next {
                padding: 10px;
                font-size: 15px;
            }

            /* クリニック情報表示時 (フォーム内) */
            .biz-mv-clinic-info {
                max-height: none;
                /* スクロールは全体でかける */
                padding: 15px;
                background: #f8f9fa;
                border: 1px solid #ddd;
                border-radius: 8px;
                margin-bottom: 15px;
            }

            .biz-mv-clinic-info>a>picture,
            .biz-mv-clinic-info>a>img {
                float: none;
                width: 100%;
                margin-right: 0;
                margin-bottom: 10px;
                display: block;
            }

            .biz-mv-clinic-info>a>picture img,
            .biz-mv-clinic-info>a>img {
                width: 100%;
                /* スマホでは100%に戻す */
                height: 120px;
            }

            .biz-mv-clinic-info>a>h3 {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .biz-mv-clinic-info>p {
                font-size: 11px;
                margin-bottom: 10px;
            }
        }
