
body {
    background: url("/images/common/main_bg.jpg") repeat center;
	overflow-x: hidden;
    font-family: 'S-CoreDream-3Light', 'Comfortaa', cursive !important;
    width: 100%;
    color: 181818;
    overflow-x: hidden;
}

.pc {
    display: block;
}
.pc_inline {
    display: inline;
}
.mo {
    display: none;
}
.pc_blind {
    display: block;
}
.mo_blind {
    display: none;
}
img {
    display: block;
    width: 100%;
}

/* 로딩화면 */

body.no-scroll { /*인트로 활성화일때 메인 바디 스크롤 금지용 */
    overflow: hidden; /* 스크롤 비활성화 */
    height: 100%; /* 모바일 환경에서 스크롤 차단 */
}
.loading {
    /* display: none; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80000;
    font-family: 'Yeseva One', cursive;
    text-align: center;
    
}
.loading-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/images/common/loading_bg01.jpg") no-repeat center;
    background-size: cover;
    z-index: -1; /* 배경이 뒤로 가도록 설정 */
}
.loading-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* 투명한 흰색 배경 */
}
.loading.exit {
    display: none;
}
.loading svg {
    display: inline-block;
}
.loading .main svg {
    width: 600px;
    height: 160px;
}
.loading .main svg text {
    fill:transparent;
    font-size: 32px;
    stroke-dasharray: 326px;
    animation: stroke 1s linear;
    animation-fill-mode: forwards;
    animation: none; /* 애니메이션 없음 */
}
.loading.animate .main svg text {
    animation: stroke 1s linear;
    animation-fill-mode: forwards;
}
.loading .main svg text:nth-child(1) {animation-delay: 0.5s; }
.loading .main svg text:nth-child(2) { animation-delay: 0.5s; }
.loading .main svg text:nth-child(3) { animation-delay: 0.75s; }
.loading .main svg text:nth-child(4) { animation-delay: 1.0s; }
.loading .main svg text:nth-child(5) { animation-delay: 1.25s; }
.loading .main svg text:nth-child(6) { animation-delay: 1.5s; }
.loading .main svg text:nth-child(7) { animation-delay: 1.75s; }
.loading .main svg text:nth-child(8) { animation-delay: 2.0s; }
.loading .main svg text:nth-child(9) { animation-delay: 2.25s; }
.loading .main svg text:nth-child(10) { animation-delay: 2.5s;}
.loading .main svg text:nth-child(11) { animation-delay: 2.75s;}
.loading .main svg text:nth-child(12) { animation-delay: 3.0s;}
.loading .main svg text:nth-child(13) { animation-delay: 3.25s;}
.loading .main svg text:nth-child(14) { animation-delay: 3.5s;}

.loading .sub {
    margin-top: -14px;
}
.loading .sub svg {
    width: 380px;
    height: 48px;
}
.loading .sub svg text {
    fill:transparent;
    font-size: 14px;
    animation: stroke2 1s linear;
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
    font-family: 'GowunBatang-Regular';
    font-weight: bold;
    animation: none; /* 애니메이션 없음 */
}
.loading.animate .sub svg text {
    animation: stroke2 1s linear;
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
}


.loading .wave {
    position: relative;
    display: inline-block;
    margin: 20px auto 0 auto;
    font-family: 'GowunBatang-Regular';
    font-size: 1.3em;
    font-weight: 700;
    white-space: nowrap;
    animation: stroke2 1s linear;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}

.loading .wave > div::before,
.loading .wave > div::after {
    background-color: #181818;
}

.loading .wave > div > div {
    position: relative;
    display: block;
    padding: 5px 30px;
    border: 1px solid #949494;
    border-radius: 25px;
    transition: 0.5s;
}
.loading .wave > div > div::after {
    background-color: #181818;
}
.wave.move_homepage span {
    visibility: hidden; /* 초기 숨김 */
}


@keyframes stroke {
    0% {
        stroke:#181818;
        fill: transparent;
        stroke-width: 1px;
        stroke-dashoffset: 326px;
    }
    20% {
        stroke:#181818;
        fill: transparent;
        stroke-width: 1px;
    }
    98% {
        fill: #181818;
        stroke:#181818;
    }
    100% {
        fill: #181818;
        stroke:#181818;
        stroke-width: 1px;
        stroke-dashoffset: 0px;
    }
}
@keyframes stroke2 {
    0% {
        fill: transparent;
    }
    25% {
        fill: transparent;
    }
    75% {
        fill: #181818;
    }
    100% {
        fill: #181818;
    }
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* 로딩화면 end */

.content {
    width:100%;
    overflow: hidden;
}

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    width: 100%;
}
.header.fixed {
    background-color: rgba(240,241,243,0.8);
}

.header > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 80%;
    height: 80px;
    margin: 0 auto;
}
.header > div .temp_box {
    display: flex;
    gap: 30px;
}
.header .logo a {
    display: block;
    width: 120px;
    padding: 10px 0;
}
.header .logo a img {
    display: block;
    width: 100%;
}
.header .gnb > ul::after {
    content: "";
    display: block;
    clear: both;
}
.header .gnb > ul > li {
    position: relative;
    float: left;
}
.header .gnb > ul > li:hover .dropmenu {
    display: block;
}

