@charset "utf-8";

/* =================================
   ■ reservation
================================== */
/*
.reservation {
  font-family: "Noto Sans JP", sans-serif;
}

.reservation .contents .accent h2 {
  font-weight: 400;
}
.reservation .contents .accent h2 span {
  font-family: "Hind", sans-serif;
}
*/
.reservation_contents {
  padding: 69px 0 110px;
  letter-spacing: 0.04em;
}

.reservation .message {
  margin: 0 0 40px;
  text-align: center;
  font-size: 93.75%;
}

.reservation .flow {
  width: 100%;
  max-width: 664px;
  margin: 0 auto;
}

.reservation p.error {
  background: #ce2222;
  padding: 8px;
  color: #fff;
  margin: 15px 0;
}

.reservation form p.error {
  margin: 2px;
}

.reservation .form_table {
  width: 100%;
  margin-top: 28px;
  margin-bottom: 38px;
}

.reservation .form_table tr {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
}
.reservation .form_table .place_tr {
  flex-direction: column;
}

.reservation .form_table th {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 320px;
  margin-right: 18px;
  padding-top: 17px;
}
.reservation .form_table .place_th {
  justify-content: flex-start;
  padding-top: 0;
  margin-bottom: 3px;
  font-size: 106.25%;
}

.reservation .form_table td {
  width: calc(100% - 338px);
}
.reservation .form_table .place_td {
  width: 100%;
}

.reservation .form_table .td_row {
  display: flex;
  align-items: center;
}

.reservation .form_table .label {
  font-weight: 700;
}

.reservation .form_table .required {
  margin-left: 16px;
  padding: 6px 12px;
  border-radius: 9999px;
  background-color: #f39700;
  font-size: 81.25%;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.reservation .place_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.reservation .place_col {
  box-sizing: border-box;
  width: calc(100% / 3);
  padding: 20px 10px 0;
}

.reservation .place_button {
  display: flex;
  align-items: center;
  padding: 26px 16px;
  border-radius: 8px;
  outline: 1px solid #c8c8c8;
  outline-offset: -1px;
  cursor: pointer;
  transition: outline 0.1s, outline-offset 0.1s;
}

.reservation .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.reservation .place_button:hover,
.reservation .radio:focus + .place_button {
  outline: 3px solid rgba(41, 40, 139, 0.2);
  outline-offset: -3px;
}

.reservation .radio:checked + .place_button {
  outline: 3px solid #29288b;
  outline-offset: -3px;
}

.reservation .place_radio {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 19px;
  height: 19px;
  margin-right: 13px;
  border-radius: 50%;
  border: 1px solid #a1a1a1;
  background-color: #fff;
}

.reservation .radio:checked + .place_button .place_radio::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #29288b;
}

.reservation .place_image {
  width: 93px;
  height: 92px;
  object-fit: cover;
  margin-right: 15px;
}

.reservation .place_type {
  margin-bottom: 5px;
  font-size: 75%;
  font-weight: 700;
  line-height: 1.417;
}

.reservation .place_type::after {
  content: "";
  display: block;
  width: 16.5px;
  height: 2px;
  margin-top: 7px;
  background-color: #222;
}

.reservation .place_name {
  margin-bottom: 8px;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
}

.reservation .place_link {
  display: flex;
  align-items: center;
  font-size: 81.25%;
  letter-spacing: 0;
  color: #222;
}

.reservation .place_map_icon {
  width: 11px;
  height: 15px;
  object-fit: contain;
  margin-right: 5px;
}

.reservation .place_tab_icon {
  width: 9px;
  height: 8px;
  object-fit: contain;
  margin-left: 5px;
}

.reservation input.text,
.reservation textarea,
.reservation select {
  box-sizing: border-box;
  padding: 16px 20px;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  line-height: 1.5;
}

.reservation input.text {
  width: 100%;
}

.reservation textarea {
  width: 100%;
  height: 247px;
  resize: none;
}

.reservation input::placeholder,
.reservation textarea::placeholder {
  color: #afafaf;
}

.reservation input.date {
  width: 308px;
  margin-right: 38px;
  background: url("../../images/reservation/icon-calendar.svg") no-repeat right
    12px center / 21px auto;
  cursor: pointer;
}
.reservation input.date::placeholder {
  color: #222;
}

