@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    overflow-x: hidden;
}

:root {
    --header-h: 90px;
    --f25: clamp(16px, 1.302vw, 25px);
    --f30: clamp(16px, 1.563vw, 30px);
    --f36: clamp(18px, 1.875vw, 36px);
    --f42: clamp(20px, 2.188vw, 42px);
    --f50: clamp(22px, 2.604vw, 50px);
    --f56: clamp(22px, 2.917vw, 56px);
    --f65: clamp(24px, 3.385vw, 65px);
}

.invert {
    -webkit-filter: grayscale(100%) brightness(0);
    filter: grayscale(100%) brightness(0);
    color: black;
}

.swiper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #ededed;
}

.section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.m_box {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    height: 100dvh;
    width: 100dvw;
    text-align: center;
    padding: 20vh 24px 70px 24px;
    overflow-y: auto;
    box-sizing: border-box;
    font-family: var(--pre);
    backdrop-filter: blur(10px);
}

.mobile-menu {
    display: block;
    list-style-type: none;
    padding: 0;
}

.mobile-menu>li {
    margin-bottom: 20px;
}

.mobile-menu>li>h2 {
    display: block;
    /* color: #1a1a1a; */
    color: white;
    padding: 15px;
    font-size: 32px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.mobile-menu>li>h2:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.mobile-menu .depth {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 8px;
    /* border-bottom: 1px solid #ddd; */
    box-shadow: 0 0 0 0 #ededed;
}

.mobile-menu .depth li {}

.mobile-menu .depth li:first-child {
    border-top: none;
}

.mobile-menu .depth li a {
    display: block;
    padding: 10px 15px;
    line-height: 1.5;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-menu .depth li a:hover {
    color: var(--main-color);
    font-weight: 700;
    transition: 0.2s;
}

#ham-toggle:checked+.ham .line:first-child,
#ham-toggle:checked+.ham .line:last-child {
    opacity: 0;
    translate: 200%;
    transition: 0.5s;
}

header {
    width: 100%;
    height: var(--header-h);
    position: fixed;
    z-index: 9;
    transition: 0.4s ease;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    font-family: "Modern No. 20", sans-serif;

    &.hovered {
        background-color: white;
        transition: 0.3s;

        & .header_wrap {
            .logo {
                .logo_1 {
                    opacity: 1;
                }

                .logo_2 {
                    opacity: 0;
                }
            }

            & .gnb_wrap {
                & .gnb {
                    &>li {
                        transition: 0.3s;

                        &:hover>a {
                            color: var(--main-color);
                            transition: 0.3s;
                        }

                        >a {
                            color: #000;
                        }
                    }
                }
            }
        }
    }

    & .header_wrap {
        display: flex;
        align-items: center;
        height: var(--header-h);
        width: 100%;
        /* border-bottom: 1px solid white; */

        .logo {
            position: absolute;
            left: 5%;
            z-index: 2;

            .logo_2 {
                display: block;
                opacity: 1;
                transition: 0.2s;
            }

            .logo_1 {
                position: absolute;
                left: 0;
                z-index: 1;
                opacity: 0;
                transition: 0.2s;
            }

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

        .gnb_wrap {
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            position: relative;
            height: var(--header-h);

            .gnb {
                display: flex;
                align-items: center;
                width: 100%;
                height: 100%;
                justify-content: center;
                margin: 0 auto;

                >li {
                    height: 100%;

                    &:hover>section {
                        display: block;
                    }

                    >a {
                        display: block;
                        padding: 2rem;
                        font-size: var(--f25);
                        font-weight: 400;
                        color: rgb(255, 255, 255);
                    }

                    section {
                        position: absolute;
                        top: var(--header-h);
                        width: 100%;
                        display: none;
                        left: 0;
                        background-color: rgba(26, 26, 26, 0.5);
                        right: 0;

                        &:hover:before {
                            display: block;
                        }

                        ul {
                            display: flex;
                            margin: 0 auto;
                            padding-left: 18rem;

                            li {
                                padding: 1.5vw 2vw;

                                &:hover a {
                                    color: white;
                                }

                                a {
                                    transition: 0.3s;
                                    color: #c8c8c8;
                                    font-family: inherit;
                                }
                            }
                        }
                    }
                }
            }
        }

        .r_menu {
            position: absolute;
            right: 5%;
            display: flex;
            align-items: center;

            .lang {
                display: flex;
                gap: 0.82vw;
                align-items: center;
                padding: 0.9rem 1rem;

                img {
                    /* width: 1rem;
                            height: 1rem; */
                    max-width: 100%;
                }

                span {
                    display: block;
                    color: white;
                    font-family: "Saira", sans-serif;
                    font-weight: 600;
                    font-size: 0.95rem;
                }
            }

            .ham {
                cursor: pointer;
                /* display: flex; */
                display: none;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 6px;
                height: 100%;
                padding: 0.9rem 2vw;
                padding-right: 0;
                margin-left: 1.875rem;

                .line {
                    display: block;
                    /* background-color: #1a1a1a; */
                    background-color: white;
                    border-radius: 5rem;
                    width: 26px;
                    height: 3px;
                }
            }
        }
    }
}

main {
    font-family: "Pretendard Variable", sans-serif;
}

.m1 {
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    text-align: center;
    align-items: center;
    color: white;
    position: relative;
    z-index: 1;

    .desc {
        position: relative;
        z-index: 1;
        line-height: 1.5;
        letter-spacing: -0.15px;
        margin-top: 5vh;

        h2 {
            margin-top: 1rem;
            font-size: var(--f42);
            letter-spacing: -0.2px;
            padding-inline: 2rem;
        }

        p {
            font-size: var(--f30);
        }

        a {
            margin-top: 3rem;
            display: block;
            position: relative;

            &::before {
                position: absolute;
                background: url(../1x/click_icon.png) no-repeat center / contain;
                content: "";
                display: block;
                bottom: -52.5%;
                left: 0;
                margin-top: 1rem;
                height: var(--f42);
                width: 100%;
                transition: 1s;
                animation: scale2 2s infinite ease-in-out;
            }
        }
    }

    .m1_bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        background: transparent;
        mix-blend-mode: hard-light;
        z-index: -1;
    }

    .m1_bg2 {
        position: absolute;
        mix-blend-mode: hard-light;
        z-index: -1;
        right: -10%;
        height: 100%;
        top: 0;

        img {
            height: 100%;
            display: block;
        }
    }
}

.m2_nav {
    position: absolute;
    bottom: 10%;
    max-width: 1540px;
    width: 60%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    content: "";
    display: block;
    height: 32px;
    border-radius: 3rem;
}

.swiper-pagination {
    display: flex;
    justify-content: space-between;
    padding-inline: 1rem;
    align-items: center;
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 80%;
    top: 50% !important;
    transform: translateY(-50%);
}

.swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: url(../1x/slide_point.png) no-repeat center / cover;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 70px;
    height: 26px;
    transition: width 0.5s;
    border-radius: 5px;
    background: #ff0000;
    border-radius: 3rem;
    background: url(../1x/active.png) no-repeat center / cover;
    box-shadow: 0px 0px 12px 2px rgba(23, 23, 23, 0.3);
}

