@charset "UTF-8";
/* font */
/*@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");*/
/*@import url('https://cdn.jsdelivr.net/gh/fonts-archive/BMJUA/BMJUA.css');*/
/*@import url('https://hangeul.pstatic.net/hangeul_static/css/nanum-square-round.css');*/
body * {
/*  font-family: "Pretendard", sans-serif;*/
/*    font-family: 'BM JUA';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/BMJUA/BMJUA.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/BMJUA/BMJUA.woff') format('woff'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/BMJUA/BMJUA.otf') format('opentype'),
         url('https://cdn.jsdelivr.net/gh/fonts-archive/BMJUA/BMJUA.ttf') format('truetype');*/

/*font-family: 'NanumSquareRoundLight';*/
/*font-family: 'NanumSquareRound';*/
/*font-family: 'NanumSquareRoundBold';*/
/*font-family: 'NanumSquareRoundExtraBold';         */
}

.content {
  min-height:500px;
}

/* common */
.wrap {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mo_only {
  display: none !important;
}

.btnn.flex {
  display: flex;
  gap: 10px;
}

.btnn button,
.btnn a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  font-size: 14px;
  border-radius: 3px;
}

.btnn .btn_primary {
  background: #7daf5b;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid #7daf5b;
}

.btnn .btn_white {
  background: #fff;
  box-sizing: border-box;
  color: #7daf5b;
  border: 1px solid #7daf5b;
}

.btnn .btn_red {
  background: #f90000 !important;
  box-sizing: border-box;
  color: #fff !important;
  border: 1px solid #f90000;
}

.btnn .btn_blue {
  background: #1175a3;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid #1175a3;
}

.btnn .btn_grey1 {
  background: #7b7b7b;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid #7b7b7b;
}

.btnn .btn_grey2 {
  background: #aaaaaa;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid #aaaaaa;
}

.btnn .btn_grey3 {
  background: #ededed;
  box-sizing: border-box;
  color: #a0a0a0;
  border: 1px solid #ededed;
}

.btnn .btn_green {
  background: #31af91;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid #31af91;
}

.btnn.center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.btnn.center button {
  height: 43px;
}

.input_wrap {
  position: relative;
}
.input_wrap input {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #c4c4c4;
  background: #FFF;
  padding: 0 12px;
  box-sizing: border-box;
  height: 55px;
  font-size: 16px;
}
.input_wrap input.calendar {
  background: url("/_web/_images/cal.png") no-repeat right 13px center;
  padding-right: 35px;
}
.input_wrap select {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #c4c4c4;
  background: #FFF;
  padding: 0 12px;
  box-sizing: border-box;
  height: 55px;
  font-size: 16px;
}
.input_wrap.dropdown input {
  padding-right: 23px;
}
.input_wrap.dropdown.active .i_dropdown img {
  transform: rotate(180deg);
}
.input_wrap.dropdown.active ul.dropdown_list {
  opacity: 1;
  visibility: visible;
}
.input_wrap.dropdown button.i_dropdown {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
.local_box {
  width: 100%;
  height: 396px;
  z-index: 1;
  border-radius: 4px;
  border: 1px solid #dddbdb;
  box-sizing: border-box;
  background: #fff;
  margin-top: 6px;
  opacity: 1;
  visibility: visible;
  padding: 16px 4px;
  display: flex;
}
.local_box ul.local_list1 {
  flex: none;
  border-right: 1px solid #ededed;
  padding: 7px 0;
}
.local_box ul.local_list1 li:nth-child(n+2) {
  margin-top: 15px;
}
.local_box ul.local_list1 li label {
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 600;
}
.local_box ul.local_list2 {
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  gap: 20px 0;
  width: 100%;
  padding: 7px 27px;
}
.local_box ul.local_list2 li {
  height: fit-content;
  width: 33.3333%;
}
.local_box ul.local_list2 li button {
  font-size: 14px;
  color: #5f5f5f;
  font-weight: 600;
  background: inherit ; 
  border:none; 
  box-shadow:none; 
  border-radius:0; 
  padding:0; 
  overflow:visible; 
  cursor:pointer
}
.input_wrap.dropdown ul.dropdown_list {
  width: 100%;
  height: 396px;
  position: absolute;
  z-index: 1;
  border-radius: 4px;
  border: 1px solid #dddbdb;
  box-sizing: border-box;
  background: #fff;
  margin-top: 6px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 10px 0;
}
.input_wrap.dropdown ul.dropdown_list li {
  width: 100%;
}
.input_wrap.dropdown ul.dropdown_list li:hover button {
  background: #7daf5b;
  color: #fff;
}
.input_wrap.dropdown ul.dropdown_list li button {
  padding: 0 20px;
  min-height: 40px;
  text-align: left;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #5f5f5f;
}
.input_wrap .confirm_btn {
  position: absolute;
  right: 0;
  top: 1px;
}

.input_wrap .coupon_btn {
  position: absolute;
  right: 0;
  top: 50px;
}

.input_wrap .confirm_btn button, .input_wrap .coupon_btn button {
  min-width: 89px;
  height: 27px;
  background: #ededed;
  border-radius: 5px;
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 10px;
}
.input_wrap .confirm_btn button.send, .input_wrap .coupon_btn button.send {
  background: #00bf76 !important;
  color: #ffffff !important;
}
.input_wrap .confirm_btn button.complete, .input_wrap .coupon_btn button.complete {
  background: #bb2424 !important;
  color: #ffffff !important;
}
.input_wrap .input_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.input_wrap .input_bottom small {
  font-size: 12px;
  color: #a9a9a9;
}
.input_wrap .input_bottom a {
  color: #fb0404;
  font-size: 14px;
  text-decoration: underline;
}

/* 라디오 */
input[type=radio] {
  display: none;
}

input[type=radio] + label.radio_style1 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 15px;
  font-size: 16px;
}

