/* ============ Base / Reset ============ */
*,
*::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;
    width: 100%;
    z-index: 5;
    margin-top: -0%;
    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 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_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); }
}

/* ============ Helpers ============ */
.rotate    { animation: rotate360 20s linear infinite; }
.pointer   { cursor: pointer; }
.blk       { animation: blk 1s infinite; }
.scaleopa1 { animation: scaleOpa 2s infinite; }
.scaleopa2 { animation: scaleOpa2 2s infinite; }

.main{
    background: url(/images/main_bg.jpg) no-repeat center / contain;

}
.main_top{
    width: 7.45407%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.3%;
    margin-left: 0%;
}
.main_top_2nd{
    width: 22.5722%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 4.1%;
    margin-left: 0%;
}
.main_top_3rd{
    width: 29.1864%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.4%;
    margin-left: 0%;
}
.main_top_4th{
    margin-top: 2%;
    margin-left: 0%;
    background: black;
    padding: 0.1% 1.7%;
    border-radius: 0.3vw;
}
.main_top_4th p {
    overflow: hidden;
}
.main_top_5th{
    width: 36.378%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.6%;
    margin-left: 0%;
}
.main_top_5thab{
    width: 131.313%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 10%;
}
.main_top_5thab2{
    width: 52.8139%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -21%;
    bottom: 36%;
}
.mainab{
    width: 8.7664%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
    bottom: 11%;
}
.mainabab{
    width: 61.6766%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 74%;
    bottom: 31%;
}
.mainab2{
    bottom: -4.5%;
}
.main_vid{
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
    width: 27%;
    top: 0;
    height: 100%;
    z-index: 1;
    display: flex;justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
.main_vid video{
    pointer-events: none;
    width: 352%;
}
.main_vidab{
    width: 0.629921%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 27%;
}
.main_topab{
    width: 868.31%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -38%;
    left: -388%;
    animation: light 2s infinite;
}
.con1_top{
    margin-top: 12.4%;
    margin-left: 0%;
    width: 75%;
}
.con1_top_2nd{
    width: 17.9003%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 1.2%;
    margin-left: -56.4%;
}
.con1_top_4th .line{
    overflow: hidden;
}
.con1ab > img{
    scale: 1.15;
}
.con1_top_3rd{
    width: 18.4777%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-left: -57%;
}
.con1_top_4th{
    width: 75%;
    margin-top: 2%;
}
.con1_top_4th p{
margin-bottom: 1%;
}
.con1_top_4th {
    width: 75%;
    margin-top: 2%;
    margin-bottom: 15%;
}
.con7_scrx{
    bottom: 0;
}
.con1con .con7_scrx{
    z-index: 3
}
.con1ab{
    left: 50%;
    width: 50%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.con6_mid_swiper_1{
    width: 110%;
    margin-top: 0%;
    margin-left: 0%;
    left: 10%;
    overflow: hidden;
}
.con1conab{
    width: 1.52231%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 7.7%;
    top: 11%;
}


.con7_prev:after,.con7_next:after {
    content: unset !important;
}

.con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 4vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 38.3% !important;
    bottom: 46%;
    transition: 0.4s background;
}
.con7_next{
    right: 1% !important;
    top: unset !important;
    width: 4vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    transition: 0.4s background;
    right: 38.3% !important;

    bottom: 46%;

}
.con2_top{
    width: 7.13911%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.5%;
    margin-left: 0%;
}
.con2_top_2nd{
    width: 26.1417%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.4%;
    overflow: hidden;
    margin-left: 0%;
}
.con2_top_3rd{
    margin-top: 0.5%;
    margin-left: 0%;
}
.con2_top_3rd .line{
    overflow: hidden;
}
.con6_mid_swiper_2{
    margin-top: 0%;
    margin-left: 0%;
    width: 40%;
    padding: 0 1.5%;
    margin-top: 1.6%;
}
.con6_mid_swiper_1_slide_p_con2{
    height: 22.5vw;
    overflow: hidden;
    border-radius: 0.4vw;
}
.con6_mid_swiper_1_slide_p_con2 iframe{
    height: 100%;
}
.con6_mid_swiper_2 {
    margin-top: 0%;
    margin-left: 0%;
    width: 40%;
    padding: 0 1.5%;
    margin-top: 1.6%;
    margin-bottom: 7.1%;
}
.con2ab{
    bottom: 0%;
}
.con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 3.5vw !important;
    height: 3.5vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 24.3% !important;
    bottom: 38%;
    transition: 0.4s background;
}
.con7_next {
    right: 1% !important;
    top: unset !important;
    width: 3.5vw !important;
    height: 3.5vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 24.3% !important;
    bottom: 38%;
    transition: 0.4s background;
}
.con2abab{
    width: 31.4961%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    z-index: 6;
    margin-left: 0%;
    top: -49%;
    
    right: -6%;
}
.con3_left{
    overflow: hidden;
}
.con3_left_vid{
    margin-top: 0%;
    margin-left: 0%;
    width: 100%;
    height: 100%;
}
.con3_left_top{
    width: 21.511%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 25%;
    margin-left: -27%;
}
.con3_left_top_2nd{
    width: 54.2497%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    overflow: hidden;
    margin-left: 5%;
}
.con3_left_top_3rd{
    margin-top: 4%;
    margin-left: -3%;
    margin-bottom: 50%;
}
.con3_left_top_3rd .line{
    overflow: hidden;
}
.con3_left_vid {
    margin-top: 0%;
    margin-left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    filter: brightness(0.4);
    justify-content: center;
    align-items: center;
}
.con3_left {
    overflow: hidden;
    h: inherit;
    height: 48vw;
}
.con3_right{
    justify-content: flex-start !important;
    background: #1b1311;
}
.con3_right_item_top {
    margin-top: 22.4%;
    margin-left: 0%;
    width: 52%;
    font-size: 1.45vw;
}
.con3_left_vid video{
    width: 180%;
}
.con3_right_item_top_2nd{
    margin-top: 4%;
    margin-left: 0%;
    width: 53%;
}
.con3_right_item_topab{
    width: 11.1111%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 103%;
    bottom: -26%;
}
.con3_right_item_top_3rd{
    width: 71.8783%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
    margin-left: 4%;
    margin-bottom: 11%;
}
.con3{
    align-items: flex-start;
}
.con3_right_item_top_3rdab{
    width: 22.4818%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 74%;
    right: 6%;
}
.con3_right_item_top_3rdabab{
    width: 122.078%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 47%;
}
.con3_right_item3_top_3rdab{
    width: 68.1752%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
}
.con3_right_item3_top_3rdab1{
    width: 21.1991%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -2%;
    bottom: 20%;
}
.con3_right_item3_top_3rdab2{
    width: 21.1991%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -14%;
}
.con3_right_item3_top_3rdab3{
    width: 21.1991%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: -2%;
    bottom: 20%;
}
.con3_right_item3_top_3rdab4{
    width: 47.1092%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 50%;
}
.con3_right_item4con3_right_item_top_3rd{
    overflow: hidden;
}
.con3_right_item4_top_3rd1{
    overflow: hidden;
    left: 0;
    height: 100%;
    width: 33.333%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con3_right_item4_top_3rd1vid video {
    width: 238%;
    filter: brightness(0.3);
}
.con3_right_item4_top_3rd2{
    width: 33.33%;
    height: 100%;
}
.con3_right_item4_top_3rd3{
    width: 33.33%;
    height: 100%;
    right: 0;
}
.con3_right_item4_top_3rdab1{
    width: 11.5328%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    left: 11%;
    top: 13%;
}
.con3_right_item4_top_3rdab2{
    width: 11.5328%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 13%;
    z-index: 3;
}
.con3_right_item4_top_3rdab3{
    width: 11.5328%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    z-index: 2;
    right: 11%;
    top: 13%;
}
.con3_right_item4_top_3rdab4{
    width: 60.7299%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    top: 33%;
}
.con3_right {
    justify-content: flex-start !important;
    height: 48vw;
}
.con4_top{
    margin-top: 12.4%;
}
.con4_topab2{
    overflow: hidden;
}
.con4_topab3{
    width: 6.19423%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10%;
    margin-left: 1%;
}
.con4_topab2{
    width: 22.4147%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.3%;
    margin-left: 2%;
}
.con4_topab{
    width: 20.1575%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0%;
    margin-left: 2%;
}
.con4_topabab{
    width: 8.39895%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
}
.con6_mid_swiper_3{
    margin-top: 1.5%;
    margin-left: 0%;
    width: 47.4%;
    background: white;
    border: 1px solid black;
    overflow: hidden;
    height: 26vw;
    border-radius: 50%;
}
.con6_mid_swiper_1_slide_p_con3 {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
}
.con6_mid_swiper_1_slide_p_con3_top{
    margin-top: 10%;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con3_top2nd{
    margin-top: 3%;
    margin-left: 0%;
    text-align: center;
}
.con6_mid_swiper_1_slide_p_con3_top3rd{
    width: 47.1761%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con3_top3rdab{
    right: 94%;
    top: 20%;
}
.con6_mid_swiper_1_slide_p_con3_top3rdab2nd{

    top: 20%;
    left: 94%;
}
.con6_mid_swiper_3{
    margin-bottom: 8%;
}
.con4_scrx{

}
.con4 .con7_prev{
    bottom: 6%;
    left: 46% !important;
}
.con4 .con7_next{
    bottom: 6%;
    right: 46% !important;
}
.con4_scrx{
    padding: 2.9% 0;
    border: 1px solid black;
    top: 43.5%;
}
.con5_top4th >p{
    -webkit-text-stroke: 0.4vw var(--mc);
}
.con5 .con3_left_vid{
    top: 0;
}
.con5_top2nd{
    width: 29.6588%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -13.6%;
    margin-left: 0%;
}
.con5_top3rd{
    margin-top: 1.4%;
    margin-left: 0%;
    text-align: center;
}
.con5_top3rd .line{
    overflow: hidden;
}
.con5_top4th{
    margin-top: 3.3%;
    margin-left: 2%;
    font-size: 6.4vw;
}
.con5_top4thab{
    margin-top: 0%;
    margin-left: 0%;
    right: 104%;
    white-space: nowrap;
    text-align: right;
    top: 31%;
}
.con5_top4thab2{
    margin-top: 0%;
    margin-left: 0%;
    background: black;
    border-radius: 50%;
    width: 3vw;
    height: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 100%;
    top: 47%;
}
.con5_top4thab3{
    margin-top: 0%;
    margin-left: 0%;
    left: 108%;
    white-space: nowrap;
    top: 66%;
}
.con5_top5th{
    width: 34.8556%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5%;
    margin-left: 0%;
}
.con6_mid_swiper_4{
    margin-top: 0%;
    margin-left: 0%;
    width: 112%;
    margin-top: -23%;
    margin-left: 0%;
    margin-bottom: 4.3%;
}
.con6_mid_swiper_1_slide_p_con4ab{
    margin-top: 0%;
    margin-left: 0%;
    top: 14%;
}
.con6_mid_swiper_1_slide_p_con4ab2{
    margin-top: 0%;
    margin-left: 0%;
    top: 47%;
}
.con6_mid_swiper_1_slide_p_con4ab3{
    margin-top: 0%;
    margin-left: 0%;
    top: 62%;
}

.container {
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 20px;
}

th, td {
    padding: 8px 12px;
    font-size: 12px;
    color: #333;

}

.con5_top_6th{
    margin-top: 0%;
    margin-left: 0%;
    width: 82.4%;
}
.con5 .con3_left_vid {
    top: 0;
    height: unset;
}
.con5_top_6th1{
    height: 33.3vw;
    margin-right: 0.3%;
}
.con5_top_6th2{
    height: 33.3vw;
    margin-right: 0.3%;
}
.con5_top_6th1ab{
    width: 55.8974%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4%;
    margin-left: 4%;
}
.con5_top_6th1abab2{
    width: 49.3119%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 64%;
    top: 11%;
}
.con5_top_6th1abab{
    width: 39.2202%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 67%;
    top: 86%;
}
.con5_top_6th1ab2{
    width: 61.2821%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 49%;
    top: 51%;
}
.con5_top_6th2 {
    height: 33.3vw;
    margin-right: 0.3%;
    justify-content: flex-start;
}
.container {
    width: 80%;
    margin: unset;
    padding-top: unset;
    margin-top: 12%;
}
th, td {
    padding: 0.6vw 0;
    color: #333;
    text-align: center;
    width: 34%;
}
th{
    padding: 0.8vw 0;

}
.con5_top_6th2ab{
    margin-top: 0%;
    margin-left: 0%;
    top: 9%;
    right: 10%;
}
thead{
    border-top: 1px solid var(--fifc);
    border-bottom: 1px solid var(--fifc);
}
.con5_top_6th {
    margin-top: 0%;
    margin-left: 0%;
    width: 82.4%;
    margin-bottom: 7%;
}
.con6{
    background: url(/images/con06_bg.jpg) no-repeat center / cover;
    height: 44.8vw;
    background-attachment: fixed;
}
.con71{
    background: url("/images/con07_bg.jpg") center center / cover no-repeat;
    margin-top: 0%;
    margin-left: 0%;
    align-items: flex-end;
}
.con7con{
    width: 94.5%;
    margin: 5% 0;
}
.con7con_top{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 20%;
    margin-left: -21%;
}
.con7con_top2nd{
    width: 29.2222%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 2%;
    margin-left: -42%;
}
.con7con_top3rd{
    margin-top: 6.5%;
    margin-left: 0%;
    width: 72%;
    overflow: hidden;
}
.con7con_top4th{
    width: 3.22222%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12%;
    margin-left: -84%;
    margin-bottom: 6%;
}
.con7con{
    width: 94.5%;
    margin: 5% 0;
    justify-content: flex-start;
    height: 44.7vw;
    overflow: hidden;
}
.con7conab{
    width: 54.8889%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0%;
    right: 0;
}
.con72_item_top_2nd{
    background: #170604;
}
.red2nd{
    color: #fa6030;
}
.red2ndbg{
    background: #fa6030;
}
.rightflex{

}
.con71{
    height: 49.5vw;
}
.con72{
    height: 49.5vw;
    justify-content: flex-start;
}
.con72_item{
    height: 9vw;
    border: 1px solid black;
    border-left: unset;
    transition: 0.3s all;
    border-right: unset;
}
.con72_item_top{
    margin-top: 18%;
    font-size: 1.66vw;
    width: 71%;
    margin-left: 0%;
    transition: 0.3s all;
}
.con72_item_top_2nd{
    margin-top: 2.3%;
    margin-left: -33%;
    font-size: 1.1vw;
    padding: 0.3% 0.5%;
    opacity: 0;
    transition: 0.3s all;
    transition-delay: 0.1s;

}
.con72_item_top_3rd{
    width: 71%;
    margin-top: 4%;
    opacity: 0;
    transition: 0.3s all;
    transition-delay: 0.2s;
}

.con72_item_on{
    height: 22.5vw;
    justify-content: flex-start;
    background: var(--mc);
}
.con72_item_on .con72_item_top {
    margin-top: 13.5%;
    color: white !important;
}
.con72_item_on .con72_item_top .mc{
    color: white !important;

}
.con72_item_on .con72_item_top_2nd{
    opacity: 1;
}
.con72_item_on .con72_item_top_3rd{
    opacity: 1;
}

.con8_top{
    width: 26.7717%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9.2%;
    margin-left: 0%;
}
.con8{
    background: #1b1311;
}
.con8_top_2nd{
    margin-top: 2.4%;
    margin-left: 0%;
    text-align: center;
}
.con8ab{
    width: 27.6115%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
}
.con8ab2{
    width: 27.6115%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
}
.con8_top_3rd{
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -21%;
    margin-left: 0%;
}
.con8_top_3rdab{
    width: 1.82292%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: scaleOpa 2s infinite;
}
.con8_top_3rdab2{
    width: 1.82292%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 59%;
    right: 41%;
}
.con8_top_3rdab3{
    width: 1.82292%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 71%;
    left: 46%;
}
.con8_top_3rdab4{
    width: 1.82292%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 79%;
    left: 54%;
}
.con8_top_3rdab5{
    width: 1.97917%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 74%;
    right: 41%;
}
.con8_top_3rdab5ab{
    width: 215.789%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con8_top_3rdab5ab2{
    width: 481.579%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con8abab{
    width: 34.2205%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 17%;
    z-index: 2;
}
.con8abab2{
    width: 34.2205%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 58%;
    z-index: 2;
}
.con8ababp{
    margin-top: 0%;
    margin-left: 0%;
    top: 105%;
}
.con8ab3{
    width: 28.6614%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 64%;
    right: 10%;
}
.con9_top{
    margin-top: 8%;
}
.con9_top2nd{
    margin-top: 1%;
    margin-left: 0%;
    text-align: center;
}
.con9_top3rd{
    margin-top: 3%;
}
.con9_top3rd2{
    width: 38.0052%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: -4%;
}
.con9_top3rdab{
    width: 12.8084%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
}
.con9_top4th{
    margin-top: 0%;
    margin-left: 0%;
    margin-bottom: 10.2%;
}
.con9_top4th .line{
    overflow: hidden;
}
.con9ab{
    width: 24.9344%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0%;
    bottom: 14%;
}
.con10top{
    width: 35.643%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9.4%;
    margin-left: 0%;
}
.con10top2nd{
    width: 23.7795%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.3%;
    margin-left: 0%;
}
.con10top3rd{
    margin-top: 2.3%;
    margin-left: 0%;
    text-align: center;
}
.con10top3rd .line{
    overflow: hidden;
}
.con10top4th{
    width: 42.5722%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 0%;
}
.con6_mid_swiper_5{
    margin-top: 0%;
    margin-left: 0%;
    width: 34%;
    left: 0;
    height: 100%;
}
.con6_mid_swiper_1_slide{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.con6_mid_swiper_1_slide_p_con5{
    background: white;
    width: 13vw;
    height: 13vw;
    border-radius: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

}
.con6_mid_swiper_1_slide_p_con5_top {
    margin-top: 12%;
    transition: 0.3s all;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con5_top2nd{
    margin-top: 11%;
    transition: 0.3s all;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con5_top3rd{
    margin-top: 1%;
    margin-left: 0%;
    text-align: center;
    transition: 0.3s all;

}
.con6_mid_swiper_1_slide_p_con5ab {
    width: 131.048%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -16%;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con5ab img{
    opacity: 1;
}
.con6_mid_swiper_1_slide_p_con5{
    transition: 0.3s all;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con5{
    background: #970404;
}
.con6_mid_swiper_5{
    overflow: hidden;
}
.con6_mid_swiper_5 {
    margin-top: 0%;
    margin-left: 0%;
    width: 34%;
    left: 0;
    height: 100%;
    padding-right: 3%;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con5 {
    background: #970404;
    scale: 1.13;
    transform: translateX(48%);
}
.con6_mid_swiper_1_slide_p_con5ab img{
    transition: 0.3s all;
    opacity: 0;
}

.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con5ab img{
    opacity: 1;
}

.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con5  p{
    color: white;
}
.con10ab{
    width: 19.2126%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 5%;
}
.con10_vid{
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
    overflow: hidden;
    width: 27%;
}
.con11_top{
    margin-top: 9%;
    margin-left: 0%;
}
.con11_top2nd{
    width: 27.874%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    z-index: 2;
    margin-left: 2%;
}
.con11_top3rd{
    width: 43.0971%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4%;
    margin-left: 0%;
}
.con11_top4th{
    width: 18.3727%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5.2%;
    margin-left: 0%;
    margin-bottom: 7.4%;
}
.con11_top3rdab6{
    width: 29.4762%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: -12%;
    top: 21%;
}
.con11_top3rdab1{
    width: 15.2253%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 7%;
    top: 16%;
}

.con11_top3rdab2{
    width: 15.2253%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 7%;
    top: 16%;
}


.con11_top3rdab3{
    width: 15.2253%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 7%;
    bottom: 16%;
}

.con11_top3rdab4{
    width: 15.2253%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 7%;
    bottom: 16%;
}

.con11ab1{
    width: 15.748%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 1.5%;
    top: 5%;
}
.con11ab2{
    width: 15.748%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 1.5%;
    top: 5%;
}
.con11ab3{
    width: 15.748%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 1.5%;
    bottom: 4%;
}
.con11ab4{
    width: 15.748%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 1.5%;
    bottom: 4%;
}
.con11ab5{
    width: 5.19685%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blk 1s infinite;
    margin-top: 0%;
    margin-left: 0%;
    top: 9%;
    left: 4%;
}
.con11ab6{
    width: 7.45407%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 9.5%;
    right: 3%;
}
.con11ab7{
    width: 6.82415%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 7%;
    right: 3%;
}
.con11ab8{
    width: 31.8635%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    overflow: hidden;
    margin-left: 0%;
    right: 69%;
    top: 49%;
}
.con11ab9{
    width: 31.8635%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 72%;
    top: 49%;
}
.con12_con_top{
    width: 14.6457%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 8.3%;
    margin-left: -67%;
}
.con12_con_top2nd{
    width: 12.5459%;
    display: flex;
    justify-content: center;    overflow: hidden;

    align-items: center;
    margin-top: 0.6%;
    margin-left: -69%;
}
.con12_con_top3rd{
    margin-top: 2%;
    margin-left: -67%;
}
.con12_con_top4th{
    width: 43.0971%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: -57%;
}
.con12_con2{
    background: url(/images/con12_bg.jpg) no-repeat center / cover;
    height: 100%;
    justify-content: flex-start;
}
.con12_con2_top{
    width: 13.2283%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 25.4%;
    margin-left: 68%;
}
.con12_con2_top2nd{
    width: 20.105%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 61.4%;
}
.con12_con2_top3rd{
    margin-top: 2.3%;
    margin-left: 0%;
    text-align: right;
    width: 81.3%;
}
.con12_con2ab{
    width: 37.5853%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 33.6%;
    top: 10%;
}
.con12_con2abab{
    width: 73.8827%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 71%;
    top: 16%;
}
.con13_contop{
    width: 9.50131%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    margin-left: 0%;
}
.con13_contop2nd{
    width: 25.6693%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.4%;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con7ab{
    opacity: 0;
    scale: 0.8;
    transition: 0.3s all;
    transition-delay: 0.2s;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con7ab{
    opacity: 1;
    scale: 1;
}
.con6_mid_swiper_7{
    margin-top: 6.3%;
    margin-left: 0%;
    margin-bottom: 14.4%;
    width: 115%;
}
.con6_mid_swiper_1_slide_p_con7ab2{
    margin-top: 0%;
    margin-left: 0%;
    top: 108%;
    font-size: 1.7vw;
    opacity: 0;
    transition: 0.3s all;
    transition-delay: 0.3s;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con7ab2{
    opacity: 1;
    top: 128%;
}
.con6_mid_swiper_1_slide_p_con7ab3{
    margin-top: 0%;
    margin-left: 0%;
    top: 113%;
    text-align: center;
    opacity: 0;
    font-weight: 400;
    transition: 0.3s all;
    transition-delay: 0.5s;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con7ab3{
    opacity: 1;
    top: 143%;
}
.con13ab{
    background: white;
    width: 52%;
    height: 100%;
    border: 1px solid black;
}



.con14_top{
    margin-top: 6%;
    margin-left: 0%;
}
.con14_top .line{
    overflow: hidden;
}
.con14_top2nd{
    width: 29.7638%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    overflow: hidden;
    margin-left: 0%;
}
.con6_mid_swiper_8{
    margin-top: 6%;
    margin-left: 0%;
    border-top: 2px solid var(--fifc);
    border-bottom: 2px solid var(--fifc);
    margin-bottom: 7.3%;
}
.con14ab{
    width: 22.2047%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 28%;
    overflow: hidden;
}
.con14_vid{
    width: 95%;
    height: 100%;
    margin-top: 0%;
    margin-left: 0%;
    overflow: hidden;
    border-radius: 2vw;
}
.con14ab{
    z-index: 3;
}
.con14abab{
    width: 61.9385%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 15%;
    left: 25%;
}
.con6_mid_swiper_8ab{
    width: 28.6614%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -40%;
    z-index: 3;
    right: 2%;
}
.con14ab2{
    width: 36.5354%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 3;
    top: 50%;
    left: 27%;
}
.con14ab2ab1{
    width: 65.0862%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 42%;
    top: 28%;
}
.con14ab2ab2{
    width: 45.4023%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 49%;
    left: -25%;
}
.con14ab2ab3{
    width: 38.0747%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 88%;
    top: 53%;
}
.con14 .con6_mid_swiper_1_slide_p_con1{
    border-right: 2px solid var(--fifc);
}
.con15_top{
    width: 7.45407%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.3%;
    margin-left: 0%;
}
.con15_top2nd{
    margin-top: 2.9%;
    z-index: 4;
}
.con15_top2nd1{
    width: 17.0079%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0%;
    margin-left: 0%;
}
.con15_top2nd3{
    width: 14.5407%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con15_top2nd2{
    width: 5.51181%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0.5%;
    margin-right: 1%;
}
.con15_top3rd{
    margin-top: 1%;
    margin-left: 0%;
    text-align: center;
}
.con15_top4th{
    width: 45.8268%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 0%;
}
.con15_ab{
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
}
.con15_topab{
    width: 868.31%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -39%;
    z-index: 3;
    left: -389%;
    animation: light 2s infinite;
}


.con10_swiper_y_left {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 18%;
    height: 100%;

    overflow: hidden;
    left: -3.5%;
    top: -18%;
    pointer-events: none;
}
.con10_swiper_y_right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 18%;
    height: 100%;

    overflow: hidden;
    right: -3.5%;
    top: -18%;
    pointer-events: none;
}
.con10_swiper_slide_y{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
    width: 100%;
    overflow: hidden !important;
    transition: all 0.3s;
}
.con10_swiper_div_y{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    transition: all 0.3s;
}
.con10_sd_y_img{
    width: 100%;
}

.con10_swiper_y_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 19%;
    height: 130%;
    overflow: hidden;
    left: -3.5%;
    top: 0;
    pointer-events: none;
}

.con10_swiper_y_right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 19%;
    height: 130%;
    overflow: hidden;
    right: -3.5%;
    top: 0;
    pointer-events: none;
}

.con10_swiper_y_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 21%;
    height: 118%;
    overflow: hidden;
    left: 0;
    top: 0;
    pointer-events: none;
}

.con10_swiper_y_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 21%;
    height: 118%;
    overflow: hidden;
    right: 0;
    top: 0;
    pointer-events: none;
}
.con16_left_top{
    width: 21.511%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 19%;
    margin-left: -15%;
}
.con16_left_top2nd{
    width: 42.3924%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 1%;
}
.con16_left_top3rd{
    margin-top: 4%;
    margin-left: 0%;
    text-align: center;
}
.con16_left_top4th{
    width: 102.518%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 19%;
    margin-left: -13%;
}
.con16_left_topab{
    width: 82.9268%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 102%;
}
.con16_left_top4thab{
    width: 49.5902%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 61%;
    bottom: 33%;
}
.con16_left{
    height: 39.4vw;
}
.con16_right{
    height: 39.4vw;
    justify-content: flex-start;
}
.con16_right_top{
    justify-content: space-around;
    width: 93%;
    border-radius: 3vw;
    height: 5.5vw;
    margin-top: 6%;
}
.con16_right_top_item{
    margin-top: 0%;
    margin-left: 0%;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 66%;
    margin-top: 0%;
    text-align: center;
    margin-left: 0%;
    width: 25%;
    cursor: pointer;
    font-size: 1vw;
}
.con16_right_top_item p{
    color: rgba(255, 255, 255, 0.39);
}
.con16_right_top_item:nth-child(2){
    border-left: 1px solid #b1b1b1;
    border-right: 1px solid #b1b1b1;
}
.con16_right_top_item:nth-child(3){
    border-right: 1px solid #b1b1b1;
}
.con16_right_top_item_on p{
    color: white;
}
.con16_right_top_itemab{
    width: 55.2036%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    transition: 0.3s all;
    top: -38%;
}
.con16_right_top_item .absol{
    opacity: 0;
    top: -60%;
}
.con16_right_top_item_on .absol{
    opacity: 1;
    top: -38%;

}
.con16_right_item{
    height: 100%;
    justify-content: flex-start;
}
.con16_right_item_top{
    margin-top: 31%;
    margin-left: 0%;
    width: 73%;
}
.con16_right_item_top_2nd{
    margin-top: 4%;
    width: 67%;
}
.con16_right_item_top_2nd_item{
    margin-top: 0%;
    margin-left: 0%;
    justify-content: flex-start;
    margin-bottom: 1%;
}
.con16_right_item_top_2nd_itemab{
    width: 3.29154%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 101%;
    bottom: 30%;
}
.con16_right_itemab{
    width: 40.6086%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
    right: 0;
}

.con17_con{
    margin-top: 7%;
    margin-left: 0%;
    background: white;
    width: 65%;
    border-radius: 50%;
    height: 36.5vw;
}
.con17_concon{
    width: 98%;
    height: 96%;
    border-radius: 50%;
    border: 1px solid black;
    overflow: hidden;justify-content: flex-start;
}
.con17_top{
    width: 30.0907%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-left: 0%;
}
.con17_top2nd{
    width: 40.643%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 0%;
}
.con17_top3rd{
    text-align: center;
    margin-top: 4%;
}
.con17_top3rd p{
    margin-bottom: 2%;
}
.con17_conab{
    width: 34.9547%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 75%;
}
.con17_top4th{
    width: 15.748%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-left: 0%;
    margin-bottom: 5.4%;
}
.con7_scrx1{
    rotate: 33deg;
    left: -20%;
    height: 120%;

}
.con7_scrx2{
    rotate: 33deg;
    left: -2%;
    height: 120%;
}

.con7_scrx3{
    rotate: 33deg;
    right: -20%;
    height: 120%;

}
.con7_scrx4{
    rotate: 33deg;
    right: -2%;
    height: 120%;
}
.con17toptop{
    z-index: 5;
}
.con17{
    border-bottom: 0.51vw solid var(--fifc);
}
.con18_top{
    width: 17.3753%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15%;
    margin-left: 0%;
}
.con18_top2nd{
    width: 64.357%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
    margin-bottom: 9%;
}
.con18_top2ndab1{
    width: 43.8735%;
    display: flex;
    justify-content: center;
    animation: blk 1s infinite;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 74%;
}
.con18_top2ndab2{
    width: 34.2556%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 84%;
    top: 20%;
}
.con18_top2ndab3{
    width: 34.2556%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 84%;
    top: 50%;
}
.con19_top{
    margin-top: 6%;
}
.con19_top2{
    width: 10.2362%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0.5%;
}
.con19_top_2nd{
    width: 80%;
}
.con19_top_2nd {
    width: 80%;
    margin-top: 3%;
    margin-bottom: 6.3%;
}
.con19ab{
    width: 29.2388%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
    bottom: 0;
}
.con19_top_2nditem{
    width: 20.9318%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.3% 0.3%;
}
.con19{
    border-bottom: 0.51vw solid var(--fifc);
}
.con20_top_2nd{
    width: 11.9685%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
    margin-left: 0%;
}
.con20_top_3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con20_top_3rd .line{
    overflow: hidden;
}
.con21_left_top{
    width: 39.5593%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 18.5%;
    margin-left: -10%;
}
.con21_top_3rd{
    margin-top: 4%;
    margin-left: -8%;
    overflow: hidden;
}
.con21_left_top2nd{
    width: 43.127%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    z-index: 1;
    margin-left: -9%;
}
.con21_left_top4th{
    width: 67.681%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4.5%;
    margin-left: -33%;
}
.con21_left_top4thab{
    width: 78.7597%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 61%;
    top: 30%;
}
.con21_leftab{
    width: 10.808%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 95%;
    top: 11%;
}
.con21_left{
    height: 48.3vw;
    justify-content: flex-start;
}
.con21_right{
    height: 48.3vw;
    justify-content: flex-start;
}


.clock_wrap {
    width: 74%;
}




















.form {
    margin-top: 2%;
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid white;
    padding-top: 1.7%;
    background: white;
    z-index: 1;
    margin-bottom: 7%;
}
.form_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    padding-bottom: 0%;
    padding-left: 3%;
    padding-top: 1%;
    margin-top: 1%;
    border-bottom: 1px solid black;
}
.con17_bg{
    width: 100%;
}
.form_agree {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 78%;
    margin-top: 5%;
    margin-bottom: 4%;
}
.form_row_label{
    font-family: Pretendard-regular;
    color: black;
    white-space: nowrap;
    font-size: 1.2vw;
}
.form_row_imput{
    width: 70%;
    height: 2.8vw;
    background: transparent;
    border: none;
    font-size: 1.2vw;
    font-family: 'Pretendard-Regular';
    outline: none;
}

.form_agree_span{
    font-size: 1.1vw;
    font-family: Pretendard-regular;
    color: black;
}
.form_agree_check{
    margin-right: 2%;
    width: 1vw;
    height: 1vw;
    overflow: hidden;
    outline: 0;
    background: #f2f2f2;
    color: transparent;
    border: none;
    appearance: none;
}
.form_agree_check:checked {
    background: #f2f2f2;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;

}
.form_agree_check:checked::after {
    content: "";
    width: 1vw;
    height: 1vw;
    position: absolute;
    background: #bf2121;
    color: unset !important;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF4206;
    padding: 1.5%;
    width: 48%;
    color: white;
    margin-bottom: 5%;
    font-size: 1.6vw;
    font-family: GmarketSansBold;
    border-radius: 0;
    padding-top: 2.5%;
    padding-bottom: 2%;
    cursor: pointer;
}
.form_row_imput_radio {
    margin-right: 1%;
    width: 1.5vw;
    height: 1.5vw;
    overflow: hidden;
    outline: 0;
    background: #ffffff;
    color: white;
    border: none;
    appearance: none;
    border-radius: 50%;
    margin-right: 20%;
    left: 3%;
    border: 1px solid black;
}
.form_row_imput_radio:checked::after {
    content: "";
    width: 1vw;
    height: 1vw;
    position: absolute;
    background: #bf2121;
    color: unset !important;
}
.form_row > span {
    font-size: 1.3vw;
    margin-right: -18%;
    color: black;
}
.form_agree_span{

}
.form_row_imput_radio_1{
    margin-right: -6%;
}
.form_row_imput_text{
    padding-left: 3%;
    box-sizing: border-box;
}
.form_row_radio{
    padding-top: 2%;
    padding-bottom: 2%;
}

.form_row_imput_radio{
    display: flex;
    justify-content: center;
    align-items: center;
}.form_row_imput_radio:checked::after {
     content: "";
     width: 1vw;
     height: 1vw;
     position: absolute;
     background: #bf2121;
     color: unset !important;
     border-radius: 50%;
 }
.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #bf2121;
    padding: 1.5%;
    width: 48%;
    color: white;
    margin-bottom: 5%;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 2.5%;
    padding-bottom: 2%;
    cursor: pointer;
}
.form {
    margin-top: 2%;
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 1.7%;
    background: transparent;
    z-index: 1;
    margin-bottom: 7%;
    right: 20%;
}
.form_row_label {
    font-family: Pretendard-regular;
    color: white;
    white-space: nowrap;
    font-size: 1.2vw;
}
.form_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    padding-bottom: 0%;
    padding-left: 3%;
    padding-top: 1%;
    margin-top: 1%;
    border-bottom: 1px solid white;
}
.form_row > span {
    font-size: 1.3vw;
    margin-right: -18%;
    color: white;
}
.form_agree_span {
    font-size: 1.1vw;
    font-family: Pretendard-regular;
    color: white;
}
.form_agree_check:checked::after {
    content: "";
    width: 0.8vw;
    height: 0.8vw;
    position: absolute;
    background: #bf2121;
    color: unset !important;
}
.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #bf2121;
    padding: 1.5%;
    width: 75%;
    color: white;
    margin-bottom: 5%;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 2.5%;
    padding-bottom: 2%;
    cursor: pointer;
}
.form {
    margin-top: 2%;
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 1.7%;
    background: transparent;
    z-index: 1;
    margin-bottom: 7%;
    right: 3%;
    top: 15%;
}
.form_row_radio {
    padding-top: 2%;
    padding-bottom: 2%;
}

.form_agree {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 78%;
    margin-top: 5%;
    margin-bottom: 4%;
}

.form_row_label {
    font-family: Pretendard-regular;
    color: white;
    white-space: nowrap;
    font-size: 1.2vw;
    width: 22% !important;
}

.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 1.5%;
    width: 33%;
    color: white;
    position: relative !important;
    margin-bottom: 17%;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    cursor: pointer;
}

.form {
    margin-top: 2%;
    width: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 1.7%;
    background: transparent;
    z-index: 1;
    margin-bottom: 7%;
    right: 7%;
    top: 13%;
}
.form_row {
    border-bottom: unset;
}
.con20_08 {
    bottom: -34%;
    left: -2%;
    width: 113%;
}


.form_row_imput_radio {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fe0908;
    background: transparent;
}
.form_row_imput_radio:checked::after {
    content: "";
    width: 1vw;
    height: 1vw;
    position: absolute;
    background: #fe0908;
    color: unset !important;
    border-radius: 50%;
}
.form_agree_check {
    margin-right: 2%;
    width: 1vw;
    height: 1vw;
    overflow: hidden;
    outline: 0;
    background: #f2f2f2;
    color: transparent;
    border: none;
    appearance: none;
    border: 1px solid #fe0908;
    background: transparent;
}
.form_agree_check:checked {
    background: transparent;
    border: 1px solid #fe0908;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_agree_check:checked::after {
    content: "";
    width: 0.8vw;
    height: 0.8vw;
    position: absolute;
    background: #fe0908;
    color: unset !important;
}


.form_row {
    border-bottom: 1px solid white !important;
}

.form_row_imput_radio {
    border: 1px solid #a84e1d;
    background: transparent;
}
.form_row_imput_radio:checked::after {
    content: "";
    width: 1vw;
    height: 1vw;
    position: absolute;
    background: #a84e1d;
    color: unset !important;
    border-radius: 50%;
}

.form_agree_check {
    border: 1px solid #a84e1d;
}


.form {
    margin-top: 2%;
    width: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 1.7%;
    background: transparent;
    z-index: 1;
    margin-bottom: 7%;
    right: 6%;
    top: 28%;
}


.form_agree_check:checked {
    border: 1px solid #a84e1d;
}

.form_row > span {
    font-family: Pretendard-regular !important;
}



.form{
    background: #ffffffc4;
}
.form_row_label{
    font-family: "SUIT Variable";
    font-weight: 300;
    font-size: 1vw;
    line-height: 1.4vw;
    letter-spacing: -0.04vw;
    color: black;
}
.form_row {
    border-bottom: 1px solid black !important;
}

.form {
    margin-top: 2%;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 1.7%;
    background: transparent;
    z-index: 1;
    margin-bottom: 7%;
    right: unset;
    top: 24%;
    left: 50%;
    background: rgba(255, 255, 255, 0.66);
}

.form_row {
    border-bottom: 1px solid black !important;
    width: 100%;
    padding-left: 9%;
    box-sizing: border-box;
}
.form {
    margin-top: 2%;
    width: 35%;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 0;
    background: transparent;
    z-index: 1;
    margin-bottom: 3%;
    right: unset;
    top: 24%;
    left: 50%;
    background: rgba(255, 255, 255, 0.77);
    padding-bottom: 4%;

}

.form_submit {
    display: flex
;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 1.5%;
    width: 33%;
    color: white;
    position: relative !important;
    margin-bottom: 17%;
    font-size: 1.3vw;
    font-family: SUIT VARIABLE;
    border-radius: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    cursor: pointer;
    HEIGHT: 3.4VW;
    width: 100%;
    background: #c58e3b;
    box-sizing: border-box;
    position: absolute !important;
    top: 100%;
}

.form_row_imput {
    height: 2.5vw;
    font-family: 'Pretendard-Regular';
}
.form_agree{
    bottom: 100%;
}

.form_ab{
    width: 4.04889%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 105%;
    right: 3%;
}
.form_submit{
    color: black;
}
.form_row_radio {
    padding-top: 0%;
    padding-bottom: 0%;
}
.form_row_imput_radio {
    width: 48.8%;
    height: 2.5vw;
    appearance: none;
    outline: none;
    border: unset;
    border-radius: 0.3vw;
    background: white;
}
.form_row_imput_radio:checked {
    background: #f08200;
}
.form_row_imput_radio:checked {
    border: none;
    appearance: none;
}
.form_row_imput_radio {
    width: 48.8%;
    height: 2.5vw;
    appearance: none;
    outline: none;
    border: unset;
    border-radius: 0.3vw;
    background: white;
}
.form_row_imput_radio_1_label_off {
    color: black;
}
.form_row_imput_radio_1_label {
    font-family: 'Pretendard-Regular';
    font-size: 1.3vw;
    left: 22.1%;
    color: white;
    pointer-events: none;
}
.form_row_imput_radio_1_label_2 {
    font-family: 'Pretendard-Regular';
    font-size: 1.3vw;
    left: 73.8%;
    color: white;
    pointer-events: none;
}
.form_row_imput_radio:checked::after {
    content: unset;
    width: 1vw;
    height: 1vw;
    position: absolute;
    background: #a84e1d;
    color: unset !important;
    border-radius: 50%;
}

.form_row {
    height: 2.5vw;
    justify-content: flex-start;
}
.form_row_imput_radio {
    width: 48.8%;
    height: 1.7vw;
    width: 25% !important;
    appearance: none;
    outline: none;
    border: unset;
    border-radius: 0.3vw;
    background: white;
    margin: 0 0.5%;
}
.form_row_imput_radio:checked {
    background: #291e14;
}
.form_row_imput_radio {
    background: #00000036;
}
.form_row_imput_radio_1_label {
    font-family: 'Pretendard-Regular';
    font-size: 1vw;
    left: 40%;
    color: white;
    pointer-events: none;
}
.form_row_imput_radio_1_label_2 {
    font-family: 'Pretendard-Regular';
    font-size: 1vw;
    left: 63.8%;
    color: white;
    pointer-events: none;
}
.form_agree_check {
    border: 1px solid #ffffff73;
}
.form_agree_span {
    font-size: 0.9vw;
    font-family: Pretendard-regular;
    color: #ffffff9c;
}
.form_agree_span_under{
    text-decoration: underline;
}
.form{
    background: rgba(255, 255, 255, 0.89);
}
.form_agree_check:checked::after {
    content: "";
    width: 0.8vw;
    height: 0.8vw;
    position: absolute;
    background: white;
    color: unset !important;
}
.form_agree_check:checked {
    border: 1px solid #ffffff70;
}

section div > img{
    width: 100%;
}





.form_submit {
    display: flex
;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 1.5%;
    width: 33%;
    color: white;
    position: relative !important;
    margin-bottom: 17%;
    font-size: 1.3vw;
    font-family: SUIT VARIABLE;
    border-radius: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    cursor: pointer;
    HEIGHT: 3.4VW;
    width: 100%;
    background: #c58e3b;
    box-sizing: border-box;
    position: absolute !important;
    top: 100%;
    padding-bottom: 0;
    font-size: 1.2vw;
    letter-spacing: -0.04vw;
}

.form_row_label {
    font-family: var(--sf);
    font-weight: 500;
    font-size: 1.1vw;
    line-height: 1.5;
    letter-spacing: -0.04vw;
    color: black;
}


.form {
    margin-top: 2%;
    width: 73%;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 0;
    background: transparent !important;
    margin-bottom: 3%;
    right: unset;
    top: 15%;
    left: 14%;
    background: rgba(255, 255, 255, 0.77);
    padding-bottom: 4%;
}
.form_row {
    border-bottom: 1px solid black !important;
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
}
.form_row {
    height: 4.4vw;
    justify-content: flex-start;
}
.con15ab3{
    z-index: 3;
}
.form_agree_span {
    font-size: 0.9vw;
    font-family: Pretendard-regular;
    color: black;
}
.form_agree_check {
    border: 1px solid black;
}
.form_agree_check:checked {
    border: 1px solid black;
}

.form_agree_check:checked::after {
    content: "";
    width: 0.7vw;
    height: 0.7vw;
    position: absolute;
    background: var(--sc);
    color: unset !important;
}
.form_row_imput_radio {
    width: 48.8%;
    height: 2.3vw;
    width: 23% !important;
    appearance: none;
    outline: none;
    border: 1px solid black !important;
    border-radius: 0.3vw;
    background: white !important;
    text-align: center;
    margin: 0 0.5%;
}
.form_row_imput_radio_1_label_item {
    font-family: var(--sf) !important;
    color: black !important;
}
.form_row_imput_radio:checked {
    background: var(--sc) !important;
}
.form_row_imput_radio_1_label {
    left: 33.5%;
}
.form_row_imput_radio_1_label_2 {
    left: 57.8%;
}
.form_submit {
    display: flex
;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 1.5%;
    width: 33%;
    color: white;
    position: relative !important;
    margin-bottom: 17%;
    font-size: 1.3vw;
    font-family: var(--sf);
    border-radius: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    cursor: pointer;
    HEIGHT: 3.4VW;
    width: 34%;
    background: var(--mc);
    box-sizing: border-box;
    position: absolute !important;
    top: 108%;
    padding-bottom: 0;
    left: 0;
    font-size: 1.2vw;
    letter-spacing: -0.04vw;
}

.form_agree {
    display: flex
;
    justify-content: flex-start;
    align-items: center;
    width: 78%;
    margin-top: 5%;
    margin-bottom: 4%;
    position: absolute !important;
    top: 91%;
    left: 0;
}
.form_row_label{
    position: relative;
}
.form_row_label::after{
    position: absolute;
    content: '*';
    font-size: 1vw;
    left: -12%;
}

.form_row_label {
    font-family: var(--mf);
    font-weight: 500;
    font-size: 1.1vw;
    line-height: 1.5;
    letter-spacing: -0.04vw;
    color: white;
}

.form {
    margin-top: 2%;
    width: 73%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 0;
    background: transparent !important;
    margin-bottom: 3%;
    right: unset;
    top: unset;
    left: unset;
    background: rgba(255, 255, 255, 0.77);
    padding-bottom: 4%;
    position: relative;
}
.form_row_imput {
    width: 70%;
    height: 2.8vw;
    background: transparent;
    border: none;
    font-size: 1.2vw;
    font-family: 'Pretendard-Regular';
    outline: none;
    color: white;
}
.form{
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.form_row {
    border-bottom: unset;
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
}
.form_row_label::after{
    display: none;
}
.form_row_imput_radio_1_label_item {
    font-family: var(--mf) !important;
    color: black !important;
}
.form_row_imput_radio {
    width: 48.8%;
    height: 2.3vw;
    width: 23% !important;
    appearance: none;
    outline: none;
    border: 1px solid white !important;
    border-radius: 0;
    background: white !important;
    text-align: center;
    margin: 0 0.5%;
}
.form {
    margin-top: 2%;
    width: 64%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 0;
    background: transparent !important;
    margin-bottom: 3%;
    right: unset;
    top: unset;
    left: unset;
    background: rgba(255, 255, 255, 0.77);
    padding-bottom: 4%;
    position: relative;
    margin-left: -9%;
}
.form_agree_span {
    font-size: 0.9vw;
    font-family: Pretendard-regular;
    color: white;
}
.form_agree_check {
    border: 1px solid white;
}
.form_agree_check:checked {
    border: 1px solid white;
}

.form {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}
.form_agree {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 78%;
    margin-top: 5%;
    margin-bottom: 4%;
    position: absolute !important;
    top: 86%;
    left: 70%;
}
.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 1.5%;
    width: 33%;
    color: white;
    position: relative !important;
    margin-bottom: 17%;
    font-size: 1.3vw;
    font-family: var(--sf);
    border-radius: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    cursor: pointer;
    HEIGHT: 3.4VW;
    width: 100%;
    background: var(--mc);
    box-sizing: border-box;
    position: absolute !important;
    top: 108%;
    padding-bottom: 0;
    left: 0;
    font-size: 1.2vw;
    letter-spacing: -0.04vw;
}
.con21_leftab {
    width: 10.808%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 95%;
    top: 11%;
    z-index: 2;
}

.con21_left {
    height: 48.3vw;
    justify-content: flex-start;
    background: #fff4be;
}


.con6_mid_swiper_1_slide_p_con2 {
    height: 22.5vw;
    overflow: hidden;
    border-radius: 0.4vw;
    width: 100%;
}
.con6_mid_swiper_1_slideab{
    width: 30.9305%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    z-index: 1;
    margin-left: 0%;
    top: 68%;
    left: 80%;
}
.con6_mid_swiper_1_slide_p_con7ab{
    width: 247.127%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con7{
    width: 45.0069%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.form_row {
    border-bottom: unset;
}
.con1ab {
    left: 50%;
    width: 50%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    top: 0;
}

.con6_mid_swiper_1_slideab {
    width: 30.9305%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    z-index: 1;
    margin-left: 0%;
    top: 68%;
    left: unset;
    right: -4%;
}
.con6_mid_swiper_2{
    overflow: hidden;
}

.con4_topab3 {
    width: 6.19423%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10%;
    margin-left: 2%;
}

.con4_topabab{
    top:100%;
    transition: 0.3s all;
}
.con4_topabab_on{
    top: -108%;
}
.con5_top4th{
    width: 44%;
}
.ct1{
}
.con72_item2 .con72_item_top_2nd{
    margin-left: -45%;
}
.con72_item3 .con72_item_top_2nd{
    margin-left: -45%;
}
.con72_item4 .con72_item_top_2nd{
    margin-left: -41%;
}
.con9_top2{
    width: 23.5696%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: -0.4%;
    margin-left: 1%;
}
.con9_top1{
    width: 19.1601%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con11_top3rdab, .con11_top3rdab1, .con11_top3rdab2,
.con11_top3rdab3, .con11_top3rdab4, .con11_top3rdab5, .con11_top3rdab6 {
    will-change: transform, opacity;
}

/* 모션 느낌 강화(선택): 꺾쇠는 약간 더 선명하게 */
.con11_top3rdab img { filter: contrast(105%); }




/* 컨테이너 기본 레이아웃 */
.con12 {
    position: relative;
    /* 필요시 높이 지정 */
    min-height: 520px; /* 프로젝트 맞춰 조정 */
    overflow: hidden;
}


/* 접근성: 모션 최소화 환경에서는 빠르게 */
@media (prefers-reduced-motion: reduce) {
    .con12_con, .con12_con2 { transition-duration: .2s; }
}


@media screen and (min-width: 600px) {
    /* 600px 이상일 때 적용되는 스타일 */
    /* 두 패널을 같은 크기로 겹침 */
    .con12_con,
    .con12_con2 {
        inset: 0;
        transition: clip-path .5s ease, filter .5s ease;
        /* 보정: 이미지 안깨짐 */
        contain: layout paint;
    }

    /* 기본 50:50 분할 */
    .con12_con  { clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
    .con12_con2 { clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%); }

    /* 시각 보조(선택): 비활성 쪽 살짝 어둡게 */
    .con12_con:not(:hover):not(:has(:hover)),
    .con12_con2:not(:hover):not(:has(:hover)) { filter: none; }
    .con12_con:hover ~ .con12_con2,
    .con12_con2:hover                { filter: brightness(0.95); }

    /* ─────────────────────────────── */
    /* 인터랙션 */
    /* 1) 왼쪽 패널을 호버하면: 좌 70% / 우 30% */
    .con12_con:hover {
        clip-path: polygon(0 0, 60% 0, 60% 100%, 0 100%);
    }
    .con12_con:hover ~ .con12_con2 {
        clip-path: polygon(60% 0, 100% 0, 100% 100%, 60% 100%);
    }

    /* 2) 오른쪽 패널을 호버하면: 우 70% / 좌 30%
       (왼쪽을 직접 줄일 필요는 없음. 오른쪽이 위에 겹쳐 보이기 때문) */
    .con12_con2:hover {
        clip-path: polygon(40% 0, 100% 0, 100% 100%, 40% 100%);
    }


}
.con6_mid_swiper_1_slide_p_con7ab3{
    width: 200%;
}
.con14ab2ab1 img{
    animation: ddm_m 2s infinite;
}
.con14ab2ab2 img{
    animation: ddm_m 2s infinite ;
    animation-delay: 1s;
}
.con14ab2ab3 img{
    animation: ddm_m 2s infinite;
}
.con14_vid video{
    pointer-events: none;
    width: 157%;
}
.con16_right_item{
    opacity: 0;
    transition: 0.3s all;

}
.con16_right_item> div{
    opacity: 0 !important;
    transition: 0.3s all;
}

.con16_right_item_top {
    transition-delay: 0.1s;
}
.con16_right_item_top_2nd {
    transition-delay: 0.2s;
}

.con16_right_item_on{
    opacity: 1;

}
.con16_right_item_on > div{
    opacity: 1 !important;

}
.con19 {
    background: #fff4be;
}
.con19_top1{
    width: 17.5853%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    overflow: hidden;
}
.con19_top2{
    overflow: hidden;
}
.form_row {
    border-bottom: unset !important;
}





































.fixed_popup{
    height: 100vh;
    background: #00000045;
}
.popup {
    width: 50%;
    background: white;
    height: 29vw;
    border-radius: 30px;
    overflow: hidden;
    top: 10%;
    justify-content: flex-start;
}
.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_img {
    width: 46.5248%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    height: 100%;
    overflow: hidden;
}
.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;
}
.fixed_popup{
    position: fixed !important;
    top: 0;
    z-index: 5;
    /*pointer-events: none;*/
    /*opacity: 0;*/
}
.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_2nd{
    font-family: Pretendard-semibold;
    width: 78%;
    font-size: 1.56vw;

}
.popup_right> div > div:nth-child(1){
    font-family: Pretendard-semibold;
    font-size: 1vw;
        color: #6d7d92;
    
}
.popup_right> div > div:nth-child(2){
    font-family: Pretendard-regular;
    font-size: 1vw;

}
.popup_right> div{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 78%;
    color: black;
    margin-top: 5%;
}
.popup_right{
    width: 53%;
    display: flex;
    justify-content: center;align-items: center;
    flex-direction: column;
}
.popup_img img{
    width: 100%;
}


.con17_mid_2nd{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 83%;
    margin-bottom: 5%;
}
.map{
    width: 98%;
    height: 33vw;
}
.con17_mid_map_search{
    width: 26%;
    background: white;
    height: 30vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    left: 5%;
}
.con17_mid_map_search_top{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.con17_mid_map_search_top > div{
    color: white;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 3%;
    font-size: 1.2vw;
    font-family: pretendard-bold;
    cursor: pointer;
}
.on2{
    background: #891010;
    color: white !important;
}
.off2{
    color: grey !important;
}
.con17_mid_map_search_mid{
    background: #891010;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94%;
    padding: 3%;

}
.con17_mid_map_search_mid input{
    appearance: none;
    border: none;
    outline: none;
    border-radius: 50px;
    width: 100%;
    height: 3vw;
    padding-left: 5%;
    font-family: 'Pretendard-regular';
    font-size: 1vw;
}
.con17_04{
}
.con17_mid_map_search_bottom{
    overflow: scroll;
    height: 21.5vw;
    width: 100%;
}
.con17_mid_map_search_item{
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 1vw;
    position: relative;
    cursor: pointer;
}
.con17_mid_map_search_item_title{
    font-size: 1.3vw;
    font-family: pretendard-bold;
}
.con17_mid_map_search_item_address{
    margin-top: 4%;
    margin-bottom: 1%;
color: #808080e6;    
    
}
.map {
    width: 100%;
    height: 31vw;
}
.con17_mid_map_search {
    width: 26%;
    background: white;
    height: 31vw;
    top: 0%;
    z-index: 2;
    overflow: hidden;
    left: 0%;
}
.con17_mid_2nd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 92%;
    margin-bottom: 5%;
}
.con18_03{
    width: 7% !important;
    right: 8%;
}

.con17_mid_map_search_item_title {
    font-size: 1.1vw;
    font-family: pretendard-bold;
}
.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    font-family: pretendard-regular;
    
}
.con17_mid_map_search {
    width: 26%;
    background: white;
    height: 28vw;
    top: 0%;
    z-index: 2;
    overflow: hidden;
    left: 3%;
    border-radius: unset !important;
}




.con11_mid_right{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}
.map{
    width: 95%;
    height: 30vw;
}
.con11_mid_right_top{
    width: 87%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.con11_mid_right_mid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 85%;
    margin-top: 7%;
    font-family: pretendard-bold;
    font-size: 1vw;
    padding-right: 1%;
    border-bottom: 1px solid black;
    padding-bottom: 3%;
}
.sido1{
    width: 36%;
    height: 2.6vw;
    font-family: pretendard-regular;
    color: grey;
    border-radius: 50px;
    border: 2px #24b977 solid;
    padding-left: 3%;
    outline: none;
    font-size: 1vw;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance:none;
}
.search{
    width: 54%;
    height: 2.6vw;
    font-family: pretendard-regular;
    color: grey;
    border-radius: 50px;
    border: 2px #24b977 solid;
    padding-left: 3%;
    outline: none;
    font-size: 1vw;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select_pin_left{
    left: 33%;
    width: 2%;
}
.select_pin_right{
    right: 4.5%;
    width: 2%;
}
.con11_mid_right_bottom{
    width: 87%;
    height: 21vw;
    margin-top: 2%;
    overflow: scroll;
}
.con11_mid_right_mid p:nth-child(1){
    margin-left: -9%;
    margin-right: 10%;
}
.con11_mid_right_mid p:nth-child(2){
    margin-left: -38%;
    margin-right: -14%;
}
.con11_mid_right_bottom_item{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Pretendard-Light';    
    color: #808080e6;    
}
.con11_mid_right_bottom_item{
    font-size: 1vw;
    color: grey;
    margin: 2% 0;
}
.con11_mid_right_bottom_item p:nth-child(1){
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con11_mid_right_bottom_item p:nth-child(2){
    width: 19%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -3%;
    white-space: nowrap;
}
.con11_mid_right_bottom_item p:nth-child(3){
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con11_mid_right {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con11_mid_right_bottom {
    width: 87%;
    height: 21vw;
    margin-top: 2%;
    overflow: scroll;
    margin-bottom: 8%;
}
.con11_mid_right_mid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 85%;
    margin-top: 7%;
    font-family: pretendard-bold;
    font-size: 1vw;
    padding-right: 1%;
    border-bottom: 1px solid black;
    padding-bottom: 2%;
    border-top: 1px solid black;
    padding-top: 2%;
}

.markerdesc{
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
}
.con17_mid_map_search {
    width: 22%;
    background: white;
    height: 27vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    left: 12%;
    border-radius: 30px;
}
.con17_mid_map_search_top {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0;
}
.con17_mid_map_search_mid {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94%;
    padding: 3%;
}
.con17_mid_map_search_mid input {
    appearance: none;
    border: none;
    outline: none;
    border-radius: 50px;
    width: 100%;
    height: 3vw;
    margin-top: 6%;
    background: #80808017;
    padding-left: 5%;
    font-family: 'Pretendard-regular';
    font-size: 1vw;
}
.con18_03 {
    width: 7% !important;
    right: 8%;
    top: 47%;
}
.con17_mid_map_search_mid input {
    appearance: none;
    border: none;
    outline: none;
    border-radius: 50px;
    width: 87%;
    height: 3vw;
    margin-top: 6%;
    background: #80808017;
    padding-left: 5%;
    font-family: 'Pretendard-regular';
    font-size: 1vw;
}
.con18_03 {
    width: 6% !important;
    right: 12%;
    top: 48%;
}
.con11_mid_right_mid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 85%;
    margin-top: 2%;
    font-family: pretendard-bold;
    font-size: 1vw;
    padding-right: 1%;
    border-bottom: 1px solid black;
    padding-bottom: 2%;
    border-top: 1px solid black;
    padding-top: 2%;
}

.sido1 {
    width: 8%;
    height: 2.6vw;
    font-family: pretendard-regular;
    color: grey;
    border-radius: 50px;
    border: none;
    background: #8080801c;
    padding-left: 3%;
    outline: none;
    font-size: 1vw;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    top: 57%;
    right: 16%;
}

.con11_mid_right_bottom {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.con11_mid_right_bottom::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
.con17_mid_map_search {
    width: 22%;
    background: white;
    height: 27vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    left: 5%;
    border-radius: 30px;
}
.con17_mid_map_search_item_tel{
    color: #808080e6;
}

.con17_mid_map_search_mid input {
    border-radius: 0;
}
.fixed_popup_con{
    width: 100%;
    height: 100%;
}
.popup_right> div > div:nth-child(2) {
    font-family: Pretendard-regular;
    font-size: 1vw;
    width: 71%;
}
.popup_right> div > div:nth-child(1) {
    font-family: Pretendard-semibold;
    font-size: 1vw;
    width: 21%;
}

.main_mid_title {
    font-size: 2vw;
    color: black;
}


.popup_img {
    width: 47.5248%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    height: 103%;
    overflow: hidden;
}
.popup_img img {
    width: 108%;
}

.popup {
    width: 56%;
    height: 31vw;
}


.con17_mid_map_search_mid {
    background: #0064de;
}


.con17_mid_map_search_mid input {
    background: white;
    border-radius: 50px;
}
.con17_mid_map_search {
    width: 22%;
    background: white;
    height: 100%;
    top: 0;
    z-index: 2;
    overflow: hidden;
    left: 0;
    border-radius: 30px;
    box-sizing: border-box;
}

.map {
    width: 100%;
    height: 35vw;
}

.con17_mid_2nd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0%;
}

.con17_mid_map_search_mid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94%;
    padding: 3%;
    padding-bottom: 5%;
}
.con17_mid_map_search_mid input{
    margin-top: 0%;
}

.con17_mid_map_search_mid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8% 3%;
    box-sizing: border-box;
}
.con18_03 {
    width: 6% !important;
    right: 12%;
    top: unset;
}
.con17_mid_map_search_bottom {
    overflow-y: scroll;
    height: 27.5vw;
    width: 100%;
}

.info-title {
    display: block;
    background: #50627F;
    color: #fff;
    text-align: center;
    height: 24px;
    line-height:22px;
    border-radius:4px;
    padding:0px 10px;
}




.con17_mid_map_search_item_ca{
    color: #0064de;
    font-size: 1vw !important;
    width: 50%;
    margin-left: 46%;
    margin-top: 10%;
}
.con17_mid_map_search_item_title{
        width: 50%;
    margin-left: 46%;
    margin-top: 3%;
}
.con17_mid_map_search_item_address{
        width: 50%;
    margin-left: 46%;
    margin-top: 3%;
}
.con17_mid_map_search_item_tel{
            width: 50%;
    margin-left: 46%;
    margin-top: 3%;
}
.con17_mid_map_search_item_naver{
    cursor: pointer;
    width: 37.4829%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 46%;
    margin-top: 4%;
    margin-bottom: 5%;
}
.con17_mid_map_search_item_img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8vw;
    height: 8vw;
    top: 27%;
    left: 4%;
    border-radius: 23px;
}
.con17_mid_map_search_item_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8vw;
    height: 8vw;
    overflow: hidden;
    top: 22%;
    left: -2%;
    border-radius: 23px;
}
.con17_mid_map_search_item_img_img{
    width: 100%;
    scale: 1.46;
}
.popup_close{
        width: 1.40634%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    top: 5%;
    right: 4%;
}

.popup {
    width: 65%;
    height: 32vw;
    padding-top: 4%;
    top: 2%;
}

.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_img {
    width: 47.5248%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    height: 31vw;
    overflow: hidden;
}

.popup_img_con{
    left: 18%;
    border-radius: 23px;
    overflow: hidden;
}
.popup_right_6th_left{
    width: 26.523% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}


.con17_mid_map_search_item_ca {
    font-size: 0.8vw !important;
}

.con17_mid_map_search_item_title {
    font-size: 1vw;
    font-family: pretendard-bold;
}



.main_mid_title {
    font-size: 1.6vw;
    color: black;
}
.con17_mid_map_search_item_naver {
    width: 34.4829%;
}
.con17_mid_map_search_item_img {
    left: -2.5%;
}



/* 스크롤바의 폭 너비 */
.con17_mid_map_search_bottom::-webkit-scrollbar {
    width: 0.3vw;
    margin-right: 6%;
    position: absolute;
}

.con17_mid_map_search_bottom::-webkit-scrollbar-thumb {
    background: #291e14;/* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */

}

.con17_mid_map_search_bottom::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px; /* 스크롤바 둥근 테두리 */
    margin-top: 1vw;
    margin-bottom: 1vw;

}

::-webkit-scrollbar-corner {
    background: transparent;
}
.con17_mid_map_search_bottom::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.con17_mid_map_search_bottom::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}



.popup_img_con {
    left: 18%;
    border-radius: 23px;
    overflow: hidden;
    width: 77%;
    height: 16vw;
    display: flex;
    justify-content: center;
    align-items: center;
}




.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: 10vw;
    font-family: pretendard-regular;
}

.con17_mid_map_search_item_img {
    top: 17%;
}
.popup_img_con {
    width: 68%;
    height: 13vw;
}

.con17_mid_map_search_item_img_img {
    scale: 1.6 !important;
}


.con17_mid_2nd {
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 91%;
    margin-bottom: 5%;
}

.con17_mid_map_search_mid input {
    margin-top: 0%;
    border: #291e14 1px solid;
}
.con17_mid_map_search_mid {
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 50%;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
    top: 4%;
    z-index: 2;
}

.con18_03 {
    width: 3% !important;
    right: 10%;
    top: unset;
}
.con17_mid_map_search_item_title {
    width: 83%;
    margin-left: 12%;
    margin-top: 16%;
    font-family: pretendard-regular !important;
}
.con17_mid_map_search_item_address {
    width: 71%;
    margin-left: 12%;
    margin-top: 4%;
}

.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: 12vw;
    font-family: pretendard-regular;
}

.con17_mid_map_search_item_naver {
    width: 35.4829%;
    margin-bottom: 10%;
    position: relative;
    margin-left: 12%;
}

.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: unset;
    font-family: pretendard-regular;
}