.swiper-slide {
    position: relative;
}

.swiper-wrapper {
    position: relative;
}

.m2 {
    .s1 {
        background: black url(../1x/s1_main_bg.png) no-repeat center / cover;

        .flex_wrap {
            display: flex;
            width: 100%;
            padding-inline: 10%;

            .flex_left {
                flex: 1 0 60%;

                .line {
                    height: 26%;
                    background-color: white;
                    width: 1px;
                    margin-bottom: 1.5rem;
                    display: block;
                }

                .flex_desc {
                    position: relative;
                    color: white;
                    text-align: left;
                    letter-spacing: -0.15px;
                    line-height: 1.3;

                    .s1_main_logo {
                        display: block;
                        content: "";
                        background: url(../1x/s1_main_logo.png) no-repeat center / cover;
                        right: 50%;
                        top: 0;
                        transform: translate(85%, -45%);
                        position: absolute;
                        opacity: 0.3;
                        z-index: -1;

                        img {
                            opacity: 0.3;
                        }
                    }

                    h3 {
                        font-size: var(--f50);
                        font-weight: 800;
                    }

                    h2 {
                        font-size: var(--f65);
                        margin-bottom: 1.775rem;
                        font-weight: 800;
                    }

                    a {
                        display: inline-flex;
                        align-items: center;
                        color: white;
                        gap: 0.725rem;

                        span {
                            display: inline-block;
                            font-size: var(--f25);
                            font-weight: 500;
                            border: 1px solid rgba(255, 255, 255, 0.7);
                            color: white;
                            padding: 0.85rem 1.8rem;
                            border-radius: 2rem;
                            letter-spacing: -1px;
                            transition: 0.5s;

                            &:hover {
                                background: white;
                                color: black;
                                font-weight: 600;
                            }
                        }
                    }
                }

                .line2 {
                    position: relative;
                    margin-top: 2.5rem;
                    height: 15%;
                    background-color: white;
                    width: 1px;
                    display: block;

                    &::after {
                        position: absolute;
                        display: block;
                        width: 14.5px;
                        border-radius: 50%;
                        aspect-ratio: 1;
                        background-color: white;
                        content: "";
                        bottom: 0;
                        left: 0;
                        transform: translateX(-50%);
                    }
                }

                .pre_pro {
                    position: absolute;
                    display: block;
                    content: "";
                    margin-left: 1.6rem;
                    transform: translateY(-70%);

                    a {
                        display: flex;
                        align-items: center;
                        gap: 0.9rem;

                        i {
                            display: none;
                        }

                        p {
                            color: white;
                            font-size: var(--f25);
                            letter-spacing: -1.5px;
                            font-weight: 400;
                            opacity: 0.5;
                        }
                    }
                }
            }

            .flex_right {
                flex: 1 0 auto;

                .poaster {
                    position: relative;

                    .main_poaster {
                        position: relative;
                        z-index: 1;
                    }

                    .sub_poaster {
                        position: absolute;
                        right: 0;
                        top: 0;
                        z-index: 0;
                        transform: translate(36%, 28%);
                    }
                }
            }
        }
    }

    .s2 {
        background: url(../1x/s2_bg.png) no-repeat center / cover;


        .s2_bg {
            mix-blend-mode: color-dodge;
            position: absolute;
            content: "";
            right: 2%;
            top: 0;
        }

        .cls-1 {
            stroke: #000;
            stroke-miterlimit: 10;
        }

        .cls-1,
        .cls-2 {
            fill: none;
        }

        .cls-3 {
            clip-path: url(#clippath-2);
        }

        .cls-4 {
            clip-path: url(#clippath-1);
        }

        .cls-5 {
            clip-path: url(#clippath-4);
        }

        .cls-6 {
            clip-path: url(#clippath);
        }

        .cls-7 {
            clip-path: url(#clippath-3);
        }

        h3 {
            font-size: var(--f36);
            letter-spacing: -0.25px;
            font-weight: 600;
            color: #1e1e1e;
            line-height: 1.35;
            margin-block: 3.25rem 1.25rem;
            overflow: hidden;

            span {
                font-weight: 800;
            }
        }

        p {
            overflow: hidden;
            font-size: var(--f25);
            font-weight: 300;
            letter-spacing: -0.2px;
            line-height: 1.5;
            display: block;
        }

        .s2_desc {
            margin-inline: 1rem;
        }
    }

    .s3 {
        position: relative;
        background: url(../1x/s3_bg.png) no-repeat center / cover;

        .cloude {
            position: relative;
            width: 100%;
            height: 100%;

            .big_c {
                position: absolute;
                top: 20%;
                z-index: 1;
                display: flex;
                left: 15%;
            }

            .small_c {
                position: absolute;
                top: 35%;
                z-index: 1;
                display: flex;
                left: 8%;
            }
        }

        .desc {
            position: absolute;
            right: 8%;
            top: 35%;
            content: "";
            display: block;
            text-align: right;

            &::after {
                background: url(../1x/s3_bg_logo.png) no-repeat center / cover;
                top: -50%;
                left: -0.45rem;
                position: absolute;
                content: "";
                display: block;
                z-index: 0;
                width: 240px;
                height: 328px;
                opacity: 0.9;
                transform: translateY(10%);
            }

            h2 {
                position: relative;
                font-size: var(--f65);
                font-weight: 800;
                letter-spacing: -0.15px;
                display: block;
                margin-bottom: 2.5rem;
                line-height: 1.2;
            }

            a {
                display: inline-flex;
                align-items: center;
                color: black;
                gap: 0.725rem;
                position: relative;
                z-index: 4;

                span {
                    font-size: var(--f25);
                    font-weight: 500;
                    border: 1px solid rgba(0, 0, 0, 0.7);
                    color: black;
                    padding: 0.85rem 1.8rem;
                    border-radius: 2rem;
                    letter-spacing: -1px;
                    transition: 0.5s;

                    &:hover {
                        background: white;
                        color: black;
                    }
                }
            }
        }
    }

    .s4 {
        background: url(../1x/s4_bg.jpg) no-repeat center / cover;
        color: transparent;
        -webkit-text-stroke: 1px black;
        text-stroke: 1px black;
        overflow: hidden;

        h3 {
            font-size: var(--f56);
            line-height: 1.62;
            margin-block: 2rem;
            position: relative;
            display: inline-block;

            :before {
                top: 0;
                left: 0;
                position: absolute;
                content: "";
                display: block;
                width: 1.5rem;
                aspect-ratio: 1;
                border-style: solid;
                border-width: 2px 0 0 2px;
            }
        }

        h2 {
            display: inline-block;
            font-size: clamp(24px, 3.385vw, 62px);
            margin-block: 2.75rem;
            position: relative;

            :after {
                right: -1rem;
                bottom: 0;
                position: absolute;
                content: "";
                display: block;
                width: 1.5rem;
                aspect-ratio: 1;
                border-style: solid;
                border-width: 0 2px 2px 0;
            }
        }

        .s4_logo {
            position: relative;
            z-index: -1;
        }
    }
}

.sp0 {
    background: #020202;
    width: 100%;
    overflow: hidden;

    .sub_0_1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 100dvh;

        .art {
            position: absolute;
            overflow: hidden;
            opacity: 0.85;

            &.art1 {
                right: 0;
                top: 0;

                img {
                    transform: translate(40%, -25%);
                }
            }

            &.art2 {
                left: 0;

                img {
                    transform: translateX(-25%);
                }
            }
        }

        .desc {
            position: relative;
            z-index: 1;
            line-height: 1.5;
            letter-spacing: -0.15px;
            margin-top: 10vh;
            color: white;
            text-align: center;

            h2 {
                margin-top: 1rem;
                font-size: var(--f42);
                letter-spacing: -0.2px;
            }

            p {
                font-size: var(--f30);
                display: block;
                margin-bottom: 5%;
            }

            .imgbox {
                padding-block: 5%;
            }

            a {
                margin-top: 1rem;
                animation: scUp 2s ease-in-out infinite alternate-reverse;
                display: block;
            }
        }
    }

    .sub_0_2 {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;

        >* {
            color: white;
            letter-spacing: -0.25px;
        }

        .title_flex {
            display: flex;
            width: 100%;
            align-items: center;
            padding-block: 5%;
            justify-content: space-between;

            h2 {
                font-weight: 800;
                font-size: clamp(24px, 3.125vw, 60px);
                letter-spacing: -0.3px;
            }

            .line {
                width: 50%;
                height: 1px;
                background-color: white;
            }
        }

        .flex_wrap {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 10%;
            justify-content: center;
            flex-wrap: wrap;

            &.reverse {
                flex-direction: row-reverse;

                .flex_right {
                    text-align: right;
                }
            }

            .flex_left {
                img {
                    width: 100%;
                    animation: upDown 2.5s ease-in-out infinite alternate-reverse;
                }
            }

            .flex_right {
                h3 {
                    font-size: var(--f50);
                    font-weight: 800;
                    margin-bottom: 3rem;
                }

                p {
                    display: inline-block;
                    font-size: var(--f25);
                    font-weight: 500;
                    line-height: 1.5;
                    width: 100%;
                    max-width: 57ch;
                    text-wrap: pretty;
                }
            }
        }

        .img_line {
            width: 100%;
            margin-block: 5%;

            img {
                margin: 0 auto;
                display: block;
            }
        }

        .slider {
            width: 100%;
            margin-bottom: 5%;

            &:nth-of-type(2) {
                margin-top: 7%;
            }
        }

        .slide-track {
            display: flex;
            animation: slide 20s linear infinite;
        }

        .slide {
            text-align: center;
            font-size: 2rem;
            padding: 20px;
            color: white;
            box-sizing: border-box;
        }
    }

    .footer {
        color: white;

        img {
            filter: invert(1);
        }
    }
}

.sp1 {
    background: url(../1x/sub1_bg.jpg) no-repeat center / cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-behavior: smooth;

    .modal {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.2);
        z-index: 9;
        display: none;

        .close-btn {
            position: absolute;
            top: 10vh;
            right: 49%;
            transform: translate(50%, 50%);
            z-index: 9;
            width: 80px;
            aspect-ratio: 1;
            border-radius: 50%;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5) url(../1x/close-icon.png) no-repeat center / 30%;
        }

        .swiper-slide {
            position: relative;
            background: transparent;

            img {
                display: block;
                max-width: 75vw;
            }
        }

        .s1_slide_btn2 {
            position: absolute;
            width: 100%;
            z-index: 1;

            .s1_next_btn2 {
                position: absolute;
                right: 25%;
                cursor: pointer;
                transform: translateX(-50%);
            }

            .s1_prev_btn2 {
                position: absolute;
                left: 25%;
                transform: translateX(50%);
                cursor: pointer;
            }
        }
    }

    .sub_1_1 {
        display: flex;
        padding: 10rem;

        .pro_arrow {
            margin-top: 2rem;
            margin-right: 3.6vw;
        }

        .swiper-slide {
            background: transparent;
        }

        .s1_slide_btn {
            position: absolute;
            width: 100%;
            z-index: 1;

            .s1_next_btn {
                position: absolute;
                right: 0;
                cursor: pointer;
            }

            .s1_prev_btn {
                position: absolute;
                left: 0;
                cursor: pointer;
            }
        }

        .flex_wrap {
            display: flex;
            text-align: left;
            align-items: center;
            gap: 2rem;

            .flex_left {
                margin: 2rem;

                img {
                    display: block;
                    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
                }
            }

            .flex_right {
                .desc {
                    h2 {
                        font-size: var(--f50);
                        font-weight: 800;
                        letter-spacing: -1px;
                        border-bottom: 1px solid #000;
                        padding-bottom: 1rem;
                    }

                    h3 {
                        font-size: var(--f30);
                        font-weight: 600;
                        letter-spacing: -0.5px;
                        margin-block: 1rem 2rem;
                    }

                    p:nth-of-type(1) {
                        margin-bottom: 2rem;
                    }

                    p {
                        font-size: var(--f25);
                        letter-spacing: -0.25px;
                        line-height: 1.5;
                        font-weight: 500;
                    }

                    span {
                        font-weight: 700;
                    }
                }
            }
        }
    }

    .sub_1_2 {
        background-color: white;
        padding: 10rem;

        .pro_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            /* grid-template-columns: 1fr 1fr 1fr; */
            column-gap: 5vw;

            .grid_item {
                margin: 0 auto;
                position: relative;
                transition: 0.5s;
                cursor: pointer;
                margin-bottom: 10vh;

                &:hover::after {
                    opacity: 1;
                }

                &::after {
                    position: absolute;
                    background: rgba(0, 0, 0, 0.4) url(../1x/sub1_more.png) no-repeat center;
                    left: 50%;
                    top: 50%;
                    z-index: 1;
                    content: "";
                    width: 155px;
                    aspect-ratio: 1;
                    border-radius: 50%;
                    transform: translate(-50%, -50%);
                    opacity: 0;
                    transition: 0.3s;
                    cursor: pointer;
                }

                img {
                    width: 100%;
                    display: block;
                    vertical-align: top;
                    box-shadow: 15px 15px 32px 8px rgba(0, 0, 0, 0.2);
                }
            }
        }
    }

    .sub_1_3 {
        padding: 5.25em 10em;
        width: 100%;

        input:focus,
        select:focus,
        textarea:focus,
        button:focus {
            outline: none;
        }

        #comments-section {
            display: flex;
            width: 100%;
            flex-direction: column;
            gap: 1.55rem;
            max-width: 1340px;
            padding-inline: 20px;
            margin: 0 auto;

            .comment {
                padding: 3rem 5% 3rem 10%;
                border-radius: 20rem;
                overflow: hidden;
                align-content: center;
                margin-top: 10px;
                background-color: #f9f9f9;
                display: flex;
                justify-content: space-between;
                font-family: inherit;
                font-size: var(--f30);
                color: #353535;
                font-weight: 500;
                letter-spacing: -0.25px;
                box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.12);
                text-wrap: pretty;

                &:nth-of-type(odd) {
                    border-bottom-right-radius: 0;
                }

                &:nth-of-type(even) {
                    border-bottom-left-radius: 0;
                }
            }

            .delete-btn {
                background-color: #353535;
                color: white;
                border: none;
                cursor: pointer;
                padding: 8px 1rem;
                border-radius: 1rem;
                font-size: 1rem;
            }
        }

        .down_arrow {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-block: 3rem;
        }

        .comment-input {
            font-family: inherit;
            font-size: var(--f30);
            color: #353535;
            font-weight: 500;
            background-color: white;
            border-radius: 10rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
            padding: 12px 1rem 12px 5%;
            max-width: 1340px;
            margin: 0 auto;

            #comment-box {
                width: 100%;
                border: none;
                font-family: inherit;
                font-size: var(--f25);
                color: #353535;
                font-weight: 400;
                letter-spacing: -0.25px;

                &::placeholder {
                    color: #a0a0a0;
                }

                &::-ms-input-placeholder {
                    color: #a0a0a0;
                    outline-width: 0;
                }
            }

            #submit-btn {
                background-color: #c1c1c1;
                border: none;
                padding: 1rem 1.5rem;
                font-size: 16px;
                border-radius: 10rem;
                cursor: pointer;
                font-weight: bold;
                font-size: var(--f30);
                color: white;
                font-weight: 500;
                transition: 0.5s;

                &:hover {
                    background-color: #ee1010;
                    transition: 0.5s;
                }
            }
        }
    }
}

