@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Rubik");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

*:focus {
  outline: none;
}

a, area, button, [role=button], input:not([type=range]),
label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media only screen and (min-width: 768px) {
  .is_pc {
    display: block;
  }
  .is_sp {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .is_pc {
    display: none;
  }
  .is_sp {
    display: block;
  }
}
.hide {
  display: none !important;
}

.main {
  margin-bottom: 200px;
}

.page {
  position: relative;
}

/* ヘッダー */
.header {
  background: #353535;
  color: #fff;
  margin: 0 0 25px;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 30px 0;
  }
}
.header h1 {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
    font-size: 40px;
  }
}

.l-container {
  padding: 0 16px;
  max-width: 1140px;
  margin: 0 auto;
}

.top-text {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .top-text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.bottom-text {
  margin-bottom: 1em;
  font-size: 13px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .bottom-text {
    font-size: 16px;
  }
}

.note-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .note-list {
    margin: 0 0 40px;
  }
}
.note-list li {
  font-size: 11px;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .note-list li {
    font-size: 13px;
  }
}

.top-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-buttons {
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.top-buttons .button {
  display: block;
  width: 50%;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #000;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 30px 0 40px;
}
@media screen and (min-width: 768px) {
  .top-buttons .button {
    max-width: 550px;
    font-size: 20px;
    padding: 80px 0 100px;
    transition: opacity 300ms;
  }
  .top-buttons .button:hover {
    opacity: 0.7;
  }
}
.top-buttons .button span {
  font-weight: bold;
  font-size: 18px;
  color: #ff0022;
}
@media screen and (min-width: 768px) {
  .top-buttons .button span {
    font-size: 34px;
  }
}
.top-buttons .location-icon {
  display: block;
  width: 50px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .top-buttons .location-icon {
    width: 100px;
  }
}
.top-buttons .postcode-icon {
  display: block;
  width: 43px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .top-buttons .postcode-icon {
    width: 86px;
  }
}

.return-button {
  position: absolute;
  top: -65px;
  left: 16px;
  display: block;
  font-size: 0.5rem;
  background-image: url(/img/reservation/return.png);
  background-repeat: no-repeat;
  background-color: #353535;
  background-position: center 5px;
  background-size: 30px;
  width: 60px;
  height: 60px;
  padding: 20px 0 0 0;
  text-align: center;
  color: #fff;
  pointer-events: auto;
  border-radius: 50%;
  line-height: 50px;
  box-shadow: 0px 5px 10px rgba(50, 50, 50, 0.8);
  cursor: pointer;
  text-decoration: none;
}
.return-button:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .return-button {
    transition: opacity 300ms;
    opacity: 1;
    background-position: 10px 10px;
    width: 150px;
    height: 50px;
    padding-top: 0;
    padding-left: 40px;
    line-height: 50px;
    border-radius: 0.5rem;
    font-size: 18px;
    top: -70px;
  }
  .return-button:hover {
    opacity: 0.7;
  }
}

.modal-header {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background-color: #f5f5f5;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .modal-header {
    font-size: 20px;
  }
}
.modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .modal-header .btn-close {
    right: 20px;
  }
}

.modal-body {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .modal-body {
    font-size: 15px;
  }
}
.modal-body .text-red {
  color: #ff0022;
}

.modal__post-code {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal__post-code::before {
  content: "〒";
  font-size: 18px;
}
.modal__post-code input {
  padding: 10px 20px;
  font-size: 16px;
}
.modal__post-code input::placeholder {
  color: #999;
}

.modal__close-button {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  font-size: 16px;
  font-weight: 500;
}

.modal__close-button-text {
  opacity: 0.8;
  text-align: center;
  font-size: 10px;
  margin-bottom: 0;
}

.modal-footer .btn-back {
  margin: 0 auto 0 0;
}
.modal-footer .btn-primary {
  background-color: #ff0022;
  border: 1px solid #ff0022;
}

.modal__block {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .modal__block {
    padding: 0 10px;
  }
}
.modal__block:last-child {
  margin-bottom: 0;
}

.modal__heading {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .modal__heading {
    font-size: 16px;
  }
}

.modal__text {
  margin-bottom: 0;
}

.area {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .area {
    margin-bottom: 60px;
  }
}
.area__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 -16px 20px;
  background-color: #353535;
  background-color: #fff;
  border-top: 1px solid #353535;
  border-bottom: 1px solid #353535;
  padding: 12px 16px;
  font-weight: 500;
  color: #353535;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .area__heading {
    margin: 0 0 20px;
    padding: 15px 0;
  }
}
.area__heading::after {
  position: absolute;
  right: 16px;
  top: 15px;
  border-bottom: 2px solid #353535;
  border-left: 2px solid #353535;
  transform: rotate(-45deg);
  content: "";
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  .area__heading::after {
    border-bottom: 3px solid #353535;
    border-left: 3px solid #353535;
    top: 18px;
    width: 15px;
    height: 15px;
  }
}
.area__name {
  display: block;
  font-size: 18px;
  color: #000;
  padding-left: 33px;
  background-image: url(/img/reservation/icon_logo.png);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: left center;
}
@media screen and (min-width: 768px) {
  .area__name {
    font-size: 26px;
    padding-left: 45px;
    background-size: 36px auto;
  }
}
.area__sub {
  display: block;
  padding-right: 20px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .area__sub {
    font-size: 16px;
    padding-right: 45px;
  }
}
.area__text {
  display: none;
  position: relative;
  top: -10px;
  font-size: 13px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .area__text {
    top: 0;
    font-size: 15px;
    padding-bottom: 30px;
  }
}
.area__btn {
  margin-bottom: 20px;
  background-color: #353535;
  color: #fff;
  padding: 10px 20px;
  transition: all 300ms;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .area__btn {
    font-size: 16px;
  }
}
.area__btn:hover {
  color: #fff;
  opacity: 0.7;
}

