/* 予約フォームセクション */
.booking-section {
  width: 100%;
  padding: 80px 0;
  background: #f8f9fa;
}

.booking-container {
  width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.booking-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* フォーム */
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.required {
  color: red;
}

/* input系 */
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

/* ボタン */
.form-submit {
  grid-column: 1 / 3;
  padding: 14px;
  background: #007aff;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s;
}

.form-submit:hover {
  background: #005fcc;
}

.booking-form h3 {
  grid-column: 1 / 3;
  margin-top: 20px;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

/* モーダル内容 */
.modal-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 80%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ボタン並べる */
.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal-buttons button {
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
}
