/* ============ Base / Reset ============ */
@keyframes scaleOpa10 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

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

@keyframes sway {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes pokjug {

    0% {
        transform: translateY(20%);
        opacity: 0;
    }

    20% {
        transform: translateY(20%);
        opacity: 1;
    }

    100% {
        transform: translateY(20%);
        opacity: 0;
    }
}


@keyframes money_fall {
    0% {
        transform: translate3d(0, -10vw, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        transform: translate3d(-1.5vw, 15vw, 0) rotate(10deg);
    }

    50% {
        transform: translate3d(1.5vw, 35vw, 0) rotate(-10deg);
    }

    75% {
        transform: translate3d(-1vw, 60vw, 0) rotate(8deg);
    }

    100% {
        transform: translate3d(0, 90vw, 0) rotate(0deg);
        opacity: 0;
    }
}



@keyframes sway2 {
    50% {
        transform: rotate(3deg);
    }
}

@keyframes light_opa {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes scaleOpa11 {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

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

@keyframes scaleOpa12 {
    0% {
        transform: scale(0.7);
        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;
    }
}

.money_fall {
    animation: money_fall 7s infinite ease-in-out;
}

.pokjug {
    animation: pokjug 2s infinite ease-in-out;
}

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

.sway {
    animation: sway 1s infinite ease-in-out;
}

.sway2 {
    animation: sway2 2s infinite ease-in-out;
}

.sway_top {
    animation: sway 2s infinite ease-in-out;
    transform-origin: top;
}

.sway_bot {
    animation: sway 2s infinite ease-in-out;
    transform-origin: bottom;
}

.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
}

.light_opa {
    animation: light_opa infinite ease-out 2s;
}

.scaleOpa10 {
    animation: scaleOpa10 infinite 2s;
}

.scaleOpa11 {
    animation: scaleOpa11 infinite 2s;
}

.scaleOpa12 {
    animation: scaleOpa12 infinite 2s;
}

.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;
}

*,
*::before,
*::after {
    box-sizing: unset;
    /* 성능·안정성 */
    margin: 0;
}

button {
    outline: none;
}

button {
    border: none;
}

.leftflex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.rightflex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

html,
body {
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

.fwrap {
    flex-wrap: wrap;
}

/* 접근성 유틸 (화면에서 숨기기) */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============ Layout Helpers ============ */
section {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.pc-mobile {
    display: flex;
}

.mobile-pc {
    display: none;
}

.pc {
    display: flex;
}

.pc-inline {
    display: inline;
}

.tablet {
    display: none;
}

.mobile {
    display: none;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.flowhid {
    overflow: hidden;
}

.hide {
    display: none !important;
}

.hideopa {
    opacity: 0 !important;
}

.show {
    opacity: 1 !important;
}

.absol {
    position: absolute;
}

.rltv {
    position: relative;
}

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

.scrX .scrX_item {
    animation: marqueeX 20s linear infinite;
    width: 100%;
}

.scrX .scrX_item_absol {
    right: -100%;
    width: 100%;
}

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

.scrY .scrY_item {
    animation: marqueeY 20s linear infinite;
    height: 100%;
}

.scrY .scrY_item_absol {
    bottom: -100%;
    width: 100%;
}

.flexrow {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.flexcol {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main1 {
    top: 0;
    opacity: 0.3;
    width: 100%;
    z-index: 5;
    margin-top: -81.4%;
    pointer-events: none;
}

/* ============ Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;500;600;700&display=swap");

/* Pretendard – 각 굵기 분리 선언 (font-display: swap으로 FOUT 최소화) */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTTtangsbudaejjigaeB';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2212@1.0/TTTtangsbudaejjigaeB.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheJamsil5Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil5Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    /* fluid type 기본값 – 기존 계산식 유지 */
    font-family: 'Pretendard', 'Noto Sans KR', system-ui, -apple-system, Segoe UI, Roboto, Apple SD Gothic Neo, 'Noto Serif KR', sans-serif;
}

/* ============ Preload holder ============ */


/* ============ Animations / Keyframes ============ */
/* 기존 이름 유지 + 문법 오류 제거 */


@keyframes boom {

    80% {
        opacity: 0;
    }

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

@keyframes headlightBlink {
    0% {
        opacity: 0.2;
    }

    15% {
        opacity: 0.8;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0.7;
    }

    55% {
        opacity: 1;
    }

    70% {
        opacity: 0.6;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes sway4 {
    50% {
        transform: rotate(2deg) scale(1.06);

    }
}

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

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

@keyframes marquee2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

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

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

@keyframes marqueeY {
    from {
        transform: translateY(0);
    }

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

@keyframes slick-circle {
    0% {
        left: 0;
    }

    100% {
        left: 99%;
    }
}

@keyframes soul_out {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateY(-50%);
    }
}

@keyframes ddm3 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: rotate(-2deg);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes ddm4 {
    0% {
        transform: scale(1);
    }

    25% {
        transform: rotate(-2deg);
    }

    50% {
        transform: scale(1.05);
    }

    75% {
        transform: rotate(2deg);
    }

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

@keyframes rotate360 {
    0% {
        transform: rotate(0);
    }

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

@keyframes rotate-360 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotate_img10deg {

    0%,
    49% {
        transform: rotate(10deg);
    }

    50%,
    99% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}


@keyframes rotate_img5deg {

    0%,
    49% {
        transform: rotate(5deg);
    }

    50%,
    99% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

@keyframes opazoom {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0;
    }

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

.opazoom {
    animation: opazoom 1.5s infinite;
}

@keyframes ani_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: matrix(1.1, 0.01, 0.01, 1.2, 0, 0);
    }

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

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

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

@keyframes blk {

    0%,
    30% {
        opacity: 0;
    }

    31%,
    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blk2 {

    0%,
    49% {
        opacity: 0;
    }

    50%,
    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blk3 {

    0%,
    24% {
        opacity: 1;
    }

    25%,
    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

@keyframes scaleOpa2 {
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes scaleOpa3 {
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes ball {
    0% {
        bottom: 0;
    }

    100% {
        bottom: 20px;
    }
}

@keyframes ddm {
    0% {
        transform: scale(1);
    }

    50% {
        transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -30);
    }

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

@keyframes ddm_m {
    0% {
        transform: scale(1);
    }

    50% {
        transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -15);
    }

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

@keyframes ddm_m2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: matrix(1.15, 0.01, 0.01, 1.15, 0, 30);
    }

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

@keyframes zoom2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

@keyframes rotate_imageY {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes ddm2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: scale(1.02);
    }
}

@keyframes ddm2X {
    0% {
        transform: scale(1);
    }

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

    100% {
        transform: scale(1.02);
    }
}

@keyframes ddm2Xhalf {
    0% {
        transform: scale(1);
    }

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

    100% {
        transform: scale(1.02);
    }
}

@keyframes uitLineMove {
    0% {
        stroke-dashoffset: 300.292;
    }

    100% {
        stroke-dashoffset: 110;
    }
}

@keyframes rotate_img10deg {
    0% {
        transform: rotate(10deg);
    }

    49% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    99% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

@keyframes hand {
    0% {
        transform: translateY(-0.5%);
    }

    25% {
        transform: translateY(1%);
    }

    50% {
        transform: translate(0.5%, -1%);
    }

    75% {
        transform: translate(1%, 0.5%);
    }

    100% {
        transform: translate(1%, -1%);
    }
}

@keyframes hand2 {
    0% {
        transform: translateY(2%);
    }

    25% {
        transform: translateY(-1%);
    }

    50% {
        transform: translate(-1%, 2%);
    }

    75% {
        transform: translate(2%, 1%);
    }

    100% {
        transform: translateY(2%);
    }
}

@keyframes bg-position {
    0% {
        background-position: bottom;
    }

    25% {
        background-position: center;
    }

    50% {
        background-position: inherit;
    }

    75% {
        background-position: center;
    }

    100% {
        background-position: bottom;
    }
}

/* ❗️기존 smoke에 있던 random()은 CSS 문법이 아니므로 제거/치환 */
@keyframes smoke {
    0% {
        transform: translate(0, 30%) rotate(0);
        opacity: 0.2;
    }

    25% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(10px);
        opacity: 1;
    }

    50% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
        opacity: 1;
    }

    75% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
        opacity: 1;
    }

    100% {
        transform: translate(calc(random() * 100vw), 200vh) rotate(0) translateX(70px);
        opacity: 0.2;
    }
}

@keyframes light {

    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 shakeAndFall {
    0% {
        transform: translate(0, -100%) rotate(0);
        opacity: 0;
    }
}

/* 떨어지는 효과 – 잘못된 transform 토큰 제거 */
@keyframes fall {
    0% {
        top: 0;
        opacity: 1;
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        transform-origin: center center;
    }

    100% {
        transform: rotateX(240deg) rotateY(400deg) rotateZ(310deg);
        transform-origin: center center;
        top: 100%;
        opacity: 0;
    }
}

@keyframes fall2 {
    0% {
        top: 0;
        opacity: 1;
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        transform-origin: center center;
    }

    100% {
        transform: rotateX(-240deg) rotateY(-400deg) rotateZ(-310deg);
        transform-origin: center center;
        top: 100%;
        opacity: 0;
    }
}

@keyframes backgroundchange {
    0% {
        background: url(/images/con11_07.png) no-repeat center / contain;
    }

    25% {
        background: url(/images/con11_08.png) no-repeat center / contain;
    }

    50% {
        background: url(/images/con11_09.png) no-repeat center / contain;
    }

    75% {
        background: url(/images/con11_10.png) no-repeat center / contain;
    }

    100% {
        background: url(/images/con11_07.png) no-repeat center / contain;
    }
}

@keyframes opa {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes backgroundchange_2 {
    0% {
        background: url(/images/con08_07.png) no-repeat center / contain;
    }

    20% {
        background: url(/images/con08_08.png) no-repeat center / contain;
    }

    40% {
        background: url(/images/con08_09.png) no-repeat center / contain;
    }

    60% {
        background: url(/images/con08_10.png) no-repeat center / contain;
    }

    80% {
        background: url(/images/con08_11.png) no-repeat center / contain;
    }

    100% {
        background: url(/images/con08_07.png) no-repeat center / contain;
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(-1deg);
    }

    40% {
        transform: rotate(1deg);
    }

    60% {
        transform: rotate(2deg);
    }

    80% {
        transform: rotate(-1deg);
    }

    100% {
        transform: rotate(1deg);
    }
}

@keyframes marqueeY {
    from {
        transform: translateY(0);
    }

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

@keyframes marqueeY_r {
    from {
        transform: translateY(0);
    }

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



/* ============ Helpers ============ */
.slide_y {
    animation: marqueeY 20s infinite linear;
}

.slide_y_r {
    animation: marqueeY_r 20s infinite linear;
}

.slide_y_wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0%;
    overflow: hidden;
}

.slide_y img.absol {
    top: 100%;
}

.slide_y_r {
    animation: marqueeY_r 20s infinite linear;
}

.slide_y_r img.absol {
    bottom: 100%;
}

.spin {
    animation: rotate360 20s linear infinite;
}

.spin2 {
    animation: rotate-360 20s linear infinite;
}

.pointer {
    cursor: pointer;
}

.blk {
    animation: blk 1s infinite;
}

.scaleopa1 {
    animation: scaleOpa 2s infinite;
}

.scaleopa2 {
    animation: scaleOpa2 2s infinite;
}

.main_video {
    width: 100vw;
    height: 55.8vw;

    position: absolute;
}

.main_ov_wrap {
    position: absolute;
    top: 0;


    z-index: 2;
}

.con07_13 {
    width: 100vw;
}

.main_1st {
    width: 100vw;
}

.main_pzz {
    position: absolute;
    width: 51.146vw;
}

.main_pzz_left {
    left: -34vw;
    bottom: -15vw;
}

.main_pzz_right {
    right: -34vw;
    bottom: -15vw;
}

iframe {
    width: 100%;
    height: 100%;
}

.image_sd_wrap {
    overflow: hidden;
}

.image_sd .absol {
    left: 100%;
}

.image_sd_r .absol {
    right: 100%;
}

.boom {
    animation: boom infinite 2s;
}

.c_org {
    color: #d8371d;
}

.bg_org {
    background: #d8371d;
}

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

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

.main_iner {
    margin-top: 0%;
    margin-left: 0%;
    height: 52.6vw;

    z-index: 100;
}

.main_2nd {
    padding-top: 4vw;
    padding-bottom: 6vw;
}

div.main_02 {
    width: 185.365vw;
}


.con01_05_12nd {
    width: 14.9606%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 300;
    bottom: 14%;
    left: 20%;
}

.con01_05_1 {
    width: 52.3937%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -45%;
    z-index: 250;
}


.video_con video {
    width: 83%;
    mix-blend-mode: lighten;
}

.video_con {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -2.1%;
}

.main_iner2nd {
    width: 100%;
    height: 100%;
    z-index: 5;
    top: 0;
}

.main_iner2nd_top {
    width: 4.61942%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12%;
    margin-left: 0%;
}

.main_iner2nd_top2nd {
    text-align: center;
    margin-top: 2%;
    margin-left: 0%;
}

.main_iner2nd_top3rd {
    margin-top: 2%;
    margin-left: 0%;
    font-weight: 400;
    margin-bottom: 22%;
}

.video_con2 {
    margin-top: 0%;
    margin-left: 0%;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video_con2 video {
    mix-blend-mode: lighten;
    width: 100%;
}

.main_iner2nd_iner {
    opacity: 0;
}

.con1 {
    background: url(/images/con01_07.jpg) no-repeat center / cover;
}

div.con1scrx {
    width: 198.021vw;
    background: url(/images/con01_05.png) no-repeat center / cover;

    background-size: 51%;
}

.con1top {
    width: 12.0735%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.4%;
    margin-left: 0%;
}

.con1top2nd {
    margin-top: 2%;
    text-align: center;
}

.con1top3rd {
    margin-top: 1%;
}

.con1top3rd1 {
    width: 17.6378%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con1top3rd2 {
    width: 4.88189%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0.5%;
}

.con1top4th {
    width: 30.7087%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
    margin-bottom: -16.6%;

    z-index: 100;
}

.con1scrx {
    bottom: 0;
    width: 200%;
    padding: 1.3%;
}

div.con1ab {
    width: 14%;
    left: 9%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    top: 36%;
}

div.con1ab2 {
    width: 100%;
    height: 1px;
    background: #ffffff73;
    margin-top: 7%;
    opacity: 0.6;
}

div.con1ab3 {
    margin-top: 12%;
}

div.con1ab2nd {
    width: 14%;
    right: 9%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    top: 36%;
}

div.con1ab2nd .con1ab3 {
    text-align: right;
}

div.con2scrx {
    width: 60.469vw;
    animation: marqueeX 20s infinite linear;
}

.con2top2nd2 {
    background: white;
    width: 15vw;
    height: 15vw;
    border-radius: 100vw;
    overflow: hidden;
}

.con2top {
    width: 14.0682%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.4%;
    margin-left: 0%;
}

.con2top2nd {
    margin-top: 1.6%;
}

.con2top2nd2 {
    background: white;
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2%;
}

.con2scrx {
    width: 61vw;
    /* left: -258.6%; */
}

.con2top2nd1ab {
    width: 110.588%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    opacity: 0;
}

.con2top2nd3ab {
    opacity: 0;
    width: 104.745%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con2top2nd1 {
    width: 13.3858%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con2top2nd3 {
    width: 14.3832%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con2top2nd2 {
    transition: 0.3s all;
}

.con2 {
    background: url(/images/con02_19.png) no-repeat center / cover;
}

.con2top4th {
    margin-top: 3%;
    margin-left: 9%;
    font-size: 6.8vw;
}

.con2top3rd {
    margin-top: 1.4%;
    margin-left: 0%;
    text-align: center;
}

.con2top5th {
    width: 41.2073%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    margin-left: 0%;
}

.con2top5thab {
    width: 20.521vw;
}

.con2top4thab {
    width: 6.354vw;
    right: 101%;
}

.con2top4thab2 {
    margin-top: 0%;
    margin-left: 0%;
    top: 95%;
    right: 0.4%;
}

.con2_price {
    width: 45.44vw;
}

.con2top5thab3 {
    width: 13.2484%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 5%;
}

.con2top5thab2 {
    width: 17.707%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 9%;
    top: -8%;
}

.con6_mid_swiper_1_slide_p_con2 {
    width: 17.448vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con6_mid_swiper_1_slide_p_con2ab {
    margin-top: 0%;
    margin-left: 0%;
    top: 22%;

    width: 100%;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.con6_mid_swiper_1_slide_p_con2ab>p {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.con6_mid_swiper_1_slide_p_con2ab2 {
    margin-top: 0%;
    margin-left: 0%;
    top: 38%;
}

.con6_mid_swiper_1_slide_p_con2ab3 {
    margin-top: 0%;
    margin-left: 0%;
    top: 56%;
}

div.con6_mid_swiper_2 {
    margin-top: 0%;
    margin-left: 0%;
    position: absolute;
    bottom: 9%;
}

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

.con2top5th {
    z-index: 2;
}

.tab_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;

    background: #fff;
    /* padding: 0.68vw 2.28vw; */
    border-radius: 0.885vw 0.885vw 0 0;

    width: 10.729vw;
    height: 3.4vw;

    cursor: pointer;

    border: 1px solid #f7bcc0;
    border-bottom: none;
    transition: 0.2s ease-in-out;
}

.tab_menu.on_tab {
    background: #d73920;
    border: none;
}

.tab_mimg {
    width: 2.083vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tab_mi1 {
    opacity: 1;
}

.tab_mi2 {
    opacity: 0;
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;
}


.tab_menu.on_tab .tab_mi1 {
    opacity: 0;
}

.tab_menu.on_tab .tab_mi2 {
    opacity: 1;
}

.tab_menu>p {
    font-size: 0.938vw;
    font-weight: 600;
    color: #000;

    margin-right: 0.677vw;
}

.tab_menu.on_tab>p {
    color: #fff;

}

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

    column-gap: 0.885vw;
}

.tab_content {
    width: 81.927vw;
    height: 33.75vw;
    border-radius: 1.7vw;

    border: 1px solid #d6391f;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 100;
    margin-bottom: -4vw;
}

.tab_item {
    width: 99.3%;
    height: 98.4%;
    position: absolute;
    border-radius: 1.563vw;
    background: #fff;
    border: 1px solid #d6391f;

    opacity: 0;
    visibility: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.tab_item.on_tab {
    opacity: 1;
    visibility: visible;
}

.tab_c1 {
    position: relative;

    width: 23.906vw;
    height: 23.906vw;
    border-radius: 50%;
    border: 1px solid #d6391f;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background: #f1f1f1;

    padding-top: 4.5vw;
    box-sizing: border-box;

    margin-right: 3.49vw;
}

.tab_c1_inc {
    position: absolute;
    bottom: 0;
    width: 14.115vw;
    height: 14.115vw;

    border-radius: 50%;

    background-color: #d6391f;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    transform-origin: bottom;
}


.con3 {
    background: url('/images/con03_16.jpg') center top / contain no-repeat;

    width: 100vw;
}


.tab_table {
    width: 48.529%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;

    position: relative;
}

div.con03_15 {
    width: 250.052vw;
}

.tab_abt_v1 {
    width: 25.1979%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.tab_abt_v2 {
    width: 21.6359%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.tab_abt_01 {
    top: 7.1vw;
    right: -5vw;
}

.tab_abt_02 {
    top: 15vw;
    right: -4.8vw;
}

.con03_ybox {
    width: calc(100% - 3.126vw);
    padding-top: 8.5vw;
    border-radius: 1.875vw;

    margin-top: 5.938vw;
    margin-bottom: 4.74vw;

    padding-bottom: 2.76vw;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    overflow: hidden;
}

.con3top2nd {
    width: 13.6483%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.604vw;
    margin-left: 0%;
    margin-bottom: 2.292vw;
}

.con03_t1 {
    margin-bottom: 0.8vw;
}

.con03_t2 {
    margin-bottom: 3.958vw;
}

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

    width: 20.156vw;
    height: 7.604vw;
    border-radius: 100vw;

    padding-top: 0.5vw;
    box-sizing: border-box;

    position: relative;
}

.con03_yb_abtxt_02 {
    width: 57.6227%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;

    bottom: 0.1vw;
    right: -9.5vw;
}

.con03_yb_abtxt_01 {
    top: -1.4vw;
    left: -6.9vw;
}

.con04_02 {
    position: absolute;
}

.con04_08 {
    width: 31.5989%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10.9%;
    margin-left: 0%;

    z-index: 100;
}

.con04_ct_scop {
    width: 20.4117%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
    margin-left: -5%;
}

.con04_06 {
    width: 221.008%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con04_07 {
    width: 523.529%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con04_t1 {
    margin-top: 1.6vw;
}



.con04_mker {
    width: 19.3277%;
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10;
}

.con04_mker_01 {
    top: -8.7vw;
    left: 0.5vw;
}

.con04_mker_02 {
    top: -9vw;
    left: 11vw;
}

.con04_mker_03 {
    top: -3.3vw;
    left: -5vw;
}

.con04_mker_04 {
    top: -5.4vw;
    left: 5.9vw;
}

.con04_mker_05 {
    top: -1.6vw;
    left: 12.4vw;
}

.con04_mker_06 {
    top: 7.2vw;
    left: -0.6vw;
}

.con04_mker_07 {
    top: 5vw;
    left: 11vw;
}

.con04_mker_08 {
    top: 7.8vw;
    left: 16vw;
}

.con04_mker_09 {
    top: 11.2vw;
    left: 8.1vw;
}

.con04_mker_10 {
    top: 11.4vw;
    left: 15.1vw;
}

.con04_mker_11 {
    top: 14.3vw;
    left: -0.8vw;
}

.con04_swrap {
    width: 100%;

    position: absolute;
    top: 28.333vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 0.99vw;
}

.con04_sw_ovry {
    position: absolute;

    width: 55vw;
    height: 100%;

    background: #FDD001;

    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 77%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;

    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 77%,
            rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;

    z-index: 10;
}

.con04_swiper {
    width: 100%;
}

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

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

    background: #d8371d;
    color: #fff;

    font-size: 0.89vw;
    font-weight: 500;
    font-family: "Pretendard Variable";

    height: 2.656vw;
    width: 8.385vw;
    border-radius: 100vw;
}

.con04_yb_txt {
    position: absolute;
    top: 41.563vw;
    right: 6.219vw;
    line-height: 1.5;
}

.con04_09 {
    z-index: 100;
    width: 33.7008%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;

    top: -21.7vw;
    left: -6vw;
}

.con05 {
    width: 100%;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-bottom: 7.969vw;
}

.con05_twrap {
    width: 63.6vw;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

    gap: 1.563vw;
}

.con05_lwrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    row-gap: 0.208vw;
}

.con05_line {
    width: 20.99vw;
    height: 0.156vw;
    background: #da3522;
}

.con05_03 {
    width: 64.4619%;
    display: flex;
    justify-content: center;
    align-items: center;


    margin-top: 2.083vw;
}

.con05_02 {
    width: 13.0293%;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 2.3vw;
    left: 21.9vw;
}

.con05_05 {
    width: 15.7166%;
    display: flex;
    justify-content: center;
    align-items: center;

    bottom: 1.2vw;
    left: 30.6vw;
}

.con05_04 {
    width: 64.4619%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 2.083vw;
}

.con05_06 {
    width: 19.8697%;
    display: flex;
    justify-content: center;
    align-items: center;

    bottom: 1.1vw;
    left: 25.8vw;
}

.con05_t1 {
    margin-top: 8.49vw;
    margin-bottom: 0.7vw;
}

.con05_t2 {
    margin-bottom: 1.1vw;
}

.con05_t3 {
    margin-bottom: 2.3vw;
}

.con05_twrap_02 {
    margin-top: 4%;
}

.w100 {
    width: 100%;
}

.fdcc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

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

.txct {
    text-align: center;
}

.con06 {
    background: url('/images/con06_11.png') center top / cover no-repeat;

    padding-top: 8.854vw;
}

.con06_05 {
    width: 22.865vw;
    top: 0vw;
    left: 7vw;
}

.con06_06 {
    width: 26.615vw;
    top: 5vw;
    right: 8.3vw;
}



.con06_03 {
    width: 24.5669%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    overflow: hidden;
    padding-top: 2vw;
}

.con06_04 {
    width: 24.5144%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    overflow: hidden;

    padding-bottom: 2vw;
}

.con06_03>img {
    transform: translateY(110%);
}

.con06_04>img {
    transform: translateY(-110%);
}

.con06_02 {
    width: 54.323vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con06_01 {
    width: 74.7843%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con06_iner {
    z-index: 10;
}


.con06_t1 {
    color: #fcd812;
    text-decoration: underline;
    text-underline-offset: 0.2vw;

    margin-bottom: 1vw;
}

.con06_07 {
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;

    pointer-events: none;
    position: absolute;
    top: 0;
}

.con06_t2 {
    margin-top: 1.3vw;
    margin-bottom: 2.24vw;
}

.con06_10 {
    width: 39.79%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -28%;
    margin-left: 0%;
}

.con06_08 {
    width: 79.9365%;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 21vw;
}

.con06_09 {
    width: 77.9003%;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 42.7vw;
    z-index: 1;
}


.con06_rb_wrap {
    z-index: 100;

    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con06_rbox {
    width: calc(100% - 12.604vw);
    background: #d9371e;
    border-radius: 1.979vw;

    padding-top: 3.177vw;
}



.con06_08 {
    width: 79.2651%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con06_09 {
    mix-blend-mode: screen;
    z-index: 1;
}

.con06_10 {
    width: 40.1271%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;

    z-index: 20;
}


/* 카드 모션 */
.card {
    position: relative;
    perspective: 1000px;
}

.card_front,
.card_back {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    backface-visibility: hidden;
    transition: transform 0.7s ease;
}

.card_front {
    transform: rotateY(0deg);
    z-index: 2;
}

.card_back {
    transform: rotateY(180deg);
    z-index: 1;
}

/* .card:hover .card_front {
    transform: rotateY(180deg);
    z-index: 1;
}

.card:hover .card_back {
    transform: rotateY(360deg);
    z-index: 2;
} */

/* ------- */

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

    gap: 0.1vw;
}

.con06_card {
    width: 8.9066vw;
    height: 8.021vw;

    display: flex;
    justify-content: center;
    align-items: center;
}


.con06_card.on_card .card_front {
    transform: rotateY(180deg);
    z-index: 1;
}

.con06_card.on_card .card_back {
    transform: rotateY(360deg);
    z-index: 2;
}


.con06_stt_03 {
    color: #000;
}

.con06_stt {
    line-height: 1.4;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-left: -53vw;
    margin-top: 5.5vw;
    margin-bottom: 15.885vw;


    font-size: 2.344vw;

}



.con06_swiper {
    margin: 0;
    width: 59.896vw;
    position: absolute;

    top: 16.1vw;
    right: 0;

    padding-top: 4.792vw;
}

.con06_sitem {
    width: 19.688vw;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s 0.05s ease-in-out;
}

.con06_swiper .swiper-slide-active .con06_sitem {
    transform: translateY(-4.792vw);
}

.con06_swiper .swiper-slide-prev .con06_sitem {
    transform: translateY(-4.792vw);
}

.con07_10 {
    width: 16.5354%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15.2%;
    margin-left: -45.8%;
    margin-bottom: -2.2%;
    z-index: 100;
}

.con07_11 {
    width: 10.521vw;
    bottom: 15vw;
    left: 10vw;

    z-index: 100;
}

.con07_12 {
    width: 10.469vw;
    bottom: 10vw;
    left: 33.6vw;

    z-index: 100;
}

.con08 {
    height: 47.9vw;
}


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

    background: #000;
}

.con08_bg {
    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.2s 0.1s ease-in-out;
}

.con08_bg.on_bg {
    opacity: 1;
    visibility: visible;
}

.con08_ct_wrap {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    z-index: 100;
}


.con08_ct {
    width: 25%;
    height: 100%;

    border-right: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
}

.con08_ct_ovry {
    width: 100%;
    height: 0%;
    position: absolute;

    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);

    transition: height 0.3s ease-in-out;
}



.con08_ct_iner {
    width: 100%;
    height: 100%;

    padding-left: 4.167vw;
    padding-bottom: 0.7vw;
    box-sizing: border-box;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;

    z-index: 10;
}

.con08_ctt_01 {
    font-size: 1.563vw;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 2vw;
    transition: 0.3s ease-in-out;
}


.con08_ct_num {
    width: 6.875vw;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 1.5vw;

    opacity: 1;
    visibility: visible;


    transform: translateY(0);
    transition: 0.3s 0.5s ease-in-out;
}


.con08_ctt_02 {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform: translateY(2vw);
}

.con08_ct.on_ct .con08_ctt_01 {
    color: #fdd500;
}

.con08_ct.on_ct .con08_ct_num {
    opacity: 0;
    visibility: hidden;


    transform: translateY(-2vw);
    transition: 0.3s ease-in-out;
}

.con08_ct.on_ct .con08_ctt_02 {
    opacity: 1;
    visibility: visible;
    transition: 0.3s 0.3s ease-in-out;
    transform: translateY(0);
}

.con08_ct.on_ct .con08_ctt_wrap {
    transform: translateY(-10.729vw);
}

.con08_ct.on_ct .con08_ct_pzz {
    bottom: -14.3vw;
    transition: 0.5s 0.5s ease-in-out;
}

.con08_ct.on_ct .con08_ct_ovry {
    height: 100%;
}

.con08_ctt_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    position: relative;

    transform: translateY(0);
    transition: 0.3s ease-in-out;
}



.con08_ct_pzz {
    width: 94.1787%;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    transform: translateX(-50%);
    left: 50%;

    bottom: -25vw;
    transition: 0.3s ease-in-out;
}



.con08_title {
    z-index: 200;
    top: 8.854vw;
}

.con08_tt1 {
    margin-bottom: 1vw;
}

.con08_tt2 {
    margin-bottom: 1.1vw;
}

.con09 {
    padding-top: 5.625vw;
    padding-bottom: 8.021vw;
}

.con09_iwrap {
    gap: 0.417vw;
}

.con09_item {
    width: 3.021vw;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}


.con09_i1 {
    opacity: 0;
    visibility: hidden;

    transition: 0.2s ease-in-out;
}

.con09_i2 {
    position: absolute;
    opacity: 1;
    visibility: visible;

    transition: 0.2s ease-in-out;
}

.con09_item.on_item .con09_i1 {
    opacity: 1;
    visibility: visible;
}

.con09_item.on_item .con09_i2 {
    opacity: 0;
    visibility: hidden;
}

.con09_t1 {
    font-size: 1.563vw;

    margin-top: 2.6vw;
}

.con09_t2 {
    margin-top: 0.6vw;
    margin-bottom: 2vw;
}

.con09_box {
    width: 74.219vw;
    height: 25.7296vw;
    border-radius: 1.927vw;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.con09_bnum {
    width: 5.729vw;
    height: 2.344vw;
    font-size: 0.833vw;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 0 0 0.885vw 0.885vw;
}

.con09_bt1 {
    font-size: 1.823vw;
    line-height: 1.5;

    top: 5.625vw;
    left: 7.135vw;
}

.con09_bt2 {
    font-size: 0.99vw;

    left: 26.458vw;
    bottom: 5.625vw;
}

.con09_07 {
    width: 16.615vw;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 3.281vw;
    right: 4.635vw;
}

.con09_bwrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.563vw;
}

.con09_box_02 {
    background: #fef8e8;
    border: 1px solid #d83a17;
}

div.con09_b2sd_01 {
    width: 54vw;
    left: -22.9vw;
    bottom: 5.7vw;

    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 1) 71%,
            rgba(0, 0, 0, 0) 91%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;


    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 1) 71%,
            rgba(0, 0, 0, 0) 91%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.con09_08 {
    width: 54.375vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con09_b2sd_02 {
    margin: 0;
    height: 100%;
    right: 4.792vw;
    top: 0;
}

.con09_simg {
    width: 16.458vw;
    display: flex;
    justify-content: center;
    align-items: center;
}


.con09_box_03 {
    background: url('/images/con09_20.png') center center / cover no-repeat;
}

.con09_bxt_wrap {
    width: 20vw;

    display: flex;
    flex-wrap: wrap;
    position: absolute;
    justify-content: center;

    row-gap: 0.6vw;
    column-gap: 0.7vw;

    right: 3.542vw;
    bottom: 3.229vw;

}

.con09_bxt {
    width: 9.115vw;
    height: 9.115vw;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.99vw;

    background: #fff;

    transition: 0.2s ease-in-out;
}

.con09_bxt1 {
    margin: 0 2vw;
}

.con09_bxt.on_bxt {
    background: #fdd000;
}

.con09_17 {
    width: 56%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con09_18 {
    width: 68.5714%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con09_19 {
    width: 75.4286%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con09_14 {
    width: 5.68421%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 6vw;
    left: 21.1vw;
}


.con09_13 {
    width: 19.0175%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
    left: 4.167vw;
}

.con09_t3 {
    margin-bottom: 3.2vw;
}

.con10_card_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.083vw;
    margin-bottom: 18vw;
}


.con10_card {
    width: 11.6vw;
    height: 11.6vw;

}

.con10_card .card_front {
    width: 11.406vw !important;
}

.con10_card .card_back {
    width: 11.51vw !important;

    display: flex;
    justify-content: center;
    align-items: center;
}

.con10_cbt {
    font-size: 1.563vw;
    line-height: 1.3;
}

.con10_card.on_card .card_front {
    transform: rotateY(180deg);
    z-index: 1;
}

.con10_card.on_card .card_back {
    transform: rotateY(360deg);
    z-index: 2;
}

.con10_1st {
    padding-top: 8.125vw;
}

.con10_t1 {
    margin-bottom: 0.6vw;
}

.con10_t2 {
    margin-bottom: 1.6vw;
}

.con10_t3 {
    margin-bottom: 1.6vw;
}

.con10_lrsd_wrap {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;

    width: 9.427vw;


    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 72%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;


    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 72%,
            s rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}


.con10_left_wrap {
    left: 0;
}

div.con10_07 {
    width: 4.01vw;
}

.con10_right_wrap {
    right: 0;
}

.con10_right_wrap>.con10_tsd {
    transform: rotate(180deg);
}

.con10_tsd {
    z-index: 100;
}

.con11 {
    padding-top: 2.604vw;
}

.con11_simg {
    width: 20.052vw;
}

.con11_box {
    width: 94.271vw;
    border-radius: 1.615vw;
    border: 1px solid #fff;

    padding: 0.16vw;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 3.021vw;

}

.com11_box_iner {
    position: relative;
    width: 100%;

    background: #fff;
    border-radius: 1.4vw;

    padding-top: 7.24vw;

    overflow: hidden;
}

.con11_swiper {
    width: 100%;
    margin: 0;
    margin-bottom: 10.573vw;
}

.con11_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.con11_bt1 {
    margin-bottom: 0.7vw;
}

.con11_bt2 {
    margin-bottom: 1vw;
}

.con11_bt3 {
    margin-bottom: 3.7vw;
}

.con11_03 {
    bottom: -23.2vw;
    z-index: 10;
    width: 38.021vw;
}

.con11_ddm {
    width: 8.87902%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 15.3vw;
}

.con11_ddm_01 {
    left: 9.479vw;
}

.con11_ddm_02 {
    right: 9.479vw;
}

.con11_box_dot {
    width: 0.677vw;
    height: 0.677vw;
    border-radius: 50%;
    background: #d9371e;
    position: absolute;
}

.con11_bd1 {
    top: 1.4vw;
    left: 1.4vw;
}

.con11_bd2 {
    top: 1.4vw;
    right: 1.4vw;
}


.con11_bd3 {
    bottom: 1.4vw;
    left: 1.4vw;
}

.con11_bd4 {
    bottom: 1.4vw;
    right: 1.4vw;
}

.con12_02 {
    width: 40.105%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.521vw;
}

.con12_rd_pbox {
    width: 40.315%;
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    margin-bottom: 2.969vw;
}

.con12_rdp {
    width: 12.94vw;
    height: 11.38vw;

    display: flex;
    justify-content: center;
    align-items: center;

    /* background: #fff; */
    position: absolute;

    overflow: hidden;
}

.con12_rdp_01 {
    top: 0;
    left: 0;
}

.con12_rdp_02 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.con12_rdp_03 {
    top: 0;
    right: 0;
}

.con12_rdp_04 {
    bottom: 0;
    left: 0;
}

.con12_rdp_05 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.con12_rdp_06 {
    bottom: 0;
    right: 0;
}

.con12_pzz {
    position: absolute;
    transition: 0.3s ease-in-out;
}

.con12_pzz_01 {
    width: 8.906vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con12_pzz_02 {
    width: 9.427vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con12_pzz_03 {
    width: 9.583vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con12_pzz_04 {
    width: 9.531vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con12_pzz_05 {
    width: 9.531vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con12_pzz_06 {
    width: 9.74vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .con12_rdp_01 .con12_pzz_01 {
    transform: translateX(-12vw);
} */



.pzz-out-left {
    transform: translateX(-12vw);
}

.pzz-out-right {
    transform: translateX(12vw);
}

.pzz-out-top {
    transform: translateY(-12vw);
}

.pzz-out-bottom {
    transform: translateY(12vw);
}

.pzz-in {
    transform: translate(0);
}

.con12_01 {
    width: 30.9186%;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 6.667vw;
    left: -3vw;

    z-index: 100;
}

.con12_04 {
    width: 4.35696%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 9vw;
    left: 24vw;
}

.con12_05 {
    width: 20.156vw;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 2.2vw;
    right: 7.1vw;
}

.con10_09 {
    width: 56.8504%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -19.5vw;
}

.con13_ovry {
    background: url('/images/con13_01.png') center center / cover no-repeat;
    width: 100vw;
    height: 56.198vw;
    position: absolute;

    z-index: 150;
}

.con13_iner {
    z-index: 200;
    padding-top: 7.292vw;
}

.con13_t2 {
    font-size: 1.563vw;

    margin: 0.4vw 0;
}

.con13_line {
    width: 12.865vw;
    height: 1px;
    background: #000;
}

.con13_t1 {
    margin-bottom: 2.1vw;
    margin-top: 1vw;
}

.con13_02 {
    width: 11.8635%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con13_simg {
    width: 25.6776vw;
    display: flex;
    justify-content: center;
    align-items: center;

    transform: scale(0.671952);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;

    position: absolute;
    top: 0;
}

.con13_simg>img {
    object-fit: cover;
}

.con13_itxt {
    font-family: "Pretendard Variable";

    text-align: center;
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    position: absolute;

    font-size: 1.7vw;
    font-weight: 800;
    opacity: 0;
    transition: 0.2s ease-in-out;

    transform: translateY(20%);
}



.con13_swiper {
    width: 100%;
    margin: 0;

    margin-top: 2.917vw !important;
}



/* .con13_swiper .swiper-slide-prev .con13_sitem {
    transform: translate(5vw);
}

.con13_swiper .is-prev-before .con13_sitem {
    transform: translate(18vw);
}

.con13_swiper .swiper-slide-next .con13_sitem {
    transform: translate(-5vw);
}

.con13_swiper .swiper-slide-next+div .con13_sitem {
    transform: translate(-18vw);
} */

/* .con13_swiper .swiper-slide {
    transition: transform 0.2s;
} */


.con13_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.con13_sitem {
    width: 32.448vw;
    height: 26.563vw;
    border-radius: 1.875vw;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    box-sizing: border-box;
}

.con13_swiper .swiper-slide-active .con13_sitem {
    background: #fdd100 !important;
}

.con13_swiper .swiper-slide-active .con13_itxt {
    opacity: 1;
    transition: 0.2s 0.3s ease-in-out;
    transform: translateY(0);
    top: 3vw;
}

.con13_swiper .swiper-slide-active .con13_simg {
    transform: scale(1);
    top: 7vw;
}

.con13_btn_wrap {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 0.573vw;
    padding-top: 2.448vw;
    padding-bottom: 5.156vw;
}

.con13_btn {
    width: 4.323vw;
}

.rot180 {
    transform: scaleX(-1);
}

.con_btn {
    cursor: pointer;
}

.con14_1st {
    background: url('/images/con14_04.jpg') center center / cover no-repeat;

    width: 100vw;
    padding-bottom: 7.292vw;
}

.con14_03 {
    width: 58.177vw;
    right: -27.1vw;
    top: 23vw;
    z-index: 10;
}

.con14_lwrap {
    width: 100%;
}

.con14_line {
    width: 100%;
    background: #d9371e;
}

.con14_line_01 {
    height: 0.469vw;
    margin-bottom: 0.313vw;
}

.con14_line_02 {
    height: 0.208vw;
    margin-bottom: 0.365vw;
}

.con14_line_03 {
    height: 0.104vw;
}

.con14_vd_wrap {
    width: 48.958vw;
    height: 27.539vw;

    background: #fff;
    border-radius: 1.979vw;
    overflow: hidden;

    z-index: 100;
}

.con14_t2 {
    margin-bottom: 1.979vw;
    margin-top: 0.7vw;
}

.con14_t3 {
    margin-top: 2.2vw;
}

.con14_01 {
    width: 6.97917%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.552vw !important;
    margin-bottom: 2.9vw;
}

.con14_02 {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 33vw;
}

.con15_swiper {
    width: 17.552vw;
    height: 49.688vw;
}

.con15_simg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 1.927vw;
    overflow: hidden;
}

.con15_swrap {
    gap: 5.729vw;
    pointer-events: none;
}

.con15_ct_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    z-index: 250;
    bottom: 0;
}

.con15_ctt_01 {
    font-size: 3.125vw;
}

.con15_04 {
    bottom: 0;
}

.con15_05 {
    width: 75.2086vw;
    display: flex;
    justify-content: center;
    align-items: center;

    bottom: -9vw;
    z-index: 1;
}

.con15_04 {
    width: 63.75vw;
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 5;
    bottom: -2vw;
}

.con15_ct_iner {
    z-index: 10;
}

.con15_ctt_01 {
    margin-bottom: 1.5vw;
}

.con15_ctt_02 {
    margin-bottom: 3.5vw;
}

.con15_06 {
    width: 79.896vw;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -37.1vw;
}

.con15_ddm {
    position: absolute;
    height: 2.917vw;
    z-index: 400;
}

.con15_ddm>img {
    width: unset;
    height: 100%;
}

.con15_01 {
    left: 19.427vw;
    bottom: 19.725vw;
}

.con15_02 {
    bottom: 5vw;
    left: 7.865vw;
}

.con15_03 {
    right: 10.677vw;
    bottom: 9.375vw;
}

.con15_tsd {
    height: 7.917vw;
}

div.con15_07 {
    width: 157.188vw;
}

.con16_iwrap {
    width: 80vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    row-gap: 1.927vw;
}

.con16_item {
    width: 13.594vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con16_arw {
    width: 1.667vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.365vw;
}

.con16_t1 {
    margin-bottom: 2.5vw;
}

.con16 {
    padding-top: 7.292vw;
}

.delete_map {
    width: 75vw;
    height: 30vw;
    background: #ddd;
    z-index: 1;
}

.con17 {
    padding-top: 5.99vw;
}

.con17_01 {
    width: 19.1601%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con17_t1 {
    margin-top: 1.3vw;
    margin-bottom: 4vw;
}

.con17_fix_bg {
    background: url('/images/con17_06.jpg') center center / cover no-repeat;
    background-attachment: fixed;

    width: 100vw;
    height: 35.417vw;

    margin-top: -15.625vw;
}

.con18_swiper {
    width: 100%;
    margin: 0;
}

.con18_simg {
    width: 21.771vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con18_twarp {
    font-size: 11.25vw;
    margin-bottom: -1.3vw;
}

.con18_t1 {
    margin-top: 5.208vw;
}

.con18_mr {
    margin-right: 36.6vw;
}

.con18_card_wrap {
    position: absolute;
    z-index: 100;
    top: 13.385vw;
}


.con18 {
    padding-top: 4.2vw;
    padding-bottom: 5.729vw;

    background: url('/images/con18_08.png') center center / cover no-repeat;
}

.con18_card {
    width: 28.333vw;
    height: 28.333vw;
}

.con18_card .card_front,
.con18_card .card_back {
    background: #d9371e;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.con18_card.on_card .card_front {
    transform: rotateY(180deg);
    z-index: 1;
}

.con18_card.on_card .card_back {
    transform: rotateY(360deg);
    z-index: 2;
}

/* .con18_card:hover .card_front {
    transform: rotateY(180deg);
    z-index: 1;
}

.con18_card:hover .card_back {
    transform: rotateY(360deg);
    z-index: 2;
} */

.con18_card {
    perspective: 60000px;
}

.con18_07 {
    width: 33.125vw;
}

.con18_ct1 {
    margin-top: 9vw;
    margin-bottom: 1.4vw;
}

.card_iner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.con18_card_ovry {
    position: absolute;

    width: 118.199%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con18_05 {
    width: 70.0368%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fdc {
    display: flex;
    flex-direction: column;
}

.con19_t2 {
    margin-top: 1.9vw;
    margin-bottom: 2.3vw;
}

.con19_twrap {
    margin-left: 12.5vw;
    margin-top: 3.646vw;
}

.form_call {
    width: 17.969vw;
    height: 3.802vw;
    border-radius: 50vw;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.823vw;
    cursor: pointer;

    top: -0.8vw;
}

.con19_01 {
    width: 9.56522%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.2vw;
}

.con19 {
    padding-top: 7.292vw;
    padding-bottom: 5.729vw;
}

.con19_iner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    z-index: 100;
}

.form_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;

    width: 47.292vw;
    height: 36.927vw;
    padding: 0.156vw;
    border-radius: 1.667vw;
    border: 1px solid #fff;

    margin-right: 2.917vw;
}

.form {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
}

.form_margin {
    width: 36.458vw;
    font-size: 1vw;

    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.form_submit_div {
    width: 100%;
    height: 3.854vw;

    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.198vw;

    border-radius: 50vw;
    cursor: pointer;
}

.form_margin_Agree_input {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.3vw;
    margin-top: 0.677vw;
    margin-bottom: 2vw;

    font-size: 0.9vw;
    opacity: 0.8;
}

.footeer_agree_checkbox_01 {
    border: none;
    appearance: none;
    position: relative;

    width: 0.677vw;
    height: 0.677vw;
    border-radius: 50%;
    cursor: pointer;

    outline: 0.1vw solid #000;
}

.footeer_agree_checkbox_01:checked::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #d73920;
}


/* -- */
.form_margin_input {
    width: 100%;
    display: flex;
    height: 3.646vw;
    border-bottom: 1px solid #cbcbcb;
}

.form_margin_input>label {
    display: flex;
    align-items: center;
    white-space: nowrap;

    margin-right: 2vw;

    font-family: "Paperozi";
    font-size: 1vw;
    font-weight: 600;
}

.form_margin_input>input {
    width: 100%;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 0;

    font-size: inherit;
    background: none;
}

.form_index_input {
    height: auto;

    padding-top: 1.4vw;
}

.form_index_input>label {
    height: fit-content;
}

.form_index_input textarea {
    width: 100%;
    height: 6vw;
    padding: 0;
    padding-bottom: 1.4vw;

    border: none;
    resize: none;
    outline: none;
    box-sizing: border-box;
    font-size: inherit;
    font-family: inherit;
}

.form_margin_input>input::placeholder,
.form_margin_input>textarea::placeholder {
    opacity: 0;
}

.form_check_wrap {
    display: flex;
    align-items: center;
    margin-left: 5vw;
}

.form_check_name_01 {
    margin-right: 2vw;
}

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

    font-weight: 500;
    cursor: pointer;

    opacity: 0.8;
    font-size: 0.9vw;
}

.form_check_wrap input:checked+label {
    opacity: 1;
}

.footeer_checkbox_01,
.footeer_checkbox_02 {
    width: 0.677vw;
    height: 0.677vw;
    appearance: none;
    outline: 0.1px solid #000;
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-right: 0.3vw;
}

.footeer_checkbox_01:checked::before,
.footeer_checkbox_02:checked::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #d8371d;

    border-radius: 50%;
}

.form_margin_input_01 {
    width: 50%;
}

.con19_04 {
    width: 47.5066%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -26.3vw;
}

.con19_03 {
    top: -2.3vw;

    width: 22.4147%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.mobile-pc {
    display: none !important;
}

/* =========== B=reakpoints ============ */
@media screen and (max-width: 1023px) {
    .pc {
        display: none;
    }

    .tablet {
        display: flex;
    }

    .pc-mobile {
        display: none;
    }

    .mobile-pc {
        display: flex;
    }
}

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

    .tablet {
        display: none;
    }

    .mobile {
        display: flex;
    }

    .mobile-pc {
        display: flex !important;
    }

    .pc-mobile {
        display: none !important;
    }


}




/* map */
.map_mid_map_search_top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.map_mid_map_search_top>div {
    color: #000;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 6%;
    padding-bottom: 3%;
    font-size: 1vw;
    font-weight: 300;
    cursor: pointer;
    background-color: #fff;
}

.on2 {
    background: #16992C !important;
    color: white !important;
    font-weight: 900 !important;
}

.off2 {
    font-weight: 300 !important;
}

.map_mid_map_search_mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 47vw;
    height: 3.9vw;
    box-sizing: border-box;
    margin: auto;
    z-index: 3;
    top: -2vw;
    background-color: #fff;

    border: 1px solid #d8371d;
    border-radius: 100vw;
    overflow: hidden;
}

.map_mid_map_search_mid input {
    appearance: none;
    border: none;
    outline: none;
    /* border-radius: 0.6vw; */
    width: 85%;
    height: 100%;
    padding-left: 2.9vw;
    font-size: 0.95vw;
    font-weight: 400;
    box-sizing: border-box;
    color: #000;
}

.map_mid_map_search_mid input::placeholder {
    color: #888;
}

.map_mid_map_search_bottom {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    /* margin: auto; */
    padding: 0vw 0;
}

.map_mid_map_search_item_title {
    width: 87%;
    font-size: 0.95vw;
    font-weight: 700;

}

.map_mid_map_search_item_address {
    width: 79%;
    margin-top: 0.8vw;
    margin-bottom: 0.2vw;
    color: #222;
}

.map_mid_map_search_item_tel {
    color: #222 !important;
}

.map {
    width: 99%;
    height: 34vw;
    border-radius: 2vw;
    border: 1px solid #d8371d;

}

.map_bg {
    height: 100%;
    background-color: #fcd943;
    top: 0.3vw;
    left: 0.3vw;
    box-sizing: border-box;
    border: 1px solid #000;
}

.map_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 88vw;
    margin-bottom: 0%;
    box-sizing: border-box;

    z-index: 500;
}

.map_search {
    width: 1.875vw;
    cursor: pointer;
    right: 1.7vw;
    top: 1vw;
}

.con7_bottom_2 {
    width: 26.4943%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map_mid_map_search_item {
    width: 100%;
    margin: 0% auto;
    border-bottom: 1px solid #d8371d;
    padding: 2vw 0 1.5vw;
    padding-left: 4vw;
    font-size: 0.8vw;
    box-sizing: border-box;
    position: relative;
    color: #000;
    cursor: pointer;
}

.map_mid_map_search {
    width: 20vw;
    background: white;
    height: 100%;
    top: 50%;
    z-index: 2;
    overflow: hidden;
    left: 0;
    border-radius: 2vw 0vw 0vw 2vw;
    border-right: 1px solid #d8371d;
    box-sizing: border-box;
    transform: translateY(-50%);
    border: 1px solid #d8371d;
    box-sizing: border-box;
}

.map_mid_map_search_bottom::-webkit-scrollbar {
    display: none;
}

.map_plus {
    width: 2.083vw;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 2.2vw;
    bottom: 1.1vw;
    cursor: pointer;
}

/*   .map_plus_h {
    width: 150.769%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .map_plus:hover .map_plus_h {
    opacity: 1;
  } */
.sido1 {
    width: 16%;
    height: 48%;
    border: none;
    border-right: 1px solid #b5b5b5;
    outline: none;
}

.map_link {
    width: 49.81%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vw;
}

/* 맵 끝 */


/*popup*/


div.popup {
    width: 50vw;
    height: 21vw;
    /* border: 1px solid black; */
    background-color: #fff;
    box-sizing: border-box;
    justify-content: space-between;
    border-radius: 2vw;
    border: 1px solid #000;
    overflow: hidden;
}

.fixed_popup {
    width: 100%;
    position: fixed;
    top: 0;
    height: 100vh;
    background: #00000099;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.popup_top {
    font-size: 1.5vw;
    width: 88%;
    padding-bottom: 3%;
    text-align: center;
    border-bottom: 1px solid #0000002e;
}

.popup>p:nth-child(2) {
    font-size: 1.3vw;
    width: 88%;
    margin-top: 5%;
    padding-bottom: 2%;
    text-align: left;
}

.popup>p:nth-child(4) {
    font-size: 0.9vw;
    width: 88%;
    margin-top: 1%;
}

.popup>p:nth-child(5) {
    left: 42%;
    width: 58%;
    padding-right: 8%;
    height: 12vw;
    top: 43%;
    box-sizing: border-box;
    font-size: 0.9vw;
    overflow-y: scroll;
}

.popup_right>* {
    padding-left: 1vw;
}

.popup_right_1st {
    color: #E3C179;
    width: 78%;
    margin-bottom: 1%;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.2vw;
    margin-top: -6%;
}

.popup_right>div>div:nth-child(2) {
    width: 65%;
    font-weight: 400;
    font-size: 0.85vw;
    color: #333;
}

.popup_right>div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    color: #000;
    margin-top: 3.5%;
}

.popup_right_3rd {
    margin-top: 1.3vw !important;
}

.popup_right_left_txt {
    width: 18%;
    font-weight: 600 !important;
    font-size: 0.85vw !important;
    color: #000;
    position: relative;
    margin-right: 3.7%;
}

.popup_right_left_txt::after {
    content: '';
    position: absolute;
    right: 0;
    top: 31%;

    width: 1px;
    height: 50%;
    background: #c3c3c3;
}

.popup_right {
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: #000;
    margin-top: -4%;
}

.popup_img img {
    width: 100%;
}


.fixed_popup_con {
    width: 62%;
    height: 49%;
    background-color: #000;
    top: 31%;
    left: 20%;
    border-radius: 1vw;
}




.popup_img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    height: 100%;
    overflow: hidden;
}

.popup_img img {
    width: 108%;
}


.popup_top_absol {
    width: 12.4369%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 12%;
    left: 10%;
}

.popup_top_absol_2nd {
    width: 96.6687%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 21%;
    left: 1.5%;
}


.popup_right_6th_left.naver {
    width: 7.031vw;
    display: flex;
    margin-top: 1vw;
}

.popup_right_6th_left.absol {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    /* background-color: #19c365; */
    /* border-radius: 5vw; */
    right: 0.9vw;
    bottom: 1vw;
}

.popup_right_6th_left.under_line::after {
    content: '';
    width: 0%;
    height: 0.02vw;

    position: absolute;
    bottom: -0.2vw;
    left: 0;

    background: #000;
    transition: width 0.3s;
}

.popup_right_6th_left.under_line:hover::after {
    width: 100%;
}

.popup_img_con {
    overflow: hidden;
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.5vw;
}


.popup_img_con img {
    height: 100%;
    object-fit: cover;
}

.popup_top_absol {
    width: 12.4369%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 18%;
    left: 52.5%;
}

.popup_right_2nd {
    font-weight: 500;
    width: 90%;
    font-size: 1.3vw;
    padding-bottom: 1vw;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    letter-spacing: -0.05;
}


.popup img {
    width: 100%;
}

.popup_close {
    width: 2.0836vw;

    display: flex;
    justify-content: center;
    align-items: center;
    top: 1.1vw;
    right: 1.1vw;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.popup_close>img {
    transform: rotate(45deg);
}

.popup_close_border {
    /* position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid #00000010; */
    display: none;
}

.popup_close .absol {
    width: 60%;
    height: 2px;
    background-color: #000;
}

.popup_close .absol:nth-child(1) {
    transform: rotate(45deg);
}

.popup_close .absol:nth-child(2) {
    transform: rotate(-45deg);
}

.popup_close:hover {
    transform: rotate(180deg);
}


div.popup_logo {
    width: 17.156%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1vw;
}


/* 커스텀 오버레이 (말풍선) 디자인 */
.my-place-label {
    background: #fff;
    border: 2px solid #d8371d;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-align: center;
    white-space: nowrap;
    position: relative;
    
    /* [수정] 마커 높이(약 69px)보다 높게 설정해야 가리지 않습니다 */
    bottom: 80px;  
    
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
}

/* 말풍선 꼬리 (테두리 - 핑크색) */
.my-place-label:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #d8371d;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

/* 말풍선 꼬리 (내부 채움 - 흰색) */
.my-place-label:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    z-index: 1;
}

/* 마우스 올렸을 때 효과 */
.my-place-label:hover {
    background: #d8371d;
    color: #fff;
    z-index: 9999 !important; /* 가려짐 방지 */
}
.my-place-label:hover:before {
    border-top-color: #d8371d;
}