.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: unset;
    font-family: pretendard-regular;
    height: 11vw;
    margin-bottom: 3;
}

.con17_mid_map_search_item_plus{
    width: 12.6926%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 9%;
    bottom: 19%;
}

.popup_img_con {
    width: 79%;
    height: 20vw;
}
.popup {
    width: 65%;
    height: 32vw;
    padding-top: 0;
    top: 2%;
}
.main_mid_title {
    font-size: 1.6vw;
    font-family: sandol;
    color: black;
    font-family: "sandoll-myeongjoneo1", sans-serif;
}
.popup_right> div > div:nth-child(1) {
    font-family: Pretendard-semibold;
    font-size: 1vw;
    width: 21%;
    color: black;
}
.popup{
    background: #f3f2ea;
}

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

.popup_top_absol_2nd {
    width: 43.6687%;
    display: flex
;
    justify-content: center;
    align-items: center;
    top: 33%;
    left: 51%;
    border-bottom: #00000038 1px solid;
}
.popup_close {
    width: 3.40634%;
    display: flex
;
    justify-content: center;
    align-items: center;
    top: 5%;
    right: 4%;
}
.popup_right_2nd{
        margin-bottom: 7%;
    margin-top: 6%;
}
.popup_top_absol_2nd {
    width: 43.6687%;
    display: flex
;
    justify-content: center;
    align-items: center;
    top: 40%;
    left: 51%;
    border-bottom: #00000038 1px solid;
}
.markerdesc{
    background: white;
}