.header .gnb > ul > li > h2 a {
    position: relative;
    display: block;
    height: 40px;
    padding: 10px 45px;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: 700;
}
.header .gnb > ul > li > h2 a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-39%);
    width: 18px;
    height: 18px;
    background: url("/images/common/btn_down.png") no-repeat center;
    background-size: cover;
}


.header .gnb > ul > li .dropmenu {
    display: none;
    position: absolute;
    z-index: 10;
    top: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 150px;
    width: max-content; 
    padding: 10px 20px;
    box-sizing: border-box;
    font-size: 1.1em;
    font-weight: 700;
    text-align: center;
    background-color: rgba(255,255,255,0.7);
}
.header .gnb > ul > li .dropmenu li a {
    display: block;
    padding: 5px 0;
    color: #444;
}
.header .gnb > ul > li .dropmenu li:hover a {
    color: #000;
}
.header .gnb > ul > li .dropmenu li a span {
    display: block;
    margin-top: -3px;
    font-size: 0.8em;
}

.header .box .burgur {
    position: relative;
    display: none;
    width: 24px;
    height: 40px;
    padding: 10px 0;
    box-sizing: border-box;
    cursor: pointer;
}

.header .box .burgur span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 5px;
    overflow: hidden;
    color:transparent;
    background-color: #7d7d7d;
    transition: 0.5s;
}
.header .box .burgur span {
    position: absolute;
}
.header .box .burgur span:nth-child(1) {top: calc(50% - 7px); transform: translate(0, -50%);}
.header .box .burgur span:nth-child(2) {top: calc(50%); transform: translate(0, -50%);}
.header .box .burgur span:nth-child(3) {top: calc(50% + 7px); transform: translate(0, -50%);}

.header .box .burgur.move span:nth-child(1) {top: 50%; transform: translate(0, -50%) rotate(45deg);}
.header .box .burgur.move span:nth-child(2) {opacity: 0;}
.header .box .burgur.move span:nth-child(3) {top: 50%; transform: translate(0, -50%) rotate(-45deg);}

.header .reser a {
    display: block;
    position: relative;
    height: 40px;
    padding: 10px 0 10px 30px;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: 700;
}
.header .reser a i {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-40%);
    width: 24px;
    height: 24px;
}

/* 헤더 end */
/* 사이드메뉴 */
.sidemenu {
    overflow-y: scroll;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #f0f1f3;
    z-index: 101;
}
.sidemenu > div {
    height: 100%;
    padding: 85px 0;
    box-sizing: border-box;
}
.sidemenu > div > ul {
    transform: translate(0, 100%);
    transition: 1s;
    opacity: 0;
}
.sidemenu > div > ul.on {
    transform: translate(0, 0);
    transition: 1s;
    opacity: 1;
}
.sidemenu > div > ul > li {
    margin-bottom: 30px;
}

.sidemenu .item h2 {
    position: relative;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 2em;
}
.sidemenu .item h2::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 8%;
    height: 2px;
    background-color: #bbb0a3;
}
.sidemenu .item .dropmenu {
    margin: 20px 0;
}
.sidemenu .item .dropmenu li {
    line-height: 30px;
    font-size: 0.9em;
}
.sidemenu .item .dropmenu li a {
    font-size: 1.3em;
    color: #444;
}
.sidemenu .item .dropmenu li:nth-child(1) > a {
    letter-spacing: -1px;
}
.sidemenu .item .dropmenu li a span {
    display: inline-block;
    margin-left: 3px;
    font-size: 0.9em;
}



/* 사이드메뉴 end*/
/* 메인컨텐트 */
.content {
    margin-top: 80px;
}
/* visual */
.visual {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}

.visual .main {
    position: relative;
    /* margin: 0 100px; */
}
.visual .main .visual_swiper {
    /* height: 200px; */
}
.visual .main .visual_swiper .swiper-slide {
    cursor: grab;
}
.visual .main .visual_swiper .swiper-slide:active  {
    cursor: grabbing;
}
.visual .main .button {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 11;
    font-size: 1.2em;
    font-weight: 700;
}
.visual .main .button li::after {
    content: "";
    display: block;
    clear: both;
}

.visual .main .button li {
    display: flex;
    height: 55px;
    align-items: center;
    float: left;
    background-color: #dbd5ca;
}
.visual .main .button .current {
    margin-right: 2.5px;
    padding: 0 10px;
    font-size: 0.9em;
    font-weight: 700;
    color: #808080;
}
.visual .main .visual_swiper .button .current .swiper-pagination-current {
    color: #fff;
}

.visual .main .visual_swiper .button .current .swiper-pagination-current::before,
.visual .main .visual_swiper .button .current .swiper-pagination-total::before {
    content: "0";
    display: inline;
}

