/*테마 공용 css*/
/*lexend Giga, nucone*/
@import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=Niconne&display=swap');
/*프리텐다드*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/*리디바탕*/
@font-face {
    font-family: 'RIDIBatang';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/RIDIBatang.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/*klei*/
@font-face {
    font-family:"Klei";
    src:url("./klei/Klei-export/Klei.woff2") format("woff2"),url("Klei.woff") format("woff"),url("Klei.otf") format("opentype");
    font-weight: 400;
}
@font-face {
    font-family:"Klei";
    src:url("./klei/KleiBld-export/KleiBld.woff2") format("woff2"),url("Klei.woff") format("woff"),url("Klei.otf") format("opentype");
    font-weight: 500;
}

/*var*/
:root{
    --color-1: #324A9B;
    --color-2: #f2f2f2;

    --e-main-font-1 : 'Klei';
    --e-deco-font-1 : 'niconne';
    --e-deco-font-2 : 'Lexend Giga';
    --k-main-font-1 : 'Pretenard';
    --k-main-font-2 : 'RIDIBatang';


    --f-size-1 : 1rem; /*16*/
    --f-size-2 : 0.88rem; /*14*/
    --f-size-3 : 0.75rem; /*12*/
    --f-size-4 : 0.63rem; /*10*/

}

::selection{
    background-color: var(--color-1);
    color: var(--color-2);
}


::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-1);
    border-radius: 100px;
    border: 2px solid #e2e2e2;
}
::-webkit-scrollbar-track{
    background-color: #e2e2e2;
}

html{
    font-size: 16px;
}
body{
    background-color: var(--color-2);
}
@media(width < 1400px){
}
@media(width < 1024px){
    html{
        font-size: 14px;
    }
}
@media(width < 768px){
    html{
        font-size: 12px;
    }
}
@media(width < 576px){
}


/*gnb*/
.header {
    position:fixed;
    display: flex;
    align-items: center;
    z-index: 100;
    width: 100%;
    height: 150px;
    transition: all 0.3s;
}
.header.top{
    background-color: var(--color-2);
    transition: all 0.3s;
}
.header .wrap{
    width: 100%;
    display: flex;
    padding-left: 100px;
    padding-right: 100px;
}
.logo{
    position: relative;
    margin-right: auto;
    max-width: 150px;
    max-height: 100px;
    z-index: 10;
}
.logo a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gnb{
    position: relative;
}
.gnb-1d-ul{
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 50px;
}
.gnb-1d-li{
    /*ux*/
    font-family: var(--e-main-font-1);
    font-weight: 500;
    color: var(--color-1);
    padding: 10px ;
    text-transform: uppercase;
}
.gnb-1d-li a{
    display: block;
    transition: background-color,opacity 0.5s
}
.menu-btn{
    display: flex;
    align-items: center;
    margin-left: 70px;
}
.menu-btn button{
    border:unset;
    padding: unset;
    background: unset;
    font-size: 40px;
    color: var(--color-1);
    padding-bottom: 7px;
    position: relative;
    transition: color 0.5s;
}
.sub-nav  .menu-btn button,
.sub-nav  .gnb-1d-li{
    color: var(--color-2);
}
.gnb-back{
    display: none;
}
.header.sub-nav{
    z-index: 10000;
}
.sub-nav  .gnb{
    position: absolute;
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
}
.sub-nav  .gnb-1d-ul{
    column-gap: unset;
}
.sub-nav  .gnb-1d-li{
    width: 100%;
    height: 100%;
    padding: 0;
    font-weight: 400;
}
.sub-nav  .gnb-1d-li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-transform: capitalize;
    background-color: var(--color-1);
    font-family: var(--e-deco-font-1);
}
.gnb-back{
    /*display: none;*/
    position: absolute;
    top: -100%;
    z-index: 10;
    pointer-events: none;
}
.sub-nav  .gnb-back{
    display: flex;
    width: 100%;
    height: 100%;
}
.gnb-back li{
    transition: transform 0.5s ease-in-out, opacity 1s;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}
.gnb-back li.hover{
    transform: translateY(100%);
    opacity: 1;
    pointer-events: none;
}
.side{
    position: fixed;
    right: 55px;
    bottom: 60px;
    z-index: 1000;
}
.go-top{
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-1);
    border-radius: 50%;
    background-color: var(--color-1);
    color: var(--color-2);
    font-size: 1rem;
    padding: 15px;
    transition: all 0.3s;
}
.go-top:hover{
    background-color: var(--color-2);
    color: var(--color-1);
}


