/* 스와이퍼 */
.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;
}


* {
    user-select: none;
}

/* -------------------------------------------------- 커스텀 ----------------------------------------------------- */

*::selection {
    background: #00000090;
    color: #fff;
}

@keyframes ddmY2 {

    0%,
    100% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-10%);
    }

    20% {
        transform: translateY(0%);
    }
}

@keyframes marqueeX {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes marqueeX_r {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes pokjug {

    0% {
        transform: translateY(20%);
        opacity: 0;
    }

    20% {
        transform: translateY(-20%);
        opacity: 1;
    }

    100% {
        transform: translateY(20%);
        opacity: 0;
    }
}

@keyframes light_blk {

    0%,
    31%,
    34%,
    39%,
    42%,
    47% {
        opacity: 0;
    }

    5%,
    30%,
    35%,
    38%,
    43%,
    46% {
        opacity: 0.4;
    }

    50%,
    55%,
    60%,
    67%,
    51%,
    54%,
    68%,
    100% {
        opacity: 1;
    }

    70% {
        opacity: 0.2;
    }
}

@keyframes light_opa {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


@keyframes sway {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes sry {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(0deg);
    }
}


@keyframes sway2 {
    50% {
        transform: rotate(3deg);
    }
}

@keyframes scaleOpa {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes ddmY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10%) scale(1.02);
    }
}

@keyframes blk {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    31% {
        opacity: 1;
    }

    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes cute_biker {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-0.1vw);
    }

    50% {
        transform: translateY(0.1vw);
    }

    75% {
        transform: translateY(-0.1vw);
    }

    100% {
        transform: translateY(0);
    }
}


@keyframes cute_bee {
    0% {
        transform: translateX(0);

    }


    100% {
        transform: translateX(-67vw);
    }
}


@keyframes Xover {
    0% {
        right: 0vw;
        transform: scaleX(1);
    }

    50% {
        right: 67vw;
        transform: scaleX(1);
    }

    50.01% {
        right: 67vw;
        transform: scaleX(-1);
    }

    100% {
        right: 0vw;
        transform: scaleX(-1);
    }
}

.x_over_move {
    animation: Xover 20s infinite linear;
}

.cute_biker {
    animation: cute_biker 2s infinite linear;
}

.animate-blk {
    animation: blk 1s infinite ease-in-out;
}

.ddmY {
    animation: ddmY 3s infinite ease-in-out;
}

.ddmY2 {
    animation: ddmY 3s 0.1s infinite ease-in-out;
}

.ddmY3 {
    animation: ddmY 3s 0.2s infinite ease-in-out;
}

.ddmY4 {
    animation: ddmY 3s 0.3s infinite ease-in-out;
}

.ddmY5 {
    animation: ddmY 3s 0.4s infinite ease-in-out;
}

.scaleOpa {
    animation: scaleOpa infinite 2s;
}

.sway {
    animation: sway 1s infinite ease-in-out;
}

.sway2 {
    animation: sway2 2s infinite ease-in-out;
}

.sway_bot {
    animation: sway 2s infinite ease-in-out;
    transform-origin: bottom;
}

.sway_top {
    animation: sway 2s infinite ease-in-out;
    transform-origin: top;
}

.sway_left_top {
    animation: sway 2s infinite ease-in-out;
    transform-origin: top left;
}

.sway_right_top {
    animation: sway 2s infinite ease-in-out;
    transform-origin: right top;
}

.sway_left_bot {
    animation: sway 2s infinite ease-in-out;
    transform-origin: left bottom;
}

.sway_right_bot {
    animation: sway 2s infinite ease-in-out;
    transform-origin: right bottom
}


.sry_man {
    animation: sry 2s infinite ease-in-out;
    transform-origin: left bottom;
}

.light_opa {
    animation: light_opa infinite ease-out 2s;
}


.light_blk {
    animation: light_blk infinite 5s;
}

.pokjug {
    animation: pokjug 5s infinite ease-in-out;
}

.image_sd {
    animation: marqueeX 20s infinite linear;
}