input[type=radio] + label.radio_style1:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 2px;
  background: url("/_web/_images/radio_off.svg");
}

input[type=radio]:checked + label.radio_style1:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/_web/_images/radio_on.svg");
}

input[type=radio] + label.radio_style2 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 15px;
  font-size: 16px;
}

input[type=radio] + label.radio_style2:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 2px;
  background: url("/_web/_images/radio_off2.svg");
}

input[type=radio]:checked + label.radio_style2:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/_web/_images/radio_on2.svg");
}

input[type=radio] + label.radio_style3 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 15px;
  font-size: 16px;
}

input[type=radio] + label.radio_style3:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 2px;
  background: url("/_web/_images/radio_off2.svg");
}

input[type=radio]:checked + label.radio_style3:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/_web/_images/radio_on3.svg");
}

/* 체크박스 */
input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label.check_style1 {
  display: flex;
  align-items: baseline;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  gap: 6px;
}

input[type=checkbox] + label.check_style1::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 2px;
  background: url("/_web/_images/check_off.svg");
  background-size: cover;
  flex: none;
  position: relative;
  top: 2px;
}

input[type=checkbox]:checked + label.check_style1::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("/_web/_images/check_on.svg");
  background-size: cover;
}

input[type=checkbox] + label.check_style2 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  gap: 6px;
}

input[type=checkbox] + label.check_style2::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 2px;
  background: url("/_web/_images/check_off2.svg");
  background-size: cover;
  flex: none;
}

input[type=checkbox]:checked + label.check_style2::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("/_web/_images/check_on2.svg");
  background-size: cover;
}

input[type=checkbox] + label.check_style3 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  gap: 6px;
}

input[type=checkbox] + label.check_style3::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-color: #fff;
  border-radius: 2px;
  background: url("/_web/_images/check_off3.svg");
  background-size: cover;
  flex: none;
}

input[type=checkbox]:checked + label.check_style3::before {
  content: "";
  width: 19px;
  height: 19px;
  background: url("/_web/_images/check_on3.svg");
  background-size: cover;
}

