/**************************************************
  Reservation Common
***************************************************/
input:-internal-autofill-selected,
textarea:-internal-autofill-selected {
  background-color: transparent !important;
}

.c-reservation-main {
  padding-top: 99px;
}

.c-reservation-bg-img {
  background-image: url(../images/fv-img.webp), url(../images/fv-img.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-reservation-bg-img::before {
  content: "";
  display: block;
  background-color: var(--color-overlay-dark);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-reservation-head {
  font-size: 45px;
  line-height: 1;
  font-family: var(--fw-yumin);
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  padding-block: 135px 110px;
}

.c-reservation-contents {
  background-image: url(../images/img_reservation_contents.webp), url(../images/img_reservation_contents.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
  border-top-left-radius: 252px;
  border-top-right-radius: 252px;
  width: calc(1820 / 1920 * 100%);
  margin-inline: auto;
  padding-block: 105px 150px;
}

.c-reservation-container {
  max-width: 880px;
  margin-inline: auto;
  width: 95%;
}

.c-reservation-container.c-reservation-container--calendar {
  max-width: 900px;
}

.c-reservation-container.c-reservation-container--lg {
  max-width: 920px;
}

.c-reservation-flow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.c-reservation-flow::before {
  content: "";
  display: block;
  border-top: 1px solid var(--color-black);
  width: 100%;
  position: absolute;
  top: 82px;
  left: 0;
  z-index: -1;
}

.c-reservation-flow__img {
  width: 130px;
  height: 130px;
  border-radius: 100vh;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  background-size: cover;
}

.c-reservation-flow__step.c-reservation-flow__step--current .c-reservation-flow__img {
  border-width: 5px;
}

.c-reservation-flow__step.c-reservation-flow__step--active:nth-of-type(1) .c-reservation-flow__img {
  background-image: url(../images/img_reservation_step1.webp), url(../images/img_reservation_step1.png);

}

.c-reservation-flow__step.c-reservation-flow__step--active:nth-of-type(2) .c-reservation-flow__img {
  background-image: url(../images/img_reservation_step2.webp), url(../images/img_reservation_step2.png);

}

.c-reservation-flow__step.c-reservation-flow__step--active:nth-of-type(3) .c-reservation-flow__img {
  background-image: url(../images/img_reservation_step3.webp), url(../images/img_reservation_step3.png);

}

.c-reservation-flow__step.c-reservation-flow__step--active:nth-of-type(4) .c-reservation-flow__img {
  background-image: url(../images/img_reservation_step4.webp), url(../images/img_reservation_step4.png);
  background-color: var(--color-accent-light);

}

.c-reservation-flow__text {
  margin-top: 20px;
  text-align: center;
}

.c-reservation-flow__text span {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  font-family: var(--fw-yumin);
  text-align: center;
  position: relative;
  z-index: 1;
}

.c-reservation-flow__text span::before {
  display: none;
  content: "";
  height: 15px;
  width: 100%;
  background-color: var(--color-accent);
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  z-index: -1;
}

.c-reservation-flow__step.c-reservation-flow__step--current .c-reservation-flow__text span::before {
  display: block;
}

.c-reservation-btn {
  height: 60px;
  width: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  font-family: var(--fw-zen);
  border: 4px solid var(--color-accent-main);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.reservation-plan__item .c-reservation-btn {
  width: 220px;
}

@media (hover: hover) and (pointer: fine) {
  .c-reservation-btn:hover {
    background-color: var(--color-accent-main);
    color: var(--color-white);
    transition: background 0.3s, color 0.3s;
  }

  .c-reservation-btn.c-reservation-btn--mono:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

.c-reservation-btn.c-reservation-btn--mono {
  background-color: var(--color-gray);
  color: var(--color-white);
  border: 3px solid var(--color-black);
}

.c-reservation-btn.c-reservation-btn--sm {
  border-width: 3px;
  height: 45px;
  font-size: 19px;
}

.c-reservation-contents-title {
  text-align: center;
  font-size: 32px;
  line-height: 1;
  font-family: var(--fw-yumin);
}

@media screen and (max-width: 1300px) {
  .c-reservation-head {
    font-size: 40px;
    padding-block: 100px 80px;
  }

  .c-reservation-contents {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    padding-block: 80px 130px;
    width: 98%;
  }

  .c-reservation-container.c-reservation-container--calendar {
    max-width: 900px;
  }

  .c-reservation-flow {
    gap: 15px;
    margin-bottom: 80px;
    max-width: 700px;
  }

  .c-reservation-flow__text span::before {
    height: 10px;
    bottom: -3px;
  }

  .c-reservation-btn {
    height: 50px;
    font-size: 17px;
  }
}

@media screen and (max-width: 1024px) {
  .c-reservation-head {
    font-size: 36px;
    padding-block: 80px 60px;
  }

  .c-reservation-contents {
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    padding-block: 60px 110px;
  }

  .c-reservation-container {
    max-width: 780px;
  }

  .c-reservation-flow {
    gap: 12px;
    margin-bottom: 60px;
    max-width: 580px;
  }

  .c-reservation-flow::before {
    top: 60px;
  }

  .c-reservation-flow__img {
    width: 110px;
    height: 110px;
  }

  .c-reservation-flow__text {
    margin-top: 12px;
  }

  .c-reservation-btn {
    border-width: 3px;
  }

  .c-reservation-btn.c-reservation-btn--sm {
    width: 180px;
    height: 40px;
    font-size: 16px;
  }

  .c-reservation-contents-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .c-reservation-main {
    padding-top: 49px;
  }

  .c-reservation-bg-img {
    background-image: url(../images/sp_fv-img.webp), url(../images/sp_fv-img.png);
  }

  .c-reservation-head {
    font-size: 28px;
    padding-block: 50px 40px;
  }

  .c-reservation-contents {
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding-block: 40px 80px;
  }

  .c-reservation-container {
    width: 90%;
    max-width: 500px;
  }

  .c-reservation-container.c-reservation-container--calendar {
    width: 95%;
    max-width: 600px;
  }

  .c-reservation-flow {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 400px;
  }

  .c-reservation-flow::before {
    top: 35px;
  }

  .c-reservation-flow__img {
    width: 70px;
    height: 70px;
  }

  .c-reservation-flow__step.c-reservation-flow__step--current .c-reservation-flow__img {
    border-width: 3px;
  }

  .c-reservation-flow__text {
    margin-top: 8px;
    line-height: 1.3;
  }

  .c-reservation-flow__text span {
    font-size: 12px;
  }

  .c-reservation-flow__text span::before {
    height: 8px;
  }

  .c-reservation-btn {
    height: 45px;
    border-width: 3px;
  }

  .reservation-plan__item .c-reservation-btn {
    width: 100%;
  }

  .c-reservation-btn.c-reservation-btn--sm {
    font-size: 15px;
  }

  .c-reservation-contents-title {
    font-size: 21px;
  }
}

/* footer
*****************************************/
.foot.foot--reservation {
  margin-top: 0 !important;
}

.foot.foot--reservation .foot__bg img {
  display: none;
}

.foot.foot--reservation {
  background-color: var(--color-reservation-gray);
  padding-block: 135px 60px;
}

.foot.foot--reservation .foot__mainTxt {
  margin-top: 0;
  opacity: .38;
}

.foot.foot--reservation .foot-logo {
  width: 440px;
  height: auto;
  margin-inline: auto;
  margin-top: 71px;
}

.foot.foot--reservation .foot__copy {
  position: absolute;
  right: 50px;
  bottom: 60px;
  margin-top: 0;
}

@media screen and (max-width: 1300px) {
  .foot.foot--reservation {
    padding-block: 100px 50px;
  }

  .foot.foot--reservation .foot-logo {
    width: 360px;
    margin-top: 60px;
  }
}

@media screen and (max-width: 1024px) {
  .foot.foot--reservation {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .foot.foot--reservation .foot-logo {
    width: 280px;
    margin-top: 50px;
  }

  .foot.foot--reservation .foot__copy {
    position: static;
    margin-top: 25px;
  }
}

@media screen and (max-width: 768px) {
  .foot.foot--reservation {
    padding-block: 50px 40px;
  }

  .foot.foot--reservation .foot-logo {
    width: 200px;
    margin-top: 40px;
  }

  .foot.foot--reservation .foot__copy {
    right: 15px;
    bottom: 35px;
    font-size: 11px;
  }
}


/**************************************************
  Reservation 1 - Calendar
***************************************************/
.reservation-calendar-form {
  width: 100%;
  margin-inline: auto;
}

.reservation-calendar {
  width: 100%;
  margin-inline: auto;
}

.reservation-calendar__header {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
}

.reservation-calendar__month-year {
  font-size: 34px;
  line-height: 1;
  font-family: var(--fw-yumin);
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
}

.reservation-calendar__nav {
  cursor: pointer;
  width: 61px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  line-height: 1;
  font-family: var(--fw-yumin);
  font-weight: 400;
  color: var(--color-black);
  transition: opacity 0.3s;
  position: absolute;
  top: calc(50% - 2px);
}

.reservation-calendar__nav:hover {
  opacity: 0.7;
}

.reservation-calendar__nav--prev {
  transform: translateY(calc(-50% - 1px)) rotate(180deg);
  left: 0;
}

.reservation-calendar__nav--next {
  transform: translateY(-50%);
  right: 0
}

.reservation-calendar__nav-icon {
  display: block;
}

.reservation-calendar__body {
  padding: 0;
  border: 1px solid var(--color-gray2);
  margin-top: 30px;
}

.reservation-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--color-black);
  background-color: var(--color-white);
}

.reservation-calendar__weekday {
  font-size: 22px;
  line-height: 1.33;
  font-family: var(--fw-yumin);
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
  padding-block: 6px;
  border-right: 1px solid var(--color-gray2);
}

.reservation-calendar__weekday.reservation-calendar__weekday--sun {
  background-color: var(--color-reservation-sun);
}

.reservation-calendar__weekday.reservation-calendar__weekday--sat {
  background-color: var(--color-reservation-sat);
}

.reservation-calendar__weekday:last-child {
  border-right: none;
}

.reservation-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: var(--color-white);
}

.reservation-calendar__day {
  min-height: 130px;
  border-right: 1px solid var(--color-gray2);
  border-bottom: 1px solid var(--color-gray2);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.reservation-calendar__day:nth-child(7n) {
  border-right: none;
}

.reservation-calendar__day-number {
  font-size: 25px;
  line-height: 1.33;
  font-family: var(--fw-yumin);
  font-weight: 400;
  color: var(--color-gray3);
  text-align: center;
  position: absolute;
  top: 3px;
  left: 10px;
}

.reservation-calendar__day--selectable {
  cursor: pointer;
  transition: background-color 0.3s;
}

.reservation-calendar__day::before {
  content: "";
  display: none;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reservation-calendar__day--none::before {
  display: block;
  background-image: url(../images/icon_calendar_none.svg);
}

.reservation-calendar__day--empty::before {
  display: block;
  background-image: url(../images/icon_calendar_empty.svg);
}

.reservation-calendar__day--little::before {
  display: block;
  background-image: url(../images/icon_calendar_little.svg);
}

.reservation-calendar__day--full::before {
  display: block;
  background-image: url(../images/icon_calendar_full.svg);
}

.reservation-calendar__day--past::before {
  display: none !important;
}

.reservation-calendar__day--selectable:hover {
  background-color: rgba(90, 147, 216, 0.1);
}

.reservation-calendar__day--selected {
  background-color: rgba(90, 147, 216, 0.3);
}

.reservation-calendar__day--other {
  cursor: default;
}

.reservation-calendar__btn-wrap {
  margin-top: 100px;
  width: 300px;
  margin-inline: auto;
}

@media screen and (max-width: 1300px) {
  .reservation-calendar {
    max-width: 100%;
  }

  .reservation-calendar__header {
    max-width: 500px;
  }

  .reservation-calendar__weekday {
    font-size: 22px;
    padding-block: 6px;
  }

  .reservation-calendar__day {
    min-height: 120px;
  }

  .reservation-calendar__day-number {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {

  .reservation-calendar__header {
    max-width: 400px;
  }

  .reservation-calendar__nav {
    width: 40px;
    height: 50px;
    font-size: 40px;
    top: 50%;
  }

  .reservation-calendar__day {
    min-height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .reservation-calendar__month-year {
    font-size: 24px;
  }

  .reservation-calendar__header {
    max-width: 300px;
  }

  .reservation-calendar__nav {
    width: 30px;
    height: 40px;
    font-size: 30px;
  }

  .reservation-calendar__weekday {
    font-size: 16px;
  }

  .reservation-calendar__day {
    min-height: 65px;
  }

  .reservation-calendar__day::before {
    height: 18px;
    width: 18px;
  }

  .reservation-calendar__day-number {
    font-size: 14px;
    top: 1px;
    left: 5px;
  }
}

/**************************************************
  Reservation 2
***************************************************/

.reservation-plan-img {
  margin-block: 60px 53px;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.reservation-plan-back {
  width: 300px;
}

.reservation-plan {
  margin-block: 120px;
}

.reservation-plan__booth:nth-of-type(n + 2) {
  margin-top: 120px;
}

.reservation-plan__booth-name {
  background-color: var(--color-reservation-gray);
  color: var(--color-white);
  padding-left: 16px;
  padding-block: 16px;
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--fw-yumin);
  line-height: 1;
}

.reservation-plan__list {
  margin-top: 40px;
}

.reservation-plan__item {
  display: flex;
  gap: 55px;
  flex-wrap: wrap;
  min-height: 45px;
}

.reservation-plan__item:nth-of-type(n + 2) {
  margin-top: 50px;
}

.reservation-plan__text-wrap {
  display: flex;
  align-items: center;
  gap: 55px;
}

.reservation-plan__menu {
  font-size: 20px;
  line-height: 1;
}

.reservation-plan__info {
  font-size: 20px;
  line-height: 1;
  display: flex;
  gap: 35px;
  position: relative;
  z-index: 1;
  min-width: 295px;
  top: -3px;
  padding-left: 5px;
}

.reservation-plan__info::before {
  content: "";
  display: block;
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: var(--color-accent);
  z-index: -1;
}

.reservation-plan__info-time {
  min-width: 150px;
}

.reservation-plan__info--none {
  color: var(--color-error);
}

.reservation-plan__preparation {
  color: var(--color-error);
  font-size: 26px;
  margin-top: 57px;
  margin-left: 30px;
}

@media screen and (max-width: 1300px) {

  .reservation-plan__menu {
    font-size: 18px;
  }

  .reservation-plan__info {
    font-size: 18px;
    gap: 30px;
    min-width: 270px;
  }

  .reservation-plan__info-time {
    min-width: 140px;
  }

  .reservation-plan__info::before {
    height: 10px;
    bottom: -6px;
  }

  .reservation-plan__preparation {
    font-size: 22px;
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .reservation-plan-img {
    margin-block: 45px 40px;
    width: 80%;
  }

  .reservation-plan__booth:nth-of-type(n + 2) {
    margin-top: 120px;
  }

  .reservation-plan__list {
    margin-top: 50px;
  }

  .reservation-plan__item {
    gap: 40px;
    min-height: 40px;
  }

  .reservation-plan__text-wrap {
    gap: 35px;
  }

  .reservation-plan__item:nth-of-type(n + 2) {
    margin-top: 50px;
  }

  .reservation-plan__info {
    gap: 20px;
    min-width: 260px;
  }

  .reservation-plan__preparation {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .reservation-plan-img {
    margin-block: 35px 30px;
    width: 100%;
  }

  .reservation-plan-back {
    width: 100%;
  }

  .reservation-plan {
    margin-block: 60px 100px;
  }

  .reservation-plan__booth:nth-of-type(n + 2) {
    margin-top: 60px;
  }

  .reservation-plan__booth-name {
    font-size: 24px;
    padding-left: 16px;
    padding-block: 12px;
  }

  .reservation-plan__list {
    margin-top: 35px;
  }

  .reservation-plan__item {
    flex-direction: column;
    gap: 16px;
    min-height: auto;
  }

  .reservation-plan__text-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .reservation-plan__item:nth-of-type(n + 2) {
    margin-top: 35px;
  }

  .reservation-plan__info {
    gap: 24px;
  }

  .reservation-plan__info::before {
    bottom: -6px;
    height: 12px;
  }

  .reservation-plan__preparation {
    font-size: 17px;
    margin-top: 20px;
  }
}

/**************************************************
  Reservation 3
***************************************************/
.reservation-form {
  max-width: 1161px;
  margin-inline: auto;
}

.reservation-form__summary {
  text-align: center;
}

.reservation-form__summary-plan {
  margin-top: 17px;
  font-size: 32px;
  line-height: 1.33;
  font-family: var(--fw-yumin);
  font-weight:bold;
}

.reservation-form__section {
  margin-top: 100px;
}

.reservation-form__section:nth-of-type(n + 2) {
  margin-top: 70px;
}

.reservation-form__section:first-of-type {
  margin-top: 0;
}

.reservation-form__section-title {
  font-size: 28px;
  line-height: 1.33;
  font-family: "Segoe UI Symbol", sans-serif;
  font-weight: 400;
}

.reservation-form__section-title span {
  color: var(--color-error);
}

.reservation-form__section-note {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.33;
  font-family: "Segoe UI Symbol", sans-serif;
  font-weight: 400;
}

.reservation-form__number {
  margin-top: 20px;
}

.reservation-form__unit {
  font-size: 20px;
  line-height: 1.33;
  font-family: var(--fw-zen);
  font-weight: 400;
  pointer-events: none;
}

.reservation-form__error {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.33;
  font-family: var(--fw-zen);
  font-weight: 400;
  color: var(--color-error);
}

.reservation-form__error--center {
  text-align: center;
}

.reservation-form__fields {
  margin-top: 18px;
}

.reservation-form__field {
  margin-top: 35px;
}

.reservation-form__field:first-of-type {
  margin-top: 0;
}

.reservation-form__field-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 8px;
}

.reservation-form__field-label-text {
  font-size: 20px;
  line-height: 1;
  font-family: var(--fw-zen);
  font-weight: 400;
}

.reservation-form__field-required {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-error-alt);
  position: relative;
  top: -10px;
  left: -4px;
}

.reservation-form__field-inputs {
  display: flex;
  align-items: flex-start;
  gap: 23px;
}

.reservation-form__field-input-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.reservation-form__field-input-wrap--full {
  width: 100%;
}

.reservation-form__field-input {
  width: 100% !important;
  height: 56px !important;
  padding: 8px 8px !important;
  background-color: var(--color-input-bg-white) !important;
  border: 1px solid var(--color-black) !important;
  border-radius: 5px !important;
  font-size: 18px !important;
  line-height: 1.33 !important;
  font-family: var(--fw-zen) !important;
  font-weight: 400 !important;
}

.reservation-form__field-input::placeholder {
  color: var(--color-placeholder) !important;
}

.reservation-form__field-input--number {
  width: 221px !important;
  text-align: center;
}

.reservation-form__field-input--year {
  width: 220px !important;
}

.reservation-form__field-input--month,
.reservation-form__field-input--day {
  width: 123px !important;
}

.reservation-form__field-input-wrap--full .reservation-form__field-input-unit {
  display: none;
}

.reservation-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.reservation-form__checkbox-input {
  display: none;
}

.reservation-form__checkbox::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-black);
  border-radius: 5px;
}

.reservation-form__checkbox::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 9px;
  transform: rotate(45deg);
  width: 11px;
  height: 24px;
  border-right: 3px solid var(--color-black);
  border-bottom: 3px solid var(--color-black);
  display: none;
}

.reservation-form__checkbox:has(.reservation-form__checkbox-input:checked)::after {
  display: block;
}

.reservation-form__checkbox-text {
  font-size: 18px;
  line-height: 1.33;
  font-family: var(--fw-zen);
  font-weight: 400;
}

.reservation-form__terms {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--color-input-bg-white);
  border: 1px solid var(--color-black);
}

.reservation-form__terms-content {
  max-height: 299px;
  overflow-y: auto;
}

.reservation-form__terms-content p {
  font-size: 18px;
  line-height: 1.33;
  font-family: var(--fw-zen);
  font-weight: 400;
  margin-top: 0;
}

.reservation-form__terms-content p:nth-of-type(n + 2) {
  margin-top: -2px;
}

.reservation-form__checkbox--terms {
  display: flex;
  margin-top: 34px;
  width: fit-content;
  margin-inline: auto;
}

.reservation-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 350px;
  margin-inline: auto;
  margin-top: 100px;
}

.reservation-form__buttons .c-reservation-btn {
  width: 100%;
  box-shadow: 6px 6px 6px 0px var(--color-shadow-pink);
}

@media screen and (max-width: 1300px) {
  .reservation-form {
    max-width: 900px;
  }

  .reservation-form__field-input {
    font-size: 22px !important;
  }

  .reservation-form__unit {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .reservation-form {
    max-width: 780px;
  }

  .reservation-form__section-note {
    margin-top: 12px;
  }

  .reservation-form__error {
    margin-top: 12px;
  }

  .reservation-form__field-required {
    font-size: 24px;
  }

  .reservation-form__field-inputs {
    gap: 18px;
  }

  .reservation-form__field-input--year {
    width: 180px !important;
  }

  .reservation-form__field-input--month,
  .reservation-form__field-input--day {
    width: 100px !important;
  }

  .reservation-form__checkbox {
    gap: 10px;
  }

  .reservation-form__checkbox::before {
    width: 25px;
    height: 25px;
  }

  .reservation-form__checkbox::after {
    left: 8px;
    top: 2px;
    width: 10px;
    height: 20px;
  }

  .reservation-form__terms-content {
    max-height: 250px;
  }

  .reservation-form__checkbox--terms {
    margin-top: 28px;
  }
}

@media screen and (max-width: 768px) {
  .reservation-form {
    max-width: 100%;
  }

  .reservation-form__section {
    margin-top: 80px;
  }

  .reservation-form__section:nth-of-type(n + 2) {
    margin-top: 50px;
  }

  .reservation-form__summary-plan {
    font-size: 22px;
    margin-top: 12px;
  }

  .reservation-form__section-title {
    font-size: 20px;
  }

  .reservation-form__section-note {
    font-size: 15px;
    margin-top: 10px;
  }

  .reservation-form__error {
    font-size: 15px;
    margin-top: 10px;
  }

  .reservation-form__fields {
    margin-top: 12px;
  }

  .reservation-form__field {
    margin-top: 30px;
  }

  .reservation-form__field-label-text {
    font-size: 18px;
  }

  .reservation-form__field-required {
    font-size: 20px;
  }

  .reservation-form__field-inputs {
    flex-direction: column;
    gap: 15px;
  }

  .reservation-form__field-input {
    height: 45px !important;
    font-size: 16px !important;
  }

  .reservation-form__field-input--number {
    font-size: 16px !important;
  }

  .reservation-form__field-input--year,
  .reservation-form__field-input--month,
  .reservation-form__field-input--day {
    width: 100% !important;
  }

  .reservation-form__checkbox-input:checked::after {
    width: 6px;
    height: 12px;
    border-width: 2px;
  }

  .reservation-form__terms {
    margin-top: 20px;
    padding: 25px 20px;
  }

  .reservation-form__terms-content {
    max-height: 200px;
  }

  .reservation-form__terms-content p {
    font-size: 16px;
  }

  .reservation-form__checkbox--terms {
    margin-top: 20px;
  }

  .reservation-form__buttons {
    max-width: 100%;
    margin-top: 80px;
    gap: 18px;
  }
}

/**************************************************
  Reservation 4
***************************************************/
.reservation-thanks {
  margin-inline: auto;
}

.reservation-thanks__title {
  text-align: center;
}

.reservation-thanks__title .c-reservation-contents-title {
  line-height: 1.33;
}

.reservation-thanks__title .c-reservation-contents-title:last-child {
  margin-bottom: 0;
}

.reservation-thanks__number {
  margin-top: 61px;
}

.reservation-thanks__number-inner {
  background-color: var(--color-input-bg-white);
  border: 2px solid var(--color-error);
  padding: 50px 0;
  text-align: center;
}

.reservation-thanks__number-label {
  font-size: 30px;
  line-height: 1.33;
  font-family: var(--fw-zen);
}

.reservation-thanks__number-value {
  font-size: 60px;
  line-height: 1.33;
  font-family: "Segoe UI", sans-serif;
  color: var(--color-reservation-number);
  font-weight: 400;
  margin-top: 33px;
}

.reservation-thanks__notice {
  margin-top: 100px;
}

.reservation-thanks__notice-title {
  text-align: center;
  font-size: 30px;
  line-height: 1.33;
  font-family: "Segoe UI Symbol", sans-serif;
  font-weight: 400;
}

.reservation-thanks__notice-item:first-of-type {
  margin-top: 50px;
}

.reservation-thanks__notice-item:nth-of-type(n + 2) {
  margin-top: 60px;
}

.reservation-thanks__notice-item-title {
  position: relative;
  font-size: 26px;
  line-height: 1.33;
  font-family: var(--fw-zen);
  font-weight: 400;
  padding-left: 7px;
  z-index: 1;
  width: fit-content;
}

.reservation-thanks__notice-item-content {
  margin-top: 24px;
}

.reservation-thanks__notice-item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--color-accent);
  z-index: -1;
}

.reservation-thanks__notice-item-content {
  padding-left: 9px;
}

.reservation-thanks__notice-item-content p {
  font-size: 18px;
  line-height: 1.33;
  font-family: var(--fw-zen);
}

.reservation-thanks__notice-item-content p:nth-of-type(n + 2) {
  margin-top: 8px;
}

.reservation-thanks__notice-item-phone {
  font-family: "Segoe UI Emoji", sans-serif;
  line-height: 1.07;
}

.reservation-thanks__button {
  max-width: 350px;
  margin-top: 100px;
  margin-inline: auto;
  box-shadow: 6px 6px 6px 0px var(--color-shadow-pink);
}

@media screen and (max-width: 1300px) {
  .reservation-thanks {
    max-width: 900px;
  }

  .reservation-thanks__number-label {
    font-size: 28px;
  }

  .reservation-thanks__button {
    max-width: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .reservation-thanks {
    max-width: 780px;
  }

  .reservation-thanks__number {
    margin-top: 50px;
  }

  .reservation-thanks__number-inner {
    padding: 25px 0;
  }

  .reservation-thanks__number-label {
    font-size: 24px;
  }

  .reservation-thanks__number-value {
    font-size: 50px;
    margin-top: 20px;
  }

  .reservation-thanks__notice-item:first-of-type {
    margin-top: 40px;
  }

  .reservation-thanks__notice-item-title {
    font-size: 26px;
  }

  .reservation-thanks__notice-item-content {
    margin-top: 20px;
  }

  .reservation-thanks__notice-item-title::after {
    height: 15px;
  }

  .reservation-thanks__notice-item-content {
    padding-left: 7px;
  }

  .reservation-thanks__button {
    max-width: 320px;
    margin-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  .reservation-thanks {
    max-width: 100%;
  }

  .reservation-thanks__title .c-reservation-contents-title:nth-of-type(2) {
    margin-top: 5px;
  }

  .reservation-thanks__number {
    margin-top: 40px;
  }

  .reservation-thanks__number-inner {
    padding: 20px 15px;
    border-width: 2px;
  }

  .reservation-thanks__number-label {
    font-size: 18px;
  }

  .reservation-thanks__number-value {
    font-size: 36px;
    margin-top: 15px;
  }

  .reservation-thanks__notice {
    margin-top: 80px;
  }

  .reservation-thanks__notice-title {
    font-size: 24px;
  }

  .reservation-thanks__notice-item:first-of-type {
    margin-top: 30px;
  }

  .reservation-thanks__notice-item:nth-of-type(n + 2) {
    margin-top: 40px;
  }

  .reservation-thanks__notice-item-title {
    font-size: 20px;
    padding-left: 5px;
  }

  .reservation-thanks__notice-item-content {
    margin-top: 15px;
  }

  .reservation-thanks__notice-item-title::after {
    height: 12px;
  }

  .reservation-thanks__notice-item-content {
    padding-left: 5px;
  }

  .reservation-thanks__notice-item-content p {
    font-size: 16px;
  }

  .reservation-thanks__notice-item-content p:nth-of-type(n + 2) {
    margin-top: 6px;
  }

  .reservation-thanks__button {
    max-width: 100%;
  }

  .reservation-calendar__btn-wrap {
    margin-top: 70px;
    width: 240px;
  }
}

/**************************************************
  Toast Notification
***************************************************/
#reservation-toast-container {
  position: fixed;
  top: 40px;
  right: 30px;
  z-index: 10000;
  pointer-events: none;
}

.reservation-toast {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 28px 32px;
  margin-bottom: 16px;
  min-width: 400px;
  max-width: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reservation-toast--show {
  opacity: 1;
  transform: translateX(0);
}

.reservation-toast--hide {
  opacity: 0;
  transform: translateX(100%);
}

.reservation-toast--error {
  border-left: 6px solid #c53030;
  background-color: #f17373;
}

.reservation-toast--success {
  border-left: 6px solid #38a169;
  background-color: #cdffda;
}

.reservation-toast--info {
  border-left: 6px solid #3182ce;
  background-color: #ebf8ff;
}

.reservation-toast__message {
  margin: 0;
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
  color: #1a202c;
  font-weight: 500;
  word-break: break-word;
}

.reservation-toast--error .reservation-toast__message {
  color: #fff;
}

.reservation-toast__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.reservation-toast__close:hover {
  color: #333;
  transform: scale(1.1);
}

.reservation-toast--error .reservation-toast__close {
  color: #fff;
}

.reservation-toast--error .reservation-toast__close:hover {
  color: #fed7d7;
  transform: scale(1.1);
}

.reservation-toast__close:focus {
  outline: 2px solid #3182ce;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  #reservation-toast-container {
    top: 15px;
    right: 15px;
    left: 15px;
  }

  .reservation-toast {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: 24px 28px;
  }

  .reservation-toast__message {
    font-size: 16px;
  }

  .reservation-toast__close {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }
}