@import url(./reset.css);
@import url(./custom.css);

.popup_wrap *::-webkit-scrollbar,
.reservation *::-webkit-scrollbar {
  width: 4px;
  scroll-behavior: smooth;
}

/* Track */

.popup_wrap *::-webkit-scrollbar-track,
.reservation *::-webkit-scrollbar-track {
  background: #f1f5f8;
  border-radius: 2px;
}

/* Handle */

.popup_wrap *::-webkit-scrollbar-thumb,
.reservation *::-webkit-scrollbar-thumb {
  background: var(--c-pt2);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Handle on hover */

.popup_wrap *::-webkit-scrollbar-thumb:hover,
.reservation *::-webkit-scrollbar-thumb:hover {
  background: var(--c-pt2);
}

:root {
  --input-h1: 42px;

  --ttl: 20px;
  --ttl-bot-txt: 15px;
  /* 박스 안에 */
  --cont-ttl: 18px;
  /* 예약 숫자 */
  --rev-date: 18px;

  --category-txt: 16px;

  --input-txt: 15px;

  --more-txt: 13px;
  --another: 18px;
  --label: 16px;

  --pop-ttl: 28px;
  --pop-sub-ttl: 18px;
  --pop-box-txt1: 16px;
  --pop-box-txt2: 15px;
  --pop-cfr-btn: 20px;
  /* 인증버튼 */

  --certi-btn: 15px;

  --btn-desi: 18px;

  /* 달력 */
  --cal-mon: 22px;
  --cal-date: 18px;
  --cal-day: 16px;
  --cal-time: 17px;

  --anth-ttl: 22px;
  --anth-sub-ttl: 15px;
}
.full_bg {
  background-color: var(--c-pt);
  color: #fff;
  border-color: var(--c-pt);
}
.black_bg {
  background-color: var(--c-bs);
  color: #fff;
  border-color: var(--c-bs);
}

.line_btn {
  color: #757575;
  border: 1px solid #bbb;
  background-color: #fff;
}

.color_pt {
  color: var(--c-pt);
}
a:link,
a:visited {
  /* color: inherit; */
}

.loading_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.loading_wrap img {
  width: 100px;
}
.loading_wrap.hide {
  display: none;
}
#wrap {
  background-color: #f1f5f8;
  max-width: 1903px;
}

#container {
  margin-top: 110px;
  padding: 50px 20px 40px;
  justify-content: center;
  position: relative;
  min-height: calc(100vh - 110px);

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

#container > section {
  width: 1162px;
  min-width: 1162px;
  /* margin-bottom: 70px; */
}

#container > section section + section {
  margin-left: 14px;
}

.cont_box {
  background-color: #fff;
  border-radius: 1em;
  min-height: 420px;
  width: 100%;
  padding: 25px 20px;
  box-shadow: 0 15px 38px rgba(133, 190, 233, 0.1);
}

/* banner */
.banner_wrap {
  padding-top: 40px;
  position: relative;
  width: 300px;
  margin-left: 35px;
}

.banner .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.banner .slick-slide a {
  display: block;
  width: 300px;
  height: 770px;
}

.banner .slick-slide a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .slick-dots li {
  margin: 0 5px;
}

.banner .slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border: none;
  background: #252525;
  border-radius: 100%;
  opacity: 0.2;
}

.banner .slick-dots .slick-active button {
  opacity: 1;
}

.reser_go_btn {
  position: absolute;
  right: 0;
  bottom: -10px;
  text-align: center;
  height: 44px;
  display: inline-block;
  padding: 0 20px;
  border-radius: 22px;
  line-height: 44px;
  background-color: var(--c-pt);
  color: #fff !important;
}
.reser_go_btn:visited,
.reser_go_btn:link,
.reser_go_btn:hover {
  background-color: var(--c-pt);
  color: #fff !important;
}
.ttl_box {
  margin-bottom: 20px;
  position: relative;
}

