@charset "UTF-8";

/*  ----------------------------------------------------------

parallax

----------------------------------------------------------  */
.bg-parallax {
  width: 100%;
  height: 40rem;
  background: url(../img/bg-pa.jpg) no-repeat center top;
  background-size: cover;
  text-align: center;
  background-attachment: fixed;
}
@media screen and (max-width: 750px) {
  .bg-parallax {
    background: url(../img/bg-pa-sp.jpg) no-repeat center top;
    background-size: cover;
    background-attachment: scroll;
    height: 32rem;
  }
}

/*  ----------------------------------------------------------

menu

----------------------------------------------------------  */
.reservation-container {
  padding: 10rem 10%;
}
.reservation-container pre {
  white-space: pre-wrap;
  word-break: break-all;
}
.reservation-container .reservation-ttl {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 1.5rem;
  box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 5px 5px 0 0;
  background-color: #fff4c7;
}
.reservation-container * + .reservation-ttl {
  margin-top: 5rem;
}
.reservation-container .reservation-ttl + * {
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
.reservation-container .menu-item,
.reservation-container .staff-item {
  padding: 1.2rem 0.8rem;
  box-sizing: border-box;
}
.reservation-container .menu-item + .menu-item,
.reservation-container .staff-item + .staff-item {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
}
.reservation-container .menu-top {
  position: relative;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.reservation-container .menu-radio {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}
.reservation-container .menu-radio input {
  margin: 0;
  accent-color: chocolate;
  inline-size: 1.5rem;
  block-size: 1.5rem;
}
.reservation-container .menu-title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.reservation-container .menu-info {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 0.8rem;
}
.reservation-container .menu-info sub {
  font-size: 0.7em;
}
.reservation-container .menu-time {
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  border-right: solid 1px rgba(0, 0, 0, 0.2);
}
.reservation-container .menu-toggle {
  margin-left: auto;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.6rem;
}
.reservation-container .menu-toggle::before {
  content: "詳細を見る";
}
.reservation-container .js-open .menu-toggle::before {
  content: "閉じる";
}
.reservation-container .menu-toggle:hover {
  text-decoration: none;
}
.reservation-container .menu-bottom {
  display: none;
  height: 0;
}
.reservation-container .menu-bottomInr {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  box-sizing: border-box;
  font-size: 1.5rem;
}
.reservation-container .menu-bottomInr > * + * {
  margin-top: 2.5rem;
}
.reservation-container .staff-item {
  position: relative;
}
.reservation-container .staff-item .menu-radio {
  left: 2rem;
}
.reservation-container .staff-item .staff-ttl {
  padding-left: 3.5rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.reservation-container .more {
  padding: 0;
  margin-top: 5rem;
  font-size: 2rem;
}
.reservation-container .more .reservation-btn {
  padding: 1.6rem 2rem 1.8rem 2rem;
}

.reservation-container .more a:hover {
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .reservation-container .menu-info {
    font-size: 1.5rem;
  }
}

/*  ----------------------------------------------------------

calendar

----------------------------------------------------------  */
.calendar-section .reservation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.calendar-section .staff-item {
  background-color: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 50px;
  padding: 2px 16px;
  box-sizing: border-box;
  font-weight: normal;
}

.calendar-section .staff-item.staff-checked {
  border: 1px solid #9d2329;
}

.calendar-section .reservation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.calendar-section .staff-item {
  background-color: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 50px;
  padding: 6px 12px;
  box-sizing: border-box;
}

.calendar-section .staff-item label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.calendar-section .menu-radio {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
}

.calendar-section .menu-radio input[type="radio"] {
  appearance: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.calendar-section .menu-radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(45deg);
  width: 8px;
  height: 12px;
  border-bottom: 2px solid #c7617c;
  border-right: 2px solid #c7617c;
  box-sizing: border-box;
}

.calendar-section .staff-item .staff-ttl {
  font-weight: normal;
  line-height: 1;
}

.calendar-section .staff-item.staff-checked .staff-ttl {
  font-weight: bold;
}

.salon-calendar-container {
  border: solid #bfb9b0;
  border-spacing: 0;
  border-width: 2px 2px 2px 2px;
  box-sizing: border-box;
  width: 100%;
  color: #333333;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.salon-calendar-container .time-sticky,
.salon-calendar-container .reservation-state {
  vertical-align: top;
}

.salon-calendar-container > thead > tr:first-child > th {
  top: 0;
}

.salon-calendar-container > thead {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 2;
}

.salon-calendar-container > thead > tr:first-child > th + th {
  border-left: 1px solid #bfb9b0;
}

.salon-calendar-container > tbody > tr > th + th {
  border-left: 1px solid #bfb9b0;
}

.week-link {
  background-color: #ffffff;
  border: solid #bfb9b0;
  border-width: 1px 0 2px 0;
  font-weight: bold;
  text-align: center;
  width: 87px;
  vertical-align: middle;
}

.salon-calendar-container thead th {
  position: relative;
}

.salonCalendarContainer thead th::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-bottom: 1.5px solid #bfb9b0;
  z-index: -10;
}

.disable {
  color: #cccccc;
  pointer-events: none;
}

.reservation-month {
  background-color: #ffffff;
  border-top: 1px solid #bfb9b0;
  box-sizing: border-box;
  height: 38px;
  text-align: center;
  vertical-align: middle;
}

.reservation-weekday,
.reservation-saturday,
.reservation-sunday {
  border: solid #bfb9b0;
  border-width: 1px 0 2px 1px;
  box-sizing: border-box;
  height: 45px;
  text-align: center;
  width: 42px;
}

.reservation-weekday {
  background-color: #ffffff;
}

.reservation-saturday {
  background-color: #6b9ac9;
  color: #ffffff;
}

.reservation-sunday {
  background-color: #f78e8a;
  color: #ffffff;
}

.timetables {
  border: 0 none;
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
  padding: 0;
  margin: 0;
  height: 230px;
  position: relative;
  color: #333333;
  font-size: 12px;
  line-height: 1.5;
}

.times-left,
.times-right {
  width: 100%;
}

.timetables tr:first-child > th,
.timetables tr:first-child > td {
  border-top: none;
  height: 36.4px;
}

.times-left .timetable {
  text-align: right;
  padding-right: 15px;
}

.times-right .timetable {
  text-align: left;
  padding-left: 15px;
}

.timetable {
  background-color: #f6f6f6;
  border-top: 0.5px solid #bfb9b0;
  height: 36px;
  line-height: 34.1px;
  width: 100%;
  font-size: 14px;
}

.reservation-state {
  box-sizing: border-box;
  text-align: center;
  width: 42px;
}

.reservation-table {
  border: 0 none;
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
  padding: 0;
  margin: 0;
  height: 230px;
  position: relative;
  color: #333333;
  font-size: 12px;
  line-height: 1.5;
}

.reservation-table tr:first-child > th,
.reservation-table tr:first-child > td {
  border-top: none;
}

.salon-open,
.salon-close,
.after-hours {
  border: solid #bfb9b0;
  border-width: 0.5px 0 0 0;
  height: 36px;
  text-align: center;
  width: auto;
}

.salon-open {
  width: 100%;
  vertical-align: middle;
}

.salon-open {
  background-color: #fffae0;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
}

.salon-open:hover {
  background-color: #fcdbe3;
  text-decoration: none;
}

.salon-open a {
  display: block;
}

.salon-open span {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  color: #5395c7;
  font-weight: bold;
  width: auto;
}

.salon-open span::before {
  content: "";
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
}

.salon-open span::after {
  content: "";
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
}

.salon-open span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: auto;
}

.salon-close {
  background-color: #eeeeee;
}

tr:first-child > .salon-close {
  height: 36px;
}

.salon-close span {
  display: block;
  line-height: 35px;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  width: auto;
}

.salon-close span::before {
  background: #333333;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 16px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.salon-close span::after {
  background: #333333;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 16px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.after-hours span {
  background: #fefefe;
  display: block;
  line-height: 35px;
  overflow: hidden;
  position: relative;
  width: auto;
}

@media screen and (max-width: 767px) {
  #salonCalendar {
    overflow: scroll;
    height: 90vh;
  }
  .reservation-weekday,
  .reservation-saturday,
  .reservation-sunday {
    min-width: 42px;
  }
  .salon-calendar-container thead::before {
    content: "";
    position: absolute;

    width: 100%;
    border-top: 1.5px solid #bfb9b0;
  }
  .salon-close span,
  .after-hours span {
    line-height: 35px;
  }
  .timetables tr:first-child > th {
    height: 36px;
  }
  .timetable {
    height: 36px;
  }
  .reservation-weekday,
  .reservation-saturday,
  .reservation-sunday {
    height: 47px;
  }
  .salonCalendarContainer thead .reservation-weekday::before,
  .salonCalendarContainer thead .reservation-saturday::before,
  .salonCalendarContainer thead .reservation-sunday::before {
    border-top: 1.5px solid #bfb9b0;
    height: 46px !important;
    top: -2px !important;
  }
  .reservation-month {
    border-top: 2px solid #bfb9b0;
  }
  .reservation-month::before {
    height: 46px !important;
    top: -1px !important;
    z-index: 3;
  }
  .week-link {
    min-width: 87px;
  }
  .week-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: -1 !important;
    left: 0;
    z-index: 10;
  }
  .week-sticky::before {
    border-left: 2px solid #bfb9b0;
    left: -2px !important;
  }
  .time-sticky {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
  }
  .time-sticky::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 2px solid #bfb9b0;
    top: 0;
    left: -2px !important;
  }

  .form-container dl {
    flex-direction: column;
  }
  .form-container dt {
    width: 100%;
  }
  .form-container .date-form,
  .form-container .menu-form,
  .form-container .seat-form,
  .form-container .cost-form {
    height: auto;
  }
  .form-container .text_field {
    width: 47.6%;
  }
  .form-container .blank-area {
    margin-right: 8px;
  }
}

