@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;
}
.preview{
    padding: 200px 0;
    background: url('/html/images/main/roomlist_bg.jpg');
}
.preview h2{  /* 메인 각 항목 제목 */
    font-size: 50px;
    text-align: center;
    /* font-family: "El Messiri", serif; */
}
.preview h2::after{
    content:'';
    display: block;
    width: 6%;
    height: 2px;
    background-color: #6D5D52;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 50px;
}
.preview p{
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    margin-bottom: 70px;
}
.preview_text{
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    font-size: 42px;
    line-height: 59px;
    padding: 20px 26px;
    text-shadow: 1px 2px 3px #e1e1e1;
}
.preview_text span{
    display: block;
    font-size: 28px;
}
.preview .preview_arrow {
  position: absolute;
  bottom: 97px;
  right: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin: 14px 0 20px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.preview .preview_arrow img {
  transform: translateX(-16px);
  transition: 0.5s;
  width: 41px;
}
.preview .swiper-slide:hover .preview_arrow img {
  transform: translateX(19px);
}
/* 메인 룸 미리보기*/
.roomlist_main {  
  padding-top: 5%;
}

/* section04 about more 영역 시작*/

.section04 {
  display: flex;
  justify-content: space-around;
  padding: 4% 11.4%;
  gap: 8%;
  text-align: center;
  background: url('/html/images/main/section4_bg.png') no-repeat center center/cover;
}
.section04 .left {
  position: relative;
  background-color: #9E8C7F;
  color: #fff;
  padding: 4vw 4vw 1.5vw 4vw;
}
.section04 .left .imgbox {
  max-width: 450px;
  overflow: hidden;
  
}
.section04 .left img.img01 {
  display: block;
  margin-bottom: 2vw;
  max-width: 170%;
  transform: translateX(0) scale(1.06); 
  animation: moveimg_lr 10s infinite ease-in-out;

}
@keyframes moveimg_lr {
  0% { transform: translateX(0) scale(1.06);}
  50% { transform: translateX(-40%) scale(1.0);}
  100% { transform: translateX(0) scale(1.06);}
}
.section04 .left p {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section04 .left a.more_btn {
  margin: 0 auto;
  padding: 0;
  width: 165px;
  border: none;
  background-color: transparent;
}
.section04 .left a.more_btn span {
  font-size: 20px;
  line-height: 1.5;
}
.section04 .left a.more_btn .arrowbox {
  width: 25px;
  height: 25px;
  margin: 6px 0px 6px;
}
.section04 .left a.more_btn .arrowbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  transform: rotate(45deg);
}
.section04 .left a.more_btn:hover .arrowbox::before {
  transform: rotate(-135deg);
}
.section04 .left a.more_btn .arrowbox img {
  /* transform: translateX(0); */
  width: 28px;
  max-width: 28px;
}
.section04 .left a.more_btn:hover img {
  transform:  translateX(12px);
}

.section04 .right {
  width: 50%;
  padding: 4.5%;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070
}
.section04 .right h2 {
  font-size: 60px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
  color: #6D5D52;
}
.section04 .right p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 50px;
}
@media(max-width:1500px){
  .section04 .right p {
    word-break: keep-all;
  }
  .section04 .right p br {
    display: none;
  }
}
@media( max-width:1200px){
  .section04 {
    flex-direction: column;
    align-items: center;
    padding: 4%;
    text-align: left;
    background: url('/html/images/main/m/section4_bg.png') no-repeat center center/cover;
  }
  .section04 .left {
    width: 100%;
  }
  .section04 .left .imgbox {
    max-width: 73%;
  }
  .section04 .left img.img01 {
    /* width: 73%; */
    aspect-ratio: 2.3;
  }
  .section04 .left p {
    position: absolute;
    top: 4vw;
    right: 4vw;
    writing-mode: vertical-lr;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
  }
  .section04 .left a.more_btn {
    margin: 0;
    width: 165px;
    padding: 0;
  }
  .section04 .left a.more_btn .arrowbox img {
    animation: move_lr 3s infinite;
  }
  @keyframes move_lr {
    0% {
      transform: translateX(-8px);
    }
    30% {
      transform: translateX(12px);
    }
    100% {
      transform: translateX(-8px);
    }
  }
  .section04 .right {
    width: 100%;
    margin: 35px 0;
    padding: 4.5% 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070
  }
  .section04 .right h2 {
    font-size: 33px;
  }
  .section04 .right p {
    font-size: 15px;
  }
  .section04 .right .img2_box {
    text-align: right;
  }
  .section04 .right .img2_box img {
    max-width: 80%;
  }
}
@media(max-width:500px){
  .section04 {
    gap: 0;
  }
  .section04 .left p {
    font-size: 14px;
  }
  .section04 .left a.more_btn {
    margin: 0;
    width: 135px;
    padding: 0;
  }
  .section04 .left a.more_btn span {
    font-size: 16px;
  }
  .section04 .right h2 {
    font-size: 25px;
  }
  .section04 .right p {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
/* section04 about more 영역 끝 */


/* 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%;
  }
}