.image_sd_r {
    animation: marqueeX_r 20s infinite linear;
}

.image_sd_wrap {
    overflow: hidden;
}

.image_sd .absol {
    left: 100%;
}

.image_sd_r .absol {
    right: 100%;
}


.ddm1 {
    animation: ddmY2 3s infinite ease-in-out;
}

.ddm2 {
    animation: ddmY2 3s 0.1s infinite ease-in-out;
}

.ddm3 {
    animation: ddmY2 3s 0.2s infinite ease-in-out;
}

.ddm4 {
    animation: ddmY2 3s 0.3s infinite ease-in-out;
}

/* --------------------------------------------------------------------------------------- */

.rot180 {
    transform: rotate(180deg);
}

.rvs_x {
    transform: scaleX(-1);
}



/* ----------------------- */

.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;
}

.c_yell {
    color: #fdd000;
}

.bg_yell {
    background: #fdd000;
}

.c_yell_hv {
    color: #ffad00;
}

.bg_yell_hv {
    background: #ffad00;
}

.c_blue {
    color: #70eadd;
}

.bg_blue {
    background: #70eadd;
}

.c_blue_hv {
    color: #11a1a1;
}

.bg_blue_hv {
    background: #11a1a1;
}

.c_red {
    color: #ff475f;
}

.bg_red {
    background: #ff475f;
}

.c_pst_red {
    color: #fee8eb;
}

.bg_pst_red {
    background: #fee8eb;
}

.c_pst_blue {
    color: #ecfafa;
}

.bg_pst_blue {
    background: #ecfafa;
}

.c_pst_yell {
    color: #fffbe8;
}

.bg_pst_yell {
    background: #fffbe8;
}

.c_pst_yell_02 {
    color: #fff0ab;
}

.bg_pst_yell_02 {
    background: #fff0ab;
}






/* 헤더 2 */
.con_header {
    width: 100%;
    position: absolute;
    z-index: 9999999;

    display: flex;
    justify-content: center;
    align-items: center;

    top: 2vw;
    /* transition:  0.3s ease-in-out; */
}

.con_hd_iner {
    width: 77.083vw;
    height: 4.896vw;

    border: 1px solid #e5e5e5;
    border-radius: 1.042vw;
    background: #fff;

    box-shadow: 0 0.5vw 5vw rgba(0, 0, 0, 0.04);

    display: flex;
    justify-content: center;
    align-items: center;
}

.con_header.on_fix {
    top: 0;
}

.con_header.on_fix .con_hd_iner {
    width: 100%;
    border-radius: 0;
    height: 3vw;
    /* transition: 0.3s ease-in-out; */
}

.con_hdt {
    font-size: 0.833vw;
    height: 100%;

    width: fit-content;
    white-space: nowrap;
    cursor: pointer;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con_hd_line {
    width: 0.104vw;
    height: 0.677vw;
    background: #ccc;

    margin: 0 2.552vw;
}

.con_hdt>p::before {
    content: attr(data-text);
    position: absolute;
    -webkit-text-stroke: 0.02vw #000;
    color: transparent;
    z-index: 0;

    opacity: 0;
    transition: 0.3s;
}

.con_hdt.remote_on>p::before {
    opacity: 1;
}


@media screen and (min-width:600px) {

    .con_hdt::after {
        content: '';
        width: 52%;
        height: 0vw;
        background: #fdd000;
        position: absolute;
        bottom: 0%;
        transition: height 0.1s;
    }

    .con_hdt.remote_on::after {
        height: 0.2vw;
    }

    .con_hdt:hover::after {
        height: 0.2vw;
    }

    .con_hdt:hover>p::before {
        opacity: 1;
    }

}

.con_tt_img {
    width: unset;
    height: 6.563vw;
}

.con_tt_img>img {
    width: unset;
    height: 100%;
    object-fit: cover;
}

.con_tline {
    border-radius: 0.781vw;
    padding-top: 0.2vw;
    padding-bottom: 0.1vw;
}

.con_tline_02 {
    border-radius: 0vw;
    padding-top: 0.1vw;
    padding-bottom: 0.1vw;
}


.con_itv {
    min-height: 6.37vw;
    width: 60.156vw;
    border-radius: 100vw;

    padding: 1vw 0;
}


.con_itv_t2 {
    width: 50%;
    text-align: center;
}

/* 스마트에디터로 들어오는 p/div 줄바꿈을 br처럼 통일 */
.con_itv_first .con_itv_t2>p,
.con_itv_first .con_itv_t2>div {
    margin: 0;
    padding: 0;
    display: block;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-align: inherit;
}

.con_itv_first .con_itv_t2>p+p,
.con_itv_first .con_itv_t2>div+div,
.con_itv_first .con_itv_t2>p+div,
.con_itv_first .con_itv_t2>div+p {
    margin-top: 0;
}


.con_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: relative;

    width: 77.188vw;
    border-radius: 1.042vw;

    background: #fff;
    padding-top: 5vw;
}

