@charset "utf-8";

@font-face {
    font-family: 'Nephilm';
    src: url(Nephilm.woff);
}


* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    word-break: keep-all;
    text-decoration: none;
    color: inherit;
    border-collapse: collapse;
    line-height: 1.5;
    transition: 0.3s;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}


span {
    display: block;
}

a {
    display: block;
}

img {
    display: block;
    max-width: 100%;
}

b {
    font-weight: 600;
}

section {
    position: relative;
    z-index: 1;
}

.fix {
    position: fixed;
    right: 5%;
    z-index: 9999;
    bottom: 5%;
    text-align: center;
    color: #fff;
}

.fix ul {
    background: #d3d9e5;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
}

.fix ul li {
    aspect-ratio: 1;
    align-content: center;
    padding-block: 0.5rem;
    border-bottom: 1px solid #bdbdbd;
}

.fix ul li:last-of-type {
    border: none;
}

.fix ul li small {
    font-weight: 500;
    font-size: 13px;
    color: #000;
}

.fix img {
    filter: brightness(0);
    max-width: 1.5rem;
    margin: 0 auto;
    transition: 0.5s;
}

/* .fix img:hover {
    transition: 0.4s;
    scale: 1.1;
} */
@media screen and (max-width:768px) {
    .fix ul li {
        padding-block: 0.75rem;
    }

    .fix ul li small {
        font-size: 11px;
    }

    .fix ul li span {
        display: none;
    }
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #3a3a3a;
}

header .header-wrap {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
}

nav {
    width: 100%;
}

nav>ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav>ul>li {
    position: relative;
    width: 100%;
    flex: 1;
}

nav>ul>li>a {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    color: #fff;
    height: 100%;
}

nav>ul>li:hover>.depth {
    width: 100%;
    z-index: 9;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    transition: 0.3s;
}

nav .depth {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

nav .depth li a {
    width: 100%;
    padding: 1rem;
    color: #4d53b1;
    font-weight: 500;
    text-align: center;
}

.menu-btn {
    display: none;
    width: 30px;
    cursor: pointer;
    cursor: pointer;
    z-index: 999999999999;
}

.menu-btn span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #fff;
    transition: .3s;
}

@media screen and (max-width:1024px) {
    .logo {
        max-width: 15rem;
    }

    header .header-wrap {
        padding: 1.4rem;
        gap: 1rem;
    }


    .menu-btn {
        display: block;
    }

    .menu-btn span:nth-child(1) {
        top: 0;
    }

    .menu-btn span:nth-child(2) {
        top: 50%;
    }

    .menu-btn span:nth-child(3) {
        bottom: 0;
    }

    nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: .35s;
        overflow-y: auto;
        padding-top: 90px;
    }

    nav.active {
        right: 0;
        background: #474b8d;
    }

    nav>ul {
        display: block;
    }

    nav>ul>li {
        border-bottom: 1px solid #eee;
    }

    nav>ul>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        padding: 20px;
        font-size: 17px;
    }

    nav .depth {
        position: static;
        opacity: 1;
        visibility: visible;
        height: 0;
        overflow: hidden;

        background: #f8f8f8;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;

        transition: height .3s ease;
    }

    nav .depth li a {
        text-align: left;
        padding: 14px 30px;
        font-size: 14px;
        color: #666;
    }

    nav li.open .depth {
        height: auto;
    }

    .toggle {
        position: relative;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .toggle::before,
    .toggle::after {
        content: '';
        position: absolute;
        background: #333;
        transition: .3s;
    }

    .toggle::before {
        width: 100%;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
    }

    .toggle::after {
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    li.open .toggle::after {
        opacity: 0;
    }
}

/* main */
main {
    overflow: hidden;
}

.m1 img {
    width: 100%;
    min-height: 45vh;
    object-fit: cover;
}

.m1 .desc {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
}

.m1 .desc h2 {
    font-family: 'Nephilm';
    font-size: clamp(2.4rem, 5vw, 5rem);
    color: #4d53b1;
    opacity: 0.5;
    font-weight: normal;
    line-height: 1.23;
}

.m1 .desc p {
    color: #2e3046;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    margin-top: 1.75rem;
}

.m2 {
    padding-block: 8rem 10rem;
    color: #2e3046;
}

.main-title {
    text-align: center;
}

.main-title>h3 {
    font-size: clamp(1.8rem, 2.7vw, 3.25rem);
    font-weight: 700;
}

.main-title>span {
    font-size: clamp(1.4rem, 1.7vw, 2rem);
    font-weight: 500;
}

.main-title p {
    font-size: clamp(1.4rem, 1.25vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
}

.main-title.v2 {}

.main-title.v2 span {
    font-family: 'Nephilm';
    font-weight: 400;
    color: rgba(169, 170, 207, 1);
}

.main-title.v2 h3 {
    margin-block: 1rem 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.m2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 4.5rem;
}

.m2 ul li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: 0.5s;
}

.m2 ul li a:hover img {
    scale: 1.1;
    transition: 0.5s;
}

.m2 ul li a img {
    width: 100%;
    filter: grayscale(1);
    transition: 0.1s;
}

.m2 ul li a:hover img {
    filter: none;
}

.m2 ul li span {
    position: absolute;
    width: 100%;
    bottom: 7%;
    left: 0;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.8rem, 1.75vw, 2rem);
}

