/**
 * オンライン相談予約セクションの余白調整
 */

/* オンライン予約セクションの上部余白を追加 */
#online-booking.online-booking,
.online-booking {
    margin-top: 80px !important;
    padding-top: 60px !important;
}

/* セクションタイトルの余白調整 */
.online-booking h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

/* 説明文の余白 */
.online-booking > p {
    margin-bottom: 40px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 予約オプションコンテナの余白 */
.booking-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 40px 0;
}

/* 各予約オプションカードの余白 */
.booking-option {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* オプションタイトルの余白 */
.booking-option h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* オプション説明文の余白 */
.booking-option p {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 予約ボタンの余白調整 */
.booking-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #online-booking.online-booking,
    .online-booking {
        margin-top: 60px !important;
        padding-top: 40px !important;
    }
    
    .booking-options {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .booking-option {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .online-booking h2 {
        font-size: 24px;
    }
}

/* より小さいデバイス */
@media (max-width: 480px) {
    #online-booking.online-booking,
    .online-booking {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
    
    .booking-option {
        padding: 20px;
    }
    
    .online-booking h2 {
        font-size: 22px;
    }
    
    .booking-option h4 {
        font-size: 18px;
    }
}