/* 日付・プランの選択_日帰りプラン画面CSS */
/* --- 日付入力カスタム --- */
.resv-date-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.resv-date-label {
    min-width: 90px;
    max-width: 90px;
    font-weight: bold;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}
.resv-date-required {
    color: #e53935;
    font-size: 0.95em;
    margin-top: 2px;
}
.resv-date-inputs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.resv-date-input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 135px;
}
.resv-date-input-group label {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 2px;
    margin-left: 2px;
}
.resv-date-tilde {
    font-size: 1.5em;
    color: #888;
    margin: 8px 8px 0 8px;
}

.date-input::-webkit-calendar-picker-indicator {
    display: none;
}

.calendar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* --- モバイル対応：日付入力のレスポンシブ化 --- */
@media (max-width: 768px) {
    .resv-date-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .resv-date-label {
        min-width: auto;
        max-width: none;
        margin-right: 0;
        margin-bottom: 4px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .resv-date-inputs {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .resv-date-input-group input {
        width: 100%;
        max-width: none;
    }
    
}

@media (max-width: 480px) {
    .resv-date-row {
        margin-bottom: 20px;
    }
    
    .resv-date-label {
        font-size: 0.95rem;
    }
    
    .resv-date-required {
        font-size: 0.9rem;
    }
    
    .resv-date-inputs {
        gap: 16px;
    }

    .resv-date-tilde {
        display: none;
    }
}

/* --- 追加：返却場所地図の幅をプルダウンと揃える *****/
.return-location-map {
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 700px) {
.return-location-map { max-width: 100%; }
}

/* --- レンタルプラン --- */
.custom-radio-group {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    /* レスポンシブ対応 */
    @media (max-width: 700px) {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}
.custom-radio {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: border-color 0.2s;
    min-width: 220px;
    justify-content: center;
}
.custom-radio input[type="radio"] {
    display: none;
}
.custom-radio .radio-mark {
    width: 24px;
    height: 24px;
    border: 2px solid #bbb;
    border-radius: 50%;
    margin-right: 12px;
    background: #fff;
    position: relative;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-radio input[type="radio"]:checked + .radio-mark {
    border-color: #888;
}
.custom-radio .radio-mark::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    opacity: 0;
    transition: opacity 0.2s;
}
.custom-radio input[type="radio"]:checked + .radio-mark::after {
    opacity: 1;
    background: #888;
}
.resv-plan-info {
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

#plan-annotation-text {
    color: #e53935;
}