.visual .main .button .move {
    position: relative;
    width: 55px;
    box-sizing: border-box;
    justify-content: center;
}
.visual .main .button .move > div {
    display: inline-block;
    cursor: pointer;
}
.visual .main .button .move .visual_prev {
    margin-right: 8px;
}
.visual .main .button .move .visual_next {
    position: relative;
    margin-left: 8px;
}
.visual .main .button .move .visual_next::before {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -9px;
    width: 2px;
    height: 14px;
    background: #808080;
}
.visual .main .button .move > div i {
    display: block;
    width: 14px;
}
.visual .main .scroll {
    position: absolute;
    bottom: 220px;
    left: -180px;
    transform: rotate(90deg);
    font-size: 1em;
    font-weight: 700;
    z-index: 20;
}
.visual .main .scroll h3,
.visual .main .scroll .swiper-scrollbar {
    display: inline-block;
}

.visual .main .scroll .swiper-scrollbar {
    opacity: 1 !important;
    width: 200px;
    height: 3px;
    margin-left: 65px;
}
/* visual end */

/* about */
.about {
    position: relative;
}
.about::before,
.about::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 390px;
    height: 390px;
    background-color: #d9d9d9;
    border-radius: 100%;
    opacity: 0.2;
    z-index: -1;
}
.about::before {
    left: -250px;
}
.about::after {
    right: -250px;
}

.about .about_title {
    text-align: center;
    padding-bottom: 40px;
}
.about .about_title .line {
    display: block;
    width: 1px;
    height: 58px;
    margin: 0 auto;
    background-color: #c9bdaf;
}
.about .about_title .txt {
    margin: 40px auto;
    color: #333;
    overflow: hidden;
}
.about .about_title .txt strong {
    display: block;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.8em;
}
.about .about_title .txt p {
    margin-top: 10px;
    font-size: 1.2em;
}
.about .about_cont {
    position: relative;
    padding: 100px 0;
}
.about .about_cont.add_padding {
    padding-top: 150px;
}
.about .about_cont::before,
.about .about_cont::after {
    display: block;
    content: "";
    width: 80%;
    height: 1px;
    background-color: #c9bdaf;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
.about .about_cont::before {
    top: 0;
}
.about .about_cont::after {
    bottom: 0;
}
.about .about_cont > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .about_cont > ul li:nth-child(1),
.about .about_cont > ul li:nth-child(3) {
    flex: 0.35;
    overflow: hidden;
}
.about .about_cont > ul li:nth-child(1) img,
.about .about_cont > ul li:nth-child(3) img {
    transition: 1s;
}
.about .about_cont > ul li:nth-child(1):hover img,
.about .about_cont > ul li:nth-child(3):hover img {
    transform: scale(1.1);
}
.about .about_cont > ul li:nth-child(2) {
    flex: 0.4;
    padding: 40px;
    box-sizing: border-box;
}
.about .about_cont > ul li.about_txt {
    margin-top: 20px;
    text-align: center;
}
.about .about_cont > ul li.about_txt .icon {
    display: block;
    width: 55px;
    margin: 0 auto;
}
.about .about_cont > ul li.about_txt .title {
    margin-top: 15px;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 2.8em;
    color: #493425;
}
.about .about_cont > ul li.about_txt p {
    margin: 40px 0 45px 0;
    font-size: 1.2em;
    line-height: 28px;
    color: #333;
}
/* about end */

/* room_pre */
.room_pre {
    position: relative;
    margin: 180px auto;
}
.room_pre::before {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 180px;
    background: url("/images/main/room_bg01.png") no-repeat center;
    background-size: cover;
    z-index: -1;
}
.room_pre > h2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    font-family: 'Playfair Display', serif;
    font-size: 20.5em;
    line-height: 160px;
    text-align: left;
    color: #d9d7d9;
}
.room_pre .room_pre_cont {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 80%;
    height: 790px;
    margin: 0 auto;
}
.room_pre .room_pre_cont > .roompre_main {
    width: 58%;
    padding: 0 165px 0 130px;
    box-sizing: border-box;
}
.room_pre .room_pre_cont > .roompre_main .icon {
    display: block;
    width: 55px;
}
.room_pre .room_pre_cont > .roompre_main .title {
    margin-top: 30px;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 2.8em;
    line-height: 50px;
}
.room_pre .room_pre_cont > .roompre_main .roompre_txt > ul > li {
    /* background-color: #f0f1f3; */
}
.room_pre .room_pre_cont > .roompre_main .roompre_txt > ul > li.swiper-slide-active .room_name {
    animation: show 0.5s linear 0s 1 forwards;
}
.room_pre .room_pre_cont > .roompre_main .roompre_txt > ul > li.swiper-slide-active .room_txt {
    animation: show 0.5s linear 0.2s 1 forwards;
}
.room_pre .room_pre_cont > .roompre_main .roompre_txt > ul > li.swiper-slide-active .button {
    animation: show2 0.5s linear 0.7s 1 forwards;    
}

