/* ========================================
   予約フォーム v2 
   ======================================== */

/* メインコンテナ */
.reservation-form-container-v2 {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 32px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Contact Form 7の余計な余白を削除 */
.reservation-form-container-v2 p {
  margin: 0 !important;
}
.reservation-form-container-v2 br {
  display: none !important;
}

/* 重要なお知らせバナー */
.reserve-notice-banner {
  background: #fff3cd;
  border-left: 4px solid #e6a817;
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.8;
}
.reserve-notice-banner strong {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #b07800;
}

/* 女子会到着バッジ */
.girls-arrival-badge {
  display: none;
  background: #f9e8f5;
  border: 1px solid #e8b8d8;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #a04070;
  text-align: center;
  margin-bottom: 20px;
}
.girls-arrival-badge.active {
  display: block;
}

/* 予約タイプ切り替えトグル */
.reserve-type-toggle {
  display: flex;
  margin-bottom: 32px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.reserve-type-toggle > p {
  margin: 0 !important;
  display: contents !important;
}
.reserve-type-toggle input[type="radio"] {
  display: none !important;
}
.reserve-type-toggle label {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: #f5f5f5;
  color: #999;
  transition: all 0.2s;
  line-height: 1.4;
  border-right: 1px solid #ddd;
}
.reserve-type-toggle label.active {
  background: #2c2c2c !important;
  color: #fff !important;
}

.reserve-type-toggle label:last-of-type {
  border-right: none;
}
.reserve-type-toggle label .type-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.reserve-type-toggle label .type-desc {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}
#reserve-type-normal:checked + label[for="reserve-type-normal"],
#reserve-type-girls:checked + label[for="reserve-type-girls"] {
  background: #2c2c2c !important;
  color: #ffffff !important;
}

/* 通常予約の料金案内カード */
.normal-price-guidance {
  display: none;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.normal-price-guidance.active {
  display: block;
}
.normal-price-guidance .guidance-title {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
}
.normal-price-guidance .guidance-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}
.normal-price-guidance .guidance-link {
  display: inline-block;
  background: #2c2c2c;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.normal-price-guidance .guidance-link:hover {
  background: #444;
}

/* フィールドラベル */
.reservation-form-container-v2 > p {
  margin-bottom: 16px !important;
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

/* 入力フィールド */
.reservation-form-container-v2 input[type="text"],
.reservation-form-container-v2 input[type="tel"],
.reservation-form-container-v2 input[type="email"],
.reservation-form-container-v2 input[type="date"],
.reservation-form-container-v2 select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  background: #fff;
  margin-top: 6px;
}
.reservation-form-container-v2 input:focus,
.reservation-form-container-v2 select:focus {
  outline: none;
  border-color: #888;
}

/* 女子会専用エリア */
#girlsnight-fields {
  display: none;
  background: #fdf5fb;
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
}
#girlsnight-fields.active {
  display: block;
}

/* 女子会料金表示カード */
#girls-price-card {
  display: none;
  background: #fff;
  border: 1px solid #f0d0e0;
  border-radius: 6px;
  padding: 16px 18px;
  margin-top: 16px;
}
#girls-price-card.active {
  display: block;
}
#girls-price-card > p:first-child {
  font-size: 12px;
  font-weight: 700;
  color: #c06090;
  margin-bottom: 10px !important;
}
#girls-price-card > p {
  font-size: 13px;
  color: #666;
  margin: 6px 0 !important;
}
#girls-price-card span {
  font-weight: 700;
  color: #333;
}
#price-per-person {
  font-size: 11px !important;
  color: #999 !important;
  margin-top: 10px !important;
}

/* 送信ボタン */
.reservation-form-container-v2 input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #2c2c2c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s;
}
.reservation-form-container-v2 input[type="submit"]:hover {
  background: #444;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .reservation-form-container-v2 {
    padding: 24px 20px;
  }
}