.change_cont2 h2 span {
  font-size: 18px;
  color: #ff3333;
}
.ps_txt {
  margin-top: 20px;
}
.ps_txt p {
  font-weight: 600;
  color: #ff3333;
}

.ttl {
  font-size: var(--ttl);
}

.ttl span {
  color: #ff3333;
}

.cont_box .ttl {
  font-weight: 500;
}

.ttl + p {
  font-size: var(--ttl-bot-txt);
  color: var(--c-pt);
  line-height: 1.333;
  margin-top: 10px;
}

.cont_ttl_wrap {
  margin-bottom: 20px;
}

.cont_ttl {
  font-size: var(--cont-ttl);
}

.cont_ttl > * {
  vertical-align: middle;
}

.cont_ttl span {
  display: inline-block;
  margin-left: 10px;
  font-weight: 500;
}

/* btn */
.btn_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.btn_wrap > * {
  text-align: center;
  width: 100%;
}

.prev_btn {
  width: 120px;
  margin-right: 10px;
  border: 1px solid var(--l-db);
  border-radius: 10px;
  /* background-color: #fff; */
  color: var(--c-g4) !important;
  font-size: 18px;
  height: 54px;
  line-height: 52px;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.prev_btn:hover {
  border: 1px solid var(--l-bb);
  /* background-color: #fff; */
  color: var(--c-g1) !important;
}

.certi_btn {
  width: 80px;
  height: 40px;
  line-height: 38px;
  font-size: var(--certi-btn);
  text-align: center;
}

.certi_btn.line {
  border: 1px solid var(--c-pt);
  color: var(--c-pt);
}

.certi_btn.full {
  background-color: var(--c-pt);
  color: #fff;
  border-color: var(--c-pt);
}

.dc_btn {
  display: block;
  width: 310px;
  height: 54px;
  line-height: 52px;
  border: none;
  color: #fff !important;
  text-align: center;
  font-size: var(--btn-desi);
  border-radius: 10px;
  background-color: var(--c-pt) !important;
  box-shadow: 0 5px 18px rgba(80, 186, 189, 0.47);
  /* background-color: #dddddd !important; */
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.dc_btn:disabled {
  background-color: #dddddd !important;
  box-shadow: none;
  pointer-events: none;
}

#dc_btn8:disabled {
  background-color: #dddddd !important;
  box-shadow: none;
  pointer-events: none;
}

/* .dc_btn.on {
    background-color: var(--c-pt) !important;
    box-shadow: 0 5px 18px rgba(80, 186, 189, 0.47);

} */

/* step1 */

.half_cont section {
  width: calc(50% - 7px);
}

.half_cont .cont_box {
  padding: 50px 40px;
  /* min-height: 457.11px; */
}

.input_container .cont_box {
  margin-top: 40px;
}

/* input */
.input_wrap > * + * {
  margin-top: 10px;
}

.input_wrap input[readonly] {
  background-color: #f9f9f9;
}

.certi_box {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.certi_box > span:nth-of-type(1) {
  width: calc(100% - 90px);
}

.certi_box > span:nth-of-type(2) {
  width: 80px;
  margin-left: 10px;
}

.input_content > div + div {
  margin-top: 30px;
}

.reservation .phon_num span {
  width: calc(33.3333% - 10px);
  position: relative;
  display: inline-block;
}

.reservation select,
.reservation input {
  height: var(--input-h1);
  line-height: var(--input-h1);
  color: #454545;
  font-size: var(--input-txt);
}

.reservation input::placeholder {
  color: #dddddd;
}

.reservation .phon_num span + span::after {
  position: absolute;
  content: "";
  left: -10.5px;
  top: 50%;
  height: 1px;
  width: 5px;
  background-color: #757575;
}

.certifi_container .cont_box {
  display: table;
}

.certifi_container p {
  margin: 30px auto;
  color: #757575;
  line-height: 1.5;
}

.certifi_container .icon_wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 100%;
}

.certifi_btn {
  max-width: 120px;
  height: 40px;
  line-height: 38px;
  font-weight: 500;
  color: #999999;
  border: 1px solid #dddddd;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.certifi_btn:hover {
  border: 1px solid var(--c-pt);
  color: var(--c-pt);
}

/* .certifi_btn.msg_btn {
    color: #999999;
    border: 1px solid #dddddd;
} */

.certifi_container .wrapper {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.certifi_container .msg_wrap {
  display: none;
}

.certifi_container .msg_wrap.front {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.certifi_container .msg_wrap.on {
  display: block;
}

.kakao_container .input_content .kakao_btn {
  margin: 30px auto 0;
}

.radiobox_cont > label,
.input_wrap > label {
  font-weight: 500;
  font-size: var(--label);
  display: block;
  margin-bottom: 10px;
}

.radiobox_cont > label.radio_wrap_label {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
}

.radiobox_wrap label {
  font-weight: 400;
  color: #454545;
  font-size: var(--input-txt);
}

/* bot agree_wrap */
.bot_sec {
  padding: 0 40px;
  margin: 50px 0;
}

.left {
  width: 575px;
  min-width: 575px;
}

.agree_wrap > .checkbox1 {
  margin-bottom: 30px;
}

.agree_wrap > .checkbox1 label {
  font-size: var(--another);
  font-weight: 500;
}

.agree_wrap ul {
  padding-left: 3px;
}

.agree_wrap ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #757575;
}

.agree_wrap ul li + li {
  margin-top: 10px;
}

.agree_wrap ul li a {
  color: #454545;
  border-bottom: 1px solid #454545;
  line-height: 1.1;
}

/* reservation2 */
/* .reservation2 #step2 .check_container .cont_box{
    max-height: 775.97px;
} */
.reservation2 .cont_box {
  min-height: 770px;
}
.reservation2 .select_container .cont_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.check_container {
  width: 400px;
}
.check_container .cont_box {
  min-height: 770px;
}
.reservation3 .check_container .cont_box > ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
}
.check_container .cont_box > ul > li + li {
  margin-top: 40px;
}
.select_item {
  max-height: 344px;

  overflow: hidden;
  overflow-y: auto;
  padding-right: 15px;
}
.select_item ul li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid var(--c-pt);
  box-shadow: 0 5px 6px rgba(0, 186, 190, 0.1);
  color: #454545;
  padding: 9px 30px 9px 20px;
  border-radius: 12px;
  min-height: 60px;
}
.select_item ul li + li {
  margin-top: 10px;
}
.select_item ul li p {
  color: var(--c-bl2);
  word-break: keep-all;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
}