@keyframes show {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes show2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.room_pre .room_pre_cont > .roompre_main .roompre_txt .room_name {
    display: inline-block;
    margin-top: 50px;
    font-family: 'S-CoreDream-5Medium';
    font-size: 1.3em;
    font-weight: 400;
    color: #a99e90;
    opacity: 0;
    transform: translateY(30px);
}
.room_pre .room_pre_cont > .roompre_main .roompre_txt .room_txt {
    margin-top: 25px;
    font-size: 1.2em;
    color: #949494;
    opacity: 0;
    transform: translateY(30px);
}
.room_pre .room_pre_cont > .roompre_main .roompre_txt .button {
    margin-top: 55px;
    opacity: 0;
}

.room_pre .room_pre_cont > .roompre_main > .button {
    display: flex;
    justify-content: space-between;
    margin-top: 95px;
}
.room_pre .room_pre_cont > .roompre_main .button .current .swiper-pagination-current {
    font-size: 1.3em;
    font-weight: 700;
    margin-right: 5px;
}
.room_pre .room_pre_cont > .roompre_main .button .current .swiper-pagination-total {
    font-size: 1em;
    margin-left: 5px;
}
.room_pre .room_pre_cont > .roompre_main .button .move {
    display: flex;
    align-items: center;
    gap: 20px;
}
.room_pre .room_pre_cont > .roompre_main .button .move > div {
    cursor: pointer;
}
.room_pre .room_pre_cont > .roompre_main .gauge {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 40px;
    background-color: #949494;
}
.room_pre .room_pre_cont > .roompre_main .gauge .bar {
    position: absolute;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: #181818;
    transition: 0.5s;
}

.room_pre .room_pre_cont > .roompre_main .img {
    position: absolute;
    top: 0;
    right: 0;
    width: 640px;
}
.room_pre .room_pre_cont > .roompre_main .img .main {
    box-shadow: 7px 7px 7px rgb(193 197 196);
    /* width: 40%; */
}
.room_pre .room_pre_cont > .roompre_main .img .sub {
    position: absolute;
    bottom: 170px;
    left: -230px;
    width: 46%;
}
/* room_pre end */

/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 300px;
    padding: 60px 0;
    background: url("/images/main/banner_bg01.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}
/* banner and*/

/* special */
.special {
    position: relative;
    margin: 180px auto;
}
.special::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -57%);
    width: 500px;
    height: 620px;
    background: url(/images/main/special_bg01.png) no-repeat center;
    background-size: cover;
    z-index: -1;
}
.special > h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20.5em;
    line-height: 1em;
    text-align: right;
    color: #d9d7d9;
}
.special .special_cont {
    text-align: center;
}
.special .special_cont .icon {
    display: block;
    margin: 30px auto;
    width: 55px;
}
.special .special_cont .title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 2.8em;
}
.special .special_cont .sub {
    display: block;
    font-size: 1.2em;
    color: #949494;
}
.special .special_cont .box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1100px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}
.special .special_cont .box > li {
    flex-wrap: wrap;
    width: calc(50% - 7.5px);
    height: 105px;
    line-height: 105px;
    border: 1px solid #23323b;
    box-sizing: border-box;
    background-color: #fff;
}
.special .special_cont .box > li span {
    font-size: 1.5em;
    font-weight: 700;
    color: #041021;
}
.special .special_cont .box > li span:nth-child(2) {
    display: none;
    font-family: 'Comfortaa', cursive;
    color: #fff;
}
.special .special_cont .box > li:hover {
    background-color: #25353b;
}
.special .special_cont .box > li:hover span:nth-child(1) {
    display: none;
}
.special .special_cont .box > li:hover span:nth-child(2) {
    display: block;
}
/* special end */

/* map */
.map {
    display: none;
    position: relative;
    overflow: hidden;
}
.map .mapFrame iframe {
    display: block;
    width: 100%;
    height: 400px;
}
.iw_inner > span { font-size: 11px !important}
/* 맵 정보보기 버튼 */
.map .info_button {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 11;
}
.map .info_button.on {
    transform: rotate(45deg);
}
.map .info_button .icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 3px solid #a1d1f0;
    box-sizing: border-box;
    border-radius: 100%;
}
.map .info_button .icon div {
    position: absolute;
    width: 20px;
    height: 2px;
    top: 50%;
    background-color: #181818;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.map .info_button .icon div:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.map .info_button .icon span {
    position: absolute;
    display: block;
    width: 24px;
    height: 2px;
    background-color: #181818;
}
.map .info_button .icon span:nth-child(2) {
    transform: rotate(90deg);
}
/* 맵 정보 */
.map .map_info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(150px, -60%);
    padding: 30px;
    background-color: #fff;
}
.map .map_info .name {
    font-family: 'GmarketSansMedium';
    font-size: 1.8em;
    font-weight: 400;
    line-height: 28px;
}
.map .map_info .name span {
    font-weight: 700;
}
.map .map_info .address {
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 20px;
}
.map .map_info .phone {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: 700;
}
.map .map_info .add {
    margin-top: 40px;
    font-size: 1em;
    font-weight: 700;
    color: #0084fb;
}
/* map end */