.reserve-table {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .reserve-table {
    display: none;
  }
}
.reserve-table th {
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background-color: #f5f5f5;
}
.reserve-table td {
  padding: 6px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
}
@media screen and (min-width: 992px) {
  .reserve-table td {
    font-size: 16px;
  }
}
.reserve-table td:empty {
  background-color: #f5f5f5;
}
.reserve-table td:empty::before {
  content: "";
}
.reserve-table .is-sat {
  color: #315EC3;
}
.reserve-table .is-sun {
  color: #ff0022;
}
.reserve-table thead th {
  text-align: center;
  font-size: 13px;
  padding: 5px 0;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .reserve-table thead th {
    font-size: 16px;
    padding: 10px 0;
  }
}
.reserve-table thead th:first-child {
  width: 100px;
}
@media screen and (min-width: 992px) {
  .reserve-table thead th:first-child {
    width: 200px;
  }
}
.reserve-table tbody th {
  width: 100px;
  font-size: 13px;
  padding: 5px 10px;
}
@media screen and (min-width: 992px) {
  .reserve-table tbody th {
    font-size: 18px;
  }
}
.reserve-table tbody th span {
  display: block;
  font-size: 10px;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .reserve-table tbody th span {
    font-size: 13px;
  }
}

.reserve-table-sp {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .reserve-table-sp {
    display: none;
  }
}
.reserve-table-sp th {
  background-color: #f5f5f5;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.reserve-table-sp th:first-child {
  width: 100px;
}
.reserve-table-sp td {
  padding: 6px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
}
.reserve-table-sp td:empty {
  background-color: #f5f5f5;
}
.reserve-table-sp td:empty::before {
  content: "";
}
.reserve-table-sp .is-sat {
  color: #315EC3;
}
.reserve-table-sp .is-sun {
  color: #ff0022;
}
.reserve-table-sp thead th {
  text-align: center;
  font-size: 13px;
  padding: 10px 5px;
  white-space: nowrap;
}
.reserve-table-sp thead th span {
  display: block;
  font-size: 10px;
}
@media screen and (min-width: 375px) {
  .reserve-table-sp thead th span {
    display: inline;
  }
}
.reserve-table-sp tbody th {
  width: 88px;
  font-size: 13px;
  padding: 5px 5px;
}
.reserve-table-sp tbody th span {
  display: block;
  font-size: 11px;
  white-space: nowrap;
}

/* footer */
.footer {
  min-height: 30px;
}
.footer .l-container {
  position: relative;
}
.footer__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__btn-wrap {
    padding: 10px 0 10px;
    border-top: 1px solid #ccc;
    background-color: #f5f5f5;
    justify-content: center;
    gap: 30px;
  }
}
.footer__btn {
  display: block;
  width: 50%;
  flex-shrink: 0;
  text-align: center;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
  background-color: #353535;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}
.footer__btn:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__btn:hover {
    opacity: 0.7;
    color: #353535;
  }
}
.footer__btn:first-child {
  border-left: none;
}
@media screen and (min-width: 768px) {
  .footer__btn:first-child {
    border-left: 1px solid #353535;
  }
}
.footer__btn span {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    font-size: 20px;
    width: 350px;
    border-radius: 0.5rem;
    transition: opacity 300ms;
    border: 1px solid #353535;
    background-color: #fff;
    color: #353535;
  }
}
