@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}

.basic__container {
  max-width: 1280px;
  margin: 0 auto;
}

.btn {
  border: none;
  background: none;
}

.submit-btn {
  cursor: pointer;
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
  font-family: Outfit;
  background: #1E1E1E;
}

@media screen and (max-width: 768px) {
  .basic__container {
    max-width: 100%;
  }
}
header {
  width: 100%;
  padding: 1.563rem 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
  height: 100px;
  box-sizing: border-box;
}
header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header__inner .logo {
  width: 120px;
  height: auto;
}
header .header__inner .logo img {
  width: 100%;
  height: 100%;
}
header .header__inner nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}
header .header__inner nav ul li {
  position: relative;
}
header .header__inner nav ul li a {
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}
header .header__inner nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 130px;
  z-index: 1;
  top: 160%;
  left: 50%;
  transform: translateX(-50%);
}
header .header__inner nav ul li .dropdown-content a {
  color: #797979;
  padding: 0.75rem 1rem;
  display: block;
  text-align: center;
  font-size: 20px;
}
header .header__inner nav ul li .dropdown-content a:hover {
  color: #fff;
}
header .header__inner nav ul li.active .dropdown-content {
  display: block;
}
header .header__inner nav ul li.active .dropdown-toggle {
  text-decoration: underline;
}
header .header__inner .mobile-menu-icon {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 10;
}
header .header__inner .mobile-menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .header__inner .mobile-menu-icon span:nth-child(1) {
  top: 0px;
}
header .header__inner .mobile-menu-icon span:nth-child(2), header .header__inner .mobile-menu-icon span:nth-child(3) {
  top: 9px;
}
header .header__inner .mobile-menu-icon span:nth-child(4) {
  top: 18px;
}
header .header__inner .mobile-menu-icon.active span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
header .header__inner .mobile-menu-icon.active span:nth-child(2) {
  transform: rotate(45deg);
}
header .header__inner .mobile-menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
}
header .header__inner .mobile-menu-icon.active span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile-dropdown {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #000;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  z-index: 999;
}
.mobile-dropdown.open {
  max-height: 300px;
}
.mobile-dropdown ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 0;
}
.mobile-dropdown ul li {
  width: 100%;
  text-align: center;
}
.mobile-dropdown ul li:last-child {
  border-bottom: none;
}
.mobile-dropdown ul li a {
  color: #fff;
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.mobile-dropdown ul li a:hover {
  background-color: #000, 10%;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-nav .set__date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 200px;
  max-width: 1280px;
  margin: 0 auto;
}
.sticky-nav .set__date p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}
.sticky-nav .set__date .custom__dropdown {
  width: 50%;
}
.sticky-nav .set__date .custom__dropdown .dropdown__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.sticky-nav .set__date .custom__dropdown .dropdown__header .dropdown_left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sticky-nav .set__date .custom__dropdown .dropdown__header .selected__option {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}
.sticky-nav .set__date .custom__dropdown .dropdown__header .dropdown__arrow {
  transition: transform 0.3s ease;
}
.sticky-nav .set__date .custom__dropdown .dropdown__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
}
.sticky-nav .set__date .custom__dropdown .dropdown__options .dropdown__option {
  padding: 0.625rem;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}
.sticky-nav .set__date .custom__dropdown .dropdown__options .dropdown__option:hover {
  background-color: #f5f5f5;
}
.sticky-nav .set__date .custom__dropdown.active .dropdown__arrow {
  transform: rotate(180deg);
}
.sticky-nav .set__date .custom__dropdown.active .dropdown__options {
  max-height: 12.5rem;
  border: 1px solid #ccc;
}
.sticky-nav.visible {
  transform: translateY(0);
}
.sticky-nav__inner {
  padding: 30px 0;
  background: #EEE5D9;
}
.sticky-nav__menu {
  padding: 20px 0;
  background: #FFF5E8;
  width: 100%;
}
.sticky-nav__menu ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.sticky-nav__menu ul li a {
  text-decoration: none;
  color: #797979;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease;
  font-family: Outfit;
}
.sticky-nav__menu ul li a.active {
  color: #0A0A0A;
  font-weight: 600;
}
.sticky-nav__menu ul li a.active:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0A0A0A;
}

.main-banner {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/main_banner_pc-v1.jpg") no-repeat;
  height: 800px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 100px;
}
.main-banner .main-banner__inner {
  height: 100%;
}
.main-banner .main-banner__inner .fixed__banner {
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #FF8400;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.938rem 0;
  text-align: center;
}
.main-banner .main-banner__inner .banner__content {
  display: flex;
  padding-bottom: 8.438rem;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.625rem;
}
.main-banner .main-banner__inner .banner__content h1 {
  color: #FFF;
  font-size: 6.25rem;
  font-weight: 600;
}
.main-banner .main-banner__inner .banner__content p {
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 0.625rem;
}