/* footer */
.footer {
    position: relative;
    background: url("/images/common/footer_bg.jpg") repeat center;
}
.footer .pc {
    display: inline-block;
}
.footer > div {
    width: 80%;
    margin: 0 auto;
    padding: 40px 100px 60px;
    box-sizing: border-box;
    color: #fff;
}
.footer .footer_logo {
    width: 120px;
    margin-bottom: 25px;
}
.footer .footer_info::after {
    content: "";
    display: block;
    clear: both;
}
.footer .footer_info .info01,
.footer .footer_info .info02 {
    float: left;
    width: 50%;
    height: 90PX;
}
.footer .footer_info .info01 > li,
.footer .footer_info .info02 > li{
    line-height: 30px;
}
.footer .footer_info .info02 {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-end;
    box-sizing: border-box;
}
.footer .footer_info .info02 > li {
    position: relative;
}
.footer .footer_info .info02 > li::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 2px;
    height: 10px;
    background-color: #fff;
}
.footer .footer_info .info02 > li:first-child::after {
    display: none;
}
.footer .top {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translate(-50%, 0);
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: #fff;
    cursor: pointer;
}
.footer .top a {
    position: relative;
    display: block;
    width: 5px;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}
.footer .top a span {
    position: absolute;
    left: 0;
    display: block;
    background-color: #181818;
    border-radius: 2px;
}
.footer .top a span:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%);
    width: 2px;
    height: 25px;
}
.footer .top a span:nth-child(2) {
    top: 34%;
    transform: translate(-1px, 0) rotate(58deg);
    width: 10px;
    height: 2px;
}

/* 버튼 애니메이션 */
/* 하얀배경 */
.wave > div::before,
.wave > div::after {
    background-color: #181818;
}
.wave > div a::after {
    background-color: #181818;
}
/* 검정배경 */
.wave_black > div {
    color: #fff;
    background-color: #181818;
}
.wave_black > div::before,
.wave_black > div::after {
    background-color: #fff;
}
.wave_black > div a::after {
    background-color: #fff;
}
.wave_black {
    font-family: 'GmarketSansMedium';
    font-weight: 400;
}

.wave {
    position: relative;
    display: inline-block;
    font-family: 'Unica One', cursive;
    font-size: 1.2em;
    font-weight: 700;
}
.wave a {
    position: relative;
    display: block;
    padding: 7px 55px 7px 50px;
    border: 1px solid #949494;
    border-radius: 25px;
    transition: 0.5s;
}
.wave:hover a {
    border: 1px solid #181818;
}
/* 버튼 애니메이션 */
.wave > div::before {
    content: "";
    display: block;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translate(0, -50%) scale(19);
    border-radius: 100%;
    width: 10px;
    height: 10px;
}
.wave > div {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}
.wave > div::before,
.wave > div::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 1;
}
.wave:hover > div::before {
    -webkit-animation: wave 0.5s forwards linear;
            animation: wave 0.5s forwards linear;
}

.wave > div a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) scale(1);
    opacity: 1;
}
.wave:hover > div a::after {
    opacity: 0;
    animation: button_effect 0.5s 0.1s forwards linear;
}

