/* ========================================
   予約ページ専用CSS
   ======================================== */

/* 予約フォームセクション */
.booking-form-section {
  padding: 4rem 0;
  background: #FAFAFA;
}

/* ご予約の流れ */
.booking-steps {
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step-item {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.step-number {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #fff;
  font-weight: 900;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
  display: block;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #B8860B;
  margin: 1rem 0 0.75rem;
}

.step-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* 予約フォームラッパー */
.booking-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin: 3rem 0;
}

.booking-form-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #F0F0F0;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #B8860B;
  margin: 0 0 1rem;
}

.form-description {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  margin: 0;
}

.booking-form-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Booking Packageプラグインのスタイル調整 */
.booking-form-content .booking_package_form {
  border: none;
  padding: 0;
}

.booking-form-content .booking_package_calendar {
  border-radius: 12px;
  overflow: hidden;
}

.booking-form-content input[type="text"],
.booking-form-content input[type="email"],
.booking-form-content input[type="tel"],
.booking-form-content textarea,
.booking-form-content select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.booking-form-content input[type="text"]:focus,
.booking-form-content input[type="email"]:focus,
.booking-form-content input[type="tel"]:focus,
.booking-form-content textarea:focus,
.booking-form-content select:focus {
  border-color: #D4AF37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-form-content button[type="submit"],
.booking-form-content input[type="submit"] {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.booking-form-content button[type="submit"]:hover,
.booking-form-content input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* お知らせ・注意事項 */
.booking-notice {
  margin: 4rem 0 2rem;
  padding: 3rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.notice-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #B8860B;
  text-align: center;
  margin: 0 0 2.5rem;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.notice-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFEF8 100%);
  border-radius: 12px;
  border: 2px solid #F0E6D2;
}

.notice-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.notice-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #B8860B;
  margin: 0 0 0.75rem;
}

.notice-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.notice-item a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.notice-item a:hover {
  color: #B8860B;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .booking-form-section {
    padding: 2rem 0;
  }

  .booking-steps {
    margin-bottom: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .step-item {
    padding: 2rem 1.5rem;
  }

  .booking-form-wrapper {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .booking-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-description {
    font-size: 0.9375rem;
  }

  .booking-notice {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .notice-title {
    font-size: 1.375rem;
    margin-bottom: 2rem;
  }

  .notice-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .notice-item {
    padding: 1.5rem 1rem;
  }
}

/* カレンダーのスタイル調整 */
.booking-form-content .booking_package_calendar table {
  width: 100%;
  border-collapse: collapse;
}

.booking-form-content .booking_package_calendar th {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: #fff;
  padding: 0.875rem;
  font-weight: 700;
}

.booking-form-content .booking_package_calendar td {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.booking-form-content .booking_package_calendar td:hover {
  background: #FFF9F0;
  cursor: pointer;
}

.booking-form-content .booking_package_calendar .available {
  background: #F0F8F0;
  color: #2E7D32;
  font-weight: 600;
}

.booking-form-content .booking_package_calendar .booked {
  background: #FFEBEE;
  color: #C62828;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* ========================================
   ホットペッパービューティーリンクボックス
   ======================================== */
.hotpepper-link-box {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFEF8 100%);
  border-radius: 12px;
  border: 2px solid #D4AF37;
  text-align: center;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.hotpepper-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 1rem;
  font-weight: 500;
}

.hotpepper-text-main {
  font-size: 1.125rem;
  line-height: 2;
  color: #333;
  margin: 0 0 1rem;
  font-weight: 600;
}

.hotpepper-note {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.mobile-break {
  display: none;
}

.hotpepper-link,
.line-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #D4AF37;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
  border: 2px solid transparent;
}

.hotpepper-link:hover,
.line-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #B8860B;
  transform: translateY(-2px);
  border-color: #D4AF37;
}

.line-link {
  color: #06C755;
}

.line-link:hover {
  background: rgba(6, 199, 85, 0.1);
  color: #059C42;
  border-color: #06C755;
}

.link-icon {
  font-size: 1.25rem;
}

.link-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .hotpepper-link-box {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
  
  .hotpepper-intro {
    font-size: 0.9375rem;
  }
  
  .hotpepper-text-main {
    font-size: 1rem;
    line-height: 1.9;
  }
  
  .hotpepper-note {
    font-size: 0.875rem;
  }
  
  .mobile-break {
    display: block;
  }
  
  .hotpepper-link,
  .line-link {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    margin: 0.25rem;
  }
  
  .link-icon {
    font-size: 1.125rem;
  }
}