/* header */
/*header {
  border-bottom: 1px solid #ededed;
}
header .wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .wrap .header_left .logo {
  display: flex;
  align-items: end;
  gap: 5px;
}
header .wrap .header_left p {
  color: #6b6b6b;
  font-weight: 300;
}
header .wrap .header_center nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
}
header .wrap .header_center nav ul li a {
  font-size: 18px;
  font-weight: 700;
}
header .wrap .header_center .reserv_bar {
  width: 100%;
}
header .wrap .header_center .reserv_bar .wrap {
  max-width: 800px;
  margin-left: 0;
  gap: 7px;
}
header .wrap .header_center .reserv_bar .wrap .input_wrap:nth-child(1) input {
  background: url(/_web/_images/i_con1.svg) no-repeat left 13px center;
  padding-left: 35px;
}
header .wrap .header_center .reserv_bar .wrap .input_wrap:nth-child(2) input {
  background: url(/_web/_images/i_con2.svg) no-repeat left 13px center;
  padding-left: 35px;
}
header .wrap .header_center .reserv_bar .wrap .input_wrap:nth-child(3) input {
  background: url(/_web/_images/i_con3.svg) no-repeat left 13px center;
  padding-left: 35px;
}
header .wrap .header_center .reserv_bar .wrap .input_wrap input {
  height: 36px;
}
header .wrap .header_center .reserv_bar .wrap .input_wrap select {
  height: 36px;
}
header .wrap .header_center .reserv_bar .wrap .btn button {
  height: 36px;
}
header .wrap .header_right {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .wrap .header_right .login .before a {
  width: 130px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
header .wrap .header_right .login .after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
header .wrap .header_right .login .after .txt h5 {
  font-weight: 300;
  color: #b9b7b7;
  font-size: 13px;
  display: flex; 
  align-items: center;
}
header .wrap .header_right .login .after .txt h5 img {
  width: 25px;
  height: 25px;
  margin-right:5px;
}
header .wrap .header_right .login .after .txt h5 span {
  color: #000;
}
header .wrap .header_right .login .after .txt p {
  margin-top: 3px;
  font-size: 10px;
  background: #7daf5b;
  color: #fff;
  padding: 2px 15px;
  align-items: center;
}
header .wrap .header_right .menu_btn_wrap .menu {
  position: absolute;
  right: 0;
  z-index: 10;
  top: 90px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #dddbdb;
  box-sizing: border-box;
  width: 212px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .wrap .header_right .menu_btn_wrap .menu.on {
  opacity: 1;
  visibility: visible;
}
header .wrap .header_right .menu_btn_wrap .menu ul.top_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 17px 17px;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  height: 32px;
  gap: 15px;
  color: #626262;
  font-size: 14px;
  border-radius: 4px;
}
header .wrap .header_right .menu_btn_wrap .menu .line {
  border-bottom: 1px solid #e1e1e1;
  margin: 0 17px 6px;
}
header .wrap .header_right .menu_btn_wrap .menu ul.bottom_link {
  padding-bottom: 10px;
}
header .wrap .header_right .menu_btn_wrap .menu ul.bottom_link li a {
  padding: 0 22px;
  height: 30px;
  display: flex;
  align-items: center;
  font-size: 13px;
}
header .wrap .header_right .menu_btn_wrap .menu ul.bottom_link li a:hover {
  background: #7daf5b;
  color: #fff;
}*/

/* footer */
/*footer {
  padding-top: 36px;
  padding-bottom: 23px;
  background: #f6f6f6;
}
footer .wrap h2 {
  font-size: 30px;
  font-weight: 300;
  color: #676767;
}
footer .wrap p {
  font-size: 14px;
  color: #919191;
  margin-top: 30px;
}
footer .wrap ul.terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
footer .wrap ul.terms li a {
  font-size: 15px;
  color: #5a5a5a;
  font-weight: 500;
}*/