.wrap {
    position: relative;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    padding-inline: 1.6rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m3 {
    height: 93vh;
    color: white;
    background: url(../img/m3.jpg) no-repeat center / cover;
}

.m3 .wrap {
    align-items: flex-end;
    flex-direction: column;
}

.m3 .wrap>div {
    display: flex;
    flex-direction: column;
    padding-bottom: 5%;
}

.m3 ul {
    margin-top: 4.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 40vw;
}

.m3 ul::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    background: rgba(182, 183, 184, 1);
    height: 1px;
    top: 0.21rem;
}

.m3 ul li {
    width: 0.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background: #fff;
    transition: 0.5s;
}

.m3 ul li::after {
    position: absolute;
    inset: -10px;
    border: 1px solid #fff;
    content: '';
    display: block;
    opacity: 0;
    border-radius: 50%;
    transition: 0.5s;
}

.m3 ul li.active::after {
    opacity: 1;
}

.m3 ul li p {
    text-wrap: nowrap;
    position: absolute;
    left: 0;
    transform: translateX(-40%);
    bottom: -3rem;
    text-align: center;
}

.m4 {
    height: 93vh;
    color: #3a3a3a;
    background: url(../img/m4.jpg) no-repeat center / cover;
}

.m4 .wrap {
    justify-content: flex-start;
}