.select_item ul li p span {
  color: #999;
  text-decoration: line-through;
}
.select_item ul li p.more_infor {
  color: #999;
  font-size: var(--more-txt);
  margin-top: 3px;
}
.select_item ul li .del {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  margin-left: 5px;
  line-height: 48px;
  background: url(/img/reservation/btn/del_11.png) no-repeat center / 11px auto;
}

/* none select */
.select_item ul li.none_select {
  padding: 0;
}
.select_item ul li.none_select a {
  display: block;
  padding: 0 20px;
  line-height: 46px;
  font-weight: 500;
  color: var(--c-pt);
  background: url(/img/reservation/ico/add_ico.png) no-repeat right 20px center /
    12px auto;
}
/* 예약일시 */
.select_infor p {
  color: #757575;
  line-height: 1.333;
  font-weight: 500;
}

.select_infor p + p {
  margin-top: 10px;
}

.select_infor p span.selected_time,
.select_infor p span.selected_date {
  font-size: var(--rev-date);
  color: #dddddd;
  margin-left: 20px;
  font-weight: bold;
  font-family: "Lato";
}

.select_infor p span.selected_time,
.select_infor p span.selected_loc {
  font-size: var(--rev-date);
  color: #dddddd;
  margin-left: 20px;
  font-weight: bold;
  font-family: "Lato";
}

