@import url('/font/style.css');

#ctt {
    display: none;
}

/* 스와이퍼 */
.swiper {
    width: 100%;
    margin: 0;
    z-index: 0;
}

div.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper-wrapper.flow {
    pointer-events: none;
    transition-timing-function: linear;
}

/* -------------------------------------------------- 커스텀 ----------------------------------------------------- */

*::selection {
    background: #00000090;
    color: #fff;
}

@keyframes Y_arw {

    0%,
    100% {
        transform: translateY(6%);
    }

    50% {
        transform: translateY(-6%);
    }
}


@keyframes animX {
    0% {
        left: 0;
    }

    100% {
        left: 47.240vw;
    }
}

@keyframes animY {
    0% {
        top: 0;
    }

    100% {
        top: 25.781vw;
    }

}

@keyframes ddmx {
    50% {
        transform: translateX(30%);
    }
}

@keyframes marqueeX {
    from {
        transform: translateX(0);
    }

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

@keyframes marqueeX_r {
    from {
        transform: translateX(0);
    }

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

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scaleOpa {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes updown1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2%);
    }
}

@keyframes updown2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3%);
    }
}

@keyframes updown3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4%);
    }
}


.updown1 {
    animation: updown1 3s infinite ease-in-out;
}

.updown2 {
    animation: updown2 3.5s infinite ease-in-out;
}

.updown3 {
    animation: updown3 4s infinite ease-in-out;
}

.scale_opa {
    animation: scaleOpa infinite 3s;
}

.scale_opa2 {
    animation: scaleOpa infinite 3s;
}

.spin {
    animation: spin 10s infinite linear;
}

.image_sd_wrap {
    overflow: hidden;
}

.image_sd .absol {
    left: 100%;
}

.image_sd_r .absol {
    right: 100%;
}

.y_arw {
    animation: Y_arw 3s infinite ease-in-out;
}

.image_sd {
    animation: marqueeX 40s infinite linear;
}

.image_sd_r {
    animation: marqueeX_r 40s infinite linear;
}



/* --------------------------------------------------------------------------------------- */

.rot180 {
    transform: rotate(180deg);
}

.arw_wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 0.4vw;

    width: fit-content;
    cursor: pointer;
}

@media screen and (max-width:599px) {
    .arw_wrap {
        gap: 1vw;
        font-size: 4vw;
    }
}

.arw_txt {
    display: flex;
    align-items: center;
    position: relative;
}

.arw_txt::after {
    content: '';
    width: 0%;
    height: 0.05vw;
    background: #000;
    position: absolute;
    bottom: 0%;
    transition: width 0.3s;
}

@media screen and (min-width:600px) {

    /* PC */
    .arw_wrap:hover .arw_txt::after {
        width: 100%;
    }

    .arw_wrap:hover .con_arw {
        animation: ddmx 1.7s infinite ease-in-out;
    }

    .con_arw_y {
        animation: Y_arw 1.7s infinite ease-in-out;
    }
}


.sc_down,
.sc_up {
    display: flex;
    height: fit-content;
    gap: 0.4vw;

    cursor: pointer;
}

.sc_down_txt::after,
.sc_up_txt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.05vw;
    background: #ffffff;
    transition: 0.3s;
}


@media screen and (min-width:600px) {

    /* PC */
    .sc_down:hover .sc_down_txt::after,
    .sc_up:hover .sc_up_txt::after {
        width: 100%;
    }
}

section {
    overflow: hidden;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 300;
    font-size: 0.9vw;
    letter-spacing: 0;
}

/* ----------------------- */

.c_fff {
    color: #fff;
}

.bg_fff {
    background: #fff;
}

.c_000 {
    color: #000;
}

.bg_000 {
    background: #000;
}

.c_111 {
    color: #111;
}

.bg_111 {
    background: #111;
}

.c_777 {
    color: #777;
}

.c_ddd {
    color: #ddd;
}

.bg_ddd {
    background: #ddd;
}

.bg_ivry {
    background: #f7f5e7;
}

.bg_ivry2 {
    background: #f9f8f3;
}

.bg_ivry3 {
    background: #dbd8c3;
}

.bg_ivry4 {
    background: #e4e1cd;
}

.bg_ivry5 {
    background: #ebe9dc;
}

.c_blue {
    color: #2e5582;
}

.bg_blue {
    background: #2e5582;
}

.bg_f2f {
    background: #f2f2f2;
}

.bg_red {
    background: #c3433c;
}

.c_red {
    color: #c3433c;
}

.con_stc {
    width: 0.729vw;
    height: 0.729vw;

    border: 0.05vw solid #111;
    border-radius: 50%;

    display: block;
}

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

    /* 모바일 */
    .con_stc {
        width: 3vw;
        height: 3vw;
        border: 0.05vw solid #111;
        border-radius: 50%;
        display: block;
    }

    .c_blue_m {
        color: #2e5582;
    }
}

.con01_t1 {
    text-transform: capitalize;
}