:root {
            --lp-main-red: #e5004f; /* パワポのメインの赤・ピンク色 */
            --lp-sub-pink: #fdeff2; /* 背景の薄いピンク */
            --lp-text-dark: #333;
        }

        /* 既存サイトとの干渉を防ぐため、すべてのクラス名に lp-yoyaku- を付与 */
        .lp-yoyaku-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background-color: #fff;
            font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
            line-height: 1.5;
            color: var(--lp-text-dark);
        }

        /* --- PAGE 1 構成 --- */
        .lp-yoyaku-page1 {
            padding: 40px;
            position: relative;
            border-bottom: 2px solid #ccc;
        }

        .lp-yoyaku-hospital-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .lp-yoyaku-hospital-titles {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .lp-yoyaku-hero-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .lp-yoyaku-hero-text {
            flex: 1;
        }

        .lp-yoyaku-hero-text h1 {
            color: var(--lp-main-red);
            font-size: 2.8rem;
            margin: 0;
            line-height: 1.2;
        }

        .lp-yoyaku-label-red {
            display: inline-block;
            background-color: var(--lp-main-red);
            color: white;
            padding: 10px 30px;
            font-size: 1.8rem;
            margin: 15px 0;
            font-weight: bold;
        }

        .lp-yoyaku-hero-img-box {
            width: 300px;
            text-align: right;
        }

        .lp-yoyaku-info-sections {
            margin-top: 30px;
        }

        .lp-yoyaku-dept-card {
            background-color: var(--lp-sub-pink);
            border: 2px solid var(--lp-main-red);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .lp-yoyaku-dept-card h2 {
            font-size: 1.3rem;
            color: var(--lp-main-red);
            margin-top: 0;
            border-bottom: 1px solid var(--lp-main-red);
        }

        .lp-yoyaku-tel-box {
            text-align: center;
            margin-top: 20px;
        }

        .lp-yoyaku-tel-number {
            font-size: 2.5rem;
            color: var(--lp-main-red);
            font-weight: bold;
        }

        /* --- PAGE 2 構成 --- */
        .lp-yoyaku-page2 {
            padding: 40px;
            background-color: #fff;
        }

        .lp-yoyaku-flow-title {
            text-align: center;
            font-size: 2rem;
            color: var(--lp-main-red);
            margin-bottom: 40px;
            border-bottom: 3px solid var(--lp-main-red);
            display: inline-block;
            width: 100%;
        }

        .lp-yoyaku-step-container {
            display: flex;
            gap: 20px;
            justify-content: space-between;
        }

        .lp-yoyaku-step-item {
            flex: 1;
            border: 1px solid #ccc;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .lp-yoyaku-step-badge {
            background-color: var(--lp-main-red);
            color: white;
            display: inline-block;
            padding: 5px 15px;
            border-radius: 5px;
            font-weight: bold;
            margin-bottom: 10px;
            align-self: center;
        }

        .lp-yoyaku-step-img-box {
            margin: 15px 0;
            background-color: #f9f9f9;
            min-height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed #bbb;
        }

        .lp-yoyaku-caution {
            font-size: 0.8rem;
            text-align: left;
            background-color: #eee;
            padding: 10px;
            margin-top: auto;
        }

        @media (max-width: 768px) {
            .lp-yoyaku-hero-area, .lp-yoyaku-step-container { flex-direction: column; }
            .lp-yoyaku-hero-img-box { width: 100%; text-align: center; margin-top: 20px; }
            .lp-yoyaku-step-item { margin-bottom: 20px; }
            .lp-yoyaku-hero-text h1 { font-size: 2rem; }
        }