/* --- Booking Package Monterey Professional Skin --- */

/* 1. フォーム全体の浮遊感（グラスモフィズムの基礎） */
#booking-package {
    background: #ffffff !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 30px !important;
    margin-bottom: 40px !important;
}

/* 2. カレンダー・日付選択のモダン化 */
.booking-package .ui-datepicker {
    border: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* 選択された日付（Apple Blue） */
.booking-package .ui-state-active, 
.booking-package .ui-widget-content .ui-state-active {
    background-color: #007AFF !important;
    border: none !important;
    border-radius: 50% !important; /* 円形に */
    color: #ffffff !important;
}

/* 3. 入力フィールドの洗練 */
.booking-package input[type="text"], 
.booking-package input[type="email"], 
.booking-package textarea, 
.booking-package select {
    background-color: #f5f5f7 !important; /* Apple風の薄いグレー */
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    transition: all 0.2s ease !important;
}

.booking-package input:focus, .booking-package textarea:focus {
    background-color: #ffffff !important;
    border-color: #007AFF !important;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1) !important;
}

/* 4. 戦略報告ボタン（送信ボタン）の強調 */
.booking-package .btn-primary {
    background-color: #007AFF !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.booking-package .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3) !important;
}