.m4 ul {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.m4 ul li {
    color: #4d53b1;
    border: 1px solid #4d53b1;
    font-weight: 700;
    font-size: clamp(1.4rem, 2vw, 1.5rem);
    padding: 0.25rem 1.5rem;
    border-radius: 5rem;
}

.m5 {
    padding-block: 10rem;
    background: url(../img/m5.jpg) no-repeat center / cover;
}

.m5 .main-title h3 {
    padding-top: 1.5rem;
    text-align: left;
    color: #fff;
    line-height: 1;
}

.m5 .main-title h3>span {
    text-align: left;
    color: #d9dbff;
}

.m5 .flex-wrap {
    display: flex;
    padding-left: 15%;
    gap: 10%;
}

.m5 .bts {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.m5 .bts img {
    cursor: pointer;
}

.promote {
    width: 100%;
}

.m6 {
    padding-block: 8rem;
    color: #3a3a3a;
}

.m6 h3 {
    margin-top: 1rem;
    line-height: 1.25;
}

.m6 .wrap {
    flex-direction: column;
}

.m6 article {
    width: 100%;
    display: block;
    background: rgba(246, 246, 255, 1);
    border-radius: 3rem;
    margin-top: 3rem;
}

.m6 ul {
    padding: 3rem;
    width: fit-content;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.m6 ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.m6 ul li p {
    color: #3a3a3a;
    font-size: clamp(1.4rem, 1.67vw, 2rem);
    font-weight: 500;
}

.m6 ul li b {
    color: #4d53b1;
    font-weight: 700;
}

.m7 {
    padding-block: 7rem;
    background: #f0f0f0;
}

.m7 h3 {
    display: inline-block;
    position: relative;
    padding-inline: 1.6rem;
    font-family: 'Nephilm';
    font-weight: 400;
    color: #4d53b1;
    border-bottom: 1px solid #4d53b1;
    text-transform: uppercase;
}

.bfaf {
    margin-top: 4rem;
}

.bfaf .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.bfaf .swiper-slide p {
    display: flex;
    padding-inline: 1.6rem;
    width: 100%;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background: #4d53b1;
}

.bfaf .swiper-slide p span {
    color: #fff;
    font-size: 2rem;
}

.bfaf .swiper-slide .before p {
    background: #6f6f6f;
}

.bfaf .swiper-slide .before img {
    filter: blur(12px);
}

.m8 {
    padding-block: 10rem 12rem;
    background: url(../img/m8.jpg) no-repeat center / cover;
}

.m8 .main-title {
    text-align: left;
    color: #fff;
}

.m8 .main-title h3 {
    line-height: 1.22;
    font-weight: 400;
    margin-bottom: 2rem;
}

.m8 .wrap {
    text-align: left;
    justify-content: flex-start;
}


/* footer */
.quick-reserve-bottom {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 955 !important;
}

.footer_wrap {
    background-color: #222;
    color: #fff;
    padding: 5rem 1rem;
    font-size: 15px;
}

.footer_box_wrap {
    display: flex;
    flex-direction: column;
    max-width: 1240px;
    margin: 0 auto;
}

.footer_box1 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer_logo {
    max-width: 300px;
    margin-bottom: 1rem;
}

.footer_logo img {
    width: 100%;
    max-width: 18rem;
}

.footer_link {
    display: flex;
    justify-content: flex-end;
    padding-right: 3%;
}

.footer_link ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer_box2 {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: flex-end;
    text-align: left;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.footer_info,
.footer_time {
    flex: 1;
}

.footer_info,
.footer_time {
    width: 40%;
}

.footer_links {
    width: 20%;
    padding-bottom: 1rem;
}

.footer_link ul li {
    float: right;
    max-width: 30px;
}

.footer_link ul li a {
    opacity: 50%;
}

.footer_link ul li a:hover {
    opacity: 100%;
}

.footer_link ul li img {
    width: 100%;
    height: auto;
}

.footer_time_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 0.5rem;
    color: #999;
}

.footer_time {
    width: 100%;
}

.footer_time_left,
.footer_time_right {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer_time_left {
    width: 35%;
}

.footer_time_right {
    width: 65%;
}

.footer_links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer_links a {
    width: 100%;
    text-align: center;
    border: 1px solid #999;
    color: #999;
}

.footer_links a:hover {
    color: #fff;
}

.footer_box2_botton {
    width: 100%;
    padding: 2px;
}

.footer_copyright {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    padding-top: 20px;
}


.footer_links_mobile {
    display: none;
}



@media all and (max-width: 768px) {
    .footer_wrap {
        font-size: 12px;
    }

    .footer_box1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .footer_logo {
        max-width: 280px;
        margin-bottom: 15px;
        margin: 0 auto;
    }

    .footer_logo img {
        margin: 0 auto;
        padding-block: 1rem 2rem;
    }

    .footer_link {
        justify-content: center;

    }

    .footer_link ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }


    .footer_box2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_info,
    .footer_time,
    .footer_links {
        width: 100%;
        text-align: center;
    }


    .footer_time {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_time_left {
        width: auto;
        display: inline-block;
        flex-grow: 0;
    }

    .footer_time_right {
        width: auto;
    }

    .footer_links {
        align-items: center;
    }


    .footer_bottom_wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .footer_links a {
        width: auto;
    }

    .footer_links_mobile {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
}

/* common sub  */
.slide {
    padding-top: 8rem;
    padding-inline: 1.6rem;
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    background: #fff;
    margin: 3rem auto;
    max-width: 920px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
}

.tab li {
    flex: 1;
    padding: 1rem;
    cursor: pointer;
    border-radius: 5rem;
    text-align: center;
    transition: 0.3s;
    font-size: clamp(12px, 1.146vw, 1.375rem);
    font-weight: 500;
    color: #9d9d9d;
}

.tab li.on {
    background: var(--bg);
    color: #fff;
    font-weight: 600;
}

.sub-title {
    text-align: center;
}

.sub-title span {
    font-size: clamp(10px, 1.458vw, 1.75rem);
    font-weight: 500;
    color: #3a3a3a;
}

.sub-title span.sans {
    font-family: 'Nephilm';
    display: block;
    color: #aaa;
}

.sub-title h3 {
    font-weight: 700;
    font-size: clamp(14px, 2.708vw, 3.25rem);
    letter-spacing: -0.015vw;
    color: #3a3a3a;
}

.sub-slide {
    padding-bottom: 3rem;
}

.sub-slide .swiper-slide {
    cursor: pointer;
}

.sub-slide-bt {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 999;
    height: 100%;
    transform: translateY(-50%);
}

.swiper-button-next,
.swiper-button-prev {
    color: #4d53b1;
}

.sub-top>img {
    width: 100%;
}

.slide>img {
    width: 100%;
}

.sub-bot>img {
    width: 100%;
}

@media screen and (max-width: 768px) {

    /* Scroll관련 */
    ::-webkit-scrollbar {
        display: none;
    }

    .m1 .desc {
        left: 10%;
    }

    .m3 .wrap {
        align-items: center;
    }

    .m3 ul {
        max-width: 100%;
    }
}