@keyframes button_effect {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes wave {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(60);
              transform: scale(60);
      opacity: 0;
    }
  }
  
  @keyframes wave {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(60);
                transform: scale(60);
        opacity: 0;
    }
  }

    /* 태블릿 */
    @media (min-width: 1601px) and (max-width: 1740px) {
        /* room_pre */
        .room_pre .room_pre_cont > .roompre_main{
            width: 61%;
            padding: 0 120px 0 120px;
        }
        .room_pre .room_pre_cont > .roompre_main .img {
            top: auto;
            bottom: 0;
            width: 540px;
        }
        .room_pre .room_pre_cont > .roompre_main .img .sub {
            position: absolute;
            left: -180px;
            width: 46%;
        }
    }
    /* room_pre end */
    @media (min-width: 1281px) and (max-width: 1601px) {
        /* room_pre */
        .room_pre .room_pre_cont > .roompre_main{
            padding: 0 60px;
        }
        .room_pre .room_pre_cont > .roompre_main .img {
            top: auto;
            bottom: 0;
            width: 410px;
        }
        .room_pre .room_pre_cont > .roompre_main .img .sub {
            position: absolute;
            left: -130px;
            width: 43%;
        }
    }
    /* room_pre end */
    @media (min-width: 769px) and (max-width: 1280px) {
        /* room_pre */
        .room_pre {
            margin: 30px auto 60px auto;
        }
        .room_pre::before {
            display: block;
            width: 280px;
            height: 360px;
        }
        .room_pre > h2 {
            position: static;
            line-height: normal;
        }
        .room_pre .room_pre_cont {
            display: block;
            width: 100%;
            padding: 0 40px;
            box-sizing: border-box;
            height: auto;
        }
        .room_pre .room_pre_cont > .roompre_main {
            width: 450px;
            margin: 0 auto;
            padding: 0;
            text-align: center;
        }
        .room_pre .room_pre_cont > .roompre_main .icon {
            margin: 0 auto;
        }
        .room_pre .room_pre_cont > .roompre_main .img {
            position: static;
            width: 100%;
            margin-top: 25px;
        }
        .room_pre .room_pre_cont > .roompre_main .img .sub {
            opacity: 0;
        }

        .room_pre .room_pre_cont > .roompre_main .roompre_txt .room_name {
            margin-top: 20px;
        }
        .room_pre .room_pre_cont > .roompre_main .roompre_txt .room_txt {
            margin-top: 10px;
        }
        .room_pre .room_pre_cont > .roompre_main .roompre_txt .button {
            margin-top: 15px;
            opacity: 0;
        }
        .room_pre .room_pre_cont > .roompre_main > .button {
            margin-top: 15px;
        }
        /* room_pre end */
    }


  /* 모바일 상태 */
  @media (max-width: 1200px) {
    .pc {
        display: none;
    }
    .mo {
        display: block;
    }
    .pc_inline { display: none;}
    .pc_blind {
        display: none;
    }
    .mo_blind {
        display: block;
    }
    /* 로딩 */
    .loading .main svg {
        width: 300px;
        height: 80px;
    }
    .loading .sub svg {
        width: 50%;
        height: 24px;
    }
    /* 로딩 end */

    /* 헤더 */
    .header > div {
        width: 100%;
        height: 60px;
        padding: 0 20px;
        box-sizing: border-box;
        align-items: center;
    }
    .header .logo a {
        width: 90px;
    }
    .header .gnb {
        display: none;
    }
    .header .box {
        display: flex;
        gap: 15px;
    }
    .header .box .burgur {
        display: inline-block;
        width: 24px;
        cursor: pointer;
    }
    .header .reser {
        display: inline-block;
        width: 24px;
    }
    .header .reser a {
        height: 40px;
        padding: 0;
        font-size: 1em;
    }
    .header .reser a i {
        transform: translateY(-53%);
        width: 27px;
        height: 27px;
    }
    .header .reser a span {
        display: none;
    }
    /* 헤더 end */
    /* 사이드메뉴 */

    /* 메인컨텐트 */
    .content {
        margin-top: 60px;
    }
    /* visual */
    .visual {
        width: 100%;
        margin: 0 auto;
        padding: 0px 0 50px 0;
    }
    .visual .main {
        /* margin: 0 0 0 40px; */
    }

    .visual .main .button {
        right: auto;
        left: 0;
        bottom: -41.5px;
    }
    .visual .main .button .current,
    .visual .main .button .move {
        height: 40px;
        box-sizing: border-box;
    }
    .visual .main .button .current {
        margin-right: 1px;
        padding: 1px 10px 0px 10px;
    }
    .visual .main .scroll {
        display: none;
    }
    /* visual end */

    /* about */
    .about::before,
    .about::after {
        display: none;
    }
    .about .about_title {
        padding-bottom: 30px;
    }
    .about .about_title .line {
        display: none;
        height: 15px;
    }
    .about .about_title .txt {
        margin: 10px auto;
    }
    .about .about_title .txt strong {
        padding: 0 20px;
        box-sizing: border-box;
        font-size: 1.1em;
        letter-spacing: -0.4px;
    }
    .about .about_title .txt p {
        padding: 0 20px;
        box-sizing: border-box;
        font-size: 1em;
        word-break: keep-all;
    }
    .about .about_cont {
        padding: 60px 0;
    }
    .about .about_cont.add_padding {
        padding-top: 60px;
    }
    .about .about_cont::before,
    .about .about_cont::after {
        width: calc(100% - 40px);
    }
    .about .about_cont > ul {
        display: block;
    }
    .about .about_cont > ul li:nth-child(1),
    .about .about_cont > ul li:nth-child(3) {
        height: 250px;
        overflow: hidden;
    }
    .about .about_cont > ul li:nth-child(2) {
        padding: 40px 20px;
    }
    .about .about_cont > ul li img {
        height: 100%;
        object-fit: cover;
    }
    .about .about_cont > ul li.about_txt {
        margin-top: 20px;
    }
    .about .about_cont > ul li.about_txt .icon {
        width: 50px;
    }
    .about .about_cont > ul li.about_txt .title {
        margin-top: 15px;
        font-size: 1.6em;
    }
    .about .about_cont > ul li.about_txt p {
        margin: 30px auto;
        font-size: 1em;
        letter-spacing: -1px;
        line-height: 26px;
    }
    /* about end */

    /* room_pre */
    .room_pre {
        margin: 30px auto 60px auto;
    }
    .room_pre::before {
        display: block;
    }
    .room_pre > h2 {
        position: static;
        font-size: 6em;
        line-height: normal;
    }
    .room_pre .room_pre_cont {
        display: block;
        width: 100%;
        padding: 0 40px;
        box-sizing: border-box;
        height: auto;
    }
    .room_pre .room_pre_cont > .roompre_main {
        width: 100%;
        padding: 0;
    }
    .room_pre .room_pre_cont > .roompre_main .icon {
        width: 30px;
    }
    .room_pre .room_pre_cont > .roompre_main .title {
        margin-top: 15px;
        font-size: 2.2em;
        line-height: 37px;
    }
    .room_pre .room_pre_cont > .roompre_main .roompre_txt .room_name {
        margin-top: 30px;
        font-size: 1.5em;
    }
    .room_pre .room_pre_cont > .roompre_main .roompre_txt .room_txt {
        margin-top: 18px;
        font-size: 1.2em;
    }
    .room_pre .room_pre_cont > .roompre_main .roompre_txt .button {
        margin-top: 25px;
        opacity: 0;
    }

    .room_pre .room_pre_cont > .roompre_main > .button {
        margin-top: 25px;
    }
    .room_pre .room_pre_cont > .roompre_main .button .current .swiper-pagination-current {
        font-size: 1.1em;
    }
    .room_pre .room_pre_cont > .roompre_main .button .current .swiper-pagination-total {
        font-size: 0.9em;
    }
    .room_pre .room_pre_cont > .roompre_main .button .move {
        gap: 15px;
    }
    .room_pre .room_pre_cont > .roompre_main .button .move > div i {
        display: block;
        width: 16px;
    }
    .room_pre .room_pre_cont > .roompre_main .gauge {
        margin-top: 25px;
        height: 1px;
    }
    .room_pre .room_pre_cont > .roompre_main .gauge .bar {
        height: 2.5px;
    }
    .room_pre .room_pre_cont > .roompre_main .img {
        position: static;
        width: 100%;
        margin-top: 25px;
    }
    .room_pre .room_pre_cont > .roompre_main .img .main {
        /* height: 250px; */
    }
    .room_pre .room_pre_cont > .roompre_main .img .sub {
        opacity: 0;
    }
    /* room_pre end */

    /* banner */
    .banner {
        height: 110px;
        padding: 30px 0;
        background-attachment: local;
    }
    /* banner and*/

    /* special */
    .special {
        position: relative;
        margin: 90px auto;
    }
    .special::after {
        transform: translate(0, -85%);
        width: 200px;
        height: 250px;
    }
    .special > h2 {
        font-size: 6em;
        line-height: normal;
    }
    .special .special_cont .icon {
        display: block;
        margin: 15px auto;
        width: 30px;
    }
    .special .special_cont .title {
        font-size: 2em;
        line-height: 34px;
    }
    .special .special_cont .sub {
        display: block;
        margin-top: 10px;
        font-size: 1em;
    }
    .special .special_cont .box {
        gap: 7.5px;
        margin: 30px auto 0 auto;
        padding: 0 40px;
    }
    .special .special_cont .box > li {
        height: 40px;
        line-height: 40px;
    }
    .special .special_cont .box > li span {
        font-size: 0.9em;
        font-weight: 700;
        color: #041021;
    }
    .special .special_cont .box > li span:nth-child(2) {
        display: none;
        font-family: 'Comfortaa', cursive;
        color: #fff;
    }
    .special .special_cont .box > li:hover {
        background-color: #25353b;
    }
    .special .special_cont .box > li:hover span:nth-child(1) {
        display: none;
    }
    .special .special_cont .box > li:hover span:nth-child(2) {
        display: block;
    }
    /* special end */

    /* map */
    .map {
        position: relative;
    }
    .map .mapFrame iframe {
        display: block;
        width: 100%;
        height: 400px;
    }
    /* 맵 정보보기 버튼 */
    .map .info_button {
        display: block;
    }
    /* 맵 정보 */
    .map .map_info {
        display: none;
        position: absolute;
        top: auto;
        left: 30px;
        right: 30px;
        bottom: 30px;
        transform: none;
        padding: 15px 15px 15px 20px;
        background-color: #fff;
    }
    .map .map_info .name {
        font-size: 1.5em;
        line-height: 24px;
    }
    .map .map_info .address {
        font-size: 1.1em;
        line-height: 20px;
    }
    .map .map_info .phone {
        margin-top: 5px;
        font-size: 1.1em;
    }
    .map .map_info .add {
        margin-top: 5px;
        font-size: 1em;
    }
    /* map end */

    /* footer */
    .footer {
        text-align: center;
    }

    .footer .pc {
        display: none;
    }
    .footer > div {
        width: 100%;
        padding: 20px 0 30px 0;
    }
    .footer .footer_logo {
        width: 120px;
        margin: 0 auto;
    }
    .footer .footer_logo img {
       /* transform: translateX(-17px); */
    }
    .footer .footer_info::after {
        content: "";
        display: block;
        clear: both;
    }
    .footer .footer_info .info01,
    .footer .footer_info .info02 {
        float: none;
        width: 100%;
        height: auto;
    }
    .footer .footer_info .info01 > li,
    .footer .footer_info .info02 > li {
        margin-top: 13px;
        line-height: normal;
    }
    .footer .footer_info .info01 > li {
        line-height: 18px;
    }
    .footer .footer_info .info02 {
        justify-content: center;
        align-items: center;
        /* font-size: 0.7em; */
    }
    .footer .footer_info .info02 {
        padding: 5px 10px;
    }
    .footer .top {
        top: 30px;
        right: 13px;
        left: auto;
        bottom: auto;
        transform: none;
        width: 34px;
        height: 34px;
    }
    .footer .top a span:nth-child(1) {
        height: 20px;
    }
    .footer .top a span:nth-child(2) {
        width: 9px;
    }

    /* wave */
    .wave:hover > div::before {
        -webkit-animation: none;
                animation: none;
    }
    .wave:hover > div a::after {
        opacity: 0;
        animation: none;
    }
  }