.select_infor p span.selected_time.on,
.select_infor p span.selected_date.on {
  color: var(--c-pt);
}

.select_infor p span.selected_time.on,
.select_infor p span.selected_loc.on {
  color: var(--c-pt);
}

.request textarea {
  background-color: #fafafa;
  border: none;
  border-radius: 12px;
  height: 80px;
  line-height: 1.333;
}

.request textarea::placeholder {
  color: red;
}

/* 시술선택 */
.select_container {
  width: 748px;
}

.category {
  margin-bottom: 20px;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -5px;
  margin-top: -5px;
}

.category a {
  display: inline-block;
  margin: 5px;
  height: 42px;
  min-width: 100px;
  line-height: 42px;
  font-weight: 500;
  padding: 0 13px;
  background-color: #fafafafa;
  color: #252525;
  text-align: center;
  border-radius: 20px;
  font-size: var(--category-txt);
}

.category a.on {
  color: #fff;
  background-color: var(--c-pt);
}
.item .list.on {
  display: block;
}
.item .list {
  display: none;
}

/* .item .list:first-child {
  display: block;
} */

.list_wrap {
  min-height: 220px;
  max-height: 390px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 20px;
}

.list {
  width: calc(100% + 10px);
  margin-left: -5px;
  padding-bottom: 10px;
}

.list li {
  width: calc(50% - 10px);
  min-height: 60px;
  display: flex;
  align-items: center;
  margin: 0 5px;
  border: 2px solid #eeeeee;
  box-shadow: 0 5px 6px rgba(0, 00, 0, 0.01);
  border-radius: 12px;
  padding: 9px 20px;
  cursor: pointer;
}

.list li .prod_price {
  color: #999;
  text-decoration: line-through;
}

.list li:nth-of-type(n + 3) {
  margin-top: 10px;
}

.list li p {
  color: var(--c-bl2);
  font-weight: 500;
  word-break: keep-all;
  line-height: 1.2;
}

.list li .more_infor {
  color: #999;
  font-size: var(--more-txt);
}

.list li.on {
  border: 2px solid var(--c-pt);
  box-shadow: 0 5px 6px rgba(0, 186, 190, 0.1);
}

.exclusive {
  position: relative;
  padding-top: 30px;
}
/* 
.exclusive .list_wrap {
  height: 190px;
} */

.exclusive::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: #eee;
  width: calc(100% + 40px);
  margin-left: -20px;
  height: 1px;
}

.dc_wrap {
  margin-top: 30px;
  position: relative;
}

.dc_wrap .another_btn {
  font-size: var(--another);
  color: var(--c-pt);
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--c-pt);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* another popup*/
.popup_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

.pop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  width: 600px;
  height: 600px;
}

.pop_ttl_box h2 {
  font-size: var(--anth-ttl);
}

.pop_ttl_box p {
  font-size: var(--anth-sub-ttl);
  margin-top: 20px;
  color: #999;
}

.pop .content {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 30px 20px;
}

.pop_category {
  padding: 15px 0 30px;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: -5px;
}

.pop_category a {
  display: inline-block;
  height: 42px;
  margin: 5px;
  padding: 0 13px;
  line-height: 42px;
  background-color: #fafafafa;
  color: #252525;
  text-align: center;
  border-radius: 20px;
  font-size: var(--category-txt);
}

.pop_category a + a {
  margin-left: 10px;
}

.pop_category a.on {
  color: #fff;
  background-color: var(--c-pt);
}
#certifiPop .pop {
  width: 1200px;
  height: auto;
}
#certifiPop .pop .content {
  background-color: #f1f5f8;
  padding: 50px;
}
#certifiPop .pop .content .half_cont {
  max-height: 80vh;
  overflow-y: auto;
}
#anotherPop .anth_list {
  display: none;
}

#anotherPop .anth_list:first-child {
  display: block;
}

.anthList_wrap {
  height: 396px;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 15px;
}

