@charset "utf-8";
/* 기본설정 */
/* @import "default.css"; */
* {
  box-sizing: border-box;
}
.mo {display: none !important;}
.contents {
  position: relative;
  z-index: 1;
}
.mainslide{
    height: 100%;
    position: relative;
}
.mainslide img{
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
}

/* 인트로 */
.intro_wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 1;
    animation: intro_wrap 6s forwards;
    animation-delay: 0.5s;
    background: #000;
}
.intro_wrap .intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.intro_wrap .intro .video_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro_wrap .intro_m {
    display: none;
}
/* .intro_wrap .intro_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: intro_logo 3.5s forwards;
}
.intro_wrap .intro_logo .logo {
    position: static;
    height: auto;
    left: auto;
    top: auto;
    z-index: 20;
}
.intro_wrap .intro_logo .text {
    width: 40px;
    margin: 15px auto 0 auto;
} */
.intro_wrap .intro img{
    height: auto !important;
}

@keyframes intro_wrap {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; display: none; }
}
@keyframes intro {
    0% { width: 900px; }
    40% { width: 900px; }
    100% { width: 80%; display: none;}
}
@keyframes intro_logo {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
        transform-origin: center;
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
        transform-origin: center;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7) rotate(90deg);
        transform-origin: center;
    }
}
@media( max-width:768px) {
    .intro_wrap {
        top: 0;
        height: calc(100vh);
        background-color: #fdf4d9;
        animation-delay: 1s;
    }
    .intro_wrap .intro {
        height: calc(100vh);
    } 
    .intro_wrap .intro_m {
        display: block;
    }
    .intro_wrap .intro_pc {
        display: none;
    }
    .intro_wrap .intro_logo {
        width: 200px;
        top: 46%;
        left: 48%;
        transform: translate(-50%, -50%);
        animation: intro_logo 4s forwards;
    }
    .intro_wrap .intro_logo img {
        width: 200px;
    }
    @keyframes intro {
        0% { width: 100% }
        30% { width: 100% }
        100% { width: 120%; display: none;}
    }
    @keyframes intro_logo {
        0% { opacity: 1; transform: translate(-50%, -50%) scale(0);}
        40% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        60% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5);}
    }
}



/* section 01 */
.section01 { 
  position: relative;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  max-width: 1840px;
  margin: 0 auto;
  padding-bottom: 7%;
  padding-top: 6%;
}
.section01 .left {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.section01 .left img {
  display: block;
  width: 89%;
  max-width: 849px;
}
/* .section01 .left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(249,244,239,1) 0%, rgba(249,244,239,0.9) 8%, rgba(249,244,239,0) 30%);
} */
.section01 .right { 
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 800px;
  margin-left: 4%;
  padding-top: 9%;
}
.section01 .right .text {
  
}
.section01 .right h2 { 
  margin-bottom: 40px;
  max-width: 400px;
  font-size: 3.4vw;
  line-height: 1.2;
  color: #BCC9BF;
  letter-spacing: 6.5px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
}
.section01 .right h2::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #BCC9BF;
    opacity: 0.7;
    transition: all 1.5s ease-in-out;
}
.section01 .right h2.active::after {
    width: 72%;
}
.section01 .right h2 span {
  font-weight: 600;
}
.section01 .right p {
  margin-bottom: 8%;
  font-size: 0.8vw;
  line-height: 2.5;
  letter-spacing: 0;
  color: #FFFFFF;
}
.section01 .right .btn-box {
  position: absolute;
  right: 17%;
  bottom: -22%;
}
.section01 .right img {
  width: 87%;
  max-width: 707px;
}