/* about pc*/

/* about_pic */
.about_pic {
    padding-top: 130px;
}
.about_pic * {
    box-sizing: border-box;
    
}
.about_pic .box2 {
    display: flex;
    margin: 3% 0 6%;
}
.about_pic .box2 .inner {
    width: 50%;
}
.about_pic .box2 .inner img {
    max-width: 870px;
}
.about_pic .box2 .inner.text {
    padding: 15px 0 0 15px;
}
.about_pic .box2 h3 {
   font-size: 50px;
   line-height: 100px;
   font-family: 'ZCOOL XiaoWei', serif;
}
.about_pic .box2 h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 80px;
    font-family: 'ZCOOL XiaoWei', serif;
}
.about_pic .box2 p {
    font-size: 17px;
    line-height: 40px;
}

@media (max-width:1200px){
   
    .about_pic .box2 {
        display: block;
        margin: 10% 0 6%;
    }
    .about_pic .box2 .inner {
        width: 100%;
    }
    .about_pic .box2 .inner img {
        margin: 0 auto;
    }
    .about_pic .box2 .inner.text {
        text-align: center;
        padding: 40px 15px;
    }
}

@media (max-width:767px){
    .about_pic {
        padding-top: 60px;
    }
    .about_pic .box2 h3 {
        font-size: 30px;
        line-height: 50px;
    }
    .about_pic .box2 h4 {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 40px;
    }
    .about_pic .box2 p {
        font-size: 12px;
        line-height: 26px;
    }
    
}