.reservation select {
  appearance: none;
  width: 163px;
  margin-left: 15px;
  background: url("../../images/reservation/icon-toggle.svg") no-repeat right
    13px center / 10px auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.reservation .privacy {
  margin-bottom: 48px;
  text-align: center;
  font-size: 93.75%;
  line-height: 1.867;
}

.reservation .submit_button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 23px;
  border: none;
  border-radius: 9999px;
  background: url("../../images/reservation/icon-arrow.svg") no-repeat right
    20px center / 7.2px auto;
  background-color: #29288b;
  text-align: center;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  transition: opacity 0.3s;
  cursor: pointer;
}

.reservation .submit_button:hover {
  opacity: 0.75;
}

@media only screen and (max-width: 640px) {
  .reservation .reservation_contents {
    padding: 48px 4% 80px;
  }

  .reservation .message {
    margin: 0 0 32px;
    font-size: 81.25%;
  }

  .reservation p.error {
    padding: 8px;
    margin: 15px 0;
  }

  .reservation form p.error {
    margin: 2px;
  }

  .reservation .form_table {
    margin-top: 8px;
    margin-bottom: 38px;
  }

  .reservation .form_table tr {
    flex-direction: column;
    padding: 28px 0;
  }

  .reservation .form_table th {
    width: unset;
    margin-right: 0;
    margin-bottom: 12px;
    padding-top: 0;
  }
  .reservation .form_table .place_th {
    font-size: 100%;
  }

  .reservation .form_table td {
    width: 100%;
  }

  .reservation .form_table .td_row {
    display: block;
  }

  .reservation .form_table .td_col:not(:first-of-type) {
    padding: 10px 0 0 20px;
  }

  .reservation .place_list {
    margin: 0 -8px;
  }

  .reservation .place_col {
    width: 50%;
    padding: 12px 6px 0;
  }

  .reservation .place_button {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
  }

  .reservation .place_image {
    width: calc(100% - 36px);
    height: auto;
    margin-right: 0;
  }

  .reservation .place_button > .lastChild {
    width: 100%;
  }

  .reservation .place_type {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .reservation .place_type::after {
    margin-top: 4px;
  }

  .reservation .place_name {
    margin-bottom: 12px;
    font-size: 100%;
  }

  .reservation .place_link {
    font-size: 75%;
  }

  .reservation input.text,
  .reservation textarea,
  .reservation select {
    padding: 12px 16px;
  }

  .reservation input.date {
    width: 100%;
    max-width: 308px;
    margin-right: 0;
  }

  .reservation .privacy {
    margin-bottom: 48px;
    text-align: center;
    font-size: 93.75%;
    line-height: 1.867;
  }

  .reservation .submit_button {
    box-sizing: border-box;
    padding: 23px;
    border: none;
    border-radius: 9999px;
    background: url("../../images/reservation/icon-arrow.svg") no-repeat right
      20px center / 7.2px auto;
    background-color: #29288b;
    text-align: center;
    font-size: 100%;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #fff;
    transition: opacity 0.3s;
    cursor: pointer;
  }
}

@media only screen and (max-width: 374px) {
  .reservation .place_button {
    padding: 16px 12px;
  }

  .reservation .place_name {
    font-size: 93.75%;
  }

  .reservation .place_link {
    font-size: 62.5%;
  }
}

/* jQuery UI Datepicker */
.ui-widget {
  font-family: "Noto Sans JP", sans-serif !important;
}

.ui-widget-header {
  background-color: #f6f6f6 !important;
  color: #222 !important;
}

.ui-widget-header .ui-icon {
  background-image: url("../../images/common/icon/arrow.svg") !important;
  background-position: center;
  background-size: 40% auto;
}

.ui-widget-header a {
  cursor: pointer;
}

.ui-icon-circle-triangle-w {
  transform: rotate(180deg);
}

.ui-datepicker-week-end span[title="日"] {
  color: #ff2626;
}
.ui-datepicker-week-end span[title="土"] {
  color: #3636ff;
}

.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0.45em 0.2em !important;
  text-align: center !important;
}