.con_boxin_width {
    width: 69.271vw;
}

.con_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    pointer-events: none;
    gap: 0.5vw;
}

.con_btn {
    width: 3.229vw;
    aspect-ratio: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    pointer-events: all;

    border-radius: 50%;
    color: #fff;
    font-family: serif;
}

.btn_arrow {
    width: 0.885vw;
}

.con_btn_next .btn_arrow {
    transform: scaleX(-1);
}

.con_ddm {
    width: 10.26vw;
}

.con_hd_x {
    display: none;
}

/* .con_header.on_fix.drop {
    top: 5vw;
    transition: 0.3s 0.2s ease-in-out;
}

.con_header.on_fix.insert {
    top: -6vw;
} */

.con_header.on_fix .con_hd_x {
    display: none;
}

.scop_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scop_frnt {
    position: relative;
    z-index: 100;
}

.scop_frnt_02 {
    z-index: 150;
}

.scop {
    width: 100%;
    height: 100%;
    border-radius: 50%;

    position: absolute;
}

.con04_itv_txt * {
    color: #111 !important;
    font-size: 1.562vw !important;
}

.con04_itv_txt b {
    font-weight: 800 !important;
}

@media screen and (max-width:599px) {

    /* 모바일 */
    *.sub_txt {
        font-size: 3.5vw;
        text-align: center;
        line-height: 1.3;
    }

    *.title_txt {
        font-size: 8vw;
    }


    .con_header {
        width: 96vw;
        border-radius: 3vw;
        top: 5vw;
        background: #fff;
        box-shadow: 0 0.5vw 5vw rgba(0, 0, 0, 0.04);
        border: 1px solid #e5e5e5;
        border-top: none;
        height: 21.467vw;

        transition: height 0.3s;
    }

    .con_header.on_fix {
        width: 100%;
        border-radius: 0;
        top: 0;

        background: #fff;
    }


    .con_hd_iner {
        background: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        height: auto;


        width: 75vw;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        row-gap: 2.9vw;

        padding: 2vw 0;
    }

    .con_hdt {
        font-size: 3.3vw;
    }

    .con_header.on_fix .con_hd_iner {
        width: 73vw;
        border-radius: 0;
        height: auto;
    }

    .con_hd_line {
        width: 1px;
        height: 2.4vw;
        background: #aaa;
        margin: 0 2.9vw;
    }

    .con_hd_x_2 {
        display: none;
    }

    .con_header.on_fix.hd_up .con_hd_x_2 {
        display: flex;
        width: 100%;
        bottom: 0;
        left: 0;
        height: 100%;
    }

    .con_hd_x_3 {
        display: flex;


        bottom: 0;
        right: 0;

        width: 14vw;
        height: 7vw;
    }

    .con_header.on_fix.hd_up .con_hd_x_3 {
        display: none;
    }

    .con_hd_x {
        width: 2vw;
        filter: invert(1);
        transform: rotate(90deg);
        position: absolute;
        right: 3vw;
        bottom: 1.5vw;
        font-size: 4vw;
        opacity: 0.5;

        display: none;
        transition: 0.3s ease-in-out;
    }

    .con_header.on_fix .con_hd_x {
        display: block;
    }

    .con_header.on_fix .con_hd_iner {
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }

    .con_header.hd_up .con_hd_iner {
        opacity: 0;
    }

    .con_header.hd_up {
        height: 7vw;
    }

    .con_header.hd_up .con_hd_x {
        transform: rotate(-90deg);
    }

    .con_hdt>p::before {
        -webkit-text-stroke: 0.03vw #fff;
    }

    .con_hdt {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .con_hdt>p {
        z-index: 10;
        padding: 0.3vw 1.3vw;
    }

    .con_hdt::after {
        content: '';
        width: 0%;
        height: 100%;
        background: #ff475f;
        position: absolute;
        transition: width 0.2s;
    }

    .con_hdt.remote_on::after {
        width: 100%;
    }

    .con_hdt.remote_on>p {
        color: #fff;
    }

    .con_tline {
        border-radius: 3vw;
        padding: 0.7vw 1.3vw;
    }

    .con_tt_img {
        height: 13vw;
    }

    .con_tt_img.mtt_img {
        height: 9vw;
    }

    .con_tt_img.mtt_img2 {
        height: 7vw;
    }

    .con_itv {
        min-height: 21vw;
        width: 94vw;
        padding: 2vw 0;
    }

    .con_itv_t2 {
        font-size: 3.6vw;
        width: 80%;
        text-align: center;
    }

    .itv_swiper .con_itv_t2 {
        font-size: 3.6vw;
        width: 74%;
        text-align: left;
        padding-left: 0;
        padding-right: 8vw;
        line-height: 1.2;
    }

    .itv_swiper .con_itv_t2>br {
        display: none !important;
    }

    .itv_swiper .con_itv_first {
        justify-content: flex-end !important;
        padding: 2vw 0;
    }

    /* .itv_swiper .con_itv_t2>* {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    } */

    .con04_itv_txt * {
        color: #111 !important;

        font-size: 2.8vw !important;
    }

    .con04_itv_txt b {
        font-weight: 800 !important;
    }


    .tab_itv_wrap {
        top: auto;
        left: 2vw;
        bottom: auto;
    }

    .tab_itv_person {
        width: 19vw;
        margin-bottom: 0;
    }

    .con_itv_t1 {
        width: 22vw;
        font-size: 3vw;
        bottom: -6vw;
    }

    .con_box {
        width: 96vw;
        border-radius: 4vw;
        padding-top: 13vw;
    }

    .con_btn {
        width: 10vw;
    }

    .btn_arrow {
        width: 2.4vw;
    }

    .con_btn_prev {
        padding-right: 1vw;
    }

    .con_btn_next {
        padding-left: 1vw;
    }

    .con_btn_wrap {
        margin-top: 6vw;
        gap: 8vw;
    }

    .con_boxin_width {
        width: 95%;
    }

    .con_ddm {
        width: 25vw;
    }

    .con_tline_02 {
        padding: 0.2vw 0;
    }

    /* .con_header.on_fix.insert {
        top: -6vw;
    }

    .con_header.on_fix.insert {
        top: -22vw;
    }

    .con_header.on_fix.drop {
        top: 25.5vw;
    } */
}



.lines,
.words,
.chars {
    display: inline-block;
}

.con08_legend_txt>p>.lines {
    overflow: hidden;
}




/* ----------------------------------- */

.pc-mobile {
    display: flex;
}

.mobile-pc {
    display: none;
}

.hide {
    display: none !important;
}

@media screen and (max-width:599px) {
    .pc-mobile {
        display: none;
    }

    .mobile-pc {
        display: flex;
    }
}

/* #footer, */
/* #header,
section:not(.con16, .con15) {
    display: none !important;
} */
/* #header,
#footer,
section:not(.con_wrap),
section>div:not(.con11_2nd ) {
    display: none !important
} */