.anth_list {
  padding-bottom: 10px;
}

.anth_list li + li {
  margin-top: 10px;
}

.anth_list li {
  /* border: 2px solid transparent; */
  border: 2px solid #eeeeee;
  box-shadow: 0 5px 6px rgba(0, 00, 0, 0.01);
  border-radius: 12px;
  padding: 10px 20px;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  /* box-shadow: 0 5px 6px rgba(0, 186, 190, 0.1); */
  cursor: pointer;
  flex-wrap: wrap;
}
.anth_list li > * {
  width: 100%;
}

.anth_list li:nth-of-type(n + 3) {
  margin-top: 10px;
}

.anth_list li p {
  color: var(--c-bl2);
  font-weight: 500;
  word-break: break-all;
  line-height: 1.333;
}

.anth_list li .more_infor {
  color: #999;
  font-size: var(--more-txt);
}

.anth_list li.on {
  border-color: var(--c-pt);
  box-shadow: 0 5px 6px rgba(0, 186, 190, 0.1);
}

.pop_btn {
  margin-top: -1px;
  display: block;
  text-align: center;
  outline: none;
  border: none;
  line-height: 64px;
  height: 64px;
  border-radius: 0 0 20px 20px;
  color: #fff !important;
  font-size: var(--pop-cfr-btn);
  background: #17d2b5;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #11bec1 0%, #17d2b5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #11bec1 0%, #17d2b5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #11bec1 0%, #17d2b5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#17d2b5', endColorstr='#11bec1', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.pop_btn:disabled {
  background: #dddddd !important;
  box-shadow: none;
}
.pop_close {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  background: url(/img/reservation/btn/b_close_20.png) no-repeat center / cover;
}

/* date picker */
.pick_container {
  width: 748px;
}