@media (max-width:1400px){
  .section01 .right p { font-size: 1vw;}
  
}
@media (max-width:768px){
  .section01 { 
    flex-wrap: wrap;
    padding-top: 23%;
  }
  .section01 .left {
    width: 98%;
    justify-content: flex-start;
  }
  .section01 .right { 
    width: 100%;
    margin-left: 10%;
  }
  .section01 .right_img {
    display: flex;
    justify-content: flex-end;
  }
  .section01 .right h2 { 
    font-size: 9vw;
    margin-bottom: 15px;
  }
  .section01 .right p { font-size: 2.5vw;}

}
@media (max-width:500px){
}
@media (max-width:420px){
  .section01 .center { top: 4%;}
  .section01 .center .btn-box { bottom: -15%;}
  .room-view-btn { font-size: 13px;} 
}
@media (max-width:359px){
  .section01 .center h2 { font-size: 23px;}
  .section01 .center p { font-size: 12px;}
}
/* 메인 룸 미리보기*/
.roomlist_main {  
  padding-top: 5%;
}

/* section04 */
.section04 {
  margin: 0 auto;
  max-width: 1750px;
  padding: 5vw 3%;
  color: #fff;
}
.section04 .content { 
  display: flex;
  justify-content: space-between;
}
.section04 .cont-left { /* 긴 이미지 전체 박스 */
  width: 34%;
  position: relative;
}
.section04 .cont-right { /* 작은 이미지 4개 전체 박스 */
  width: 62%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}
