.initial-plan-section {
            background: #fff;
            padding: 0;
            position: relative;
        }

        .plan-callout {
            background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
            color: white;
            padding: 20px;
            position: relative;
            margin-bottom: 0;
        }

        .plan-callout::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 10px solid #7B1FA2;
        }

        .doctor-section {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #fce4ec 0%, #fff 100%);
            min-height: 300px;
        }

        .doctor-text {
            flex: 1;
            padding: 0px 40px 20px;
        }

        .doctor-image {
            flex: 0 0 200px;
            height: 300px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><rect fill="%23f0f0f0" width="200" height="300"/><text x="100" y="150" text-anchor="middle" fill="%23999" font-size="14">医師画像</text></svg>') no-repeat center;
            background-size: cover;
        }

        .greeting-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .plan-highlight {
            background: #fff;
            border: 3px solid #E91E63;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
        }

        .plan-highlight::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 30px;
            background: #fff;
            padding: 0 10px;
        }

.plan-tag {
    background: linear-gradient(45deg, #E91E63, #C2185B);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    width: fit-content;
}

.plan-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-bottom: 8px;
}

.plan-details {
    font-size: 20px;
    /* color: #666; */
    margin-bottom: 15px;
    text-align: left;
}

        .plan-conditions {
            font-size: 12px;
            color: #888;
            line-height: 1.5;
        }

        .plan-conditions div {
            margin-bottom: 3px;
            text-align: left;
        }

        .main-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            background: #fff;
        }

        .price-section {
            text-align: center;
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            padding: 40px 20px;
            border-radius: 10px;
            margin: 30px 0;
            position: relative;
        }

        .price-header {
            background: #E91E63;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 30px;
        }

        .treatment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .treatment-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
            border-left: 4px solid #E91E63;
        }

        .treatment-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .treatment-desc {
            font-size: 13px;
            color: #666;
        }

        .price-display {
            font-size: 48px;
            font-weight: bold;
            color: #E91E63;
            margin: 20px 0;
        }

        .price-unit {
            font-size: 18px;
            margin-left: 10px;
        }

        .price-note {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }

        .conditions-box {
            background: #FFF3E0;
            border: 1px solid #FFB74D;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .conditions-title {
            font-weight: bold;
            color: #F57C00;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .condition-list {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        .condition-list div {
            margin-bottom: 5px;
            padding-left: 10px;
            position: relative;
        }

        .condition-list div::before {
            content: '※';
            position: absolute;
            left: 0;
            color: #F57C00;
            font-weight: bold;
        }

        .cta-section {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #fce4ec 0%, #fff 100%);
            border-radius: 10px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #E91E63, #AD1457);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
        }

        .note-bubble {
            position: absolute;
            top: -20px;
            right: 50px;
            background: #E91E63;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            transform: rotate(-5deg);
        }

        .note-bubble::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #E91E63;
        }

        @media (max-width: 1024px) {
            .doctor-section {
                max-width: 100%;
                padding: 20px;
            }
            
            .doctor-text {
                padding: 30px 20px;
            }
            
            .main-content {
                padding: 30px 20px;
            }
            
            .price-section {
                padding: 30px 15px;
            }
            
            .note-bubble {
                right: 20px;
                font-size: 12px;
                padding: 8px 15px;
            }
        }

        @media (max-width: 599px) {
            .doctor-section {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .doctor-text {
                padding: 20px 15px;
            }
            
            .doctor-image {
                flex: none;
                width: 150px;
                height: 200px;
                margin: 0 auto 20px auto;
            }
            
            .price-display {
                font-size: 32px;
            }
            
            .treatment-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .treatment-item {
                padding: 15px;
            }
            
            .main-content {
                padding: 20px 15px;
            }
            
            .price-section {
                padding: 25px 15px;
            }
            
            .price-header {
                font-size: 16px;
                padding: 12px 25px;
            }
            
            .plan-highlight {
                padding: 15px;
                margin: 15px 0;
            }
            
            .plan-title {
                line-height: 1.4;
            }
            

            
            .plan-conditions {
                font-size: 11px;
            }
            
            .note-bubble {
                position: static;
                transform: none;
                margin-bottom: 20px;
                display: inline-block;
            }
            
            .note-bubble::after {
                display: none;
            }
            
            .cta-section {
                padding: 25px 15px;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 14px;
            }
        }
        
.doctor-text.pb-0{
  padding-bottom: 0px;
}