.pick_container .cont_box {
  min-height: 770px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pick_content {
  padding-bottom: 40px;
}

.ui-datepicker {
  width: 100%;
}

.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  line-height: 40px;
  height: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.ui-datepicker .ui-datepicker-header span {
  font-size: var(--cal-mon);
  font-weight: 700;
  font-family: "Lato";
}

/* 비활성화 */
.ui-state-disabled,
.ui-checkboxradio-disabled {
  pointer-events: none;
  opacity: 0.2;
}

/* btn */
.ui-state-disabled.ui-datepicker-prev,
.ui-state-disabled.ui-datepicker-next {
  opacity: 0.5;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  text-indent: -99999px;

  display:none !important
}

.ui-datepicker .ui-datepicker-prev {
  right: 35px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  background-image: url(/img/reservation/btn/month_prev.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ui-datepicker .ui-datepicker-next span {
  transform: rotate(-180deg);
}

.ui-datepicker .ui-datepicker-prev-hover span {
  background-image: url(/img/reservation/btn/month_prev_on.png);
}

.ui-datepicker .ui-datepicker-next-hover span {
  background-image: url(/img/reservation/btn/month_prev_on.png);
}

.ui-datepicker th {
  padding: 10px;
  border: 0;
}

.ui-datepicker th span {
  text-align: center;
  font-weight: 500;
  font-size: var(--cal-day);
  color: #999;
}

.ui-datepicker td {
  border: 0;
  padding: 5px;
  font-weight: 700;
  font-family: "Lato";
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: var(--cal-date);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #252525;
}

.ui-datepicker th span.on {
  color: var(--c-pt);
}

.ui-datepicker .ui-state-highlight a,
.ui-datepicker .ui-datepicker-today a {
  background-color: transparent;
  color: var(--c-pt);
  border: 1px solid transparent;
}

.ui-icon {
  width: 100%;
  height: 100%;
}

/* active */
.ui-datepicker .ui-datepicker-current-day a {
  background-color: var(--c-pt);
  color: #fff;
  border: 1px solid var(--c-pt);
}

.pick_content:nth-of-type(2) {
  position: relative;
  padding-top: 30px;
}

.pick_content:nth-of-type(2)::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: #eee;
  width: calc(100% + 40px);
  margin-left: -20px;
  height: 1px;
}

.timepick_wrap {
  min-height: 140px;
  max-height: 318px;
  overflow: hidden;
  overflow-y: auto;
}

.timepick_wrap::-webkit-scrollbar {
  width: 4px;
  scroll-behavior: smooth;
}

/* Track */

.timepick_wrap::-webkit-scrollbar-track {
  background: #f1f5f8;
  border-radius: 2px;
}

/* Handle */

.timepick_wrap::-webkit-scrollbar-thumb {
  background: var(--c-pt2);
  border-radius: 2px;
}

/* Handle on hover */

.timepick_wrap::-webkit-scrollbar-thumb:hover {
  background: var(--c-pt2);
}

.timepick_wrap input[type="button"] {
  width: 108px;
  height: 44px;
  line-height: 40px;
  border-radius: 22px;
  background-color: #fafafa;
  border: 2px solid #eeeeee;
  cursor: pointer;
  font-size: var(--cal-time);
}

.timepick {
  width: calc(100% + 14px);
  margin-left: 0;
  margin-top: -5px;
}

.timepick_wrap input[type="button"]:disabled {
  cursor: default;
}

.timepick_wrap input[type="button"] {
  margin: 5px 4px;
  font-family: "Lato";
  font-weight: bold;
}

.timepick_wrap input[type="button"].on {
  border-color: var(--c-pt2);
  background-color: var(--c-pt2);
  color: #fff;
  box-shadow: 0 2.5px 9px rgba(80, 186, 189, 0.47);
}

.timepick_wrap input[type="button"].disabled {
  background-color: #fafafa;
  border: 2px solid #eeeeee;
  color: #bbb;
  box-shadow: none;
}

.pick_container .btn_wrap .prev_btn {
  width: 310px;
}

/* completionPop  */
.popup_wrap.sm .pop {
    width: 480px;
}

.popup_wrap.sm .pop_ttl_box {
    margin-bottom: 40px;
}


.popup_wrap.sm .pop_ttl_box img {
  margin-bottom: 20px;
}

.popup_wrap.sm .pop_ttl_box h2 {
  font-size: var(--pop-ttl);
}

.popup_wrap.sm .pop_ttl_box p {
    font-size: 16px;
    color: #999999;
}

.popup_wrap.sm .pop .content {
  padding: 60px 35px 26px;
}


.popup_wrap.sm .reser_infor {
  padding: 20px 20px 40px;
  border: 2px solid var(--c-pt);
  box-shadow: 0 5px 6px rgba(0, 186, 190, 0.1);
  border-radius: 12px;
}


.popup_wrap.sm .infor_ttl {
  font-size: var(--pop-sub-ttl);
  color: var(--c-pt3);
  margin-bottom: 15px;
}

.popup_wrap.sm .reser_infor > ul > li {
  display: flex;
  margin-top: 1em;
}

.popup_wrap.sm .reser_infor .reser_item ul > li + li {
  margin-top: 0.5em;
}

.popup_wrap.sm .reser_infor ul li > p {
  color: #757575;
  font-size: var(--pop-box-txt1);
  width: 90px;
}

.popup_wrap.sm .reser_infor ul li > div {
  color: #252525;
  font-size: var(--pop-box-txt2);
  width: calc(100% - 90px);
}

.popup_wrap.sm .reser_infor ul li > div b {
  position: relative;
  z-index: 10;
}

.popup_wrap.sm .reser_infor ul li > div b::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--c-pt-line);
  z-index: -1;
}

.popup_wrap.sm#agree_pop .pop_ttl_box {
    margin-bottom: 30px;
}
.popup_wrap.sm#agree_pop .pop_ttl_box p {
    color: #ff3333;
    line-height: 1.25;
    font-weight: 500;
}