/* about_pic end */

/* about_map */
.about_map * {
    box-sizing: border-box;
}
.about_map::before,
.about_map::after {
    display: block;
    content: "";
    width: 80%;
    height: 1px;
    background-color: #c9bdaf;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
.about_map .box1 {
    padding-top: 130px;
}
.about_map .box1 h2 {
    font-size: 50px;
    font-weight: bold;
    line-height: 80px;
    text-align: center;
    font-family: 'S-CoreDream-3Light', serif;
}
.about_map .box1 h3 {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    font-family: 'ZCOOL XiaoWei', serif;
    margin-bottom: 50px;
}

#map{
    width: 100%;
    margin: 0 auto;
    height: 500px;
    margin-bottom: 2%;

}

.about_map .box2 {
    display: flex;
    width: 80%;
    margin: 0 auto 100px;
}
.about_map .box2 > div {
    width: 50%;
}
.about_map .box2 .map_text {
    padding: 50px 50px 50px 120px;
}
.about_map .box2 .map_text p {
    font-size: 18px;
}
.about_map .box2 .map_text p strong {
    font-size: 20px;
    font-weight: bold;
}
.about_map .box2 .map_text p strong.tel {
    letter-spacing: 1.7px;
}

@media (max-width:1200px){
    .about_map .box2 {
        display: block;
        width: 95%;
        margin: 0 auto 50px;
    }
    .about_map .box2 > div {
        width: 100%;
    }
    .about_map .box2 .map_text {
        padding: 5%;
    }
}
@media (max-width:500px){
    .about_map .box1 {
        padding-top: 50px;
    }
    .about_map .box1 h2 {
        font-size: 32px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .about_map .box1 h3 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 30px;
    }
    .about_map .box2 .map_text p {
        font-size: 14px;
    }
    .about_map .box2 .map_text p strong {
        font-size: 16px;
    }
    #map{
        height: 245px;
    }
}
/* about_map end */


.img_box {position: relative; overflow: hidden;}
.img_effect {
	width: 150%;
    height: 100%;
    z-index: 30;
    transition: 1.8s;
    display: block;
    position: absolute;
}
.img_effect.trans1s {
	width: 100%;
	height: 150%;
	transition: 1s;
}
.img_box .img_effect_270deg {
    background: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #fff 25%, #fff);
    left: -30px;
}
.img_effect_270deg.on {
    transform: translateX(-100%); 
    transition-delay: 0.5s; 
}
.img_box .img_effect_90deg {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff 25%, #fff);
    right: 0;
}
.img_box .img_effect_90deg_yellow {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #feeac6 25%, #feeac6);
    right: 0;
	transition: 3s;
}
.img_effect_90deg.on {
    transform: translateX(100%); 
    transition-delay: 0s; 
}
.img_box .img_effect_0deg {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #fff 25%, #fff);
    right: 0;
}
.img_effect_0deg.on {
    transform: translateY(-100%); 
    transition-delay: 0.3s; 
}

.img_effect.curtain1 {
	width: 150%;
	height: 100%;
	transition: 2.5s;
	left: 30%;
	background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #f0f3f1 15%, #f0f3f1);
}
.img_effect.curtain2 {
	width: 150%;
	height: 100%;
	transition: 2.5s;
	right: 30%;
	background: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #f0f3f1 15%, #f0f3f1);
}
.img_effect.curtain1.on{
	transform: translateX(100%); 
    transition-delay: 0.3s; 
}
.img_effect.curtain2.on{
	transform: translateX(-100%); 
    transition-delay: 0.3s; 
}
.img_effect.curtain1.curtain1_yellow {
	background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff7d5 25%, #fff7d5);
}
.img_effect.curtain2.curtain2_yellow {
	background: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #fff7d5 25%, #fff7d5);
}

