/* フォーム共通CSS */
.resv-label {
    font-weight: bold;
    margin-bottom: 4px;
}
.resv-required {
    color: #e53935;
    font-size: 0.95em;
    margin-left: 4px;
}
.resv-note {
    color: #e53935;
    font-size: 0.95em;
    margin-top: 4px;
}
.resv-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 8px;
    border: 1px solid #ddd;
}
.resv-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 0 0 transparent;
    padding: 32px 24px;
    max-width: 900px;
    margin: 0 auto 32px auto;
}
.resv-card .short-input,
.resv-card select.form-select {
    max-width: 220px;
    min-width: 120px;
    width: 100%;
    display: inline-block;
}
@media (max-width: 600px) {
    .resv-card { padding: 16px 4px; }
}

/* --- 汎用横ラベルフォーム --- */
.resv-form-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.resv-form-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-form-required {
    color: #e53935;
    font-size: 0.95em;
    margin-top: 2px;
}
.resv-form-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.resv-flex-wrap {
    flex-wrap: wrap;
}
.resv-validation-error {
    width: 100%;
}

/* --- モバイル対応：フォームのレスポンシブ化 --- */
@media (max-width: 768px) {
    .resv-form-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .resv-form-label {
        min-width: auto;
        max-width: none;
        margin-right: 0;
        margin-bottom: 4px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .resv-form-inputs {
        width: 100%;
    }
    
    .resv-card .short-input,
    .resv-card select.form-select {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
}

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