.con17_mid_map_search_bottom {
    overflow-y: scroll;
    height: 35.5vw;
    width: 100%;
}
.popup{
    border-radius: unset !important;
}
.popup_img_con {
    border-radius: unset !important;
}

.con17_mid_map_search_mid input {
    margin-top: 0%;
    border: #291e14 0.15vw solid;
}

.popup {
    background: white;
}

.mainab {
    width: 8.7664%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
    bottom: 10%;
}
.con6_mid_swiper_1_slideab {
    width: 30.9305%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    z-index: 1;
    margin-left: 0%;
    top: 68%;
    left: unset;
    right: -3%;
}
.con5_top5th{
    z-index: 5;
}
.con5_top_6th1ab2ab{
        width: 99.3724%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -50%;
    animation: smoke 2s infinite;
}
.con15_conab{
        width: 4.35696%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 21%;
    top: 20%;
}
.con15_conab2{
        width: 4.35696%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 22%;
    top: 3%;
}
.con16_left {
    height: 39.4vw;
    background: #fff4be;
}
.con21_left_top {
    width: 39.5593%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 16.5%;
    margin-left: -10%;
}
.con21_left {
    justify-content: flex-end;
}
.con11_top3rd{
    cursor: pointer;
}
.con1conab3 {
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 0;
    z-index: 2;
}
.con1conab2 {
    width: 0.314961%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 8;
    top: 0;
    z-index: 2;
}
.swiper-button-lock{
    display: flex !important;
    opacity: 0.3;
}
.con3ab{
        width: 30.4987%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 2;
    top: 64%;
}