.footer {
    display: flex;
    width: 100%;
    gap: 1.75rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 5rem;
    letter-spacing: -0.25px;
    font-size: var(--f30);
    font-weight: 600;
}

@keyframes scale2 {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}

@keyframes upDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@media all and (width < 1880px) {
    .m2 {
        & .s1 {
            & .flex_wrap {
                & .flex_right {
                    & .poaster {
                        .sub_poaster {
                            display: none;
                        }

                        .main_poaster {
                            width: 80%;
                            margin: 0 auto;

                            img {
                                width: 80%;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/
@media all and (max-width:1282px) {
    header {
        & .header_wrap {
            & .r_menu {
                & .lang {
                    img {
                        max-width: 80%;
                    }
                }
            }
        }
    }

    .s2 .desc svg {
        max-height: 30vh;
    }

    #m1 .imgbox img {
        max-height: 200px;
    }

    .m2 {
        & .s3 {
            & .desc {
                &::after {
                    opacity: 0.25;
                }
            }
        }

        & .s4 {
            h2 {
                display: inline-block;
                font-size: clamp(24px, 3.385vw, 62px);
                margin-block: 1.75rem 2.75rem;
                position: relative;
            }
        }
    }

    .sp0 {
        & .sub_0_1 {
            & .art {
                &.art1 {
                    right: -100%;
                    top: 0;
                }

                &.art2 {
                    left: -100%;
                }
            }

            & .desc {
                margin-inline: 20px;

                .imgbox {
                    padding-block: 2rem;

                    img {
                        max-height: 150px;
                    }
                }
            }
        }

        & .sub_0_2 {
            & .flex_wrap {
                & .flex_right {
                    h3 {
                        margin-top: 2rem;
                    }
                }
            }
        }
    }

    .sp1 {

        & .sub_1_1 {
            padding: 10rem 20px;

            .flex_wrap {
                flex-wrap: wrap;
                justify-content: center;

                & .flex_left {
                    img {
                        max-height: 320px;
                    }
                }
            }
        }

        .sub_1_2 {
            padding: 5rem 20px;
        }

        .sub_1_3 {
            padding: 5.25em 20px;
        }
    }
}

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/
@media all and (max-width:799px) {
    :root {
        --header-h: 75px;
    }


    header {
        & .header_wrap {
            .r_menu {
                display: none;
            }

            & .gnb_wrap {
                & .gnb {
                    justify-content: flex-end;

                    li {
                        flex: 1;

                        a {
                            padding: 2rem 1rem;
                        }
                    }

                    li:nth-of-type(1) {
                        opacity: 0;
                        visibility: hidden;
                        pointer-events: none;
                    }

                    li:nth-of-type(4) {
                        display: none;
                    }
                }
            }
        }
    }

    .m1 {
        & .m1_bg2 {
            img {
                height: auto;
            }
        }
    }

    .m2 {
        & .s1 {
            & .flex_wrap {
                flex-wrap: wrap-reverse;
                padding-inline: 1rem;

                .flex_left {

                    .pre_pro,
                    .line,
                    .line2 {
                        display: none;
                    }
                }

                .flex_right {
                    width: 100%;
                }
            }
        }
    }

    .sp1 {
        & .sub_1_1 {
            .pro_arrow {
                display: none;
            }

            & .s1_slide_btn {
                .s1_prev_btn {
                    display: none;
                }
            }
        }
    }
}