/* ---------- common ---------- */
#header .gnb nav > ul > li ul {
  display: none;
}

.text.center * {
  text-align: center;
}

.text.white * {
  color: #fff;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* ---------- common end ---------- */

/* ---------- effect ---------- */
@keyframes image-zoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.image.zoom {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.image.zoom .bg {
  animation: image-zoom 6s ease-in-out infinite alternate;
  position: relative;
  height: inherit;
  background: center center / cover no-repeat;
}

.image.zoom .bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

@keyframes mouse-scroll {
  0% {
    margin-bottom: 0;
  }

  100% {
    margin-bottom: 10px;
  }
}

.mouse-scroll {
  position: relative;
}

.mouse-scroll::before {
  content: "";
  position: absolute;
  background: url("/assets/images/icon_scroll.png") no-repeat center center /
    contain;
  display: block;
  width: 40px;
  height: 90px;
  color: #fff;
  left: 50%;
  bottom: 5vh;
  transform: translateX(-50%);
  animation: mouse-scroll 0.8s linear 0s infinite alternate;
  margin-bottom: 10px;
  z-index: 2;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .mouse-scroll::before {
    bottom: 3vh;
    width: 30px;
  }
}

/* ---------- effect end ---------- */

/* ---------- video ---------- */
.video-box {
  position: relative;
  width: 100%;
  height: 100vh;
}

.video-bg {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  height: 100vh;
}

.video-bg-area {
  position: relative;
  width: 100%;
  height: inherit;
  overflow: hidden;
}

.video-box iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
}

.video-box > .video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.video-box > .video-content > div {
  max-width: var(--container-width);
  margin: 0 auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
  .video-bg {
    padding-bottom: 100vh;
    width: 400%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  .video-bg {
    padding-bottom: 100vh;
    width: 400%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .video-bg {
    padding-bottom: 100vh;
    width: 500%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ---------- video end ---------- */

/* ---------- room info ---------- */
.room-info {
  border-top: 1px solid var(--color-text);
  padding-top: 50px;
}

.room-info ul.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 20px 70px;
}

.room-info ul.info li {
  font-weight: 500;
}

.room-info ul.info li::before {
  content: attr(data-title);
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.room-info .detail-box {
  background-color: #f9f9f9;
  padding: 60px 50px 70px 50px;
  margin-bottom: 50px;
}

.room-info .detail-box .item {
  margin-bottom: 50px;
}

.room-info .detail-box .item:last-child {
  margin-bottom: 0;
}

.room-info .detail-box .item h5 {
  line-height: 1;
  margin-bottom: 20px;
}

.room-info .detail-box .item p {
  font-size: 15px;
  color: var(--color-mute);
  line-height: 1.8;
  word-break: keep-all;
}

.room-info button {
  margin: 0 auto;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .room-info {
    margin-top: 40px;
    padding-top: 30px;
  }

  .room-info ul.info {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .room-info ul.info li {
    font-weight: 400;
    margin-bottom: 25px;
  }

  .room-info ul.info li::before {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .room-info .detail-box {
    padding: 30px;
  }

  .room-info .detail-box .item p {
    font-size: 14px;
  }
}

/* ---------- room info end ---------- */

/* ---------- slider ---------- */
.slider .slider-contents {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 객실 슬라이드 */
#roomSlider.slider.room .slider-contents {
  max-height: 750px;
}

#roomSlider .slider-contents .bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
}

/* ---------- slider end ---------- */

.background-with-filter {
  position: relative;
}

.background-with-filter::before {
  content: "";
  /* 가상 요소를 만들기 위해 content 속성을 사용합니다. */
  position: absolute;
  /* 부모 요소에 대해 절대적 위치를 설정합니다. */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 검정색 불투명 필터를 적용합니다. RGBA 색상을 사용하여 불투명도를 조절할 수 있습니다. */
}

.over-bg {
  position: relative;
}

.over-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: var(--over-opacity);
}

.scroll-event[data-scroll="reveal-center"] {
  animation: reveal-center 0.8s ease-in-out forwards;
  opacity: 0;
}

@keyframes reveal-center {
  0% {
    opacity: 0;
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.scroll-event[data-scroll="reveal-left"] {
  animation: reveal-left 0.8s ease-in-out forwards;
  opacity: 0;
}

@keyframes reveal-left {
  0% {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.scroll-event[data-scroll="reveal-right"] {
  animation: reveal-right 0.8s ease-in-out forwards;
  opacity: 0;
}

@keyframes reveal-right {
  0% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  100% {
    opacity: 1;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }
}