.floating {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.floating ul {
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 0;
}
.floating ul li {
  padding: 0;
}
.floating ul li:nth-child(1) {
  background: #7daf5b;
}
.floating ul li:nth-child(1) a {
  height: 80px;
}
.floating ul li:nth-child(2) {
  background: #fff;
}
.floating ul li:nth-child(2) a {
  height: 100px;
}
.floating ul li a {
  width: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.floating ul li a p {
  font-weight: 500;
  font-size: 14px;
}
.floating .top_btn {
  text-align: center;
  margin-top: 13px;
}
.floating .top_btn button {
  font-weight: 600;
  font-size: 18px;
  color: #7d7d7d;
  background-color: rgba(0, 0, 0, 0);
}

/* modal_old */
.modal_old {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: flex !important;
  opacity: 1;
  visibility: visible;
}
.modal_old.hidden {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
}

.modal_old_open {
  cursor: pointer;
}

.modal_old_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 24;
}

.modal_old_content {
  background-color: white;
  text-align: left;
  position: relative;
  z-index: 25;
  border-radius: 8px;
  box-shadow: 0.125rem 0.125rem 1.25rem 0.25rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal_old_content .modal_oldContWrap {
  font-size: 0.9375rem;
}

.modal_old .modal_old_close {
  position: absolute;
  z-index: 50;
  right: 29px;
  top: 28px;
  cursor: pointer;
}

.modal_old_content .modal_oldContWrap {
  font-size: 1.125rem;
  color: #000;
}

.modal_old .modal_old_close img {
  width: 10px;
}

.modal_old_content .modal_oldContWrapTab {
  text-align: left;
}

.modal_old_content .modal_old_scroll {
  height: 31.25rem;
  overflow-y: scroll;
}

.modal_old_md {
  width: 46.25rem;
  max-height: 40.625rem;
  box-sizing: border-box;
}

.modal_old_md .modal_old_con {
  padding: 48px 35px 38px;
  font-size: 15px;
  box-sizing: border-box;
}

.modal_old_sm {
  width: 369px;
  text-align: center;
}
.modal_old_sm .modal_old_head {
  padding: 21px 24px;
  box-sizing: border-box;
  text-align: left;
}
.modal_old_sm .modal_old_head ul.room_tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.modal_old_sm .modal_old_head ul.room_tab li:first-child input + label {
  border: 1px solid #1273e4;
  color: #1273e4;
}
.modal_old_sm .modal_old_head ul.room_tab li:first-child input:checked + label {
  border: 1px solid #1273e4;
  background: #1273e4;
  color: #fff;
}
.modal_old_sm .modal_old_head ul.room_tab li:last-child input + label {
  border: 1px solid transparent;
  color: #fb0404;
}
.modal_old_sm .modal_old_head ul.room_tab li:last-child input:checked + label {
  border: 1px solid #fb0404;
  background: #fb0404;
  color: #fff;
}
.modal_old_sm .modal_old_head ul.room_tab li input:checked + label {
  background: #f37427;
  color: #fff;
}
.modal_old_sm .modal_old_head ul.room_tab li input + label {
  padding: 10px;
  display: flex;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.modal_old_sm .modal_old_head.flex {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal_old_sm .modal_old_head h5 {
  font-size: 24px;
  font-weight: 300;
}
.modal_old_sm .modal_old_head h6 {
  font-size: 18px;
}
.modal_old_sm .modal_old_head h4 {
  font-size: 16px;
  font-weight: 300;
}
.modal_old_sm .modal_old_head h4.blue {
  color: #1273e4;
}
.modal_old_sm .modal_old_head a.link {
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f90000;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
}
.modal_old_sm .modal_old_head p {
  font-size: 14px;
  font-weight: 300;
  color: #7f7f7f;
}

.modal_old_sm .modal_old_con {
  padding: 48px 35px 38px;
  font-size: 15px;
}
.modal_old_sm .modal_old_con p {
  line-height: 30px;
  font-size: 15px;
}
.modal_old_sm .modal_old_con .btn {
  margin-top: 45px;
}
.modal_old_sm .modal_old_con .btn button {
  height: 43px;
}
.modal_old_sm .modal_old_con .prod_img:nth-child(n+2) {
  margin-top: 10px;
}
.modal_old_sm .modal_old_con .room_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.modal_old_sm .modal_old_con .room_list  li {
  max-width: 130px;
}

.modal_old_sm .modal_old_con .room_list li input:checked + label {
  background: #f37427;
  color: #fff;
}
.modal_old_sm .modal_old_con .room_list li input + label {
  padding: 5px;
  display: flex;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.modal_old_sm .modal_old_con .modal_old_slide {
  margin-top: 14px;
}
.modal_old_sm .modal_old_con .modal_old_slide .gallery-top {
  border-radius: 10px;
  overflow: hidden;
}
.modal_old_sm .modal_old_con .modal_old_slide .swiper-container {
  width: 100%;
  height: 100%;
}
.modal_old_sm .modal_old_con .modal_old_slide .gallery-top {
  width: 100%;
  height: 400px;
}
.modal_old_sm .modal_old_con .modal_old_slide .gallery-thumbs {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}
.modal_old_sm .modal_old_con .modal_old_slide .gallery-thumbs .swiper-slide {
  width: 20%;
  height: 100%;
  cursor: pointer;
}
.modal_old_sm .modal_old_con .modal_old_slide .swiper-button-prev, .modal_old_sm .modal_old_con .modal_old_slide .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  z-index: 10;
  cursor: pointer;
  background-size: 35px 35px;
  background-position: center;
  background-repeat: no-repeat;
}
.modal_old_sm .modal_old_con .modal_old_slide .swiper-button-prev {
  background-image: url(/_web/_images/prev.png);
}
.modal_old_sm .modal_old_con .modal_old_slide .swiper-button-next {
  background-image: url(/_web/_images/next.png);
}
.modal_old_sm .modal_old_con .room_info {
  text-align: left;
  margin-top: 37px;
}
.modal_old_sm .modal_old_con .room_info h5 {
  font-size: 20px;
  font-weight: 300;
}
.modal_old_sm .modal_old_con .room_info p {
  margin-top: 21px;
  font-size: 14px;
  font-weight: 300;
  color: #7f7f7f;
}
.modal_old_sm .modal_old_con .room_info .btn a {
  background: #f13e20;
  height: 36px;
  margin: 0 auto;
}
.modal_old_sm .modal_old_con .infor {
  text-align: left;
}
.modal_old_sm .modal_old_con .infor h5 {
  font-size: 15px;
  color: #aaaaaa;
  line-height: 1.6;
}
.modal_old_sm .modal_old_con .infor p {
  font-size: 15px;
  line-height: 1.6;
  color: #5f5f5f;
}

.modal_old_btn {
  border-top: 1px solid #eeeeee;
}

.modal_old_btn.flex {
  display: flex;
}

.modal_old_btn button {
  color: #999999;
  font-size: 15px;
  width: 100%;
  height: 40px;
}

@media screen and (max-width: 1200px) {
/*  header .wrap .header_center nav ul {
    gap: 60px;
  }*/
}
@media screen and (max-width: 1024px) {
/*  header .wrap .header_left p {
    display: none;
  }*/
}
@media screen and (max-width: 750px) {
  .wrap {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .mo_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
/*  header .wrap .header_left .logo img {
    height: 46px;
  }
  header .wrap .header_center {
    position: absolute;
    top: 90px;
    background: #fff;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    width: 100%;
    left: 0;
    z-index: 9;
  }
  header .wrap .header_center nav ul {
    height: 40px;
  }
  header .wrap .header_center nav ul li a {
    font-size: 14px;
  }
  header .wrap .header_center .reserv_bar .wrap {
    padding: 10px 20px;
    flex-direction: column;
    max-width: 100%;
    height: fit-content;
  }
  header .wrap .header_center .reserv_bar .wrap .input_wrap {
    width: 100% !important;
  }*/
  .floating {
    top: unset;
    bottom: 50px;
    transform: unset;
  }
  .floating ul li:nth-child(1) a {
    height: 60px;
  }
  .floating ul li:nth-child(1) a img {
    width: 25px;
  }
  .floating ul li:nth-child(2) a {
    height: 80px;
  }
  .floating ul li:nth-child(2) a img {
    width: 16px;
  }
  .floating ul li:nth-child(2) a p {
    font-size: 12px;
  }
  .floating ul li a {
    width: 60px;
  }
  .modal_old_sm .modal_old_head {
    padding: 21px 14px;
  }
  .modal_old_sm .modal_old_con {
    padding: 48px 25px 38px;
  }
  .modal_old_sm .modal_old_con .room_list {
    flex-wrap: wrap;
    justify-content: left;
  }
}
@media screen and (max-width: 500px) {
  .btnn.center {
    flex-direction: column;
    gap: 10px !important;
  }
  .btnn.center button {
    max-width: 100% !important;
  }
  .input_wrap .coupon_btn {
    top: 80px;
  }  
  .modal_old_sm .modal_old_con .modal_old_slide .gallery-top {
    height: 250px;
  }
}/*# sourceMappingURL=common.css.map */