.con5_top4thab2 {
    margin-top: 0%;
    margin-left: 0%;
    background: black;
    border-radius: 50%;
    width: 3vw;
    height: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 98%;
    top: 47%;
}
.con5 .con3_left_vid {
    top: -13%;
    height: unset;
}
.con5_top_6th {
    margin-top: 0%;
    margin-left: 0%;
    width: 82.4%;
    margin-bottom: 7%;
    z-index: 6;
}
.con5_top_6th1 {
    background-color: #fff4be;
}
.con5_top_6th2 {
    background-color: #fff4be;
}
th, td {
    font-weight: 500 !important;
}
tr td:nth-child(3){
    font-weight: 700 !important;
    
}
.con7ab{
        width: 5.19685%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    top: 9%;
}
.con20_top_3rd {
    margin-top: 1%;
    margin-left: 0%;
    margin-bottom: 2%;
}
    .con2abab{
        z-index: 3;
    }
.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;
    }

    .main_top {
        width: 28.45407%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20.3%;
        margin-left: 0%;
    }
    .main_top_2nd {
        width: 53.5722%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 11.1%;
        margin-left: 0%;
    }
    .main_top_3rd {
        width: 62.1864%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3.4%;
        margin-left: 0%;
    }
    .main_top_4th {
        margin-top: 4%;
        margin-left: 0%;
        background: black;
        padding: 0.1% 3%;
        border-radius: 0.3vw;

    }
    .main_top_5th {
        width: 79.378%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 12.6%;
        margin-left: 0%;
    }
    .main_top_5th {
        width: 79.378%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 68.6%;
        margin-left: 0%;
    }
    .main_vid {
        margin-top: 0%;
        margin-left: 0%;
        right: unset;
        width: 87%;
        top: 49%;
        height: 26%;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
    }
    .main_vid video {
        pointer-events: none;
        width: 100%;
    }
    .mainab {
        width: 9.7664%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        bottom: 57%;
    }
    .main_vidab {
        width: 0.629921%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 27%;
        display: none;
    }
    .con1_top {
        margin-top: 18.4%;
        margin-left: 0%;
        width: 54%;
        text-align: center;
    }

    .con1_top_2nd {
        width: 61.9003%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5.2%;
        margin-left: 0;
    }
    .con1_top_4th {
        width: 75%;
        margin-top: 6%;
        margin-bottom: 15%;
        text-align: center;
    }

    .con7_scrx {
        bottom: 0;
        width: 200%;
    }

    .con1_top_4th p {
        margin-bottom: 3%;
    }

    .con1ab {
        left: 50%;
        width: 50%;
        display: flex;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        bottom: 3%;
        width: 100%;
        left: 0;
    }
    .con1_top_4th {
        width: 75%;
        margin-top: 6%;
        margin-bottom: 108%;
        text-align: center;
    }

    .con1conab {
        width: 4.52231%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 6.7%;
        top: 4%;
    }
    .con2abab {
        width: 43.4961%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        z-index: 2;
        margin-left: 0%;
        top: -49%;
        right: -6%;
    }
    .con2_top {
        width: 27.13911%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16.5%;
        margin-left: 0%;
    }
    .con2_top_2nd {
        width: 78.1417%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4.4%;
        margin-left: 0%;
    }
    .con1_top_3rd {
        width: 48.4777%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0;
    }

    .con6_mid_swiper_2 {
        margin-top: 0%;
        margin-left: 0%;
        width: 80%;
        padding: 0 9.5%;
        margin-top: 1.6%;
        margin-bottom: 7.1%;
        overflow: hidden;
    }
    .con6_mid_swiper_1_slide_p_con2 {
        height: 46.5vw;
        overflow: hidden;
        border-radius: 0.4vw;
        width: 100%;
    }
    .con6_mid_swiper_2 {
        margin-top: 0%;
        margin-left: 0%;
        width: 80%;
        padding: 0 9.5%;
        margin-top: 4.6%;
        margin-bottom: 16.1%;
        overflow: hidden;
    }
    .con3 {
        align-items: center;
        flex-direction: column;
    }
    .con3_left {
        overflow: hidden;
        height: unset;
        width: 100%;
    }
    .con3_left_top {
        width: 37.511%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20%;
        margin-left: 0;
    }
    .con3_left_top_2nd {
        width: 88.2497%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
        margin-left: 0;
    }
    .con3_left_top_3rd {
        margin-top: 4%;
        margin-left: 0;
        margin-bottom: 21%;
    }
    .con3_right {
        justify-content: flex-start !important;
        height: unset;
        width: 100%;
    }
    .con3_right_item_top {
        margin-top: 22.4%;
        margin-left: 0%;
        width: 75%;
        font-size: 4.5vw;
        text-align: center;
    }
    .con3_right_item_topab {
        width: 15.1111%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 42%;
        bottom: 103%;
    }
    .con3_right_item_top_2nd {
        margin-top: 4%;
        margin-left: 0%;
        width: 59%;
        text-align: center;
    }
    .con3_right_item_top_3rd {
        width: 82.8783%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 13%;
        margin-left: 0;
        margin-bottom: 4%;
    }
    .con3_right_item_top_3rdab {
        width: 30.4818%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 62%;
        right: -1%;
    }
    .con3_right {
        justify-content: flex-start !important;
        height: unset;
        width: 100%;
        padding-bottom: 9%;
    }
    .con4_top {
        margin-top: 20.4%;
        width: 181%;
        margin-left: -3%;
    }

    .con4_topab3 {
        width: 12.19423%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -12%;
        margin-left: -1%;
        margin-right: -4%;
    }
    .con4_scrx {
        padding: 2.9% 0;
        border: 1px solid black;
        top: 43.5%;
        width: 200%;
    }
    .con6_mid_swiper_3 {
        margin-top: 3.5%;
        margin-left: 0%;
        width: 90.4%;
        background: white;
        border: 1px solid black;
        overflow: hidden;
        height: 52vw;
        border-radius: 50%;
        margin-bottom: 17%;
    }

    .con6_mid_swiper_1_slide_p_con3_top3rdab {
        right: 94%;
        top: 5%;
        scale: 3;
    }

    .con6_mid_swiper_1_slide_p_con3_top3rdab2nd1 {
        left: 94%;
        top: 5%;
        scale: 3;
    }
    .con6_mid_swiper_3 {
        margin-top: 3.5%;
        margin-left: 0%;
        width: 90.4%;
        background: white;
        border: 1px solid black;
        overflow: hidden;
        height: 52vw;
        border-radius: 50%;
        margin-bottom: 34%;
    }
    .con4_scrx {
        padding: 2.9% 0;
        border: 1px solid black;
        top: 80.5%;
        width: 209%;
    }
    .con4 .con7_prev {
        bottom: 23%;
        left: 41% !important;
    }
    .con4 .con7_next {
        bottom: 23%;
        right: 41% !important;
    }
    .con7_prev{
        width: 8.5vw !important;
        height: 8.5vw !important;
    }
    .con7_next{
        width: 8.5vw !important;
        height: 8.5vw !important;
    }
    .con5_top2nd {
        width: 75.6588%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -7.6%;
        margin-left: 0%;
    }

    .con5_top3rd {
        margin-top: 2.4%;
        margin-left: 0%;
        text-align: center;
    }

    .con5_top4th {
        margin-top: 5.3%;
        margin-left: 12%;
        font-size: 10.4vw;
    }
    .con5_top4thab {
        margin-top: 0%;
        margin-left: 0%;
        right: 104%;
        white-space: nowrap;
        text-align: right;
        top: 25%;
    }
    .con5_top4th {
        margin-top: 5.3%;
        margin-left: 8%;
        font-size: 10.4vw;
    }
    .con5_top4thab2 {
        margin-top: 0%;
        margin-left: 0%;
        background: black;
        border-radius: 50%;
        width: 9vw;
        height: 9vw;
        display: flex;
        justify-content: center;
        align-items: center;
        left: 97%;
        top: 47%;
    }
    .con5_top4thab3 {
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        white-space: nowrap;
        top: 110%;
        right: 1%;
    }
    .con5_top5th {
        width: 77.8556%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3.5%;
        margin-left: 0%;
    }
    .con6_mid_swiper_1_slide_p_con1{
        width: 100% !important;
    }
    .con6_mid_swiper_1_slide_p_con4{
        width: 100% !important;
    }
    .con2abab {
        width: 43.4961%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        z-index: 2;
        margin-left: 0%;
        top: -27%;
        right: -6%;
    }
    .con2ab {
        bottom: 0%;
        width: 130%;
    }
    .con6_mid_swiper_4 {
        margin-top: 0%;
        margin-left: 0%;
        width: 167%;
        margin-top: -23%;
        margin-left: 0%;
        margin-bottom: 4.3%;
    }

    .con5 .con3_left_vid {
        margin-top: 0%;
        margin-left: 0%;
        width: 136%;
        height: 100% !important;
        display: flex;
        filter: brightness(0.4);
        justify-content: center;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .con5_top_6th {
        margin-top: 0%;
        margin-left: 0%;
        width: 94.4%;
        margin-bottom: 7%;
        flex-direction: column;
    }
    .con5_top_6th1 {
        height: 100.3vw;
        margin-right: 0.3%;
        width: 100%;
    }
    .con5_top_6th1ab {
        width: 89.8974%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -14%;
        margin-left: -5%;
    }
    .con5_top_6th1 {
        height: 108.3vw;
        margin-right: 0.3%;
        width: 100%;
    }
    .con5_top_6th2 {
        height: 94vw;
        margin-right: 0.3%;
        justify-content: flex-start;
        width: 100%;
    }
    .container {
        width: 80%;
        margin: unset;
        padding-top: unset;
        margin-top: 17%;
    }
    .container {
        width: 91%;
        margin: unset;
        padding-top: unset;
        margin-top: 18%;
    }
    td {
        padding: 1vw 0;
        color: #333;
        text-align: center;
        width: 34%;
    }
    .con5_top_6th1ab2 {
        width: 61.2821%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 50%;
        top: 64%;
        z-index: 1;
    }
    .con5_top_6th1ab {
        width: 89.8974%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -14%;
        margin-left: -5%;
        z-index: 1;
    }
    .con6 {
        background: url(/images/con06_bg.jpg) no-repeat center / cover;
        height: 65.8vw;
        background-attachment: unset !important;
    }
    .con6ab{
        width: 40.5276%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con7{
        flex-direction: column;
    }
    .con71{
        background: url("/images/con07_bg.jpg") center center / cover no-repeat;
        margin-top: 0%;
        margin-left: 0%;
        width: 100%;
        height: 106.5vw;
    }
    .con7con {
        width: 94.5%;
        margin: 5% 0;
        justify-content: flex-start;
        height: 104.7vw;
    }
    .con72_item_top {
        margin-top: 33%;
        font-size: 4.66vw;
        width: 71%;
        margin-left: 0%;
        transition: 0.3s all;
        text-align: center;
    }
    .con72_item_top {
        margin-top: 25%;
        font-size: 4.66vw;
        width: 71%;
        margin-left: 0%;
        transition: 0.3s all;
        text-align: center;
    }
    .con72_item_on .con72_item_top {
        margin-top: 13.5%;
        color: white !important;
    }
    .con72_item_top_2nd {
        margin-top: 4.3%;
        margin-left: 0;
        font-size: 3.5vw;
        padding: 0.3% 1.5%;
        opacity: 0;
        transition: 0.3s all;
        transition-delay: 0.1s;
        text-align: center;
    }
    .con72_item_top_3rd {
        width: 71%;
        margin-top: 4%;
        opacity: 0;
        transition: 0.3s all;
        transition-delay: 0.2s;
        text-align: center;
    }
    .con72 {
        height: 145.5vw;
        justify-content: flex-start;
        width: 100%;
    }
    .con72_item {
        height: 30vw;
        border: 1px solid black;
        border-left: unset;
        transition: 0.3s all;
        border-right: unset;
    }
    .con72 {
        height: 155.5vw;
        justify-content: flex-start;
        width: 100%;
    }
    .con72_item_on {
        height: 64.5vw;
        justify-content: flex-start;
        background: var(--mc);
    }
    .con72_item_top {
        margin-top: 31%;
        font-size: 4.66vw;
        width: 71%;
        margin-left: 0%;
        transition: 0.3s all;
        text-align: center;
    }
    .con8_top {
        width: 55.7717%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.2%;
        margin-left: 0%;
    }
    .con8_top_2nd {
        margin-top: 5.4%;
        margin-left: 0%;
        text-align: center;
    }
    .con8_top_2nd {
        margin-top: 5.4%;
        margin-left: 0%;
        text-align: center;
        z-index: 2;
    }
    .con8_top_3rd {
        width: 228.787%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -36%;
        margin-left: 0%;
    }
    .con8_top_3rd {
        width: 228.787%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -15%;
        margin-left: 0%;
    }
    .con8ab {
        width: 27.6115%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        display: none;
    }
    .con8ab2 {
        width: 27.6115%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 0;
        display: none;
    }
    .con8_top_3rd {
        width: 243.787%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -44%;
        margin-left: -14%;
    }
    .con9_top2{
        width: 23.5696%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 1%;
    }
    .con9_top {
        margin-top: 15%;
        flex-direction: column;
        width: 228%;
    }
    .con9_top2{
        width: 23.5696%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0.5%;
        margin-left: 0%;
    }
    .con9_top1{
        width: 19.1601%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con9_top2nd {
        margin-top: 3%;
        margin-left: 0%;
        text-align: center;
    }
    .con9_top3rd {
        margin-top: 5%;
        flex-direction: column;
    }
    .con9_top3rd1{
        width: 38.0052%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con9_top3rd2{
        width: 38.0052%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: -4%;
    }
    .con9_top3rd2 {
        width: 38.0052%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0;
    }
    .con9_top3rd {
        margin-top: 5%;
        flex-direction: column;
        width: 262%;
    }
    .con9_top3rd2 {
        width: 38.0052%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
        margin-left: 0;
    }
    .con9_top3rdab {
        width: 12.8084%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -7%;
        margin-left: 0%;
        z-index: 1;
    }
    .con9_top4th {
        margin-top: 0%;
        margin-left: 0%;
        margin-bottom: 19.2%;
    }
    .con9ab {
        width: 34.9344%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0%;
        bottom: 34%;
    }
    .con10top {
        width: 71.643%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.4%;
        margin-left: 0%;
    }
    .con10top3rd {
        margin-top: 5.3%;
        margin-left: 0%;
        text-align: center;
    }
    .con10top4th {
        width: 76.5722%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 103%;
        margin-left: 0%;
    }
    .con10_vid{
        margin-top: 0%;
        margin-left: 0%;
        width: 50%;
    }
    .con6_mid_swiper_5 {
        margin-top: 0%;
        margin-left: 0%;
        width: 116%;
        left: unset;
        height: unset;
        padding-right: 3%;
        top: 61%;
    }
    .con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con5 {
        background: #97040478;
        scale: 1.2;
        transform: translateX(0%);
    }
    .con6_mid_swiper_1_slide_p_con5 {
        background: white;
        width: 44vw;
        height: 44vw;
        border-radius: 50%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }
    .con6_mid_swiper_5 {
        margin-top: 0%;
        margin-left: 0%;
        width: 161%;
        left: unset;
        height: unset;
        padding-right: 3%;
        top: 61%;
    }
    .con6_mid_swiper_5 {
        margin-top: 0%;
        margin-left: 0%;
        width: 161%;
        left: unset;
        height: unset;
        padding-right: 3%;
        top: 61%;
        padding: 21% 0;
    }
    .con10top4th {
        width: 76.5722%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 195%;
        margin-left: 0%;
    }
    .con10_vid {
        margin-top: 0%;
        margin-left: 0%;
        width: 59%;
        right: unset;
        top: 19%;
        height: 77vw;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con6_mid_swiper_5 {
        margin-top: 0%;
        margin-left: 0%;
        width: 158%;
        left: unset;
        height: unset;
        padding-right: 3%;
        top: 49%;
        padding: 21% 0;
    }
    .con10top4th {
        width: 84.5722%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 155%;
        margin-left: 0%;
    }
    .con10_vid {
        margin-top: 0%;
        margin-left: 0%;
        width: 59%;
        right: unset;
        top: 22%;
        height: 77vw;
        overflow: hidden;
        display: flex;
        z-index: 2;
        justify-content: center;
        align-items: center;
    }
    .con10ab{
        display: none;
    }
    .con10top2nd {
        width: 56.7795%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.3%;
        margin-left: 0%;
    }
    .con10top {
        width: 84.643%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.4%;
        margin-left: 0%;
    }
    .con11_top2nd {
        width: 52.874%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
        z-index: 2;
        margin-left: 2%;
    }
    .con11_top {
        margin-top: 15%;
        margin-left: 0%;
    }
    .con11_top3rd {
        width: 74.0971%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -4%;
        margin-left: 0%;
    }
    .con11_top4th {
        width: 29.3727%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -5.2%;
        margin-left: 0%;
        margin-bottom: 15.4%;
    }
    .con11ab5 {
        width: 10.19685%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 9%;
        left: 4%;
    }
    .con11ab6 {
        width: 12.45407%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 9.5%;
        right: 3%;
    }
    .con11ab7 {
        width: 11.82415%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 7%;
        right: 3%;
    }
    .con12_con2 {
        background: url(/images/con12_bg.jpg) no-repeat center / cover;
        height: 100%;
        justify-content: flex-start;
        position: relative;
    }
    .con12_con_top {
        width: 54.6457%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.3%;
        margin-left: 0;
    }
    .con12_con_top2nd {
        width: 46.5459%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.6%;
        margin-left: 0;
    }

    .con12_con_top3rd {
        margin-top: 4%;
        margin-left: 0;
        text-align: center;
    }
    .con12_con_top4th {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3%;
        margin-left: 0;
    }
    .con12_con2_top {
        width: 43.2283%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 29.4%;
        margin-left: 0;
    }
    .con12_con2_top2nd {
        width: 70.105%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0.5%;
        margin-left: 0;
    }
    .con12_con2_top3rd {
        margin-top: 3.3%;
        margin-left: 0%;
        text-align: center;
        width: 81.3%;
        margin-bottom: 13%;
    }
    .con12_con2ab {
        width: 52.5853%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        top: 5%;
    }
    .con12_con2_top {
        width: 43.2283%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 41.4%;
        margin-left: 0;
    }
    .con13_contop {
        width: 29.50131%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con13_contop2nd {
        width: 51.6693%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.4%;
        margin-left: 0%;
    }
    .con13ab {
        background: white;
        width: 83%;
        height: 100%;
        border: 1px solid black;
    }
    .con6_mid_swiper_1_slide_p_con7ab2 {
        margin-top: 0%;
        margin-left: 0%;
        top: 108%;
        font-size: 3.7vw;
        opacity: 0;
        transition: 0.3s all;
        transition-delay: 0.3s;
    }
    .con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con7ab3{
        opacity: 1;
        top: 173%;
    }
    .con6_mid_swiper_1_slide_p_con7ab2{

        white-space: nowrap;
    }
    .con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con7ab2{
        opacity: 1;
        top: 138%;
    }
    .con6_mid_swiper_7 {
        margin-top: 6.3%;
        margin-left: 0%;
        margin-bottom: 14.4%;
        width: 145%;
    }
    .con6_mid_swiper_7 {
        margin-top: 11.3%;
        margin-left: 0%;
        margin-bottom: 46.4%;
        width: 145%;
    }
    .con6_mid_swiper_1_slide_p_con7ab3{
        width: 150%;
    }
    .con14_top {
        margin-top: 15%;
        margin-left: 0%;
    }
    .con14_top2nd {
        width: 71.7638%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1%;
        margin-left: 0%;
    }
    .con6_mid_swiper_8 {
        margin-top: 65%;
        margin-left: 0%;
        border-top: 2px solid var(--fifc);
        border-bottom: 2px solid var(--fifc);
        margin-bottom: 12.3%;
        width: 181%;
    }
    .con14ab {
        width: 52.2047%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 18%;
        overflow: hidden;
    }
    .con6_mid_swiper_8 {
        margin-top: 65%;
        margin-left: 0%;
        border-top: 2px solid var(--fifc);
        border-bottom: 2px solid var(--fifc);
        margin-bottom: 52.3%;
        width: 181%;
        z-index: 3;
    }
    .con6_mid_swiper_8ab {
        width: 28.6614%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -25%;
        z-index: 3;
        right: 15%;
    }
    .con14ab2 {
        width: 77.5354%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 3;
        top: 69%;
        left: unset;
    }
    .con14ab2ab1 {
        width: 89.0862%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 18%;
        top: 22%;
    }
    .con14ab2ab2 {
        width: 59.4023%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 53%;
        left: -9%;
    }
    .con14ab2ab3 {
        width: 52.0747%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 56%;
        top: 61%;
    }
    .con14_vid video{
        pointer-events: none;
        width: 177%;
    }

    .con15_top2nd {
        margin-top: 2.9%;
        z-index: 4;
        width: 224%;
    }
    .con15_top {
        width: 20.45407%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5.3%;
        margin-left: 0%;
        margin-bottom: 6%;
    }
    .con15_top3rd {
        margin-top: 5%;
        margin-left: 0%;
        text-align: center;
    }
    .con15_top4th {
        width: 65.8268%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 7%;
        margin-left: 0%;
    }
    .con10_swiper_y_left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: unset;
        overflow: hidden;
        left: 0;
        top: 0;
        pointer-events: none;
    }
    .con10_swiper_y_right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: unset;
        overflow: hidden;
        right: 0;
        top: unset;
        pointer-events: none;
        bottom: 0;
    }

    .con15_top {
        width: 20.45407%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 24.3%;
        margin-left: 0%;
        margin-bottom: 6%;
    }
    .con15_top4th {
        width: 65.8268%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 7%;
        margin-left: 0%;
        margin-bottom: 20%;
    }
    .con16{
        flex-direction: column;
    }
    .con16_left {
        height: 83.4vw;
        width: 100%;
    }
    .con16_left_top {
        width: 26.511%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: -18%;
    }
    .con16_left_top2nd {
        width: 50.3924%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3%;
        margin-left: 1%;
    }
    .con16_right {
        height: 86.4vw;
        justify-content: flex-start;
        width: 100%;
    }
    .con16_right_top {
        justify-content: space-around;
        width: 93%;
        border-radius: 7vw;
        height: 10.5vw;
        margin-top: 7%;
    }
    .con16_right_top_item {
        margin-top: 0%;
        margin-left: 0%;
        justify-content: center;
        display: flex;
        align-items: center;
        height: 66%;
        margin-top: 0%;
        text-align: center;
        margin-left: 0%;
        width: 25%;
        font-size: 3vw;
    }
    .con16_right_top {
        justify-content: space-around;
        width: 93%;
        border-radius: 7vw;
        height: 13.5vw;
        margin-top: 7%;
    }
    .con16_right_top_itemab {
        width: 100.2036%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -62%;
    }

    .con16_right_top_item .absol{
        opacity: 0;
        top: -90%;
    }
    .con16_right_top_item_on .absol{
        opacity: 1;
        top: -62%;

    }


    .con17toptop {
        z-index: 5;
        width: 200%;
    }
    .con16_right_item_top {
        margin-top: 31%;
        margin-left: 0%;
        width: 73%;
        text-align: center;
    }
    .con16_right_top {
        justify-content: space-around;
        width: 93%;
        border-radius: 7vw;
        height: 13.5vw;
        margin-top: 11%;
    }
    .con17_con {
        margin-top: 16%;
        margin-left: 0%;
        background: white;
        width: 110%;
        border-radius: 50%;
        height: 93.5vw;
        z-index: 2;
    }
    .con17_top3rd {
        text-align: center;
        margin-top: 4%;
        width: 80%;
    }
    .con17_conab {
        width: 37.9547%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 79%;
    }
    .con17_con {
        margin-top: 16%;
        margin-left: 0%;
        background: white;
        width: 110%;
        border-radius: 50%;
        height: 102.5vw;
        z-index: 2;
    }
    .con17_top {
        width: 30.0907%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 12%;
        margin-left: 0%;
    }
    .con7_scrx1 {
        rotate: 33deg;
        left: -40%;
        height: 100%;
    }
    .con7_scrx4 {
        rotate: 33deg;
        right: -44%;
        height: 100%;
    }
    .con7_scrx3 {
        rotate: 33deg;
        right: 6%;
        height: 120%;
    }
    .con17_top4th {
        width: 37.748%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 6%;
        margin-left: 0%;
        margin-bottom: 12.4%;
        z-index: 23;
    }
    .con18_top {
        width: 47.3753%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -6%;
        margin-left: 0%;
    }
    .con18_top2nd {
        width: 95.357%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0%;
        margin-bottom: 11%;
    }
    .con18_top2ndab{
        width: 84.0105%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con18_top2nd {
        width: 95.357%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 7%;
        margin-left: 0%;
        margin-bottom: 11%;
    }
    .con18_top2ndab1 {
        width: 52.8735%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 71%;
    }
    .con18_top2ndab3 {
        width: 39.2556%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 75%;
        top: 38%;
    }
    .con18_top2ndab2 {
        width: 39.2556%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 75%;
        top: 11%;
    }
    .con19_top {
        margin-top: 9%;
        width: 254%;
    }
    .con19_top_2nditem {
        width: 47.9318%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0.3% 0.3%;
    }
    .con19_top_2nd {
        width: 89%;
        margin-top: 6%;
        margin-bottom: 14.3%;
    }
    .con19ab {
        width: 31.2388%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 0;
        bottom: 0;
    }
    .con20_top_2nd {
        width: 32.9685%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con20_top_3rd {
        margin-top: 3%;
        margin-left: 0%;
    }
    .con21{
        flex-direction: column;
    }
    .con21_left {
        height: 98.8vw;
        justify-content: flex-start;
        background: #fff4be;
        width: 100%;
    }
    .con21_left_top {
        width: 56.5593%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 14.5%;
        margin-left: 0;
    }
    .con21_top_3rd {
        margin-top: 5%;
        margin-left: 0;
    }
    .con21_left_top2nd {
        width: 43.127%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        z-index: 1;
        margin-left: 0;
    }
    .con21_leftab {
        width: 10.808%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 95%;
        top: 11%;
        display: none;
        z-index: 2;
    }
    .con21_right {
        height: 98.8vw;
        justify-content: flex-start;
        width: 100%;
    }
    .flip_clock01 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16%;
        margin-bottom: 2%;
        margin-left: 0% !important;
    }
    .clock_wrap {
        width: 88%;
    }
    .form {
        margin-top: 5%;
        width: 84%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border: 1px solid transparent;
        padding-top: 0;
        background: transparent !important;
        margin-bottom: 3%;
        right: unset;
        top: unset;
        left: unset;
        background: rgba(255, 255, 255, 0.77);
        padding-bottom: 9%;
        position: relative;
        margin-left: 0;
    }
    .form_row_label {
        font-family: var(--mf);
        font-weight: 500;
        font-size: 3.3vw;
        line-height: 1.5;
        letter-spacing: -0.04vw;
        color: white;
    }

    .form_row {
        border-bottom: unset;
        height: 9vw;
    }
    .form_row_imput {
        width: 70%;
        height: 6.8vw;
        background: transparent;
        border: none;
        font-size: 1.2vw;
        font-family: 'Pretendard-Regular';
        outline: none;
        color: white;
    }
    .form_agree_span {
        font-size: 2.9vw;
        font-family: Pretendard-regular;
        color: white;
    }
    .form_agree_check {
        margin-right: 2%;
        width: 3vw;
        height: 3vw;
        overflow: hidden;
        outline: 0;
        background: #f2f2f2;
        color: transparent;
        border: none;
        appearance: none;
        background: transparent;
    }
    .form_row_imput {
        width: 70%;
        height: 6.8vw;
        background: transparent;
        border: none;
        font-size: 3.2vw;
        font-family: 'Pretendard-Regular';
        outline: none;
        color: white;
    }
    .form_agree_check:checked::after {
        content: "";
        width: 2.7vw;
        height: 2.7vw;
        position: absolute;
        background: var(--sc);
        color: unset !important;
    }

    .form_row_imput_radio {
        width: 48.8%;
        width: 33% !important;
        appearance: none;
        outline: none;
        border: 1px solid white !important;
        border-radius: 0;
        background: white !important;
        text-align: center;
        margin: 0 0.5%;
    }
    .form_row_imput_radio_1_label {
        font-family: 'Pretendard-Regular';
        font-size: 3.3vw;
        left: 38%;
        color: white;
        pointer-events: none;
    }
    .form_row_imput_radio_1_label_item {
        font-family: 'Pretendard-Regular';
        font-size: 3.3vw;
        color: white;
        pointer-events: none;
    }
    .form_row_imput_radio_1_label_2 {
        left: 72.8%;
    }

    .form_agree_check {
        border: 1px solid white;
    }
    .form_submit {
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        padding: 1.5%;
        width: 33%;
        color: white;
        position: relative !important;
        margin-bottom: 17%;
        font-size: 1.3vw;
        font-family: var(--sf);
        border-radius: 0;
        padding-top: 0.5%;
        padding-bottom: 2%;
        cursor: pointer;
        HEIGHT: 10.4VW;
        width: 100%;
        background: var(--mc);
        box-sizing: border-box;
        position: absolute !important;
        top: 108%;
        padding-bottom: 0;
        left: 0;
        font-size: 4.2vw;
        letter-spacing: -0.04vw;
    }

    .form {
        border-top: 1px solid white;
        border-bottom: 1px solid white;
    }
    .con21_right {
        height: 113.8vw;
        justify-content: flex-start;
        width: 100%;
    }
    .con1ab {
        left: 50%;
        width: 50%;
        display: flex;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        bottom: 3%;
        width: 100%;
        left: 0;
        top: unset;
    }
    .con5_top4th {
        width: 71%;
    }

    .con72_item2 .con72_item_top_2nd{
        margin-left: -0%;
    }
    .con72_item3 .con72_item_top_2nd{
        margin-left: -0%;
    }
    .con72_item4 .con72_item_top_2nd{
        margin-left: -0%;
    }

    .con8ab3 {
        width: 35.6614%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 60%;
        right: 3%;
    }
    .con8_top_3rd {
        width: 258.787%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -52%;
        margin-left: -18%;
    }
    .con9_top3rdab {
        width: 15.8084%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -7%;
        margin-left: 0%;
        z-index: 1;
    }

    .con7con_top {
        width: 63%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-top: 20%;
        margin-left: -10%;
    }
    .con7con_top2nd {
        width: 38.2222%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-top: 2%;
        margin-left: -35%;
    }

    .con7con_top4th {
        width: 3.22222%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1%;
        margin-left: -84%;
        margin-bottom: 7%;
    }
    .con17_top3rd{
        width: 95%;
    }

.con16_right_itemab{
    display: none;
}
.con11_top3rdab5{
    width: 8% !important;
}
    .con21_left {
        height: 102.8vw;
        justify-content: flex-start;
        background: #fff4be;
        width: 100%;
    }
    .form_agree {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 81%;
        margin-top: 5%;
        margin-bottom: 4%;
        position: absolute !important;
        top: 84%;
        left: 66%;
    }
    .form_row {
        border-bottom: unset !important;
        width: 100%;
        padding-left: 0;
        box-sizing: border-box;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .popup {
        width: 84%;
        background: white;
        height: 117vw;
        border-radius: 15px;
        overflow: hidden;
        justify-content: flex-start;
        flex-direction: column;
        top: unset !important;
    }
    .popup_img {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        height: 39%;
        overflow: hidden;
    }
    .popup_right {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .main_mid_title {
        font-size: 5vw;
        word-break: keep-all;
        text-align: center;
    }
    .popup_right_1st {
        color: #E3C179;
        width: 78%;
        margin-bottom: 1%;
        text-align: left;
        justify-content: center;
        align-items: center;
        font-size: 1.2vw;
        margin-top: 6%;
        text-align: center;
    }
    .popup_right> div > div:nth-child(1) {
        font-family: Pretendard-semibold;
        font-size: 3.5vw;
    }
    .popup_right> div > div:nth-child(2) {
        font-family: Pretendard-regular;
        font-size: 3vw;
        width: 59%;
        word-break: keep-all;
        margin-left: 4%;
        line-height: 4.6vw;
    }
    .con2_top_3rd_item_more {
        width: 9vw;
        height: 9vw;
        border-radius: 50%;
        line-height: 3vw !important;
        font-size: 2.5vw !important;
        right: 1%;
        border: 1px solid #091535;
        transition: 0.2s all;
        cursor: pointer;
    }    
    .con2_top_2nd_item_1 {
        width: 27%;
    }    
    .con2_top_2nd_item_3 {
        width: 37%;
        margin-right: 2%;
    }
    .main_small_title {
        font-size: 2.8vw;
        font-family: Pretendard-light;
        line-height: 4.7vw;
        text-align: center;
        word-break: keep-all;
    }    
    
    
    
    
    

.con17_mid_2nd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 92%;
    margin-bottom: 17%;
}    

    
    .map {
        width: 100%;
        height: 45vw;
    }
    .con17_mid_map_search_mid input {
        appearance: none;
        border: none;
        outline: none;
        width: 100%;
        height: 7vw;
        padding-left: 5%;
        font-family: 'Pretendard-regular';
        font-size: 3vw;
    }
    .con17_mid_map_search{
        position: relative !important;
        width: 100%;
        background: white;
        height: 106vw;
        top: 5%;
        z-index: 2;
        overflow: hidden;
        border-radius: 0 0 20px 20px;
        left: 0;
    }
    .con17_mid_map_search_top > div {
        color: white;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 5%;
        padding-bottom: 3%;
        font-size: 3.2vw;
        font-family: pretendard-bold;
    }
    .con17_mid_map_search_mid input {
        appearance: none;
        border: none;
        outline: none;
        width: 100%;
        height: 7vw;
        padding-left: 5%;
        font-family: 'Pretendard-regular';
        font-size: 3vw;
    }

    .con17_mid_map_search_item {
        margin: 0% 7%;
        border-bottom: 1px solid #808080a3;
        padding: 5% 0;
        font-size: 3.4vw;
    }
    .con17_mid_map_search_item_title {
        font-size: 4.3vw;
        font-family: pretendard-bold;
    }
    .con17_mid_map_search_bottom {
        overflow: scroll;
        height: 82.5vw;
        width: 100%;
    }         


    .con11_mid_right_bottom_item {
        font-size: 2.6vw;
        margin: 2% 0;
    }
    .con11_mid_right_mid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 85%;
        margin-top: 7%;
        font-family: pretendard-bold;
        font-size: 2.4vw;
        padding-right: 1%;
        padding-bottom: 3%;
    }    
.con11_mid_right {
    width: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}    
.con11_mid_right_bottom {
    width: 87%;
    height: 45vw;
    margin-top: 2%;
    overflow: scroll;
    margin-bottom: 8%;
    font-family: 'Pretendard-Light';
}
.con2_top_absol_1 {
    color: #00000061;
    top: 15%;
    left: 5%;
}    
.con17_mid_map_search {
    position: relative !important;
    width: 100%;
    background: white;
    height: 106vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    left: 0;
    border-bottom: 1px solid #80808082;
    border-left: 1px solid #80808082;
    border-right: 1px solid #80808082;
    box-sizing: border-box;
}       
        .sido1 {
        width: 36%;
        height: 4.6vw;
    }
    .sido1{
        font-size: 2.4vw;
    }    
.con17_mid_2nd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 92%;
    margin-bottom: 17%;
}    

    
    .map {
        width: 100%;
        height: 45vw;
    }
    .con17_mid_map_search_mid input {
        appearance: none;
        border: none;
        outline: none;
        width: 100%;
        height: 7vw;
        padding-left: 5%;
        font-family: 'Pretendard-regular';
        font-size: 3vw;
    }
    .con17_mid_map_search{
        position: relative !important;
        width: 100%;
        background: white;
        height: 106vw;
        top: 5%;
        z-index: 2;
        overflow: hidden;
        border-radius: 0 0 20px 20px;
        left: 0;
    }
    .con17_mid_map_search_top > div {
        color: white;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 5%;
        padding-bottom: 3%;
        font-size: 3.2vw;
        font-family: pretendard-bold;
    }
    .con17_mid_map_search_mid input {
        appearance: none;
        border: none;
        outline: none;
        width: 100%;
        height: 7vw;
        padding-left: 5%;
        font-family: 'Pretendard-regular';
        font-size: 3vw;
    }

    .con17_mid_map_search_item {
        margin: 0% 7%;
        border-bottom: 1px solid #808080a3;
        padding: 5% 0;
        font-size: 3.4vw;
    }
    .con17_mid_map_search_item_title {
        font-size: 4.3vw;
        font-family: pretendard-bold;
    }
    .con17_mid_map_search_bottom {
        overflow: scroll;
        height: 82.5vw;
        width: 100%;
    }         


    .con11_mid_right_bottom_item {
        font-size: 2.6vw;
        margin: 2% 0;
    }
    .con11_mid_right_mid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 85%;
        margin-top: 7%;
        font-family: pretendard-bold;
        font-size: 2.4vw;
        padding-right: 1%;
        padding-bottom: 3%;
    }    
.con11_mid_right {
    width: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}    
.con11_mid_right_bottom {
    width: 87%;
    height: 45vw;
    margin-top: 2%;
    overflow: scroll;
    margin-bottom: 8%;
}
.con17_mid_map_search {
    position: relative !important;
    width: 100%;
    background: white;
    height: 106vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    left: 0;
    border-bottom: 1px solid #80808082;
    border-left: 1px solid #80808082;
    border-right: 1px solid #80808082;
    box-sizing: border-box;
}        

.con18_03 {
    width: 5% !important;
    right: 9%;
    top: 51%;
}    
  
.sido1 {
    width: 19%;
    font-family: pretendard-regular;
    color: grey;
    border-radius: 50px;
    border: none;
    background: #8080801c;
    padding-left: 3%;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    top: 74%;
    right: 3%;
}

.con7_bottom_con_top_item {
    width: 12%;
    white-space: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    word-break: keep-all;
    text-align: center;
    font-size: 2.8vw !important;
}    
.con7_bottom_con_top {
    width: 93%;
    text-align: right;
    margin-top: 5%;
    color: #80808075;
    font-size: 2.8vw !important;
}
    .con7_bottom_con_top_con_left {
    line-height: 4.5vw;
    font-size: 2.8vw !important;
}
    .con7_bottom_con_top_con_left{
        word-break: keep-all;
    }
    .con11_mid_right_bottom_item p:nth-child(2) {
        width: 19%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -3%;
        white-space: unset;
        word-break: keep-all;
        text-align: center;
    }    


.popup_right> div > div:nth-child(1) {
    font-family: Pretendard-semibold;
    width: 27%;
}
    .popup_right_1st {
        color: #E3C179;
        width: 78%;
        margin-bottom: 1%;
        text-align: left;
        justify-content: center;
        align-items: center;
        font-size: 4.2vw;
        margin-top: 6%;
        text-align: center;
    }
    .popup {
        width: 84%;
        background: white;
        height: 140vw;
    }
    .popup_close {
        top: 3% !important;
        right: 5% !important;
        width: 8.3% !important;
        z-index: 10 !important;
-webkit-filter: brightness(0) invert(1); 
filter: brightness(0) invert(1);
    }    

    .popup {
        width: 84%;
        background: white;
        height: 140vw;
        top: 2% !important;
    }    
    
    .con2_top_3rd_item {
    border-bottom: 1px solid black;
    justify-content: flex-start;
    padding: 3.8% 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
        .popup {
        width: 94%;
        background: white;
        height: 143vw;
        top: 2% !important;
    }
    .popup_right_3rd .popup_right_3rd_right{
            width: 72%;
    }
    .popup_right> div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    color: black;
    margin-top: 8%;
}



    .con17_mid_map_search_mid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 6% 3%;
    box-sizing: border-box;
}
    .con17_mid_map_search_mid input {
        appearance: none;
        border: none;
        outline: none;
        width: 100%;
        height: 9vw;
        padding-left: 5%;
        font-family: 'Pretendard-regular';
        font-size: 3.3vw;
    }
    
    
    .con18_03 {
        width: 6% !important;
        right: 9%;
        top: unset;
    }
    
    .con17_mid_map_search_item_ca {
    color: #0064de;
    font-size: 3vw !important;
    width: 50%;
    margin-left: 46%;
    margin-top: 10%;
}
    .con17_mid_map_search_item_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34vw;
    height: 34vw;
    overflow: hidden;
    top: 22%;
    left: -2%;
    border-radius: 10px;
}
    .popup {
        width: 94%;
        background: white;
        height: 127vw;
        top: 2% !important;
        padding-top: 14%;
    }    
    .con17_mid_2nd {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-bottom: 17%;
    }
    
    .popup_right> div {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        width: 90%;
        color: black;
        margin-top: 5%;
    }    
    .popup_img {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        height: 39%;
        overflow: hidden;
        margin-top: 10%;
        margin-bottom: 7%;
    }
    
    
    .popup_img {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        height: 50%;
        overflow: hidden;
        margin-top: 10%;
        margin-bottom: 7%;
    }    
    .popup_img_con {
    left: unset;
    border-radius: 9px;
    overflow: hidden;
    scale: 0.8;
    overflow: hidden;
}
    
    .popup {
        width: 94%;
        background: white;
        height: 132vw;
        top: 2% !important;
        padding-top: 14%;
    }
    
    .popup_top_absol {
        width: 12.4369%;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 6%;
        left: unset;
    }
    .popup_top_absol_2nd {
        width: 96.6687%;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 13%;
        left: unset;
    }    
    .popup_img {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        height: 50%;
        overflow: hidden;
        margin-top: 6%;
        margin-bottom: 2%;
    }
    .popup_right_6th{
        justify-content: center !important;
    }
    .holme_close{
        width: 100%;
    }
    .popup_close {
        top: 4% !important;
        right: 5% !important;
        width: 5.3% !important;
        z-index: 10 !important;
        -webkit-filter: brightness(0) invert(1);
        filter: unset;
    }    
    
    
        .map {
        width: 100%;
        height: 75vw;
    }
    
    
    /* 스크롤바의 폭 너비 */
.con17_mid_map_search_bottom::-webkit-scrollbar {
    width: 1vw;
    margin-right: 6%;
    position: absolute;
}
    
    
    .con17_mid_map_search_item_naver {
        width: 29.4829%;
    }    
    .fixed_popup {
        z-index: 500000000;
    }
    .con01pop_05{
        width: 100%;
    }
    .popup_right_6th_left {
        width: 37.523% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }    

    
    
    .con17_mid_2nd {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 87%;
        margin-bottom: 17%;
        margin-top: 8%;
    }    
    
.popup_img_con {
    overflow: hidden;
    width: 80%;
    scale: 1;
    height: 49vw;
    display: flex;
    justify-content: center;
    align-items: center;
}    
    
    .con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: 43vw;
    font-family: pretendard-regular;
}
    .con17_mid_map_search_item_img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 34vw;
        height: 34vw;
        overflow: hidden;
        top: 18%;
        left: -4%;
        border-radius: 10px;
    }
    .con17_mid_map_search_item_address {
    width: 71%;
    margin-left: 12%;
    margin-top: 4%;
    font-size: 3vw;
}
        .popup {
        width: 94%;
        background: white;
        height: 132vw;
        top: 2% !important;
        padding-top: 2%;
    }
    .popup_top_absol {
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        top: unset;
        left: unset;
        bottom: 0;
}
    
        .popup_img {
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        height: 50%;
        overflow: hidden;
        margin-top: 6%;
        margin-bottom: -4%;
    }
    
        .popup_close {
        top: 4% !important;
        right: 5% !important;
        width: 7.3% !important;
        z-index: 10 !important;
        -webkit-filter: brightness(0) invert(1);
        filter: unset;
    }
        .popup_top_absol_2nd {
        width: 77.6687%;
        display: flex
;
        justify-content: center;
        align-items: center;
        top: 63%;
        left: unset;
    }
    
    .popup{
        background: #f2f1e9;
    }
    
    .popup {
    background: white;
}
    .popup_img_con {
    border-radius: 2vw !important;
        height: 56vw;
    overflow: hidden;
}
    .popup {
    width: 94%;
    background: white;
    height: 137vw;
    top: 2% !important;
    padding-top: 2%;
}
    .popup_top_absol_2nd {
    width: 77.6687%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 61%;
    left: unset;
}
.mainabab {
    width: 89.6766%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 61%;
    bottom: 31%;
}
.con6_mid_swiper_4 {
    z-index: 11;
}    
.con7conab {
    width: 54.8889%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -10%;
    right: 0;
}    
.con14_vid {
    width: 99%;
    height: 100%;
    margin-top: 0%;
    margin-left: 0%;
    overflow: hidden;
    border-radius: 4vw;
}    
.con14abab {
    width: 61.9385%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 8%;
    left: 25%;
}    
.con6_mid_swiper_8 {
    margin-top: 44%;
    margin-left: 0%;
    border-top: 2px solid var(--fifc);
    border-bottom: 2px solid var(--fifc);
    margin-bottom: 52.3%;
    width: 181%;
    z-index: 3;
}    
.con14_top2nd {
    width: 84.7638%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
}    
.con13_contop2nd {
    width: 69.6693%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.4%;
    margin-left: 0%;
}
.con8_top {
    width: 75.7717%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15.2%;
    margin-left: 0%;
}
.con9_top1 {
    width: 26.1601%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con9_top2 {
    width: 34.5696%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 0%;
}
.con16_left_top {
    width: 31.511%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    margin-left: -24%;
}
.con16_left_top2nd {
    width: 67.3924%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 1%;
}
.con17_top2nd {
    width: 68.643%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
}
.con18_top {
    width: 58.3753%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -6%;
    margin-left: 0%;
}
.con19_top {
    margin-top: 16%;
    width: 306%;
}
.con19_top_2nd {
    width: 99%;
    margin-top: 6%;
    margin-bottom: 14.3%;
}    
    
    .con1conab2{
        display: none;
    }
.con1conab3 {
    width: 200.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 0;
    z-index: 2;
}
.con6_mid_swiper_2 {
    margin-top: 0%;
    margin-left: 0%;
    width: 80%;
    padding: 0 9.5%;
    margin-top: 4.6%;
    margin-bottom: 28.1%;
    overflow: hidden;
}
.con2ab {
    bottom: 0%;
    width: 230%;
}    
    .con2 .con7_prev{
    bottom: 12%;
    left: 41% !important;        
    }
    .con2 .con7_next{
    bottom: 12%;
    right: 41% !important;        
    }    
.con3ab {
    width: 40.4987%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 2;
    top: 11.5%;
}    
.con7ab {
    width: 6.19685%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    top: 4%;
    left: 3%;
}    
.con17_top3rd {
    width: 95%;
    font-size: 3.2vw;
}    
.con20_top_2nd {
    width: 39.9685%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16%;
    margin-left: 0%;
}    
.con7_scrx1 {
    rotate: 33deg;
    left: -50%;
    height: 100%;
}
    
.scrY .scrY_item {
    width: unset !important;
    animation: marqueeY 20s linear infinite;
    height: 100%;
}
    .con2abab{
        z-index: 3;
    }
    
    
}