.section04 .cont-left .text {
  position: absolute;
  bottom: 2.8vw;
  left: 2.3vw;
}
.section04 .cont-left .text h3 {
  font-size: 3vw;
  letter-spacing: 3px;
  line-height: 1.6;
}
.section04 .cont-left .text p {
  font-size: 0.9vw;
  line-height: 1.8;
}
.section04 .cont-right .box .img-box { 
  display: block;
  position: relative;
}
.section04 .cont-right p {
  font-size: 0.9vw;
  font-weight: 700;
}
.section04 .cont-right h4 {
  font-size: 1vw;
  line-height: 1.3;
  font-family: 'gowun', serif;
  letter-spacing: 0;
}
.section04 .cont-right .box:hover h4 {
  text-decoration: underline;
}
.cont-left:hover .btn-box, .cont-right .box .img-box:hover .btn-box { 
  opacity: 1;
}
@media(max-width:768px){
  .section04 { padding: 5vw 5%; }
  .section04 .content { display: block;}
  .section04 .cont-left { /* 긴 이미지 전체 박스 */
    width: 100%;
    margin-bottom: 35px;
  }
  .section04 .cont-right { /* 작은 이미지 4개 전체 박스 */
    width: 100%;
    display: block;
  }
  .section04 .cont-left .text {
    bottom: 5.8vw;
    left: 6.3vw;
  }
  .section04 .cont-left .text h3 {
    font-size: 8vw;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .section04 .cont-left .text p {
    font-size: 2.7vw;
    line-height: 2;
  }
  .section04 .cont-right .box {
    margin-bottom: 40px;
    width: 82%;
  }
  .section04 .cont-right .box:nth-of-type(2n) { margin-left: auto;} /*짝수번째 박스 우측정렬*/
  .section04 .cont-right p {
    font-size: 3.3vw;
  }
  .section04 .cont-right h4 {
    font-size: 4.2vw;
    text-decoration: underline;
  }
}

/* indiaround adria 배경픽스 영역 */

.banner{
    position: relative;
    z-index: -2;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/html/images/main/img04.jpg');
    width: 100%;
    height: 770px;
    background-attachment: fixed;
}
.banner img{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner h3{
    width: 100%;
    color: #fff;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.banner h3 b {
  display: block;
  font-size: 60px;
  line-height: 2em;
  font-family: 'nelp', 'serif';
  font-weight: 400;
}
.banner h3 span{
  font-size: 18px;
  font-family: 'gowun', 'serif';
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.imgcover{
  border: 1px solid #6D5D52;
  padding: 6px;
  box-sizing: border-box;
}
.imgcover img{
  /* border-bottom: 1px solid #000; */
  width: 100%;
}
/* .mainslide span{
    font-size: 18px;
    color: #fff;
    margin-bottom: 5%;
    display: block;
    font-family: 'light';
    letter-spacing: 3px;
}
.mainslide h2{
    font-size: 45px;
    color: #fff;
    font-family: "Cinzel Decorative", serif;
    letter-spacing: 7.5px;
}
.mainslide .textbox{
    text-align: center;
    position: absolute;
    transform: translate(-50%,-50%);
    z-index: 9998;
    top: 45%;
    left: 50%;
} */
.preview-m{
    display: none;
}
.roomlist{
  display: flex;
  justify-content: center;
  gap: 5%;
}

/* 롤링 텍스트 */
.moving_text_wrap {
  width: 100%;
  overflow: hidden;
}
.moving_text {
  font-family: 'nelp', 'serif';
  font-size: 119px;
  line-height: 2.7em;
  letter-spacing: 0.13em;
  font-weight: 400;
  color:#6D5D52;
  white-space: nowrap;
  animation: move_text 44s linear infinite;
}
@keyframes move_text {
  0% {
    transform: translateX(50%);
  }
  100% {
      transform: translateX(-130%);
  }
}




/* 메인 - 스페셜 미리보기*/
.special-section {
  position: relative;
  display: flex;
  padding: 0;
  height: 100vh;
  flex-wrap: wrap;
}
.special-title { /* 좌측 문구 영역 wrap */
  position: relative;
  width: 30%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('/html/images/main/spe_bg.jpg') no-repeat center center/cover;
  color: #fff;
}
.special-title h2 {
  font-size: 60px;
  margin: 140px 0 100px; 
  text-align: center;
  color: #fff;
}

.special-title ul {
  list-style: none;
  margin: 0 auto;
  width: max-content;
  font-size: 17px;
  line-height: 2.2;
}
.special-title ul li {
  margin-bottom: 40px;
}
.special-content { /* 우측 이미지 영역 wrap */
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12%;
  background-color: #6D5D52;
}

.special-item {
  width: 35%;
  text-align: center;
  margin-top: 6%;
}
.special-item.bbq {
  margin-top: 14%;
}
.special-item .imgbox {
  overflow: hidden;
  max-width: 400px;
  margin: 0 6%;
}
.special-item .imgbox img {
  width: 100%;
  height: auto;
  max-width: 400px;
  transition: all 0.8s ease-in-out;
  transform: scale(1.15);
}
.special-item .imgbox img:hover {
  transform: scale(1.03);
}

.special-item h3 {
  font-size: 35px;
  line-height: 2em;
  margin: 10px 0 5px;
  color: #fff;
}

.special-item p {
  font-size: 17px;
  line-height: 2em;
  margin-bottom: 25px;
  color: #fff;
}

.special-item a.more_btn {
  margin: 0 auto;
  padding: 0;
  width: 150px;
  border: none;
  background-color: transparent;
}
.special-item a.more_btn span {
  font-size: 20px;
  line-height: 1.5;
}
.special-item a.more_btn .arrowbox {
  width: 25px;
  height: 25px;
  margin: 6px 0px 6px;
}
.special-item a.more_btn .arrowbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  transform: rotate(45deg);
  /* transition: all 0.2s linear; */
}
.special-item a.more_btn:hover .arrowbox::before {
  transform: rotate(-135deg);
}
.special-item a.more_btn .arrowbox img {
  /* transform: translateX(0); */
  width: 28px;
  max-width: 28px;
}
.special-item a.more_btn:hover img {
  transform:  translateX(12px);
}



@media(max-width:768px){
  .mo {display: block !important;}
  .pc {display: none !important;}
  
  .main2 .text .textposition1, .main2 .text .textposition2 {
    font-size: 14px;
  }

  .preview .preview_arrow {
    bottom: 23px;
    right: 17px;
  }
  .preview .preview_arrow img {
    height: auto;
  }
  .preview .swiper-slide:hover .preview_arrow img {
    transform: none;
  }
  .banner{
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/html/images/main/m/img04.jpg');
      width: 100%;
      height: 100%;
      min-height: 300px;
      background-attachment: fixed;
  }
  .banner h3 b{
    font-size: 36px;
    line-height: 2.5em;
  }
  .banner h3 span{
    font-size: 15px;
  }
  .banner img{
    height: auto;
  } 
  /*롤링 텍스트 */
  .moving_text {
    font-size: 40px;
    animation: move_text 20s linear infinite;
  }


  /*메인 스페셜 미리보기 */
  .special-section {
    height: 85vh;
  }
  .special-title { /* 좌측 문구 영역 wrap - 모바일에서는 뒤에 깔림 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .special-title h2 {
    padding-left: 9%;
    font-size: 24px;
    margin: 30px 0 100px; 
    text-align: left;
  }
  .special-title ul {
    opacity: 0;
  }
  .special-content { /* 우측 이미지 영역 wrap */
    position: absolute;
    bottom: 30px;
    left: 25%;
    z-index: 1;
    width: 50%;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  .special-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5%;
    text-align: center;
    margin-top: 0;
    display: none;
  }
  .special-item.active {
    display: block;
    animation: fadein 0.7s ease;
  }
  .special-item.pool, .special-item.bbq {
    margin-top: 14%;
  } 

  @keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  /* .special-item.pool {
    opacity: 1;
    animation: opacity 7s ease infinite;
    pointer-events: auto;
  }
  .special-item.bbq {
    opacity: 0;
    margin-top: 0;
    animation: opacity-r 7s ease infinite;
    pointer-events: none;
  }
  @keyframes opacity {
    0%, 35% { opacity: 1;}
    50%, 85% { opacity: 0;}
    100% { opacity: 1;}
  }
  @keyframes opacity-r {
    0%, 35% { opacity: 0;}
    50%, 85% { opacity: 1;}
    100% { opacity: 0;}
  } */
  .special-item img {
    max-width: 100%;
  }
  .special-item h3 {
    font-size: 20px;
    line-height: 2em;
    margin: 10px 0 5px;
    color: #fff;
  }
  .special-item p {
    font-size: 12px;
    line-height: 2em;
    margin-bottom: 25px;
    color: #fff;
  }
  .special-item a.more_btn {
    width: 115px;
  }
  .special-item a.more_btn span {
    font-size: 14px;
  }
}

@media(max-width:500px){
  .roomlist{
  flex-direction: column;
  }
  .imgcover{
    
    width: 90%;
    margin: 0 auto;
    margin-bottom: 10%;
    padding: 4px;
  }
  .imgcover img{
    width: 100%;
  }
    .mainslide{
        height: auto;
    }
    .main2 .text{
        line-height: 17px;
        font-size: 11px;
      }
      .main2 .text h3{
        font-size: 20px;
        margin-bottom: 8%;
      }
      .main2 .text .textposition1, .main2 .text .textposition2{
        font-size: 11px;
        line-height: 20px;
      }
      .main2{
        height: 65%;
      }
      .main2 .flex{
        height: 50%;
      } 
      .main2 img{
        height: 100%;
      }
      /* .mainslide h2{
        font-size: 20px;
      }
      .mainslide span{
        font-size: 10px;
      }
      .mainslide .textbox{
        top: 47%;
      } */
      .preview h2::after{
        width: 18%;
        margin-top: 7%;
        margin-bottom: 5%;
      }
      .preview h2{
        font-size: 35px;
      }
      .preview p{
        font-size: 14px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 7%;
        line-height: 25px;
        word-break: keep-all;
      }
      .preview_text {
        font-size: 35px;
        line-height: 40px;
      }
      .preview_text span {
        font-size: 25px;
      }
      .preview{
        padding: 120px 0;
      }
      .banner img{
        height: 65% !important;
      }
      .banner h3 b{
        font-size: 25px;
      }
      .banner h3 span {
        font-size: 11px;
      }
      .banner{
        /* margin-bottom: 15%; */
      }
      #banner2{
        height: 275px;
        /* margin-bottom: 20%; */
      }
      #banner2 img{
        height: 100% !important;
      }
      .special-content {
        bottom: 30px;
        left: 9%;
        width: 82%;
        height: 84%;
      }
        
}
@media (max-width:400px){
  /*메인 스페셜 미리보기 */
  .special-section {
    height: 80vh;
  }
  .special-content {
    height: 82%;
  }
}
@media (max-width:370px){
  .main_reserve .textarea h2 {
    font-size: 30px;
  }
  .special-content {
    height: 77%;
  }
}