/*footer*/
.footer{
    background-color: var(--color-1);
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 215px;
    padding-bottom: 174px;
    color: var(--color-2);
    font-size: var(--f-size-2);
    font-family: var(--k-main-font-1);
}
.footer-title{
    font-size: 2rem;
    font-family: var(--k-main-font-2);
    font-weight: 400;
}
.footer-title p{
    padding-top: 10px;
}
.footer-info{
    padding-top: 37px;
    padding-bottom: 70px;
    font-weight: 300;
}
.footer-info ul{
    display: grid;
    row-gap: 25px;
    grid-template-columns: repeat(3, 250px);
}

.copyright-wrap{
    display: flex;
    gap: 40px
}
.footer-copyright a{
    text-decoration: underline ;
    text-underline-position : under;
    font-size: var(--f-size-2);
    font-weight: 700;
}

@media(width < 1400px){
}
@media(width < 1024px){
    .header.top{
        background-color: unset;
    }
    .header{
        height: unset;
    }
    .header .wrap{
        padding-top: 32px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .logo{
        max-width: 70px;
        max-height: 60px;
    }
    .gnb{
        opacity: 0;
        pointer-events: none;
        width: 0;
    }

    .sub-nav .gnb{
        opacity: 1;
        pointer-events: auto;
    }
    .gnb-back,
    .sub-nav .gnb-1d-ul{
        flex-direction: column;
    }
    .sub-nav .gnb-1d-li{
        border-bottom: 2px solid var(--color-2);
    }
    .sub-nav .gnb-1d-li:last-child{
        border-bottom: unset;
    }
    .top .menu-btn button{
        color: var(--color-2);
    }
    .menu-btn button{
        font-size: 30px;
    }
    .side{
        right: 30px;
        bottom: 60px;
    }
    .go-top{
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    .footer-title p{
        padding-left: 12px;
        font-size: 1rem;
    }
    .footer-info{
        padding-left: calc(12px + 3px);
        padding-right: calc(12px + 3px);
    }
    .footer-info ul{
        grid-template-columns: repeat(2, auto);
        row-gap: 10px;
    }
    .footer-copyright{
        padding-left: calc(12px + 3px);
        padding-right: calc(12px + 3px);
        font-size: var(--f-size-3);
    }
    .footer-copyright a{
        font-weight: 300;
    }
    .copyright-wrap{
        gap: 5vw
    }
}
@media(width < 768px){
    .footer{
        padding-top: 85px;
        padding-bottom: 85px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-info{
        padding-bottom: 40px;
    }
}
@media(width < 576px){
}

/*include*/
.hero-swiper{
    height: 100vh;
}
.hero-swiper .swiper-slide{
    background-position: center !important;
}

.sub-swiper{
    aspect-ratio: 65/105;
    max-width: 650px;
    width: 35vw;
}
.sub-swiper .swiper-button-box{
    width: 100%;
    height: 50px;
    background-color: var(--color-2);
    position: absolute;
    bottom: 0;
    z-index: 5;
}
.sub-swiper .swiper-button-prev::after,
.sub-swiper .swiper-button-next::after{
    display: none;
}
.sub-swiper .swiper-button-prev,
.sub-swiper .swiper-button-next{
    top: 50%;
    color: #000;
    font-family: var(--e-deco-font-2);
    width: unset;
    font-weight: 700 ;
}

.sub-swiper .swiper-pagination-bullet{
    background-color: #333333;
}
.sub-swiper .swiper-pagination-bullet-active{
    background-color: #000000;
}

.preview-content{
    padding-left: 100px;
    padding-bottom: 240px;
}
.room-preview-swiper{

}
.room-preview-swiper a{
    display: inline-block;
    font-family: var(--e-deco-font-2);
    font-size: 1.5rem;
    text-align: right;
}
.room-preview-swiper img{
    width: 100%;
    aspect-ratio: 567/780;
    object-fit: cover;
}
.room-preview-swiper p{
    padding-top: clamp(5px,.5vw, 10px);
    padding-right: clamp(5px,.5vw, 10px);
}

@media(width < 1400px){
}
@media(width < 1024px){
    .sub-swiper{
        width: unset;
        height: unset;
        aspect-ratio: 2/3;
    }
    .sub-swiper .swiper-button-box{
        display: none;
    }
    .preview-content{
        padding-left: unset;
        padding-bottom: 130px;
    }
    .preview-content a{
        font-size: 0.8rem;
    }
}
@media(width < 768px){
}
@media(width < 576px){
}

/*common*/
.section-title{
    text-align: right;
    font-size: 4rem;
    border-bottom: 1px solid var(--color-1);
    padding-bottom: 4rem;
    color: var(--color-1);
}
@media(width < 1400px){
}
@media(width < 1024px){
}
@media(width < 768px){
    .section-title{
        font-size: 2rem;
        padding-bottom: 1.5rem;
    }
}
@media(width < 576px){
}