.book-now {
  padding: 0 0 3.75rem;
  width: 100%;
  position: relative;
}
.book-now .book-now__inner {
  background-color: #F6E8D6;
  padding: 0.938rem 1.875rem 1.25rem 3.125rem;
  box-sizing: border-box;
  margin-top: -1.875rem;
}
.book-now .book-now__inner .book-now__title {
  font-weight: 600;
  font-size: 1.875rem;
  color: #0A0A0A;
  margin-bottom: 0.8rem;
}
.book-now .book-now__inner .find__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 5.625rem;
  align-items: flex-end;
}
.book-now .book-now__inner .find__content .black-btn {
  background: #0A0A0A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  width: 345px;
  height: 60px;
  cursor: pointer;
  font-family: Outfit;
}
.book-now .book-now__inner .find__content .select__box {
  display: flex;
  gap: 1.25rem;
  width: calc(100% - 345px);
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown {
  position: relative;
  width: 100%;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header .selected__option {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header .dropdown__arrow {
  transition: transform 0.3s ease;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__options .dropdown__option {
  padding: 0.625rem;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__options .dropdown__option:hover {
  background-color: #f5f5f5;
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown.active .dropdown__arrow {
  transform: rotate(180deg);
}
.book-now .book-now__inner .find__content .select__box .custom__dropdown.active .dropdown__options {
  max-height: 200px;
  border: 1px solid #ccc;
}

.middle-banner .middle-banner__inner {
  font-size: 1.75rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.28px;
  background: #000;
  text-align: center;
  padding: 4.625rem 0;
  line-height: 1.5;
}

.way--inner {
  padding: 7rem 0 11rem;
}
.way--inner .inner__title {
  margin-bottom: 6.875rem;
}
.way--inner .inner__title p {
  color: #FF8400;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.2;
}
.way--inner .inner__title h2 {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 5.5rem;
  line-height: 1.2;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.way--inner .inner__title h2::after {
  position: absolute;
  right: -20px;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #FF8400;
  border-radius: 50%;
  bottom: 64px;
}
.way--inner .rooms__inner {
  display: flex;
  gap: 9.375rem;
}
.way--inner .rooms__inner .room__left {
  font-size: 3rem;
  font-weight: 600;
  color: #0A0A0A;
}
.way--inner .rooms__inner .room__right .inner__descript {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.way--inner .space__inner {
  margin-top: 7.5rem;
}

.inner__slide {
  width: 100%;
  max-width: 982px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.inner__slide .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.inner__slide .swiper.roomSwiper {
  display: block;
}
.inner__slide .swiper.roomMobileSwiper {
  display: none;
}
.inner__slide .swiper-slide {
  display: flex;
  gap: 1rem;
}
.inner__slide .swiper-slide .slide-content {
  display: flex;
  gap: 1rem;
}
.inner__slide .swiper-slide .slide-content .single-image {
  position: relative;
  width: 60%;
}
.inner__slide .swiper-slide .slide-content .single-image .slide-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.inner__slide .swiper-slide .slide-content .dual-image {
  position: relative;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.inner__slide .swiper-slide .slide-content .dual-image .slide-img {
  height: 50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner__slide .swiper-pagination {
  position: relative;
  margin-top: 1.25rem;
}
.inner__slide .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1);
  height: 4px;
}
.inner__slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #242424;
}
.inner__slide .swiper {
  width: 100%;
}
.inner__slide .swiper.spaceSwiper {
  width: 100%;
}
.inner__slide .swiper.spaceSwiper .swiper-wrapper {
  display: flex;
  width: 100% !important;
}
.inner__slide .swiper.spaceSwiper .swiper-slide {
  display: flex;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .left-column {
  width: 60%;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .left-column .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .left-column .image-wrapper::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  content: "";
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.42) 24.5%, rgba(10, 10, 10, 0) 100%);
}
.inner__slide .swiper.spaceSwiper .swiper-slide .left-column .slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .right-column {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .right-column .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .right-column .image-wrapper::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  content: "";
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.42) 24.5%, rgba(10, 10, 10, 0) 100%);
}
.inner__slide .swiper.spaceSwiper .swiper-slide .right-column .slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .right-column .right-column-wrap {
  height: 50%;
  position: relative;
}
.inner__slide .swiper.spaceSwiper .swiper-slide .space-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 14px;
  color: #fff;
}
.inner__slide .swiper.spaceSwiper .swiper-pagination {
  position: relative;
  margin-top: 1.25rem;
  width: 100%;
}
.inner__slide .swiper.spaceSwiper .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1);
  height: 4px;
  width: 100%;
}
.inner__slide .swiper.spaceSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #242424;
}

.locations {
  background: #FFF5E8;
  padding: 6.25rem 0 9.375rem;
}
.locations .inner__title {
  margin-bottom: 6.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.locations .inner__title p {
  color: #FF8400;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.2;
  text-align: center;
}
.locations .inner__title h2 {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 5.5rem;
  line-height: 1.2;
  position: relative;
  text-align: center;
  display: inline-block;
}
.locations .inner__title h2::after {
  position: absolute;
  right: -20px;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #FF8400;
  border-radius: 50%;
  bottom: 68px;
}
.locations .inner__title .location_descript {
  color: #000;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.625rem;
  line-height: 1.5;
}
.locations .location__content {
  display: flex;
  gap: 1.5rem;
}
.locations .location__content .location__card {
  width: calc(33.33% - 1rem);
  height: 600px;
  padding: 2.125rem;
  box-sizing: border-box;
}
.locations .location__card.gadi__location {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/main/location_gadi.png");
  background-size: cover;
  background-position: center;
}
.locations .location__card.yeoui__location {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/main/location_yeoui.jpg");
  background-size: cover;
  background-position: center;
}
.locations .location__card.kondae__location {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/main/location_kondae.jpg");
  background-size: cover;
  background-position: center;
}
.locations .location__card.comming--soon {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/location01.png");
  background-size: cover;
  background-position: center;
}
.locations .location__content .location__card .location__info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.locations .location__content .location__card .location__info h3 {
  color: #FFF;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.locations .location__content .location__card .location__info .info__location {
  display: flex;
  align-items: center;
  color: #ECECEC;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.locations .location__content .location__card .basic-btn {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6E8D6;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #0A0A0A;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}
.locations .mobile-view {
  display: none;
}
.locations .location__mobile-swiper {
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  margin: 0 auto;
}
.locations .location__mobile-swiper .location-swiper {
  width: 100%;
  padding-bottom: 3.5rem;
  overflow: visible;
}
.locations .location__mobile-swiper .location-swiper .swiper-wrapper {
  transform-style: preserve-3d;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide {
  opacity: 0.4;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card {
  padding-bottom: 1rem;
  width: 100%;
  height: 320px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card .location__info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card .location__info h3 {
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card .location__info .info__location {
  display: flex;
  align-items: center;
  color: #ECECEC;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.875rem;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card .location__info .info__location svg {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card .location__info .basic-btn {
  width: 110px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6E8D6;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card.comming--soon {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/location01.png");
  background-size: cover;
  background-position: center;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card.comming--soon .location__info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card.comming--soon .location__info .opacity--text {
  font-size: 1rem;
  color: #797979;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.locations .location__mobile-swiper .location-swiper .swiper-slide .location__card.comming--soon .location__info .comming-text {
  font-size: 1.5rem;
  color: #FFF;
  font-weight: 500;
  line-height: 1.2;
}
.locations .location__mobile-swiper .location-swiper .location-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.locations .location__mobile-swiper .location-swiper .location-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 0.7;
  margin: 0 5px;
}
.locations .location__mobile-swiper .location-swiper .location-pagination .swiper-pagination-bullet-active {
  background: #FF8C00;
  opacity: 1;
}
.locations .location__mobile-swiper .swiper-button-next,
.locations .location__mobile-swiper .swiper-button-prev {
  color: #797979;
  width: 40px;
  height: 40px;
  top: 45%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 10;
}
.locations .location__mobile-swiper .swiper-button-next:after,
.locations .location__mobile-swiper .swiper-button-prev:after {
  font-size: 1rem;
  font-weight: bold;
}
.locations .location__mobile-swiper .swiper-button-prev {
  left: -14px;
}
.locations .location__mobile-swiper .swiper-button-next {
  right: -14px;
}

.perks {
  background: #F6E8D6;
  padding: 6.25rem 0 9.375rem;
}
.perks .inner__title {
  margin-bottom: 6.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.perks .inner__title p {
  color: #FF8400;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.2;
  text-align: center;
}
.perks .inner__title h2 {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 5.5rem;
  line-height: 1.2;
  position: relative;
  text-align: center;
  display: inline-block;
}
.perks .inner__title h2::after {
  position: absolute;
  right: -15px;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #FF8400;
  border-radius: 50%;
  bottom: 84px;
}
.perks .inner__title .location_descript {
  color: #000;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.625rem;
  line-height: 1.5;
}
.perks .list__descript {
  display: flex;
  gap: 1.4rem;
}
.perks .list__descript .list__item {
  width: 25%;
  background: #fff;
  padding: 2.375rem 1.875rem;
  box-sizing: border-box;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  line-height: 1.2;
}
.perks .list__descript .list__item svg {
  width: 76px;
  height: auto;
}
.perks .list__descript .list__item h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}
.perks .list__descript .list__item p {
  color: #242424;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
}

.stay__slide_wrapp {
  background-color: #242424;
  padding: 6.25rem 0 5.625rem;
}
.stay__slide_wrapp .inner__title {
  margin-bottom: 3.375rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stay__slide_wrapp .inner__title p {
  color: #FF8400;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.2;
  text-align: center;
}
.stay__slide_wrapp .inner__title h2 {
  font-weight: 600;
  color: #fff;
  font-size: 5.5rem;
  line-height: 1.2;
  position: relative;
  text-align: center;
  display: inline-block;
}
.stay__slide_wrapp .inner__title h2::after {
  position: absolute;
  right: -20px;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #FF8400;
  border-radius: 50%;
  bottom: 90px;
}
.stay__slide_wrapp .slide__items {
  background: #FFF;
  height: 342px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.stay__slide_wrapp .slide__items .slide__header {
  padding: 1.563rem 1.875rem 1.438rem 1.375rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 44px);
}
.stay__slide_wrapp .slide__items .slide__header .content--text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.25;
}
.stay__slide_wrapp .slide__items .slide__header .content--text span {
  display: block;
  color: #797979;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.625rem;
}
.stay__slide_wrapp .slide__items .slide__header .icon__city {
  display: flex;
  justify-content: flex-end;
}
.stay__slide_wrapp .slide__items .slide__header .icon__city img {
  width: 30px;
  height: 30px;
}
.stay__slide_wrapp .slide__items .slide__footer {
  padding: 12px 22px;
  box-sizing: border-box;
  background: #F6E8D6;
}
.stay__slide_wrapp .slide__items .slide__footer p {
  color: #0A0A0A;
  font-size: 20px;
  font-weight: 500;
}
.stay__slide_wrapp .swiper-pagination {
  position: relative;
  margin-top: 1.25rem;
}
.stay__slide_wrapp .swiper-pagination-progressbar {
  background: #797979;
  height: 4px;
}
.stay__slide_wrapp .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #fff;
}

.limited__rooms {
  padding: 4.625rem 0 9.375rem;
}
.limited__rooms .limited__inner {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/background.png") no-repeat;
  height: 400px;
  background-size: cover;
}
.limited__rooms .limited__inner .limited__Wrapp {
  padding: 1.75rem 6.6rem 1.75rem 4.6rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.limited__rooms .limited__inner .limited__Wrapp .limited__left p {
  color: #242424;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}
.limited__rooms .limited__inner .limited__Wrapp .limited__left h3 {
  font-size: 5.25rem;
  color: #0A0A0A;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.8rem;
}
.limited__rooms .limited__inner .limited__Wrapp .limited__left .black-btn {
  background: #242424;
  width: 345px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 2.25rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  font-family: Outfit;
}
.limited__rooms .limited__inner .limited__right img {
  border-radius: 8px;
}
.limited__rooms .limited__inner .mobile-btn {
  display: none;
}

.faq {
  padding: 6.25rem 0 9.375rem;
}
.faq .inner__title {
  margin-bottom: 6.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq .inner__title h2 {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 4rem;
  line-height: 1.2;
  position: relative;
  text-align: center;
  display: inline-block;
}
.faq .inner__title h2::after {
  position: absolute;
  right: -19px;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #FF8400;
  border-radius: 50%;
  bottom: 58px;
}
.faq .accordion {
  height: auto;
  margin: 0 auto;
  border-top: 1px solid #ECECEC;
}
.faq .accordion-item {
  padding: 1.25rem 0;
  margin: 0;
  overflow: hidden;
  border-bottom: 1.3px solid #d4d4d4;
}
.faq .accordion-item .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 2.25rem;
  cursor: pointer;
  color: #242424;
}
.faq .accordion-item .title svg {
  width: 2.25rem;
  height: auto;
  color: #454545;
  transform: translateX(-50%) rotate(0);
  transition: transform 0.15s ease;
}
.faq .accordion-item .paragraph {
  font-weight: 400;
  font-size: 1.5rem;
  color: #797979;
  display: none;
  padding: 1rem 0;
  list-style: inside;
  line-height: 1.5;
}
.faq .accordion-item .paragraph .indent {
  text-indent: 1rem;
}
.faq .accordion-item .paragraph span {
  font-weight: bold;
}
.faq .accordion-item.active .title {
  color: #FF8400;
}
.faq .accordion-item.active .title svg {
  transform: translateX(-50%) rotate(180deg);
}
.faq .accordion-item.active .paragraph {
  display: block;
  padding: 1.25rem 0;
}
.faq .view__more {
  margin-top: 3.125rem;
}
.faq .view__more a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242424;
  font-weight: 500;
  font-size: 2.25rem;
}

footer {
  background-color: #0A0A0A;
  padding: 3.75rem 0 5rem;
}
footer .footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .footer__inner ul {
  display: flex;
  justify-content: space-between;
  gap: 7.5rem;
}
footer .footer__inner ul .footer__logo {
  width: 138px;
  height: auto;
}
footer .footer__inner ul .footer__logo img {
  width: 100%;
  height: 100%;
}
footer .footer__inner ul .footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3.125rem;
}
footer .footer__inner ul .footer__info .info__items {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
}
footer .footer__inner ul .copy__right {
  color: #797979;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
}
footer .footer__inner ul .link__items {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.375rem;
}
footer .footer__inner .sns__list {
  display: flex;
  gap: 1.25rem;
}
footer .footer__inner .sns__list .sns__items {
  display: flex;
}
footer .footer__inner .sns__list .sns__items svg {
  width: 32px;
}
footer .footer__inner .mo-view {
  display: none;
}

.top__banner {
  margin-top: 100px;
  background: #FFF5EB url("https://dud37y56jdkfx.cloudfront.net/images/design--text.png") no-repeat;
  background-position: 78% 100%;
  background-size: 24%;
  height: 200px;
  padding: 70px 0;
  box-sizing: border-box;
}
.top__banner .banner__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.top__banner .banner__inner .page__title {
  font-size: 3rem;
  font-weight: 600;
  color: #0A0A0A;
}

.section__content {
  max-width: 1120px;
  margin: 50px auto;
}
.section__content .article {
  margin-bottom: 20px;
}
.section__content .article-title {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.2;
}
.section__content .section--contain {
  text-indent: 0;
  margin-left: 15px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 4px;
}
.section__content .section {
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 4px;
}
.section__content .section.single--setion {
  margin-left: 10px;
}
.section__content .section-number {
  float: left;
  margin-right: 5px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .subsection {
  margin-left: 40px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .subsection-letter {
  float: left;
  margin-right: 5px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .detail {
  margin-left: 60px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .detail .section--contain {
  text-indent: 0;
  margin-left: 12px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .detail.single__detail {
  margin-left: 40px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .detail.single__detail01 {
  margin-left: 20px;
  line-height: 1.2;
  font-weight: 400;
}
.section__content .detail-bullet {
  float: left;
  margin-right: 5px;
}
.section__content .text-indent {
  text-indent: 10;
  margin-left: 14px;
}

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

body.popup-open {
  overflow: hidden;
}

.popup-header {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}
.popup-header .popup-header__inner {
  padding: 25px 20px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.popup-header .popup-header__inner svg {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.popup-container {
  width: 600px;
  max-width: 90%;
  max-height: 80vh;
  position: relative;
}

.sign-popup {
  display: none;
  background-color: #fff;
  width: 335px;
  max-width: 90%;
  position: relative;
  font-family: Outfit;
}
.sign-popup .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: relative;
  top: unset;
  left: unset;
  height: 80px;
  background: #FFF5EB;
}
.sign-popup .popup-header .logo img {
  height: 30px;
}
.sign-popup .popup-header .close-button {
  cursor: pointer;
}
.sign-popup .popup-content {
  padding: 38px 25px 60px;
}
.sign-popup .popup-content h2 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.sign-popup .popup-content .form-group {
  margin-bottom: 10px;
  cursor: pointer;
}
.sign-popup .popup-content .form-group:last-child {
  margin-bottom: 0;
}
.sign-popup .popup-content .form-group input {
  width: 100%;
  height: 46px;
  padding: 14px 10px;
  box-sizing: border-box;
  background: #F9F9F9;
  border: none;
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .form-group input ::-moz-placeholder {
  color: #797979;
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .form-group input ::placeholder {
  color: #797979;
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .form-group .forget__password {
  text-align: center;
  margin: 10px 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: #797979;
  display: block;
  font-family: Outfit;
}
.sign-popup .popup-content .submit-btn {
  cursor: pointer;
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
  font-family: Outfit;
  background: #1E1E1E;
}
.sign-popup .popup-content .separator {
  color: #797979;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
}
.sign-popup .popup-content .google-btn {
  border: 1px solid #ECECEC;
  background-color: #fff;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  cursor: pointer;
  font-family: Outfit;
}
.sign-popup .popup-content .google-btn span {
  color: #0A0A0A;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: block;
  font-family: Outfit;
}
.sign-popup .popup-content .signup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 10px;
  gap: 4px;
}
.sign-popup .popup-content .signup-btn span {
  color: #797979;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 400;
}
.sign-popup .popup-content .signup-btn .link {
  color: #FF8400;
  font-weight: 500;
  font-family: Outfit;
  font-size: 14px;
}
.sign-popup .popup-content .etc--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit;
}
.sign-popup .popup-content .etc--btn .link {
  color: #797979;
  font-weight: 500;
  font-family: Outfit;
  font-size: 14px;
}
.sign-popup .popup-content .separator {
  display: flex;
  align-items: center;
  margin: 15px 0;
  position: relative;
  justify-content: center;
}
.sign-popup .popup-content .separator::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ECECEC;
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
}
.sign-popup .popup-content .separator::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ECECEC;
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
}
.sign-popup .popup-content .separator span {
  padding: 0 10px;
  color: #797979;
  font-size: 14px;
  z-index: 2;
  background-color: #fff;
  width: 40px;
  display: block;
}
.sign-popup .popup-content .help-text {
  color: #797979;
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
  text-indent: -5px;
  margin-left: 8px;
}
.sign-popup .popup-content .terms-agree {
  color: #797979;
  font-size: 12px;
  font-weight: 400;
  width: calc(100% - 30px);
}
.sign-popup .popup-content .terms-agree .link {
  font-size: 12px;
  color: #0A0A0A;
  font-weight: 400;
}
.sign-popup .popup-content .checkbox-group {
  margin-bottom: 24px;
  margin-top: 10px;
  display: flex;
}
.sign-popup .popup-content .checkbox-group input[type=checkbox] {
  position: relative;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 14px;
  width: 14px;
  -webkit-appearance: none;
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .checkbox-group input[type=checkbox]:checked {
  background-color: #0A0A0A;
  opacity: 1;
}
.sign-popup .popup-content .checkbox-group input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 3px;
  height: 7px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.sign-popup .popup-content .form-group.error input {
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .form-group.error input:focus {
  outline: 1px solid #EA4335;
}
.sign-popup .popup-content .form-group.error .error-message {
  font-family: "Outfit", sans-serif;
  display: block;
}
.sign-popup .popup-content .error-message {
  color: #EA4335;
  font-size: 13px;
  margin-top: 5px;
  display: none;
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .birth-dropdowns {
  display: flex;
  gap: 5px;
  font-family: "Outfit", sans-serif;
}
.sign-popup .popup-content .custom-dropdown {
  position: relative;
  font-family: Outfit;
}
.sign-popup .popup-content .custom-dropdown:nth-child(1) {
  width: 45%;
}
.sign-popup .popup-content .custom-dropdown:nth-child(2) {
  width: 30%;
}
.sign-popup .popup-content .custom-dropdown:nth-child(3) {
  width: 25%;
}
.sign-popup .popup-content .selected-option {
  background-color: #F9F9F9;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #797979;
  font-size: 14px;
  font-family: Outfit;
}
.sign-popup .popup-content .selected-option.active {
  color: #333;
}
.sign-popup .popup-content .dropdown-arrow {
  font-size: 10px;
  color: #888;
  margin-left: 5px;
}
.sign-popup .popup-content .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  font-family: Outfit;
}
.sign-popup .popup-content .dropdown-options.visible {
  display: block !important;
}
.sign-popup .popup-content .dropdown-option {
  padding: 8px 12px;
  cursor: pointer;
}
.sign-popup .popup-content .dropdown-option:hover {
  background-color: #f5f5f5;
}
.sign-popup .popup-content .header__complete {
  color: #0A0A0A;
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 600;
}
.sign-popup .popup-content .header__complete span {
  color: #FF8400;
}
.sign-popup .popup-content .complete {
  color: #797979;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}
.sign-popup .popup-content .complete-img {
  width: 80px;
  height: 80px;
  margin: 30px auto 10px;
}
.sign-popup .popup-content .complete-img img {
  width: 100%;
}
.sign-popup .popup-content .forgot__text {
  color: #000;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
.sign-popup .popup-content .back-btn {
  text-align: center;
  margin: 0 auto;
  color: #0A0A0A;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.sign-popup .popup-content .descript {
  color: #797979;
  text-align: center;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
}
.sign-popup .popup-content .descript span {
  display: block;
}
.sign-popup .popup-content .descript .sign-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}
.sign-popup .popup-content .descript .sign-link .link {
  color: #FF8400;
  font-weight: 500;
}

.mypage__inner {
  max-width: 976px;
  margin: 0 auto;
  padding: 2.8125rem 0;
}
.mypage__inner .mypage__profile {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  margin-bottom: 2.125rem;
}
.mypage__inner .mypage__profile .profile__image {
  width: 4.375rem;
  height: 4.375rem;
}
.mypage__inner .mypage__profile .profile__image img {
  width: 100%;
  height: 100%;
}
.mypage__inner .mypage__profile .profile__info .name {
  font-size: 2rem;
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.2;
}
.mypage__inner .mypage__profile .profile__info .link {
  color: #797979;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}
.mypage__inner .tabs {
  display: flex;
  border-bottom: 0.0625rem solid #D9D9D9;
}
.mypage__inner .tabs li {
  color: #797979;
  display: inline-block;
  padding: 0 0 10px;
  cursor: pointer;
  box-sizing: border-box;
  width: 280px;
  font-size: 20px;
  text-align: center;
}
.mypage__inner .tabs li.current {
  position: relative;
  color: #FF8400;
}
.mypage__inner .tabs li.current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 0.1875rem;
  background-color: #FF8400;
}
.mypage__inner .tab-content {
  display: none;
  padding: 6.875rem 0;
}
.mypage__inner .tab-content.current {
  display: inherit;
}
.mypage__inner .tab-content .booking__list {
  margin-bottom: 50px;
}
.mypage__inner .tab-content .booking__no-list {
  margin-top: 50px;
}
.mypage__inner .tab-content .account__content {
  margin-bottom: 50px;
}
.mypage__inner .tab-content .account__edit {
  margin: 50px auto;
}
.mypage__inner .tab-content .account__delete {
  margin-top: 50px;
}
.mypage__inner .booking__list .booking__items {
  background: #FFF;
  box-shadow: 0px 0px 0.9375rem 0.125rem rgba(0, 0, 0, 0.1);
  max-width: 27.5rem;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}
.mypage__inner .booking__list .booking__items:last-child {
  margin-bottom: 0;
}
.mypage__inner .booking__list .booking__items .booking__list__header {
  padding: 0.3125rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.0625rem solid #ECECEC;
}
.mypage__inner .booking__list .booking__items .booking__list__header .booking__no {
  color: #797979;
  font-size: 0.8125rem;
  font-weight: 500;
}
.mypage__inner .booking__list .booking__items .booking__list__header .booking__state {
  width: 5rem;
  padding: 0.125rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.75rem;
}
.mypage__inner .booking__list .booking__items .booking__list__header .booking__state.pending__state {
  color: #5d00ff;
  background: #FFF2E5;
}
.mypage__inner .booking__list .booking__items .booking__list__header .booking__state.scheduled__state {
  color: #FF8400;
  background: #FFF2E5;
}
.mypage__inner .booking__list .booking__items .booking__list__header .booking__state.completed__state {
  background: #DFFFDD;
  color: #0E8B05;
}
.mypage__inner .booking__list .booking__items .booking__list__header .booking__state.cancelled__state {
  background: #FFDCD9;
  color: #EA4335;
}
.mypage__inner .booking__list .booking__items .booking__list-body {
  display: flex;
  gap: 0.625rem;
  padding: 0.625rem;
  box-sizing: border-box;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__image {
  width: 6.25rem;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__info .state__title {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__info .state__title span {
  color: #797979;
  font-size: 0.75rem;
  font-weight: 400;
  display: inline;
  position: relative;
  padding-left: 4px;
  margin-left: 2px;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__info .state__title span::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #D9D9D9;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__info .state__date {
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__price .price__total {
  color: #FF8400;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.2;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__price .price__num {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content .content__price .price__num span {
  font-size: 0.75rem;
  color: #797979;
  font-weight: 400;
}
.mypage__inner .account__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mypage__inner .account__content p {
  font-weight: 600;
  font-size: 1.25rem;
  color: #0A0A0A;
  margin-bottom: 2.375rem;
  text-align: center;
}
.mypage__inner .account__content input {
  width: 17.8125rem;
  height: 2.875rem;
  padding: 0.875rem 0.625rem;
  box-sizing: border-box;
  background: #F9F9F9;
  border: none;
  font-family: "Outfit", sans-serif;
}
.mypage__inner .account__content input ::-moz-placeholder {
  color: #797979;
}
.mypage__inner .account__content input ::placeholder {
  color: #797979;
}
.mypage__inner .account__content .submit-btn {
  cursor: pointer;
  width: 17.8125rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1rem;
  font-family: Outfit;
  background: #1E1E1E;
  margin-top: 0.625rem;
}
.mypage__inner .booking__no-list .calendar__img {
  margin-bottom: 1.5625rem;
  display: flex;
  justify-content: center;
}
.mypage__inner .booking__no-list .calendar__img svg {
  width: 4.25rem;
  height: 4.25rem;
}
.mypage__inner .booking__no-list .list--text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #0A0A0A;
  margin-bottom: 0.75rem;
  text-align: center;
}
.mypage__inner .booking__no-list .link__journey {
  color: #FF8400;
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
  display: block;
}
.mypage__inner .form-group {
  margin-bottom: 10px;
  cursor: pointer;
}
.mypage__inner .form-group:last-child {
  margin-bottom: 0;
}
.mypage__inner .form-group input {
  width: 100%;
  height: 46px;
  padding: 14px 10px;
  box-sizing: border-box;
  background: #F9F9F9;
  border: none;
  font-family: "Outfit", sans-serif;
}
.mypage__inner .form-group input:disabled {
  background: #ECECEC;
  color: #0A0A0A;
  font-family: Outfit;
}
.mypage__inner .form-group input ::-moz-placeholder {
  color: #797979;
  font-family: "Outfit", sans-serif;
}
.mypage__inner .form-group input ::placeholder {
  color: #797979;
  font-family: "Outfit", sans-serif;
}
.mypage__inner .form-group .forget__password {
  text-align: center;
  margin: 10px 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: #797979;
  display: block;
}
.mypage__inner .help-text {
  color: #797979;
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
  text-indent: -5px;
  margin-left: 8px;
}
.mypage__inner .terms-agree {
  color: #797979;
  font-size: 12px;
  font-weight: 400;
  width: calc(100% - 30px);
}
.mypage__inner .terms-agree .link {
  font-size: 12px;
  color: #0A0A0A;
  font-weight: 400;
}
.mypage__inner .checkbox-group {
  margin-bottom: 24px;
  margin-top: 10px;
  display: flex;
}
.mypage__inner .checkbox-group input[type=checkbox] {
  position: relative;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 14px;
  width: 14px;
  -webkit-appearance: none;
}
.mypage__inner .checkbox-group input[type=checkbox]:checked {
  background-color: #0A0A0A;
  opacity: 1;
}
.mypage__inner .checkbox-group input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 3px;
  height: 7px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.mypage__inner .account--title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.mypage__inner .account__edit {
  width: 285px;
  margin: 0 auto;
}
.mypage__inner .birth-dropdowns {
  display: flex;
  gap: 5px;
}
.mypage__inner .custom-dropdown {
  position: relative;
}
.mypage__inner .custom-dropdown:nth-child(1) {
  width: 45%;
}
.mypage__inner .custom-dropdown:nth-child(2) {
  width: 30%;
}
.mypage__inner .custom-dropdown:nth-child(3) {
  width: 25%;
}
.mypage__inner .selected-option {
  background-color: #F9F9F9;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #797979;
  font-size: 14px;
}
.mypage__inner .selected-option.active {
  color: #333;
}
.mypage__inner .dropdown-arrow {
  font-size: 10px;
  color: #888;
  margin-left: 5px;
}
.mypage__inner .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.mypage__inner .dropdown-options.visible {
  display: block;
}
.mypage__inner .dropdown-option {
  padding: 8px 12px;
  cursor: pointer;
}
.mypage__inner .dropdown-option:hover {
  background-color: #f5f5f5;
}
.mypage__inner .passport-label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
  margin-top: 20px;
}
.mypage__inner .passport-upload-container {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.mypage__inner .file-input-wrapper {
  position: relative;
  flex: 1;
  margin-right: 8px;
  background: #F9F9F9;
  height: 46px;
}
.mypage__inner .file-input-wrapper #file-name-display {
  width: 90%;
  padding: 14px 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #797979;
  cursor: default;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.mypage__inner .file-input-wrapper .clear-file-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}
.mypage__inner .file-input-wrapper .clear-file-btn:hover {
  opacity: 0.8;
}
.mypage__inner .file-input-wrapper .clear-file-btn svg {
  display: block;
}
.mypage__inner .upload-btn {
  display: inline-block;
  background-color: #0A0A0A;
  color: white;
  padding: 12px 22px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  height: 46px;
  box-sizing: border-box;
}
.mypage__inner .upload-btn:hover {
  background-color: #222;
}
.mypage__inner .hidden-file-input {
  display: none;
}
.mypage__inner .help-text__span {
  margin-top: 8px;
  font-size: 10px;
  color: #797979;
  line-height: 1.2;
}
.mypage__inner .link__delete {
  font-size: 12px;
  color: #0A0A0A;
  font-weight: 500;
  display: block;
  text-align: center;
  margin-top: 32px;
}
.mypage__inner .account__delete .check__img {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}
.mypage__inner .account__delete .check__img img {
  width: 100%;
  height: 100%;
}
.mypage__inner .account__delete .delete__info {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: center;
  line-height: 1.2;
}
.mypage__inner .account__delete .delete__info span {
  color: #FF8400;
}
.mypage__inner .account__delete .checkbox-group {
  margin: 17px auto 30px;
  justify-content: center;
}
.mypage__inner .account__delete .checkbox-group label {
  width: auto;
}
.mypage__inner .account__delete .btn {
  width: 285px;
  margin: 0 auto;
}
.mypage__inner .account__delete .back__btn {
  cursor: pointer;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E1E1E;
  font-size: 16px;
  font-family: Outfit;
  background: #fff;
  border: 1px solid #0A0A0A;
  margin-top: 10px;
  font-weight: 500;
}

.content__alert {
  height: 100vh;
}
.content__alert .content__middle {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content__alert .content__middle img {
  width: 80px;
}
.content__alert .content__middle p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 12px 0 27px;
  text-align: center;
  line-height: 1.3;
}
.content__alert .content__middle button {
  width: 285px;
}

.booking__detail {
  max-width: 790px;
  margin: 0 auto;
  padding: 4.375rem 0;
}
.booking__detail .detail__inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.booking__detail .detail__inner .detail__left {
  width: 50%;
}
.booking__detail .detail__inner .detail__left .detail__list--items {
  padding: 0 0.75rem 0.625rem;
  border-bottom: 4px solid #ECECEC;
}
.booking__detail .detail__inner .detail__left .detail__list--items .check--title {
  box-sizing: border-box;
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header {
  display: flex;
  gap: 0.625rem;
  box-sizing: border-box;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__image {
  width: 120px;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .deteail__info--header .detail__info-title {
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  color: #0A0A0A;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .deteail__info--header .detail__info-title p {
  color: #797979;
  font-size: 0.75rem;
  font-weight: 400;
  padding-left: 0.25rem;
  margin-left: 0.25rem;
  position: relative;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .deteail__info--header .detail__info-title p::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #797979;
  width: 1px;
  height: 100%;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .deteail__info--header .detail__info--location {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .deteail__info--header .detail__info--location p {
  color: #797979;
  font-size: 0.75rem;
  font-weight: 400;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .detail__info--price .price--title {
  color: #FF8400;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.125rem;
  line-height: 1.2;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .detail__info--price .price--num {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 500;
}
.booking__detail .detail__inner .detail__left .detail__list--items .detaill__header .detail__infomation .detail__info--price .price--num span {
  font-size: 0.75rem;
  color: #797979;
  font-weight: 400;
  margin-left: 0.1875rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items .checkinout {
  margin: 1.25rem 0;
  padding: 0.8125rem 1.25rem;
  box-sizing: border-box;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking__detail .detail__inner .detail__left .detail__list--items .checkinout .checkin--info p {
  color: #797979;
  font-size: 0.875rem;
  font-weight: 500px;
  line-height: 1.2;
  text-align: center;
}
.booking__detail .detail__inner .detail__left .detail__list--items .checkinout .checkin--info h3 {
  font-size: 1.125rem;
  line-height: 1.2;
  color: #0A0A0A;
  font-weight: 600;
}
.booking__detail .detail__inner .detail__left .detail__list--items .checkinout .day {
  color: #FF8400;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.booking__detail .detail__inner .detail__left .detail__list--items .checkinout .day span {
  font-size: 0.75rem;
  text-align: center;
}
.booking__detail .detail__inner .detail__left .detail__list--items .stay--guideline {
  padding: 0 0 1.25rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items .stay--guideline li {
  color: #797979;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  text-indent: -0.3125rem;
  margin-left: 0.3125rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items .section--title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 {
  padding: 1.25rem 0.75rem;
  border-bottom: 4px solid #ECECEC;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .form-group {
  margin-bottom: 0.625rem;
  cursor: pointer;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .form-group:last-child {
  margin-bottom: 0;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .form-group input {
  width: 100%;
  height: 46px;
  padding: 0.875rem 0.625rem;
  box-sizing: border-box;
  background: #F9F9F9;
  border: none;
  font-family: "Outfit", sans-serif;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .form-group input ::-moz-placeholder {
  color: #797979;
  font-family: "Outfit", sans-serif;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .form-group input ::placeholder {
  color: #797979;
  font-family: "Outfit", sans-serif;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .form-group .forget__password {
  text-align: center;
  margin: 0.625rem 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #797979;
  display: block;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .birth-dropdowns {
  display: flex;
  gap: 0.3125rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .custom-dropdown {
  position: relative;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .custom-dropdown:nth-child(1) {
  width: 45%;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .custom-dropdown:nth-child(2) {
  width: 30%;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .custom-dropdown:nth-child(3) {
  width: 25%;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .selected-option {
  background-color: #F9F9F9;
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #797979;
  font-size: 0.875rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .selected-option.active {
  color: #333;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .dropdown-arrow {
  font-size: 0.625rem;
  color: #888;
  margin-left: 0.3125rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 0.3125rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .dropdown-options.visible {
  display: block;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .dropdown-option {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .guest--detail .dropdown-option:hover {
  background-color: #f5f5f5;
}
.booking__detail .detail__inner .detail__left .detail__list--items01 .section--title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 {
  padding: 1.25rem 0.75rem;
  border-bottom: 4px solid #ECECEC;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .section--title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .refund--policy p {
  font-size: 0.8125rem;
  color: #797979;
  font-weight: 400;
  margin-left: 0.3125rem;
  text-indent: -0.3125rem;
  line-height: 1.3;
  margin-bottom: 9px;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .refund--policy p span {
  color: #FF8400;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .refund--policy p:last-child {
  margin-bottom: 0;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .checkbox-group {
  margin-top: 2.5rem;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .checkbox-group {
  margin-top: 2.5rem;
  display: flex;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .checkbox-group label {
  font-weight: 400;
  font-size: 0.8125rem;
  color: #0A0A0A;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .checkbox-group input[type=checkbox] {
  position: relative;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.375rem 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 14px;
  width: 14px;
  -webkit-appearance: none;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .checkbox-group input[type=checkbox]:checked {
  background-color: #0A0A0A;
  opacity: 1;
}
.booking__detail .detail__inner .detail__left .detail__list--items02 .checkbox-group input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 2px;
  height: 6px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -0.0625rem -0.0625rem 0 -0.0625rem;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.booking__detail .detail__inner .detail__left .payment--method {
  padding: 1.25rem 0.75rem;
  gap: 0.5rem;
}
.booking__detail .detail__inner .detail__left .payment--method .section--title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.booking__detail .detail__inner .detail__left .payment--method .radio-button {
  cursor: pointer;
  position: relative;
  padding-left: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.booking__detail .detail__inner .detail__left .payment--method .radio-button input[type=radio] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.booking__detail .detail__inner .detail__left .payment--method .radio-button .custom-radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #D9D9D9;
}
.booking__detail .detail__inner .detail__left .payment--method .radio-button input[type=radio]:checked ~ .custom-radio {
  border: 1px solid #797979;
}
.booking__detail .detail__inner .detail__left .payment--method .custom-radio:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #797979;
}
.booking__detail .detail__inner .detail__left .payment--method .radio-button input[type=radio]:checked ~ .custom-radio:after {
  background-color: #0A0A0A;
}
.booking__detail .detail__inner .detail__fixed {
  width: 50%;
  background: #FFF5E8;
  padding: 1.875rem 1.25rem;
  box-sizing: border-box;
  height: 500px;
  position: sticky;
  top: 100px;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 1.25rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item {
  border-top: 1px solid #0A0A0A;
  border-bottom: 1px solid #797979;
  padding: 0.75rem 0 1.375rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay--detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3125rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay--detail .pay__des {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #797979;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay--detail .pay__num {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 600;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc_require {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc_require .pay__des {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #797979;
  margin-bottom: 5px;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.1875rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc .pay__des {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #797979;
  margin-bottom: 3px;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .included__des {
  color: #FF8400;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.1875rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .noti__des {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 28px;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #FFEDDA;
  margin-top: 0.3rem;
  padding: 0.3125rem 0.625rem;
  gap: 8px;
  font-size: 12px;
  color: #FF8400;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .notice-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #FF8C00;
  color: #FF8C00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay {
  padding: 0.625rem 0 1.5rem;
  border-bottom: 1px solid #797979;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail .pay__des {
  font-size: 0.9375rem;
  color: #797979;
  font-weight: 500;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail .pay__num {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 600;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail-vat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail-vat .pay__des {
  font-size: 0.8125rem;
  color: #797979;
  font-weight: 500;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail-vat .pay__num {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 600;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit {
  padding-top: 0.5625rem;
  margin-bottom: 2.1875rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit .pay--deposit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit .pay--deposit .pay__des {
  font-size: 1.25rem;
  color: #0A0A0A;
  font-weight: 600;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit .pay--deposit .pay__num {
  color: #0A0A0A;
  font-size: 1.25rem;
  font-weight: 600;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total {
  padding-top: 0.5625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.1875rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A0A0A;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total h3 span {
  font-size: 1rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total .total {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A0A0A;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .submit-btn {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.875rem;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .terms-agree {
  color: #797979;
  font-size: 0.75rem;
  font-weight: 400;
  width: calc(100% - 30px);
  line-height: 1.3;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .terms-agree .link {
  font-size: 0.75rem;
  color: #0A0A0A;
  font-weight: 400;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group {
  margin-bottom: 1.5rem;
  margin-top: 0.625rem;
  display: flex;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group input[type=checkbox] {
  position: relative;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0.2rem 0.375rem 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 14px;
  width: 14px;
  -webkit-appearance: none;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group input[type=checkbox]:checked {
  background-color: #0A0A0A;
  opacity: 1;
}
.booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 3px;
  height: 7px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -0.0625rem -0.0625rem 0 -0.0625rem;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

.completed__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  max-width: 335px;
  margin: 0 auto;
}
.completed__content .completed__content--inner img {
  width: 80px;
  margin: 0 auto;
  display: flex;
  margin-bottom: 1rem;
}
.completed__content .completed__content--inner h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 6px;
}
.completed__content .completed__content--inner h4 span {
  color: #FF8400;
}
.completed__content .completed__content--inner .des {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #797979;
}
.completed__content .completed__content--inner .booking__items {
  background: #FFF;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
  max-width: 27.5rem;
  margin: 42px auto 30px;
  margin-bottom: 1.25rem;
}
.completed__content .completed__content--inner .booking__items:last-child {
  margin-bottom: 0;
}
.completed__content .completed__content--inner .booking__items .booking__list__header {
  padding: 0.438rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.0625rem solid #ECECEC;
}
.completed__content .completed__content--inner .booking__items .booking__list__header .booking__no {
  color: #797979;
  font-size: 0.8125rem;
  font-weight: 500;
}
.completed__content .completed__content--inner .booking__items .booking__list__header .booking__state {
  width: 5rem;
  padding: 0.125rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.75rem;
  min-width: 80px;
  height: 20px;
  box-sizing: border-box;
}
.completed__content .completed__content--inner .booking__items .booking__list__header .booking__state.pending__state {
  color: #5d00ff;
  background: #FFF2E5;
}
.completed__content .completed__content--inner .booking__items .booking__list__header .booking__state.scheduled__state {
  color: #FF8400;
  background: #FFF2E5;
}
.completed__content .completed__content--inner .booking__items .booking__list__header .booking__state.completed__state {
  background: #DFFFDD;
  color: #0E8B05;
}
.completed__content .completed__content--inner .booking__items .booking__list__header .booking__state.cancelled__state {
  background: #FFDCD9;
  color: #EA4335;
}
.completed__content .completed__content--inner .booking__items .booking__list-body {
  display: flex;
  gap: 0.625rem;
  padding: 0.625rem;
  box-sizing: border-box;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__image {
  width: 6.25rem;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__info .state__title {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__info .state__title span {
  color: #797979;
  font-size: 0.75rem;
  font-weight: 400;
  display: inline;
  position: relative;
  padding-left: 4px;
  margin-left: 2px;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__info .state__title span::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #797979;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__info .state__date {
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__price .price__total {
  color: #FF8400;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.2;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__price .price__num {
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.completed__content .completed__content--inner .booking__items .booking__list-body .booking__list-content .content__price .price__num span {
  font-size: 0.75rem;
  color: #797979;
  font-weight: 400;
}
.completed__content .completed__content--inner .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.completed__content .completed__content--inner .copy a {
  font-size: 16px;
  font-weight: 500;
  color: #797979;
}
.completed__content .completed__content--inner .button__area {
  margin-top: 50px;
}
.completed__content .completed__content--inner .button__area .back-btn {
  border: 1px solid #0A0A0A;
  cursor: pointer;
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  background-color: #fff;
  margin-top: 10px;
  font-size: 16px;
  font-family: Outfit;
  font-weight: 500;
}

.detail-popup {
  height: 80vh;
  background-color: #fff;
  width: 335px;
  max-width: 90%;
  position: relative;
}
.detail-popup .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: relative;
  top: unset;
  left: unset;
  height: 80px;
  background: #FFF5EB;
}
.detail-popup .popup-header .logo img {
  height: 30px;
}
.detail-popup .popup-header .close-button {
  cursor: pointer;
}
.detail-popup .popup-content {
  height: calc(100% - 80px);
  overflow-y: auto;
}
.detail-popup .popup-content .detail__inner {
  padding: 20px 24px;
  box-sizing: border-box;
  border-bottom: 4px solid #ECECEC;
}
.detail-popup .popup-content .detail__inner .detail__span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-popup .popup-content .detail__inner .detail__span p {
  font-size: 14px;
  font-weight: 400;
  color: #0A0A0A;
}
.detail-popup .popup-content .detail__inner .detail__span .booking__state {
  width: auto;
  padding: 3px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.75rem;
  height: 20px;
  min-width: 80px;
  box-sizing: border-box;
}
.detail-popup .popup-content .detail__inner .detail__span .booking__state.scheduled__state {
  color: #FF8400;
  background: #FFF2E5;
}
.detail-popup .popup-content .detail__inner .detail__span .booking__state.completed__state {
  background: #DFFFDD;
  color: #0E8B05;
}
.detail-popup .popup-content .detail__inner .detail__span .booking__state.cancelled__state {
  background: #FFDCD9;
  color: #EA4335;
}
.detail-popup .popup-content .detail__inner .rooms__name {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 20px;
  line-height: 1.2;
}
.detail-popup .popup-content .detail__inner .location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.detail-popup .popup-content .detail__inner .location a {
  font-size: 14px;
  color: #797979;
  font-weight: 400;
}
.detail-popup .popup-content .detail__inner.detail__inner--list01 .booking__infomation {
  margin-top: 0;
  gap: 9px;
}
.detail-popup .popup-content .detail__inner.detail__inner--list02 .booking__infomation {
  margin-top: 0;
  gap: 9px;
}
.detail-popup .popup-content .detail__inner .booking__infomation {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-popup .popup-content .detail__inner .booking__infomation .infomation_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-popup .popup-content .detail__inner .booking__infomation .infomation_list .info_type {
  color: #797979;
  font-weight: 400;
  font-size: 14px;
}
.detail-popup .popup-content .detail__inner .booking__infomation .infomation_list .info_des {
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 500;
}
.detail-popup .popup-content .detail__inner .checkinout {
  margin: 1.25rem 0;
  padding: 0.8125rem 0.625rem;
  box-sizing: border-box;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-popup .popup-content .detail__inner .checkinout .checkin--info p {
  color: #797979;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.detail-popup .popup-content .detail__inner .checkinout .checkin--info h3 {
  font-size: 1.125rem;
  line-height: 1.2;
  color: #0A0A0A;
  font-weight: 600;
}
.detail-popup .popup-content .detail__inner .checkinout .checkin--info span {
  color: #797979;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  display: block;
  line-height: 1.2;
}
.detail-popup .popup-content .detail__inner .checkinout .day {
  color: #FF8400;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.detail-popup .popup-content .detail__inner .checkinout .day span {
  font-size: 0.75rem;
  text-align: center;
}
.detail-popup .popup-content .detail__inner .section--title {
  font-size: 18px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 10px;
}
.detail-popup .popup-content .welcome {
  padding: 16px 25px;
  box-sizing: border-box;
}
.detail-popup .popup-content .welcome .welcome--inner {
  background: url("https://dud37y56jdkfx.cloudfront.net/images/welcome__bg.png") no-repeat;
  width: 100%;
  height: 72px;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0A0A0A;
  font-weight: 500;
  line-height: 1.3;
}
.detail-popup .popup-content .modify-reservation {
  text-align: center;
  color: #FF8400;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  display: block;
}
.detail-popup .popup-content .button-area {
  padding: 0 25px 30px;
  box-sizing: border-box;
}
.detail-popup .popup-content .room__slide {
  width: 100%;
  position: relative;
  height: 225px;
}
.detail-popup .popup-content .room__slide .detailSwiper {
  width: 100%;
  height: 100%;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-slide img {
  width: 100%;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-button-prev, .detail-popup .popup-content .room__slide .detailSwiper .swiper-button-next {
  width: 25px;
  height: 25px;
  background: rgba(10, 10, 10, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-button-prev::after, .detail-popup .popup-content .room__slide .detailSwiper .swiper-button-next::after {
  display: none;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-button-prev svg, .detail-popup .popup-content .room__slide .detailSwiper .swiper-button-next svg {
  width: 6px;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-button-prev {
  left: 20px;
}
.detail-popup .popup-content .room__slide .detailSwiper .swiper-button-next {
  right: 20px;
}

.sub__main {
  width: 100%;
  height: 800px;
}
.sub__main#main_gadi {
	background: url("https://dud37y56jdkfx.cloudfront.net/images/gadi_main.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}
.sub__main#main_yeoui {
	background: url("https://dud37y56jdkfx.cloudfront.net/images/yeoui_main.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}
.sub__main#main_kondae {
	background: url("https://dud37y56jdkfx.cloudfront.net/images/kondae_main.jpg") no-repeat;
	background-position: center;
	background-size: cover;
}

.sub__main .sub__main--inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.sub__main .sub__main--inner .sub__main--text h3 {
  color: #D9D9D9;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
}
.sub__main .sub__main--inner .sub__main--text h1 {
  color: #FFF;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.2;
}
.sub__main .sub__main--inner .sub__main--text p {
  color: #FFF;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
}
.sub__main .sub__main--inner .set__date {
  background-color: #EEE5D9;
  padding: 1.875rem 3.125rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub__main .sub__main--inner .set__date p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}
.sub__main .sub__main--inner .set__date .custom__dropdown {
  width: 70%;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .dropdown_left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .selected__option {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .dropdown__arrow {
  transition: transform 0.3s ease;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options .dropdown__option {
  padding: 0.625rem;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}
.sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options .dropdown__option:hover {
  background-color: #f5f5f5;
}
.sub__main .sub__main--inner .set__date .custom__dropdown.active .dropdown__arrow {
  transform: rotate(180deg);
}
.sub__main .sub__main--inner .set__date .custom__dropdown.active .dropdown__options {
  max-height: 12.5rem;
  border: 1px solid #ccc;
}

.infomaiton {
  padding: 5.625rem 0 4.375rem;
}
.infomaiton .infomaiton__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.infomaiton .infomaiton__inner .location_left {
  width: 40%;
}
.infomaiton .infomaiton__inner .location_left h4 {
  color: #000;
  font-family: Outfit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.infomaiton .infomaiton__inner .location_left p {
  color: #0A0A0A;
  font-family: Outfit;
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  line-height: 1.5;
  margin-bottom: 0.9375rem;
}
.infomaiton .infomaiton__inner .location_left p:last-child {
  margin-bottom: 0;
}
.infomaiton .infomaiton__inner .location_right {
  width: 60%;
}
.infomaiton .infomaiton__inner .location_right h4 {
  color: #000;
  font-family: Outfit;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.infomaiton .infomaiton__inner .location_right p {
  color: #0A0A0A;
  font-family: Outfit;
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
  gap: 0.4375rem;
  line-height: 1.5;
  margin-bottom: 0.9375rem;
  position: relative;
  padding-left: 1.5625rem;
}
.infomaiton .infomaiton__inner .location_right p svg {
  width: 18px;
  position: absolute;
  top: 0.625rem;
  left: 0;
}

.perfect__stay {
  padding: 4.6875rem 0 7.5rem;
}
.perfect__stay .perfect__stay--list {
  max-width: 1280px;
  margin: 0 auto;
}
.perfect__stay .perfect__stay--list .inner__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0A0A0A;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.perfect__stay .perfect__stay--list .inner__title::after {
  position: absolute;
  right: -0.875rem;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FF8400;
  border-radius: 50%;
  top: 0;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap {
  margin-top: 3.75rem;
  display: flex;
  gap: 4.375rem;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info {
  position: relative;
  max-width: 380px;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide {
  width: 100%;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide .swiper-slide .slide-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0A0A0A;
  color: #fff;
  font-size: 1rem;
  padding: 0.375rem 1rem;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide .swiper-slide img {
  width: 100%;
  aspect-ratio: 1.5/1;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info {
  padding: 0.875rem 0 1.5625rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__title .stay__type {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 1.2;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__title .detail__item {
  color: #797979;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price .total {
  color: #797979;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4px;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price h5 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0A0A0A;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price h5 span {
  color: #797979;
  font-size: 1rem;
  font-weight: 600;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list .list-items {
  color: #797979;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list .list-items.actives {
  color: #FF8400;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .submit-btn {
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  height: 50px;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .disable__submit {
  background: #797979;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__furniture-notice {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #797979;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .swiper-button-prev,
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .swiper-button-next {
  color: #fff;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .swiper-button-prev::after,
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .swiper-button-next::after {
  font-size: 0.875rem;
  font-weight: 900;
}
.perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0.625rem;
  left: unset !important;
  bottom: 0.625rem !important;
  gap: 0.125rem;
}

.sub__banner {
  background: #FFF5E8;
  padding: 4.0625rem 0;
}
.sub__banner .sub__banner--inner {
  max-width: 930px;
  margin: 0 auto;
}
.sub__banner .sub__banner--inner h2 {
  color: #0A0A0A;
  font-family: Outfit;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
  text-align: center;
}
.sub__banner .sub__banner--inner p {
  color: #0A0A0A;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.facilities {
  background: #FFF5E8;
  padding: 4.375rem 0 2.625rem;
}
.facilities .facilities__inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 6.25rem;
}
.facilities .facilities__inner .facilities__left {
  width: 30%;
}
.facilities .facilities__inner .facilities__left .left__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0A0A0A;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.875rem;
}
.facilities .facilities__inner .facilities__left .left__title::after {
  position: absolute;
  right: -0.875rem;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FF8400;
  border-radius: 50%;
  top: 0;
}
.facilities .facilities__inner .facilities__left p {
  color: #0A0A0A;
  font-family: Outfit;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
.facilities .facilities__inner .facilities__right {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.facilities .facilities__inner .facilities__right .info__list--items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.facilities .facilities__inner .facilities__right .info__list--items .info__items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.facilities .facilities__inner .facilities__right .info__list--items .info__items svg {
  width: 32px;
  height: 32px;
}
.facilities .facilities__inner .facilities__right .info__list--items .info__items p {
  font-size: 16px;
  font-weight: 400;
  color: #0A0A0A;
}

.amenities {
  padding: 11.25rem 0 7.5rem;
  background: #F9F9F9;
}
.amenities .amenities__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.amenities .amenities__inner .inner__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0A0A0A;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3.75rem;
}
.amenities .amenities__inner .inner__title::after {
  position: absolute;
  right: -0.875rem;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FF8400;
  border-radius: 50%;
  top: -0.5rem;
}
.amenities .amenities__inner .amenities__list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1.875rem;
}
.amenities .amenities__inner .amenities__list .amenities__items {
  width: calc(50% - 1.5rem);
}
.amenities .amenities__inner .amenities__list .amenities__items .amenities__image {
  width: 100%;
}
.amenities .amenities__inner .amenities__list .amenities__items .amenities__image img {
  width: 100%;
  aspect-ratio: 1.5/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.amenities .amenities__inner .amenities__list .amenities__items .amenities__discript {
  padding: 1.5625rem 1.25rem;
  box-sizing: border-box;
  background: #FFF;
}
.amenities .amenities__inner .amenities__list .amenities__items .amenities__discript .des__title {
  color: #0A0A0A;
  font-family: Outfit;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.amenities .amenities__inner .amenities__list .amenities__items .amenities__discript .des__info {
  height: 72px;
  color: #797979;
  font-family: Outfit;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.neighborhood {
  background: #F6E8D6;
  padding: 5.9375rem 0;
}
.neighborhood .neighborhood__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.neighborhood .neighborhood__inner h4 {
  color: #0A0A0A;
  text-align: center;
  font-family: Outfit;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2.375rem;
}
.neighborhood .neighborhood__inner .neighborhood__map {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.neighborhood .neighborhood__inner .neighborhood__map .map-container {
  width: 100%;
  height: 450px;
  position: relative;
}
.neighborhood .neighborhood__inner .neighborhood__map .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.neighborhood .neighborhood__inner .neighborhood__map .map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  background: white;
  border-top: 1px solid #eee;
}
.neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info h3 {
  margin: 0 0 0.625rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: Outfit;
}
.neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info p {
  margin: 0;
  color: #0A0A0A;
  font-size: 1.25rem;
  font-family: Outfit;
  font-weight: 400;
}
.neighborhood .neighborhood__inner .neighborhood__map .map-info .map-button {
  background: #0A0A0A;
  color: white;
  padding: 1.25rem 3.125rem;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
}
.neighborhood .neighborhood__inner .neighborhood__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  margin-top: 3.125rem;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items {
  background: #FFF;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  gap: 6.25rem;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left svg {
  width: 70px;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left .neighborhood__title {
  font-size: 2rem;
  color: #0A0A0A;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list {
  width: 48%;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list .location__dot {
  font-size: 1.25rem;
  color: #0A0A0A;
  font-weight: 600;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 3px;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list .location__dot svg {
  width: 18px;
  height: 18px;
}
.neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location_descript {
  color: #797979;
  font-weight: 400;
  font-size: 1rem;
  padding-left: 1.125rem;
  line-height: 1.25;
}

.faq__sub {
  padding: 7.5rem 0 10rem;
}
.faq__sub .inner__title {
  margin-bottom: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq__sub .inner__title h2 {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 4rem;
  line-height: 1.2;
  position: relative;
  text-align: center;
  display: inline-block;
}
.faq__sub .inner__title h2::after {
  position: absolute;
  right: -1.25rem;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #FF8400;
  border-radius: 50%;
  bottom: 4.25rem;
}
.faq__sub .accordion {
  height: auto;
  margin: 0 auto;
  border-top: 1px solid #ECECEC;
}
.faq__sub .accordion-item {
  padding: 1.25rem 0;
  margin: 0;
  overflow: hidden;
  border-bottom: 1.3px solid #d4d4d4;
}
.faq__sub .accordion-item .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 2.25rem;
  cursor: pointer;
  color: #242424;
}
.faq__sub .accordion-item .title svg {
  width: 24px;
  height: auto;
  color: #454545;
  transform: translateX(-50%) rotate(0);
  transition: transform 0.15s ease;
}
.faq__sub .accordion-item .paragraph {
  font-weight: 400;
  font-size: 1.5rem;
  color: #797979;
  display: none;
  padding: 1rem 0;
  list-style: inside;
  line-height: 1.2;
}
.faq__sub .accordion-item .paragraph .indent {
  text-indent: 1rem;
}
.faq__sub .accordion-item .paragraph span {
  font-weight: bold;
}
.faq__sub .accordion-item.active .title {
  color: #FF8400;
}
.faq__sub .accordion-item.active .title svg {
  transform: translateX(-50%) rotate(180deg);
}
.faq__sub .accordion-item.active .paragraph {
  display: block;
  padding: 1.25rem 0;
}
.faq__sub .view__more {
  margin-top: 3.125rem;
}
.faq__sub .view__more a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242424;
  font-weight: 500;
  font-size: 2.25rem;
}

.pc__view {
  display: flex !important;
}

.mobile__view {
  display: none !important;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.overlay.active {
  display: block;
}

.button-container {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.alert__popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 335px;
  height: auto;
  padding: 25px;
  box-sizing: border-box;
  z-index: 1000;
  background-color: #FFF;
}
.alert__popup .popup__inner {
  width: 100%;
}
.alert__popup .popup__inner .close__btn {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.alert__popup .popup__inner .popup__body {
  padding: 25px 0 0;
  box-sizing: border-box;
}
.alert__popup .popup__inner .popup__body .popup__img {
  width: 70px;
  margin: 0 auto 10px;
}
.alert__popup .popup__inner .popup__body .popup__img img {
  width: 100%;
}
.alert__popup .popup__inner .popup__body .popup__content {
  text-align: center;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.2;
}
.alert__popup .popup__inner .popup__body .button__area {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.alert__popup .popup__inner .popup__body .button__area.dual__btn button {
  width: 50%;
}
.alert__popup .popup__inner .popup__body .button__area.dual__btn .cancle-btn {
  cursor: pointer;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-size: 16px;
  font-family: Outfit;
  background: #fff;
  border: 1px solid #0A0A0A;
}
.alert__popup.active {
  display: block;
}

@media (min-width: 769px) and (max-width: 1400px) {
  .basic__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3.125rem;
  }
  .list__descript {
    flex-wrap: wrap;
  }
  .list__descript .list__item {
    width: 48% !important;
  }
  .middle-banner {
    padding: 3rem 0;
  }
  .middle-banner br {
    display: none;
  }
  .way--inner .inner__title {
    margin-bottom: 4.875rem;
  }
  .way--inner .inner__title h2::after {
    bottom: 2.2rem;
    right: -17px;
  }
  .way--inner .rooms__inner {
    gap: 0;
  }
  .way--inner .rooms__inner .room__left {
    width: 30%;
    font-size: 2.6rem;
  }
  .way--inner .rooms__inner .room__right {
    width: 70%;
  }
  .locations .inner__title h2::after {
    bottom: 2.4375rem;
    right: -0.875rem;
  }
  .locations .location__content .location__card {
    height: 520px;
    background-size: cover;
    padding: 1rem;
    box-sizing: border-box;
  }
  .locations .location__content .location__card .location__info h3 {
    font-size: 2rem;
  }
  .locations .location__content .location__card .location__info .info__location {
    font-size: 1.25rem;
  }
  .locations .location__content .location__card.comming--soon {
    padding: 1.125rem;
  }
  .locations .location__content .location__card.comming--soon .location__info .opacity--text {
    font-size: 2rem;
    color: #797979;
    font-weight: 600;
  }
  .locations .location__content .location__card.comming--soon .location__info .comming-text {
    font-size: 2.5rem;
  }
  .locations .location__content .location__card.yeoui__location {
    padding: 1rem;
  }
  .locations .location__content .location__card.yeoui__location .location__info h3 {
    font-size: 2rem;
  }
  .locations .location__content .location__card.kondae__location {
    padding: 1rem;
  }
  .locations .location__content .location__card.kondae__location .location__info h3 {
    font-size: 2rem;
  }
  .perks .inner__title h2::after {
    bottom: 2.9375rem;
    right: -0.75rem;
  }
  .inner__title .location_descript {
    font-size: 1.4rem !important;
  }
  .inner__title h2 {
    font-size: 3rem !important;
  }
  .inner__title h2::after {
    width: 14px !important;
    height: 14px !important;
  }
  .stay__slide_wrapp .inner__title h2::after {
    right: -0.8375rem;
    bottom: 3.4375rem;
  }
  .limited__rooms {
    padding: 4.625rem 3.125rem 7.375rem;
  }
  .faq .inner__title h2::after {
    right: -0.9rem;
    bottom: 2.8rem;
  }
  .book-now {
    padding: 0 3.125rem 3rem;
    box-sizing: border-box;
  }
  .book-now .book-now__inner .find__content {
    gap: 3rem;
  }
  .book-now .book-now__inner .find__content .select__box {
    width: calc(100% - 220px);
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header .selected__option {
    font-size: 1.2rem;
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header .dropdown__arrow {
    width: 14px;
  }
  .book-now .book-now__inner .find__content .black-btn {
    width: 220px;
    font-size: 1.5rem;
  }
  .middle-banner .middle-banner__inner {
    padding: 4.625rem 1rem;
  }
  .limited__rooms .limited__inner {
    padding: 0 2rem;
  }
  .limited__rooms .limited__inner .limited__Wrapp {
    padding: 1.75rem 0 1.75rem 0;
    gap: 20px;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__left p {
    font-size: 2rem;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__left h3 {
    font-size: 4.25rem;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__left .black-btn {
    width: 100%;
    font-size: 2rem;
  }
  footer .footer__inner {
    max-width: 100%;
    padding: 0 3.125rem;
  }
  footer .footer__inner ul {
    gap: 5.5rem;
  }
  .sub__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    margin-top: 3.75rem;
    margin-top: 100px;
    padding: 0 50px;
    box-sizing: border-box;
  }
	.sub__main#main_gadi {
    background: url("https://dud37y56jdkfx.cloudfront.net/images/gadi_main.jpg") no-repeat;
    background-position: center;
    background-size: cover;
	}
  .sub__main .sub__main--inner {
    height: 100%;
    max-width: 100%;
  }
  .sub__main .sub__main--inner .set__date {
    padding: 0.625rem 0.875rem;
  }
  .sub__main .sub__main--inner .set__date p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    display: none;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown {
    width: 100%;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header {
    width: 100%;
    padding: 0 0 0.375rem;
    border-bottom: 1px solid #000;
    cursor: pointer;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .dropdown__arrow {
    transition: transform 0.3s ease;
    width: 14px;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 10;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options .dropdown__option {
    padding: 0.625rem;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options .dropdown__option:hover {
    background-color: #f5f5f5;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown.active .dropdown__arrow {
    transform: rotate(180deg);
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown.active .dropdown__options {
    max-height: 12.5rem;
    border: 1px solid #ccc;
  }
  .infomaiton {
    padding: 1.25rem 0.9375rem;
    box-sizing: border-box;
  }
  .infomaiton .infomaiton__inner {
    max-width: 100%;
    display: flex;
    padding: 0 50px;
  }
  .perfect__stay .perfect__stay--list {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap {
    gap: 1.2rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info {
    position: relative;
    max-width: unset;
    width: calc(50% - 1.2rem);
    overflow: hidden;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide {
    width: 100%;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide .swiper-slide .slide-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0A0A0A;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.3125rem 0.875rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide .swiper-slide img {
    width: 100%;
    aspect-ratio: 1.5/1;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info {
    padding: 0.75rem 1.25rem 1.25rem 0;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__title .stay__type {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__title .detail__item {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price .total {
    font-size: 0.875rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price h5 {
    font-size: 1.5rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price h5 span {
    font-size: 0.875rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list {
    gap: 0.3125rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list .list-items {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .submit-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .disable__submit {
    font-size: 1rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__furniture-notice {
    margin-top: 0.625rem;
    font-size: 0.625rem;
  }
  .facilities {
    background: #FFF5E8;
    padding: 2.1875rem 1.25rem;
    box-sizing: border-box;
  }
  .facilities .facilities__inner {
    max-width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    gap: 4rem;
  }
  .facilities .facilities__inner .facilities__left {
    margin-bottom: 2.5rem;
    width: 40%;
  }
  .facilities .facilities__inner .facilities__left p {
    font-size: 1rem;
  }
  .facilities .facilities__inner .facilities__left .left__title {
    font-size: 1.8rem;
  }
  .facilities .facilities__inner .facilities__right {
    width: 60%;
  }
  .amenities .amenities__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
  }
  .amenities .amenities__inner .amenities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .amenities .amenities__inner .amenities__list .amenities__items {
    width: calc(50% - 1rem);
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__image {
    width: 100%;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__image img {
    width: 100%;
    aspect-ratio: 1.5/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__discript .des__title {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__discript .des__info {
    font-size: 1rem;
    height: auto;
  }
  .neighborhood .neighborhood__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
  }
  .neighborhood .neighborhood__inner h4 {
    text-align: center;
    margin-bottom: 1.25rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-container {
    width: 100%;
    height: 300px;
    position: relative;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info {
    display: flex;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Outfit;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info p {
    margin: 0;
    color: #0A0A0A;
    font-size: 1rem;
    font-family: Outfit;
    font-weight: 400;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .map-button {
    padding: 1.25rem 3.125rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    box-sizing: border-box;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left svg {
    width: 30px;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left .neighborhood__title {
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list {
    width: 100%;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list .location__dot {
    font-size: 1.3rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location_descript {
    font-size: 1rem;
  }
  .faq__sub .inner__title h2 {
    font-size: 1.5rem;
  }
  .faq__sub .inner__title h2::after {
    position: absolute;
    right: -1rem;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 3rem;
  }
  .faq__sub .accordion-item .title {
    font-size: 1.5rem;
    cursor: pointer;
    color: #242424;
  }
  .faq__sub .accordion-item .title svg {
    width: 20px;
    height: auto;
    color: #454545;
    transform: translateX(-50%) rotate(0);
    transition: transform 0.15s ease;
  }
  .faq__sub .accordion-item .paragraph {
    font-weight: 400;
    font-size: 1.2rem;
    color: #797979;
    display: none;
    padding: 1rem 0;
    list-style: inside;
    line-height: 1.2;
  }
  .faq__sub .accordion-item .paragraph .indent {
    text-indent: 1rem;
  }
  .faq__sub .view__more {
    margin-top: 30px;
  }
  .faq__sub .view__more a {
    font-size: 1.5rem;
  }
  .sticky-nav__inner {
    padding: 30px 50px;
    box-sizing: border-box;
  }
  .sticky-nav .set__date {
    gap: 0;
  }
  .sticky-nav__menu {
    padding: 30px 50px;
    box-sizing: border-box;
  }
  .mypage__inner {
    max-width: 100%;
    padding: 2.8125rem 50px;
  }
  .top__banner {
    padding: 70px 50px;
  }
  .booking__detail {
    max-width: 100%;
    padding: 4.375rem 50px;
  }
}
@media (min-width: 769px) and (max-width: 968px) {
  .facilities {
    padding: 2.1875rem 0;
  }
  .facilities .facilities__inner .facilities__left .left__title {
    font-size: 1.4rem;
  }
  .facilities .facilities__inner .facilities__left p {
    font-size: 1rem;
  }
  .facilities .facilities__inner .facilities__left .left__title::after {
    position: absolute;
    right: -0.875rem;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    top: 0;
  }
  .facilities__right .info__list--items .info__items svg {
    width: 18px;
  }
  .facilities__right .info__list--items .info__items p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .m-br {
    display: block;
  }
  .pc__view {
    display: none !important;
  }
  .mobile__view {
    display: block !important;
  }
  header {
    width: 100%;
    padding: 0;
    height: 60px;
  }
  header .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    box-sizing: border-box;
    height: 100%;
  }
  header .header__inner .logo {
    width: 72px;
    height: auto;
  }
  header .header__inner .logo img {
    width: 100%;
    height: 100%;
  }
  header .header__inner nav {
    display: none;
  }
  header .header__inner .mobile-menu-icon {
    display: block;
  }
  .mobile-dropdown {
    display: block;
  }
  .main-banner {
    background: url("https://dud37y56jdkfx.cloudfront.net/images/main_banner_mo-v1.jpg") no-repeat;
    height: 400px;
    width: 100%;
    margin-top: 60px;
    background-size: cover;
  }
  .main-banner .main-banner__inner .fixed__banner {
    left: 0;
    top: 0;
    font-size: 1.5rem;
    padding: 0.625rem 0;
  }
  .main-banner .main-banner__inner .banner__content {
    display: flex;
    padding: 3.875rem 1.25rem;
    gap: 0.625rem;
  }
  .main-banner .main-banner__inner .banner__content h1 {
    font-size: 2.625rem;
  }
  .main-banner .main-banner__inner .banner__content p {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
  .book-now {
    padding: 0 1.25rem 3.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }
  .book-now .book-now__inner {
    padding: 0.938rem 1.5rem;
    margin-top: -1.875rem;
  }
  .book-now .book-now__inner .book-now__title {
    font-weight: 600;
    font-size: 1.625rem;
    color: #0A0A0A;
    margin-bottom: 0.8rem;
  }
  .book-now .book-now__inner .find__content {
    width: 100%;
    gap: 1.25rem;
    flex-direction: column;
  }
  .book-now .book-now__inner .find__content .black-btn {
    font-size: 1.25rem;
    font-weight: 500;
    width: 100%;
    height: 42px;
  }
  .book-now .book-now__inner .find__content .select__box {
    width: 100%;
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown {
    flex: 1;
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header {
    padding: 0.5rem 0;
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header .selected__option {
    font-size: 1rem;
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown .dropdown__header .dropdown__arrow {
    transition: transform 0.3s ease;
    width: 12px;
  }
  .book-now .book-now__inner .find__content .select__box .custom__dropdown.date-dropdown {
    flex: 2;
  }
  .book-now .book-now__inner .select__box {
    width: 100%;
    gap: 1rem;
  }
  .book-now .book-now__inner .select__box .custom__dropdown .dropdown__header {
    padding: 0.75rem 0;
  }
  .book-now .book-now__inner .select__box .custom__dropdown .dropdown__header .selected__option {
    font-size: 1.25rem;
  }
  .book-now .book-now__inner .daterangepicker .calendars {
    flex-direction: column !important;
  }
  .book-now .book-now__inner .daterangepicker .calendar {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .book-now .book-now__inner .daterangepicker .calendar:first-child {
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #eee !important;
  }
  .middle-banner .middle-banner__inner {
    font-size: 1rem;
    letter-spacing: 0.28px;
    padding: 3.25rem 2.5rem;
  }
  .middle-banner .middle-banner__inner br {
    display: none;
  }
  .way--inner {
    padding: 5rem 0;
  }
  .way--inner .inner__title {
    padding: 0 1.25rem;
    margin-bottom: 1.875rem;
    box-sizing: border-box;
  }
  .way--inner .inner__title h2 {
    font-size: 2.625rem;
  }
  .way--inner .inner__title h2::after {
    position: absolute;
    right: -11px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 31px;
  }
  .way--inner .inner__title p {
    font-size: 1.25rem;
  }
  .way--inner .rooms__inner {
    display: flex;
    gap: 0.625rem;
    flex-direction: column;
    padding: 0 0 0 1.25rem;
  }
  .way--inner .rooms__inner .room__left {
    font-size: 1.5rem;
  }
  .way--inner .rooms__inner .room__left br {
    display: none;
  }
  .way--inner .rooms__inner .room__left .m_space {
    margin-left: 5px;
  }
  .way--inner .rooms__inner .room__right .inner__descript {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.875rem;
    line-height: 1.4;
    padding-right: 1.25rem;
  }
  .way--inner .rooms__inner .room__right .inner__descript br {
    display: none;
  }
  .way--inner .space__inner {
    margin-top: 4.625rem;
  }
  .way--inner .inner__slide {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .way--inner .inner__slide .swiper {
    width: 100%;
  }
  .way--inner .inner__slide .swiper.roomSwiper {
    display: none !important;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper {
    display: block;
    width: 100%;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .swiper-wrapper {
    width: 100%;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .swiper-slide {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .slide-img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .room__list--dual {
    display: flex;
    gap: 0.625rem;
    width: 100%;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .room__list--dual .slide-img {
    width: calc(50% - 0.3125rem);
    aspect-ratio: 1.3/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .swiper-pagination {
    width: 100%;
  }
  .way--inner .inner__slide .swiper.roomMobileSwiper .swiper-pagination-progressbar {
    width: 100%;
  }
  .way--inner .inner__slide .swiper.spaceSwiper {
    width: 100%;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-wrapper {
    display: flex;
    width: 100% !important;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide {
    width: 100% !important;
    display: flex;
    gap: 10px;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .left-column {
    width: 65%;
    position: relative;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .left-column .slide-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .right-column {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .right-column .right-column-wrap {
    position: relative;
    height: calc(50% - 5px);
    width: 100%;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .right-column .slide-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .right-column-wrap {
    position: relative;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-slide .space-caption {
    position: absolute;
    bottom: 6px;
    left: 5px;
    font-size: 9px;
    padding: 0;
    color: #fff;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-pagination {
    position: relative;
    margin-top: 1.25rem;
    width: 100%;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.1);
    height: 4px;
    width: 100%;
  }
  .way--inner .inner__slide .swiper.spaceSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #242424;
  }
  .way--inner .inner__slide .swiper-pagination {
    position: relative;
    margin-top: 1.25rem;
  }
  .way--inner .inner__slide .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.1);
    height: 4px;
  }
  .way--inner .inner__slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #242424;
  }
  .locations {
    padding: 3.125rem 1.25rem;
    box-sizing: border-box;
  }
  .locations .inner__title {
    margin-bottom: 2.5rem;
  }
  .locations .inner__title h2 {
    font-size: 2.375rem;
  }
  .locations .inner__title h2::after {
    position: absolute;
    right: -11px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 31px;
  }
  .locations .inner__title p {
    font-size: 1.25rem;
  }
  .locations .inner__title .location_descript {
    font-size: 1rem;
    line-height: 1.4;
  }
  .locations .inner__title .location_descript br {
    display: none;
  }
  .locations .desktop-view {
    display: none;
  }
  .locations .mobile-view {
    display: block;
  }
  .perks {
    padding: 3.125rem 0 2.25rem;
  }
  .perks .inner__title {
    margin-bottom: 3.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .perks .inner__title p {
    font-size: 1.25rem;
  }
  .perks .inner__title h2 {
    font-size: 2.375rem;
    line-height: 1.2;
  }
  .perks .inner__title h2::after {
    position: absolute;
    right: -8px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 35px;
  }
  .perks .inner__title .location_descript {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
  .perks .list__descript {
    display: flex;
    gap: 0.8rem;
    padding: 0 1.25rem;
    box-sizing: border-box;
    flex-wrap: wrap;
  }
  .perks .list__descript .list__item {
    width: calc((100% - 0.8rem) / 2);
    background: #fff;
    padding: 1.25rem 0.625rem;
    box-sizing: border-box;
    height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
  }
  .perks .list__descript .list__item svg {
    width: 36px;
    height: auto;
  }
  .perks .list__descript .list__item h3 {
    font-size: 1rem;
  }
  .perks .list__descript .list__item p {
    color: #242424;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.2;
  }
  .stay__slide_wrapp {
    padding: 3.125rem 0;
  }
  .stay__slide_wrapp .inner__title {
    margin-bottom: 2.5rem;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }
  .stay__slide_wrapp .inner__title p {
    font-size: 1.25rem;
  }
  .stay__slide_wrapp .inner__title h2 {
    font-size: 2.375rem;
    line-height: 1.2;
    text-align: left;
  }
  .stay__slide_wrapp .inner__title h2::after {
    position: absolute;
    right: -8px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 35px;
  }
  .stay__slide_wrapp .stay__slide {
    padding: 0 0 0 1.25rem;
  }
  .stay__slide_wrapp .slide__items {
    height: 218px;
  }
  .stay__slide_wrapp .slide__items .slide__header {
    padding: 0.875rem 1.25rem 0.625rem 0.625rem;
    height: calc(100% - 26px);
  }
  .stay__slide_wrapp .slide__items .slide__header .content--text {
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .stay__slide_wrapp .slide__items .slide__header .content--text span {
    display: block;
    color: #797979;
    font-weight: 400;
    font-size: 0.625rem;
    margin-top: 0.625rem;
  }
  .stay__slide_wrapp .slide__items .slide__header .icon__city {
    display: flex;
    justify-content: flex-end;
  }
  .stay__slide_wrapp .slide__items .slide__header .icon__city img {
    width: 24px;
    height: 24px;
  }
  .stay__slide_wrapp .slide__items .slide__footer {
    padding: 0.25rem 0.5rem;
  }
  .stay__slide_wrapp .slide__items .slide__footer p {
    color: #0A0A0A;
    font-size: 0.75rem;
  }
  .stay__slide_wrapp .swiper-pagination {
    position: relative;
    margin-top: 1.25rem;
  }
  .stay__slide_wrapp .swiper-pagination-progressbar {
    background: #797979;
    height: 4px;
  }
  .stay__slide_wrapp .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #fff;
  }
  .limited__rooms {
    padding: 3.125rem 1.25rem 1.875rem;
  }
  .limited__rooms .limited__inner {
    background: url("https://dud37y56jdkfx.cloudfront.net/images/background.png") no-repeat;
    height: 182px;
    background-size: cover;
    background-position: right;
  }
  .limited__rooms .limited__inner .limited__Wrapp {
    height: 100%;
    padding: 1rem;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__left p {
    font-size: 1.5rem;
    width: 71%;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__left h3 {
    font-size: 2.5rem;
    color: #0A0A0A;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__left .black-btn {
    display: none;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__right {
    width: auto;
    height: 100%;
  }
  .limited__rooms .limited__inner .limited__Wrapp .limited__right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  .limited__rooms .limited__inner .limited__Wrapp .pc-btn {
    display: none;
  }
  .limited__rooms .limited__inner .mobile-btn {
    background: #242424;
    width: 100%;
    height: 45px;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq {
    margin-top: 3.75rem;
    padding: 0 1.25rem 2.25rem;
  }
  .faq .inner__title {
    margin-bottom: 1.25rem;
  }
  .faq .inner__title h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .faq .inner__title h2::after {
    position: absolute;
    right: -8px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 31px;
  }
  .faq .accordion-item {
    padding: 0.5rem 0;
    margin: 0;
    overflow: hidden;
  }
  .faq .accordion-item .title {
    font-weight: 500;
    font-size: 0.875rem;
  }
  .faq .accordion-item .title svg {
    width: 12px;
    height: auto;
    color: #454545;
    transform: translateX(-50%) rotate(0);
    transition: transform 0.15s ease;
  }
  .faq .accordion-item .paragraph {
    font-weight: 400;
    font-size: 0.875rem;
    color: #797979;
    display: none;
    padding: 1rem 0;
    list-style: inside;
  }
  .faq .accordion-item .paragraph .indent {
    text-indent: 1rem;
  }
  .faq .accordion-item .paragraph span {
    font-weight: bold;
  }
  .faq .accordion-item.active .title {
    color: #FF8400;
  }
  .faq .accordion-item.active .title svg {
    transform: translateX(-50%) rotate(180deg);
  }
  .faq .accordion-item.active .paragraph {
    display: block;
    padding: 1.25rem 0 0;
  }
  .faq .view__more {
    margin-top: 0.938rem;
  }
  .faq .view__more a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242424;
    font-weight: 500;
    font-size: 0.875rem;
  }
  footer {
    background-color: #0A0A0A;
    padding: 1.25rem;
    height: 290px;
  }
  footer .footer__inner {
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    height: 100%;
  }
  footer .footer__inner ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
  }
  footer .footer__inner ul .footer__logo {
    width: 80px;
    height: auto;
    margin-bottom: 0;
  }
  footer .footer__inner ul .footer__logo img {
    width: 100%;
    height: 100%;
  }
  footer .footer__inner ul .footer__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
  }
  footer .footer__inner ul .footer__info .info__items {
    color: #fff;
    font-size: 0.825rem;
    font-weight: 400;
  }
  footer .footer__inner ul .copy__right {
    font-size: 0.75rem;
    padding-top: 1rem;
  }
  footer .footer__inner ul .copy__right.pc-view {
    display: none;
  }
  footer .footer__inner ul .link__items {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
  }
  footer .footer__inner .sns__list {
    display: flex;
    gap: 1.25rem;
  }
  footer .footer__inner .sns__list .sns__items {
    display: flex;
  }
  footer .footer__inner .sns__list .sns__items svg {
    width: 24px;
    height: 24px;
  }
  footer .footer__inner .mo-view {
    display: block;
  }
  .top__banner {
    margin-top: 60px;
    background: #FFF5EB url("https://dud37y56jdkfx.cloudfront.net/images/design--text.png") no-repeat;
    background-position: 90% 100%;
    background-size: 33%;
    height: 80px;
    padding: 0;
    box-sizing: border-box;
  }
  .top__banner .banner__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
  }
  .top__banner .banner__inner .page__title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #0A0A0A;
  }
  .section__content {
    padding: 0 1.25rem;
    box-sizing: border-box;
  }
  .popup-container {
    max-width: 335px;
  }
  .section__content {
    max-width: 100%;
    margin: 25px auto;
  }
  .section__content .article {
    margin-bottom: 20px;
  }
  .section__content .section--contain {
    text-indent: 0;
    margin-left: 5px;
    margin-bottom: 4px;
  }
  .section__content .section {
    margin-left: 10px;
    margin-bottom: 4px;
  }
  .section__content .section.single--setion {
    margin-left: 5px;
  }
  .section__content .subsection {
    margin-left: 20px;
    margin-bottom: 5px;
  }
  .section__content .detail {
    margin-left: 30px;
  }
  .section__content .detail.single__detail {
    margin-left: 20px;
  }
  .section__content .detail.single__detail01 {
    margin-left: 10px;
  }
  .section__content .detail-bullet {
    float: left;
    margin-right: 5px;
  }
  .section__content .text-indent {
    text-indent: 10;
    margin-left: 7px;
  }
  .mypage__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 0;
  }
  .mypage__inner .mypage__profile {
    padding: 0 20px;
    gap: 10px;
    align-items: center;
    margin-bottom: 44px;
  }
  .mypage__inner .mypage__profile .profile__image {
    width: 50px;
    height: 50px;
  }
  .mypage__inner .mypage__profile .profile__image img {
    width: 100%;
    height: 100%;
  }
  .mypage__inner .mypage__profile .profile__info .name {
    font-size: 24px;
  }
  .mypage__inner .mypage__profile .profile__info .link {
    font-size: 16px;
  }
  .mypage__inner .tabs {
    display: flex;
    border-bottom: 1px solid #D9D9D9;
  }
  .mypage__inner .tabs li {
    color: #797979;
    padding: 5px 20px;
    margin-left: 20px;
    width: auto;
    font-size: 14px;
  }
  .mypage__inner .tabs li:nth-child(2) {
    margin-left: 0;
  }
  .mypage__inner .tabs li.current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.125rem;
  }
  .mypage__inner .tab-content {
    display: none;
  }
  .mypage__inner .tab-content.current {
    display: inherit;
  }
  .mypage__inner #tab-1.tab-content {
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .mypage__inner #tab-2.tab-content {
    padding: 25px 20px;
    box-sizing: border-box;
  }
  .mypage__inner .mypage__inner .form-group {
    margin-bottom: 16px;
  }
  .mypage__inner .mypage__inner .form-group input {
    font-family: "Outfit", sans-serif;
  }
  .mypage__inner .mypage__inner .form-group input::-moz-placeholder {
    font-family: "Outfit", sans-serif;
  }
  .mypage__inner .mypage__inner .form-group input::placeholder {
    font-family: "Outfit", sans-serif;
  }
  .mypage__inner .booking__list .booking__items {
    background: #FFF;
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .mypage__inner .booking__list .booking__items:last-child {
    margin-bottom: 0;
  }
  .mypage__inner .booking__list .booking__items .booking__list__header {
    padding: 7px 8px;
    box-sizing: border-box;
  }
  .mypage__inner .booking__list .booking__items .booking__list__header .booking__no {
    font-size: 13px;
  }
  .mypage__inner .booking__list .booking__items .booking__list__header .booking__state {
    width: 5rem;
    padding: 2px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
  }
  .mypage__inner .booking__list .booking__items .booking__list-body {
    display: flex;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
  }
  .mypage__inner .booking__list .booking__items .booking__list-body .booking__image {
    width: 100px;
  }
  .mypage__inner .booking__list .booking__items .booking__list-body .booking__list-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mypage__inner .account__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .mypage__inner .account__content p {
    font-weight: 600;
    font-size: 1.25rem;
    color: #0A0A0A;
    margin-bottom: 2.375rem;
    text-align: center;
  }
  .mypage__inner .account__content input {
    width: 17.8125rem;
    height: 2.875rem;
    padding: 0.875rem 0.625rem;
    box-sizing: border-box;
    background: #F9F9F9;
    border: none;
    font-family: "Outfit", sans-serif;
  }
  .mypage__inner .account__content input ::-moz-placeholder {
    font-family: "Outfit", sans-serif;
    color: #797979;
  }
  .mypage__inner .account__content input ::placeholder {
    font-family: "Outfit", sans-serif;
    color: #797979;
  }
  .mypage__inner .account__content .submit-btn {
    cursor: pointer;
    width: 17.8125rem;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1rem;
    font-family: Outfit;
    background: #1E1E1E;
    margin-top: 0.625rem;
  }
  .mypage__inner .booking__no-list {
    padding-top: 70px;
  }
  .mypage__inner .booking__no-list .calendar__img {
    margin-bottom: 1.5625rem;
    display: flex;
    justify-content: center;
  }
  .mypage__inner .booking__no-list .calendar__img svg {
    width: 68px;
    height: 68px;
  }
  .mypage__inner .booking__no-list .list--text {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .mypage__inner .booking__no-list .link__journey {
    font-size: 20px;
  }
  .mypage__inner .account__edit {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  .mypage__inner .account__delete {
    margin-top: 45px;
  }
  .mypage__inner .account__delete .checkbox-group {
    justify-content: center;
  }
  .mypage__inner .account__delete .checkbox-group label {
    width: auto;
  }
  .booking__detail {
    max-width: 100%;
    padding: 0;
  }
  .booking__detail .detail__inner {
    display: flex;
    gap: 2.5rem;
    flex-direction: column;
  }
  .booking__detail .detail__inner .detail__left {
    width: 100%;
  }
  .booking__detail .detail__inner .detail__left .detail__list--items {
    padding: 30px 20px;
    border-bottom: 4px solid #ECECEC;
  }
  .booking__detail .detail__inner .detail__left .detail__list--items01 {
    padding: 30px 20px;
  }
  .booking__detail .detail__inner .detail__left .detail__list--items02 {
    padding: 30px 20px;
  }
  .booking__detail .detail__inner .detail__left .payment--method {
    padding: 30px 20px 0;
  }
  .booking__detail .detail__inner .detail__fixed {
    width: 100%;
    background: #FFF5E8;
    padding: 1.875rem 1.25rem;
    box-sizing: border-box;
    height: 500px;
    position: relative;
    top: unset;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: 1.25rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item {
    border-top: 1px solid #0A0A0A;
    border-bottom: 1px solid #797979;
    padding: 1.25rem 0 1.5rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay--detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3125rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay--detail .pay__des {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #797979;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay--detail .pay__num {
    font-weight: 600;
    color: #0A0A0A;
    font-size: 600;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc_require {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc_require .pay__des {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #797979;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.1875rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-item .pay__etc .pay__des {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #797979;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .included__des {
    color: #FF8400;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 0.1875rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay {
    padding: 0.625rem 0 1.5rem;
    border-bottom: 1px solid #797979;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail .pay__des {
    font-size: 0.9375rem;
    color: #797979;
    font-weight: 500;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail .pay__num {
    color: #0A0A0A;
    font-size: 1rem;
    font-weight: 600;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail-vat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail-vat .pay__des {
    font-size: 0.8125rem;
    color: #797979;
    font-weight: 500;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-pay .pay--detail-vat .pay__num {
    color: #0A0A0A;
    font-size: 1rem;
    font-weight: 600;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit {
    padding-top: 0.5625rem;
    margin-bottom: 2.1875rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit .pay--deposit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit .pay--deposit .pay__des {
    font-size: 1.25rem;
    color: #0A0A0A;
    font-weight: 600;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__content-deposit .pay--deposit .pay__num {
    color: #0A0A0A;
    font-size: 1.25rem;
    font-weight: 600;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total {
    padding-top: 0.5625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.1875rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0A0A0A;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .detail__total h3 span {
    font-size: 1rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .submit-btn {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1.875rem;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .terms-agree {
    color: #797979;
    font-size: 0.75rem;
    font-weight: 400;
    width: calc(100% - 30px);
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .terms-agree .link {
    font-size: 0.75rem;
    color: #0A0A0A;
    font-weight: 400;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group {
    margin-bottom: 1.5rem;
    margin-top: 0.625rem;
    display: flex;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group input[type=checkbox] {
    position: relative;
    border: 1px solid #000;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 0.375rem 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 14px;
    width: 14px;
    -webkit-appearance: none;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group input[type=checkbox]:checked {
    background-color: #0A0A0A;
    opacity: 1;
  }
  .booking__detail .detail__inner .detail__fixed .detail__fixed--inner .checkbox-group input[type=checkbox]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 3px;
    height: 7px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -0.0625rem -0.0625rem 0 -0.0625rem;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
  }
  .sub__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    margin-top: 3.75rem;
  }
	.sub__main#main_gadi {
    background: url("https://dud37y56jdkfx.cloudfront.net/images/gadi_main.jpg") no-repeat;
    background-position: center;
    background-size: cover;
	}
  .sub__main .sub__main--inner {
    height: 100%;
    max-width: 100%;
    padding: 3.125rem 1.25rem 1.25rem;
    box-sizing: border-box;
  }
  .sub__main .sub__main--inner .sub__main--text h3 {
    font-size: 1.5rem;
  }
  .sub__main .sub__main--inner .sub__main--text h1 {
    font-size: 2.625rem;
  }
  .sub__main .sub__main--inner .sub__main--text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .sub__main .sub__main--inner .sub__main--text p br {
    display: none;
  }
  .sub__main .sub__main--inner .sub__main--text p .mo-br {
    display: block;
  }
  .sub__main .sub__main--inner .set__date {
    padding: 0.625rem 0.875rem;
  }
  .sub__main .sub__main--inner .set__date p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    display: none;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown {
    width: 100%;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header {
    width: 100%;
    padding: 0 0 0.375rem;
    border-bottom: 1px solid #000;
    cursor: pointer;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .dropdown__arrow {
    transition: transform 0.3s ease;
    width: 14px;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 10;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options .dropdown__option {
    padding: 0.625rem;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__options .dropdown__option:hover {
    background-color: #f5f5f5;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown.active .dropdown__arrow {
    transform: rotate(180deg);
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown.active .dropdown__options {
    max-height: 12.5rem;
    border: 1px solid #ccc;
  }
  .infomaiton {
    padding: 1.25rem 0.9375rem;
    box-sizing: border-box;
  }
  .infomaiton .infomaiton__inner {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .infomaiton .infomaiton__inner .location_left {
    width: 100%;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #D9D9D9;
  }
  .infomaiton .infomaiton__inner .location_left h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .infomaiton .infomaiton__inner .location_left p {
    font-size: 0.875rem;
    font-weight: 400;
    gap: 0.4375rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .infomaiton .infomaiton__inner .location_left p:last-child {
    margin-bottom: 0;
  }
  .infomaiton .infomaiton__inner .location_left p svg {
    width: 12px;
  }
  .infomaiton .infomaiton__inner .location_right {
    width: 100%;
    padding: 0.625rem 0;
  }
  .infomaiton .infomaiton__inner .location_right h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .infomaiton .infomaiton__inner .location_right p {
    font-size: 0.875rem;
    gap: 0.4375rem;
    line-height: 1.5;
    margin-bottom: 0.9375rem;
    position: relative;
    padding-left: 1.5625rem;
  }
  .infomaiton .infomaiton__inner .location_right p svg {
    width: 16px;
    position: absolute;
    top: 0.625rem;
    left: 0;
  }
  .perfect__stay {
    padding: 3.125rem 1.25rem;
    box-sizing: border-box;
  }
  .perfect__stay .perfect__stay--list {
    max-width: 100%;
    margin: 0 auto;
  }
  .perfect__stay .perfect__stay--list .inner__title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
  }
  .perfect__stay .perfect__stay--list .inner__title::after {
    position: absolute;
    right: -0.6rem;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    top: 0;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap {
    margin-top: 1.5625rem;
    display: flex;
    flex-direction: column;
    gap: 4.375rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide {
    width: 100%;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide .swiper-slide .slide-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0A0A0A;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.3125rem 0.875rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--slide .swiper-slide img {
    width: 100%;
    aspect-ratio: 1.5/1;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info {
    padding: 0.75rem 1.25rem 1.25rem 0;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__title .stay__type {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__title .detail__item {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price .total {
    font-size: 0.875rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price h5 {
    font-size: 1.5rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__info__dis .stay__info__price h5 span {
    font-size: 0.875rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list {
    gap: 0.3125rem;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__list--info .stay__details--list .list-items {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .submit-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .disable__submit {
    font-size: 16px;
  }
  .perfect__stay .perfect__stay--list .stay__list-info--wrap .stay__list-info .stay__furniture-notice {
    margin-top: 0.625rem;
    font-size: 0.625rem;
  }
  .sub__banner {
    padding: 1.75rem 1.25rem;
    box-sizing: border-box;
  }
  .sub__banner .sub__banner--inner {
    max-width: 100%;
  }
  .sub__banner .sub__banner--inner h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5625rem;
    text-align: left;
    line-height: 1.5;
  }
  .sub__banner .sub__banner--inner p {
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .facilities {
    background: #FFF5E8;
    padding: 2.1875rem 1.25rem;
    box-sizing: border-box;
  }
  .facilities .facilities__inner {
    flex-direction: column;
    max-width: 100%;
    gap: 0;
  }
  .facilities .facilities__inner .facilities__left {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .facilities .facilities__inner .facilities__left .left__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .facilities .facilities__inner .facilities__left .left__title::after {
    position: absolute;
    right: -0.6rem;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    top: 0;
  }
  .facilities .facilities__inner .facilities__left p {
    font-size: 1rem;
  }
  .facilities .facilities__inner .facilities__right {
    width: 100%;
  }
  .facilities .facilities__inner .facilities__right .info__list--items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 1.25rem;
  }
  .facilities .facilities__inner .facilities__right .info__list--items .info__items {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .facilities .facilities__inner .facilities__right .info__list--items .info__items svg {
    width: 24px;
  }
  .facilities .facilities__inner .facilities__right .info__list--items .info__items p {
    font-size: 0.875rem;
  }
  .amenities {
    padding: 3.75rem 1.25rem;
    box-sizing: border-box;
  }
  .amenities .amenities__inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .amenities .amenities__inner .inner__title {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
  .amenities .amenities__inner .inner__title::after {
    position: absolute;
    right: -0.6rem;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    top: -0.5rem;
  }
  .amenities .amenities__inner .amenities__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.25rem;
  }
  .amenities .amenities__inner .amenities__list .amenities__items {
    width: 100%;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__image {
    width: 100%;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__image img {
    width: 100%;
    aspect-ratio: 1.5/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__discript {
    padding: 0.75rem;
    box-sizing: border-box;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__discript .des__title {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
  .amenities .amenities__inner .amenities__list .amenities__items .amenities__discript .des__info {
    font-size: 0.875rem;
    height: auto;
  }
  .neighborhood {
    background: #F6E8D6;
    padding: 2.8125rem 1.25rem;
    box-sizing: border-box;
  }
  .neighborhood .neighborhood__inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .neighborhood .neighborhood__inner h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-container {
    width: 100%;
    height: 200px;
    position: relative;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info {
    display: flex;
    flex-direction: column;
    padding: 0.625rem;
    box-sizing: border-box;
    align-items: flex-start;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info {
    margin-bottom: 1.25rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: Outfit;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .address-info p {
    margin: 0;
    color: #0A0A0A;
    font-size: 0.8125rem;
    font-family: Outfit;
    font-weight: 400;
  }
  .neighborhood .neighborhood__inner .neighborhood__map .map-info .map-button {
    padding: 1.25rem 3.125rem;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .neighborhood .neighborhood__inner .neighborhood__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
    width: 100%;
    margin-top: 3.125rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items {
    background: #FFF;
    padding: 1.5625rem 0.9375rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left svg {
    width: 30px;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__left .neighborhood__title {
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list {
    width: 100%;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list .location__dot {
    font-size: 1rem;
    color: #0A0A0A;
    font-weight: 600;
    margin-bottom: 0.625rem;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location__list .location__dot svg {
    width: 18px;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location_descript {
    color: #797979;
    font-weight: 400;
    font-size: 0.875rem;
    padding-left: 1.125rem;
    line-height: 1.3;
  }
  .neighborhood .neighborhood__inner .neighborhood__list .neighborhood--items .neighborhood__items__right .location_descript .location__br {
    display: none;
  }
  .faq__sub {
    padding: 3.125rem 1.25rem;
    box-sizing: border-box;
  }
  .faq__sub .inner__title {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .faq__sub .inner__title h2 {
    font-weight: 600;
    color: #0A0A0A;
    font-size: 1.5rem;
    line-height: 1.2;
    position: relative;
    text-align: center;
    display: inline-block;
  }
  .faq__sub .inner__title h2::after {
    position: absolute;
    right: -0.6rem;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF8400;
    border-radius: 50%;
    bottom: 1.5rem;
  }
  .faq__sub .accordion {
    height: auto;
    margin: 0 auto;
    border-top: 1px solid #ECECEC;
  }
  .faq__sub .accordion-item {
    padding: 0.625rem;
    margin: 0;
    overflow: hidden;
    border-bottom: 1.3px solid #d4d4d4;
  }
  .faq__sub .accordion-item .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    color: #242424;
  }
  .faq__sub .accordion-item .title svg {
    width: 16px;
    height: auto;
    color: #454545;
    transform: translateX(-50%) rotate(0);
    transition: transform 0.15s ease;
  }
  .faq__sub .accordion-item .paragraph {
    font-weight: 400;
    font-size: 0.875rem;
    color: #797979;
    display: none;
    padding: 1rem 0;
    list-style: inside;
    line-height: 1.2;
  }
  .faq__sub .accordion-item .paragraph .indent {
    text-indent: 1rem;
  }
  .faq__sub .accordion-item .paragraph span {
    font-weight: bold;
  }
  .faq__sub .accordion-item.active .title {
    color: #FF8400;
  }
  .faq__sub .accordion-item.active .title svg {
    transform: translateX(-50%) rotate(180deg);
  }
  .faq__sub .accordion-item.active .paragraph {
    display: block;
    padding: 1.25rem 0;
  }
  .faq__sub .view__more {
    margin-top: 0.9375rem;
  }
  .faq__sub .view__more a {
    font-size: 0.875rem;
  }
  .sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  .sticky-nav .set__date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .sticky-nav .set__date p {
    display: none;
  }
  .sticky-nav .set__date .custom__dropdown {
    width: 100%;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 6px;
    border-bottom: 1px solid #000;
    cursor: pointer;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__header .dropdown_left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__header svg {
    width: 24px;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__header .selected__option {
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__header .dropdown__arrow {
    transition: transform 0.3s ease;
    width: 12px;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 10;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__options .dropdown__option {
    padding: 0.625rem;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
  }
  .sticky-nav .set__date .custom__dropdown .dropdown__options .dropdown__option:hover {
    background-color: #f5f5f5;
  }
  .sticky-nav .set__date .custom__dropdown.active .dropdown__arrow {
    transform: rotate(180deg);
  }
  .sticky-nav .set__date .custom__dropdown.active .dropdown__options {
    max-height: 12.5rem;
    border: 1px solid #ccc;
  }
  .sticky-nav.visible {
    transform: translateY(0);
  }
  .sticky-nav__inner {
    padding: 20px 20px 16px;
    background: #EEE5D9;
  }
  .sticky-nav__menu {
    padding: 20px 20px;
    background: #FFF5E8;
    width: 100%;
    box-sizing: border-box;
  }
  .sticky-nav__menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .sticky-nav__menu ul li a {
    font-size: 16px;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .selected__option {
    font-size: 16px;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header svg {
    width: 24px;
  }
  .sub__main .sub__main--inner .set__date .custom__dropdown .dropdown__header .dropdown_left {
    gap: 12px;
  }
  .detail-popup {
    height: 80vh;
    background-color: #fff;
    width: 100%;
    max-width: 85%;
    position: relative;
  }
}/*# sourceMappingURL=main.css.map */
