@charset "UTF-8";
/* 予約入力画面用のスタイル */
.reservation-create-container {
  padding: 1em 10%;
  background-color: rgba(255, 255, 248, 0.6);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .reservation-create-container {
    padding: 15px 3%;
    border-radius: 15px;
    margin: 40px auto;
  }
}
.reservation-create-container h2 {
  text-align: center;
}

.reservation-regist-title:after {
  content: "ご予約";
  font-size: 0.5em;
  background-color: rgba(251, 245, 234, 0.3);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

.reservation-regist-title.repeat:after {
  content: "ご予約（2回目以降）";
}

/* フォーム領域 */
.required-field:after {
  content: " *";
  color: red;
}

.reservation-create-container .section-group {
  padding-top: 0.5em;
}

.reservation-create-container .form-group {
  margin-bottom: 1.2em;
}

.reservation-create-container .form-group label {
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
}

.reservation-create-container label.control-label-support {
  font-weight: normal;
}

.reservation-create-container .section-title label.control-label-support {
  padding-bottom: 1em;
  display: block;
}

input, textarea, select {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
}

input {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1em;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1em;
}

.select-wrapper::after {
  position: absolute;
  content: "▼"; /* または別の矢印文字 */
  font-size: 1em;
  color: #a2846b;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* 矢印がクリックを妨げないように */
}

.form-check {
  display: grid;
  grid-template-columns: 1fr 9fr;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.form-check-input {
  margin: 0;
  padding: 0;
  position: relative;
  border: 2px solid rgb(100, 100, 100);
  width: 25px;
  height: 25px;
}
.form-check-input:checked::after {
  content: "✔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #a2846b;
  font-size: 1.2em;
}
.form-check-input:checked {
  border-color: #2196F3;
}

.checkbox-group .form-check .form-check-label,
.form-group .form-check .form-check-label {
  margin: 0 0 0.2em 0;
  cursor: pointer;
  font-weight: normal;
}

textarea {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1em;
  height: 6em;
}

.text-danger {
  grid-column: 1/-1;
  margin-top: 4px;
}

.reservation-create-container .form-group .text-danger {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 0.25em;
  display: block;
}

.alert {
  color: #dc3545;
}

.reservation-create-container .btn-primary {
  background: linear-gradient(0deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.5) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.5) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(90deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.5) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.5) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(45deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.5) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.5) 70%, rgba(244, 210, 182, 0.1) 100%);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.5);
  border: solid 1px rgba(100, 100, 100, 0.5);
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(100, 100, 100, 0.8);
  cursor: pointer;
  font-size: 1.2em;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "MS Mincho", "Yu Mincho", serif;
  width: 180px;
  display: block;
  margin: 2em auto;
}

.reservation-create-container .btn-primary:hover {
  background: linear-gradient(0deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.7) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.7) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(90deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.7) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.7) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(45deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.7) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.7) 70%, rgba(244, 210, 182, 0.1) 100%);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.7);
  border: solid 1px rgba(100, 100, 100, 0.7);
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(100, 100, 100, 0.8);
  cursor: pointer;
}

.btn-container {
  text-align: center;
}

.reservation-create-container .btn-secondary {
  background: linear-gradient(0deg, rgba(144, 160, 182, 0.1) 0%, rgba(144, 160, 182, 0.5) 30%, rgb(144, 160, 182) 50%, rgba(144, 160, 182, 0.5) 70%, rgba(144, 160, 182, 0.1) 100%), linear-gradient(90deg, rgba(144, 160, 182, 0.1) 0%, rgba(144, 160, 182, 0.5) 30%, rgb(144, 160, 182) 50%, rgba(144, 160, 182, 0.5) 70%, rgba(144, 160, 182, 0.1) 100%), linear-gradient(45deg, rgba(144, 160, 182, 0.1) 0%, rgba(144, 160, 182, 0.5) 30%, rgb(144, 160, 182) 50%, rgba(144, 160, 182, 0.5) 70%, rgba(144, 160, 182, 0.1) 100%);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.2);
  border: solid 1px rgba(100, 100, 100, 0.2);
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 1px 5px rgb(100, 100, 100);
  cursor: pointer;
  font-size: 1.2em;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "MS Mincho", "Yu Mincho", serif;
  width: 180px;
  display: block;
  margin: 2em auto;
}

.reservation-create-container .btn-secondary:hover {
  background: linear-gradient(0deg, rgba(144, 160, 182, 0.1) 0%, rgba(144, 160, 182, 0.7) 30%, rgb(144, 160, 182) 50%, rgba(144, 160, 182, 0.7) 70%, rgba(144, 160, 182, 0.1) 100%), linear-gradient(90deg, rgba(144, 160, 182, 0.1) 0%, rgba(144, 160, 182, 0.7) 30%, rgb(144, 160, 182) 50%, rgba(144, 160, 182, 0.7) 70%, rgba(144, 160, 182, 0.1) 100%), linear-gradient(45deg, rgba(144, 160, 182, 0.1) 0%, rgba(144, 160, 182, 0.7) 30%, rgb(144, 160, 182) 50%, rgba(144, 160, 182, 0.7) 70%, rgba(144, 160, 182, 0.1) 100%);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.4);
  border: solid 1px rgba(100, 100, 100, 0.4);
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(100, 100, 100, 0.8);
  cursor: pointer;
}

/* 予約完了画面 */
.reservation-create-complete-container {
  padding: 1em 10% 4em 10%;
  background-color: rgba(255, 255, 248, 0.6);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.reservation-create-complete-container h2 {
  text-align: center;
}

.reservation-regist-complete-title:after {
  content: "ご予約完了";
  font-size: 0.5em;
  background-color: rgba(251, 245, 234, 0.3);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

.reservation-regist-complete-title.repeat:after {
  content: "ご予約完了（2回目以降）";
}

.reservation-complete-message {
  padding-bottom: 3em;
}

.returnArea {
  text-align: center;
}

.btn {
  background: linear-gradient(0deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.5) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.5) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(90deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.5) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.5) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(45deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.5) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.5) 70%, rgba(244, 210, 182, 0.1) 100%);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.5);
  border: solid 1px rgba(100, 100, 100, 0.5);
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(100, 100, 100, 0.8);
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(0deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.7) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.7) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(90deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.7) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.7) 70%, rgba(244, 210, 182, 0.1) 100%), linear-gradient(45deg, rgba(244, 210, 182, 0.1) 0%, rgba(244, 210, 182, 0.7) 30%, rgb(244, 210, 182) 50%, rgba(244, 210, 182, 0.7) 70%, rgba(244, 210, 182, 0.1) 100%);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.7);
  border: solid 1px rgba(100, 100, 100, 0.7);
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(100, 100, 100, 0.8);
  cursor: pointer;
}

@media (min-width: 768px) {
  .reservation-create-complete-container {
    padding: 1em 3% 4em 3%;
    border-radius: 15px;
    margin: 40px auto;
  }
}

/*# sourceMappingURL=reservation.css.map */