.popup_wrap.sm#agree_pop .pop .content {
    padding-bottom: 40px;
}
.popup_wrap.sm#agree_pop .reser_infor {
    padding-bottom: 30px;
}
.popup_wrap.sm#agree_pop .agree_wrap {
    padding-top: 20px;
}
.checkbox2.row_2 input[type="checkbox"] + label::after {
    top: 0;
    transform: translateY(0);
  }
  
  .checkbox2.row_2 input[type="checkbox"] + label {
      line-height: 1.25;
    }
    
  
/* custom scroll */
.mCSB_scrollTools {
  opacity: 1;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #f1f5f8;
  width: 4px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: var(--c-pt2);
}

.mCSB_scrollTools_onDrag {
  opacity: 1;
}

#container.change_cont2 > section {
  height: calc(100vh - 340px);
  margin: 0 auto;
}

#container.change_cont2 + .change_cont2 {
  margin-top: 10px !important;
  padding-top: 0;
}

.change_cont2 .cont_box {
  padding: 20px 30px;
  height: 100%;
}
.chg_inner {
  height: 100%;
}
.chg_box li.on .detail_wrap {
  display: block;
}
.chg_box .summary {
  padding: 15px 20px;
  background-color: #f9f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 17px;
  color: #454545;
  padding-right: 70px;
  background-image: url(/img/reservation/ico/down.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
}
.chg_box > li + li {
  margin-top: 20px;
}
.chg_box > li.on .summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: url(/img/reservation/ico/up.png);
}
.chg_box .state {
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
  border-radius: 4px;
}
.chg_box .state + .state {
  margin-left: 6px;
}

.chg_box .state.done {
  background: #999;
}

.chg_box .date {
  margin: 0 10px;
}

.chg_box .place {
  color: #757575;
}

.chg_box .price strong {
  font-size: 18px;
  color: var(--c-pt);
}
.chg_box .btn_wrap {
  margin: 20px auto;
}
.chg_box .btn_wrap button {
  width: 104px;
  height: 44px;
  border-radius: 10px;
  font-weight: 500;
}

.chg_box .btn_wrap button + button {
  margin-left: 10px;
}
.detail_wrap {
  display: none;
  border: 1px solid #eee;
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 20px;
}
.detail_wrap .detail {
  position: relative;
}
.detail_wrap .detail::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #eee;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.detail_wrap .detail li {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.detail_wrap .detail li:nth-of-type(even) {
  padding-left: 30px;
}
.detail_wrap .detail li:nth-of-type(odd) p {
  padding-left: 10px;
}
.detail_wrap .detail li p {
  color: #757575;
  width: 110px;
}
.detail_wrap .detail li div {
  width: calc(100% - 110px);
  line-height: 1.625;
  color: #454545;
}
.detail_wrap .detail + .btn_wrap {
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.detail_wrap .detail li:last-of-type,
.detail_wrap .detail li:nth-last-child(2) {
  border-bottom: none;
}

#container.reservation.change_cont2 {
  min-height: calc(80vh - 200px);
}

#container.reservation.change_cont2 > section {
  height: calc(40vh - 340px);
}

/* mypage change_cont2 */
#container.reservation.change_cont2.mypage_main {
  min-height: calc(100vh - 110px);
}
#container.reservation.change_cont2.mypage_main > section {
  min-height: calc(100vh - 340px);
}

.mypage_main.change_cont2 .cont_box {
  padding: 30px 34px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.scroll {
  max-height: calc(80vh - 340px);
}
.mypage_main .scroll {
  max-height: calc(100% - 210px);
}
.mypage_main .scroll.mCS_no_scrollbar {
  overflow: hidden;
}
.mypage_main .chg_inner {
  display: flex;
  flex-direction: column;
}
.mypage_main .pageing {
  padding-top: 30px;
  margin-top: auto;
}

@media screen and (max-width: 1520px) {
  .banner_wrap {
    display: none;
  }
}

.price_subj {
	word-break: break-all;
}

.popup_wrap {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}