.ui-state-highlight {
  border: 1px solid #c5c5c5 !important;
  background: unset;
  color: #454545 !important;
}

.ui-state-default {
  background: none !important;
  transition: background-color 0.3s;
}

.ui-state-default:hover {
  background: rgba(243, 151, 0, 0.07) !important;
}

.ui-state-active,
.ui-state-active:hover {
  border: 1px solid #f39700 !important;
  background: #f39700 !important;
  color: #fff !important;
}

/* =================================
   ■ confirm
================================== */
.confirm .confirm_table {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 57px;
}

.confirm .confirm_table tr {
  display: flex;
  padding: 42px 0;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.5;
}

.confirm .confirm_table th {
  width: 251px;
  font-size: 100%;
}

.confirm .confirm_table .place_th {
  font-size: 106.25%;
}

.confirm .confirm_table td {
  width: calc(100% - 251px);
}

.confirm .submit_button {
  background-color: #f39700;
}

.confirm .back_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 49px auto 0;
  font-size: 87.5%;
  letter-spacing: 0.1em;
  color: #222;
}

.confirm .back_icon {
  width: 38px;
  height: auto;
  margin-right: 8px;
}

@media only screen and (max-width: 640px) {
  .confirm .confirm_table {
    margin-top: 12px;
    margin-bottom: 57px;
  }

  .confirm .confirm_table tr {
    flex-direction: column;
    padding: 36px 0;
  }

  .confirm .confirm_table th {
    width: unset;
    margin-bottom: 12px;
  }

  .confirm .confirm_table .place_th {
    font-size: 100%;
  }

  .confirm .confirm_table td {
    width: 100%;
  }

  .confirm .back_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 49px auto 0;
    font-size: 87.5%;
    letter-spacing: 0.1em;
    color: #222;
  }

  .confirm .back_icon {
    width: 38px;
    height: auto;
    margin-right: 8px;
  }
}

/* =================================
   ■ complete
================================== */
.complete {
  padding-top: 14px;
}

.complete .main_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 76px;
  margin-bottom: 55px;
  text-align: center;
}

.complete .text_en {
  font-family: "Hind", sans-serif;
  font-size: 506.25%;
  font-weight: 300;
  line-height: 1.395;
  letter-spacing: 0.1em;
}

.complete .text_ja {
  font-size: 137.5%;
  line-height: 1.455;
  letter-spacing: 0.1em;
}

.complete .text {
  margin-bottom: 30px;
  text-align: center;
  font-size: 106.25%;
  line-height: 2;
  letter-spacing: 0.1em;
}

.complete .contact_info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 67.5px;
}

.complete .dial_icon {
  width: 41.7px;
  height: auto;
  margin-right: 14px;
}

.complete .tel_number {
  margin-right: 21px;
  padding-top: 6px;
  font-family: "Hind", sans-serif;
  font-size: 231.25%;
  line-height: 1.405;
  letter-spacing: 0.1em;
}

.complete .regular_holiday {
  box-sizing: border-box;
  padding: 5px 20px 7px;
  border: 1px solid #222;
  border-radius: 9999px;
  font-size: 81.25%;
  line-height: 1;
}

@media only screen and (max-width: 640px) {
  .complete {
    padding-top: 0;
  }

  .complete .main_text {
    margin-top: 36px;
    margin-bottom: 48px;
  }

  .complete .text_en {
    font-size: 310%;
  }

  .complete .text_ja {
    font-size: 87.5%;
  }

  .complete .text {
    margin-bottom: 30px;
    font-size: 87.5%;
  }

  .complete .contact_info {
    flex-wrap: wrap;
    row-gap: 5px;
    margin-bottom: 56px;
  }

  .complete .dial_icon {
    width: 24px;
    margin-right: 8px;
  }

  .complete .tel_number {
    margin-right: 8px;
    padding-top: 6px;
    font-size: 100%;
  }

  .complete .regular_holiday {
    font-size: 75%;
  }
}

@media only screen and (max-width: 374px) {
  .complete .text_en {
    font-size: 270%;
  }

  .complete .text_ja {
    font-size: 75%;
  }

  .complete .text {
    font-size: 81.25%;
  }
}