@media screen and (min-width: 768px) {
  .link-left::before {
    border-right: 4px solid #d36985;
    left: 10px;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    width: 0;
    height: 0;
    top: 48%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .link-right::before {
    border-left: 4px solid #d36985;
    right: 10px;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    width: 0;
    height: 0;
    top: 48%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/*  ----------------------------------------------------------

reservation

----------------------------------------------------------  */
.regform div {
  margin-bottom: 0 !important;
  font-size: 1.5rem;
}

.regform input,
.regform textarea {
  font-size: 1.5rem !important;
}

.regform input:not(:first-child) {
  margin-left: 1rem;
}

.regform select {
  padding: initial !important;
}

.regform label {
  display: inline-block;
  margin-bottom: 0 !important;
  font-size: 1.2rem !important;
}

.regform .title {
  text-align: center;
  margin-bottom: 2rem;
}

.regform #conf {
  width: auto;
}

.regform .pre-btn input,
.regform .submit-btn input {
  width: auto;
}

.regform .validation {
  display: flex;
  align-items: center;
}

.regform .validation label {
  margin-left: 4px;
}

#reservationForm {
  padding-top: 0 !important;
}

.form-container {
  width: 100%;
}

.form-container input,
.form-container select {
  min-height: 40px;
}

.form-container textarea {
  width: 100%;
  height: 8rem;
}

.form-container .tel-form input,
.form-container .mail-form input {
  width: 100%;
}

.form-container .pay-form select {
  width: 33%;
}

.form-container dl {
  display: flex;
}

.form-container dt {
  display: flex;
  align-items: center;
  width: 27rem;
  background-color: #eeebe4;
  font-weight: bold;
  padding: 1rem;
  border: 1px solid #cccccc;
}

.form-container dd {
  padding: 1rem;
  flex: 1;
  border: 1px solid #cccccc;
}

.form-container .text_field {
  width: 47.6%;
}

.form-container .text_field:first-child {
  margin-right: 3%;
}

.form-container .blank-area {
  margin-right: 10px;
}

.hissu {
  min-width: 28px;
  display: inline-block;
  border-radius: 3px;
  background-color: #c00;
  padding: 5px;
  margin-left: 14px;
  font-size: 1.2rem !important;
  line-height: 1;
  color: #fff;
}

.nini {
  min-width: 28px;
  display: inline-block;
  background-color: #999;
  padding: 5px;
  margin-left: 14px;
  font-size: 1.2rem !important;
  line-height: 1;
  color: #fff;
}

.btn-container {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2rem;
}

.btn-container .submit-btn input {
  font-weight: bold;
  background: #f95a6b;
  background: linear-gradient(to bottom, #ff9ba2 0%, #f95a6b 75%, #f85164 100%);
  border: 1px solid #da949b;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px #f9d8db, inset -1px -1px 3px #ffa6ae;
  color: #ffffff !important;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
}

.btn-container .pre-btn input {
  background-color: #ffffff;
  border: solid #cccccc;
  border-radius: 4px;
  border-width: 1px 1px 3px;
  color: #666666 !important;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
}

.submit-message {
  margin-top: 2rem;
  font-size: 16px;
  text-align: center;
}

.reservation-section input[type="submit"] {
  transition: all 0.3s;
}

.reservation-section input[type="submit"]:hover {
  cursor: pointer;
  opacity: 0.4;
}

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

  .regform div {
    font-size: 2rem;
  }
  .regform input,
  .regform textarea {
    font-size: 2rem !important;
  }

  .regform input:not(:first-child) {
    margin-left: 0;
    margin-top: 1rem;
  }

  .regform label {
    font-size: 1.5rem !important;
  }

  .regform .title {
    font-size: 2.5rem;
  }

  .hissu {
    min-width: 28px;
    padding: 5px;
    font-size: 2rem !important;
  }

  .nini {
    min-width: 28px;
    padding: 5px;
    font-size: 2rem !important;
  }
}

/*  ----------------------------------------------------------

thanx

----------------------------------------------------------  */
.thanx {
  text-align: center;
}
.back {
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .thanx {
    text-align: left;
  }
}
