/* ============ 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.3;
    width: 100%;
    z-index: 5;
    margin-top: -217.7%;
    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);
    }
}
@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 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 {
    height: 47vw;
}

.mainbg2 img{
    height: 100%;
}
.mainbg2 {
    width: 95.5381%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    height: 91%;
    top: 5%;
}


.con6_mid_swiper_1_slide_p_con1ab{
    opacity: 0;
    transition: 0.3s all;
}
.main_2nd .con6_mid_swiper_1_slide.swiper-slide-next +.con6_mid_swiper_1_slide +.con6_mid_swiper_1_slide .con6_mid_swiper_1_slide_p_con1{
    opacity: 1;
}
.main_2nd .con6_mid_swiper_1_slide.swiper-slide-next +.con6_mid_swiper_1_slide +.con6_mid_swiper_1_slide .con6_mid_swiper_1_slide_p_con1ab{
    opacity: 1;
}
.con6_mid_swiper_1{
    width: 135%;
    flex-direction: column;
    margin: 1% 0;
}
.con6_mid_swiper_1_slide_p_con1{
    width: 95.3678%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}

.con1bg{
    filter: brightness(0.4);
}
.con1_top{
    width: 7.87402%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.2%;
    margin-left: 0%;
}
.con1_top_2nd{
    width: 25.7218%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 1.3%;
    margin-left: 0%;
}
.con1_top_3rd{
    margin-top: 1%;
}
.con1_top_3rd_item1{
    width: 5.93176%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con1_top_3rd_item2{
    width: 12.5984%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 1%;
}
.con1_top_4th{
    width: 0.419948%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5%;
    margin-left: 0%;
}
.con1_top_5th{
    margin-top: 2.4%;
    margin-left: 0%;
    text-align: center;
}
.con1_top_6th{
    margin-top: 6%;
    margin-bottom: 12%;
}
.con1_top_6th_item{
    width: 11.8635%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 1.8%;
}
.con1_top_6th_itemab{
    margin-top: 0%;
    margin-left: 0%;
    top: 127%;
}

.con1_top_6th_line{
    height: 340%;
    width: 0.1vw;
    background: white;
    top: -22%;
}
.con1_top_6th_line1{
    left: 34.3%;
}
.con1_top_6th_line3{
    right: 34.3%;
}
.con1ab{
    width: 38.3202%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    left: -19%;
}
.con1ab2{
    width: 38.3202%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    right: -19%;
}
.con1abab{
    width: 145.068%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 25%;
}
.con2{
    background: url(/images/con02_9.jpg) no-repeat center / cover;
}
.con2_top{
    width: 20.7874%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.8%;
    margin-left: 0%;
}
.con2_top_2nd{
    width: 30.9711%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.7%;
    margin-left: 0%;
}
.con2_top_3rd{
    margin-top: 3%;
}
.con2_top_3rd_item{
    width: 21.4698%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 0.8%;
    overflow: hidden;
}
.con2_top_3rd_item1ab{
    width: 81.9071%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 52%;
    right: 0;
}
.con6_mid_swiper_1_slide{
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con6_mid_swiper_2{
    margin-top: 0%;
    margin-left: 0%;
    top: 70%;
}
.con6_mid_swiper_1_slide.swiper-slide-next{
    z-index: 5;
}
.con6_mid_swiper_1_slide_p_con2{
    transition: 0.4s all;

}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con2{
    transform: translateY(-40%);
}
.con2_top_4th{
    margin-top: 3%;
    margin-left: 0%;
    text-align: center;
    margin-bottom: 6.2%;
}
.con2_conab{
    width: 4.19947%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con2_conab1{
    left: 2.2%;
    top: 5%;
}
.con2_conab2{
    right: 2.2%;
    top: 5%;
}
.con2_conab3{
    left: 2.2%;
    bottom: 6%;
}
.con2_conab4{
    right: 2.2%;
    bottom: 6%;
}
.con2ab5{
    width: 14.2257%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 9%;
    left: 10%;
}
.con2ab6{
    width: 14.4357%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 9%;
    right: 10%;
}
.con2_top_3rd .con2_top_3rd_item:nth-child(1){
    overflow: unset;
}
.con3_top_con{
    width: 39% !important;
}
.con3_top{
    width: 24.6299%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40%;
    margin-left: 0%;
}
.con3_top_2nd{
    width: 50.6057%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.3%;
    margin-left: 0%;
}
.con3_top_3rd{
    width: 76.1777%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 0%;
    margin-bottom: 41.3%;
}
.con3_top_3rd >img{
    z-index: 2;
}
.con3_top_3rdab_item1{
    width: 15.5477%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 44%;
}
.con3_top_3rdab_item2{
    width: 15.5477%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 54%;
}
.con6bg2{
    margin-top: 0%;
    margin-left: 0%;
    width: 50%;
    left: 50%;
    top: 0;
    background: white;
}
.con6bg2_item{
    width: 98%;
    box-sizing: border-box;
    margin-top: 1%;
    border: 1px solid #503422;
}
.con6bg2_item {
    width: 98%;
    box-sizing: border-box;
    margin-top: 1%;
    border: 1px solid #503422;
    display: flex
;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
}
.con6bg2_item_top{
    width: 9.66702%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    margin-left: -71%;
}
.con6bg2_item1_top_2nd{
    width: 30.9345%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.6%;
    margin-left: -50%;
}
.con6bg2_item_top_3rd{
    margin-top: 2.5%;
    margin-left: 0%;
    width: 80%;
}
.con6_mid_swiper_3{
    margin-top: 7%;
    margin-left: 0%;
    margin-bottom: 8%;
    width: 150%;
}
.con6bg2_item2_top_2nd{
    width: 40.0644%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: -40%;
}
.con6bg2_item_top_4th{
    justify-content: space-around;
    margin-top: 5%;
    margin-bottom: 7%;
}
.con6bg2_item_top_4th{
    margin-left: 0%;
    width: 95%;
}
.con6bg2_item_top_4th video{
    margin-left: 0%;
    width: 95%;
}
.con6bg2_item3_top_2nd{
    width: 43.8238%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.4%;
    margin-left: -36%;
}

.con4{
    background: url(/images/con04_17.jpg) no-repeat center / cover;
}
.con4_top{
    margin-top: 8%;
    margin-left: 0%;
    overflow: hidden;
    width: 76%;
}
.con4_top_2nd{
    width: 10.0262%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 1%;
    margin-left: -65.5%;
}
.con4_top_3rd{
    width: 20.5249%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-left: -55%;
}
.con6_mid_swiper_4{
    margin-top: -7%;
    margin-left: 0%;
    width: 62% !important;
    left: 24.5%;
    overflow: hidden;
    margin-bottom: 6.6%;
}
.con6_mid_swiper_1_slide_p_con4{
    margin-top: 0%;
    margin-left: 0%;
    width: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con6_mid_swiper_1_slide_p_con4_con{
    height: 31vw;
    border-radius: 1.5vw;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--mc);
}
.con6_mid_swiper_1_slide_p_con4top{
    width: 51.3228%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
    margin-left: 0%;
}


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

.con4 .con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 1.3vw !important;
    height: 1.3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 41% !important;
    bottom: 49%;
    transition: 0.4s background;
}
.con4 .con7_next{
    right: 1% !important;
    top: unset !important;
    width: 1.3vw !important;
    height: 1.3vw !important;
    border-radius: unset;
    overflow: hidden;
    transition: 0.4s background;
    right: 32.3% !important;
    bottom: 49%;
}
.con4ab{
    width: 8.34646%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 2;
    top: 12.8%;
    left: 40%;
}
.con4abab{
    width: 63.522%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0%;
    margin-left: 0%;
    top: 50%;
}
.con4ab2{
    width: 33.3333%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
    bottom: 0%;
}
.con4ab2ab{
    width: 80.7874%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 1%;
    bottom: -5%;
}
.con4ab2ab2ab{
    width: 136.192%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    animation: smoke 2s infinite;
    margin-left: 0%;
    bottom: 16%;
}
.con4ab2ab2{
    width: 75.2756%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 49%;
    bottom: -8%;
}
.con5_top{
    width: 18.2677%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.5%;
    margin-left: 0%;
    overflow: hidden;
}
.con5_top_2nd{
    width: 24.5144%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.6%;
    margin-left: 0%;
}
.con5_top_3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con5_top_3rd .line{
    overflow: hidden;
}
.con5_top_4th{
    width: 37.4278%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.1%;
    margin-left: 0%;
}
.con5_top_4thab1{
    width: 28.1907%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    갸홋: 홋;
    right: 75%;
    top: 8%;
}
.con5_top_4thab2{
    width: 28.1907%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    left: 72%;
    top: 13%;
}
.con5_top_4thab3{
    width: 33.8008%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 77%;
    top: 36%;
}
.con5_top_4thab4{
    width: 29.3128%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 80%;
    top: 44%;
}

.con5_top_5th{
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -18.5%;
    margin-left: 0%;
}
.con5_top_5thab{
    top: 30%;
}
.con5_top_5thab1{
    width: 21.3021%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con5_top_5thab2{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 4%;
}
.con5_top_5thab1ab{
    width: 51.8337%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -5%;
}
.con5_top_5thab2ab1{
    width: 44.9219%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 4%;
}
.con5_top_5thab2ab2{
    width: 44.9219%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    left: 51%;
    margin-left: 0%;
}
.con5_top_5thab2ab{
    width: 27.6042%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -5%;
}
.con5ab{
    width: 10.9186%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 12%;
    top: 14%;
}
.con5ab2{
    width: 10.9186%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 12%;
    top: 14%;
}
.con5ab2ab{
    width: 132.692%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 23%;
}
.con5_top_5thabab{
    bottom: 10%;
}
.con5_top_5thabab .line{
    overflow: hidden;
}
.con5abab{
    top: 60%;
    width: 127.404%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con5_top_5thabab2{
    width: 1.51042%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 40%;
}
.con6_top{
    width: 9.23885%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.8%;
    margin-left: 0%;
}
.con6_top_2nd{
    width: 20.6824%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 0%;
}
.con6_top_3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con6_top_3rd .line{
    overflow: hidden;
}
.con6_top_4th{
    margin-top: 3.5%;
    z-index: 3;
}
.con6_top_3rd_item{
    width: 26.3517%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 2%;
}
.con6_top_3rd_itemab{
    width: 23.7052%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -4%;
    right: -3%;
}
.con6_top_3rd_itemab2{
    margin-top: 0%;
    margin-left: 0%;
    top: 86%;
}
.con6_top_3rd_itemab1{
    margin-top: 0%;
    margin-left: 0%;
    top: 81.3%;
}
.con6_top_5th{
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -6%;
    margin-left: 0%;
}
.con6_top_5thab{
    cursor: pointer;
    width: 24.3229%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 15%;
}

.popup2{
    background: #00000057;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 111;
}
.popup2_con{
    margin-top: 0%;
    margin-left: 0%;
    position: fixed;
    top: 16%;
    width: 72%;
    background: white;
    z-index: 111;
    border-radius: 1vw;
}
.popup2_txt_con{
    width: 61%;
    margin-left: 28%;
}
.popup2_txt_con_content_itemq {
    margin-top: 3%;
    margin-left: 3%;
}
.popup2_txt_con_title{
    margin-top: 6%;
    margin-left: 0%;
}
.popup2_txt_con_content_itemqq{
    width: 2.43902%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 100.5%;
}
.popup2_txt_con_content_itema{
    margin-top: 0%;
    margin-left: 0%;
    background: #c81a1a12;
    padding: 3%;
    box-sizing: border-box;
    border: 1px solid var(--mc);
    border-radius: 1vw;
    margin-top: 1%;
}
.popup2_txt_con_content_item{
    margin-bottom: 5%;
}
.popup2_txt_con_content{
    margin-top: 0%;
    margin-left: 0%;
    height: 25vw;
    overflow-y: scroll;
    margin-bottom: 6%;
}




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

.popup2_txt_con_content::-webkit-scrollbar-thumb {
    background: var(--mc);/* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */

}

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

}

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

.popup2_txt_con_content::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}
.con7{
    background-attachment: fixed !important;
    height: 40vw;
}


.swiper-pagination { position: relative; width: 100px; bottom: auto;}
.swiper-pagination-progressbar-fill {
    background: var(--mc) !important;
}
.swiper-pagination2 { position: relative !important;  width: calc(100% - 150px); height: 10px; bottom: auto; }
.pagination_container{
    position: absolute;
}
.swiper-pagination {
    position: absolute !important;
    bottom: auto !important;
    color: transparent !important;
    font-size: 1.3vw !important;
    font-family: var(--tf) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;font-weight: 600;
    align-items: center !important;
    top: 20% !important;
    letter-spacing: 0.6vw !important;
    left: unset !important;
}
.swiper-pagination.swiper-pagination-fraction span{
    color: black !important;
}
.swiper-pagination-fraction .swiper-pagination-current{
    left: 16% !important;
    position: absolute;
}
.swiper-pagination-fraction .swiper-pagination-total{
    right: 16% !important;
    position: absolute;
}
.pagination_container {
    width: 58vw;
    height: 3vw;
    bottom: 2.3%;
    background: unset;
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.swiper-pagination2{
    width: 50% !important;
    top: 4% !important;
    bottom: unset !important;
    background: #ffffffde !important;
}
.swiper-pagination-progressbar-fill{
    background: white !important;
}
.con8_top{
    width: 11.2861%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.6%;
    margin-left: 6%;
}
.con8_top2nd{
    width: 29.5013%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.9%;
    margin-left: 24.5%;
}
.con8_top2ndab{
    width: 26.5125%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -6%;
    right: -5%;
}
.con8_top3rd{
    margin-top: 1%;
    margin-left: 15.6%;
    color: white;
}
.con8_top3rd .line{
    overflow: hidden;
}
.con6_mid_swiper_5{
    margin-top: 4%;
    margin-left: 0%;
    width: 64%;
    margin-left: 58%;
    overflow: hidden;
}
.con6_mid_swiper_1_wrapper{
    display: flex;
    align-items: center;
}
.con6_mid_swiper_1_slide_p_con5{
    scale: 0.8;
    transition: 0.3s all;
}

.con6_mid_swiper_1_slide_p_con5ab4{
    transition: 0.3s all;
}
.con6_mid_swiper_1_slide_p_con5ab1ab{
    width: 34.7222%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 62%;
    right: -3%;
}

.con6_mid_swiper_5 {
    margin-top: 3%;
    margin-left: 0%;
    width: 64%;
    margin-left: 58%;
    overflow: hidden;
    padding-top: 1%;
}
.con6_mid_swiper_1_slide_p_con5ab_item{
    opacity: 0;
    left: 50%;
    top: 50%;
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5{
    scale: 1;
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab_item {
    opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(0%, -10%);
}
.con6_mid_swiper_5{
    margin-top: 3%;
    margin-left: 0%;
    width: 64%;
    margin-left: 58%;
    overflow: hidden;
    padding-top: 1%;
    margin-bottom: 8.3%;
}
.swiper-pagination2{
    width: 100% !important;
    top: 4% !important;
    bottom: unset !important;
    background: #ffffff5e !important;
}
.pagination_container{
    width: 53vw;
    height: 2vw;
    bottom: 10.3%;
    left: 47.5%;
    background: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.swiper-pagination2{
    height: 0.1vw;
}
.con8ab{
    width: 43.7795%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -4%;
    left: -5px;
}

.con8abab{
    width: 88.8489%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 15%;
}
.con8 .con7_prev{
    left: 1% !important;
    top: unset !important;
    width: 1.3vw !important;
    height: 1.3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 45.5% !important;
    bottom: 39%;
    transition: 0.4s background;
}
.con8 .con7_next{
    right: 1% !important;
    top: unset !important;
    width: 1.3vw !important;
    height: 1.3vw !important;
    border-radius: unset;
    overflow: hidden;
    transition: 0.4s background;
    right: 29.6% !important;
    bottom: 39%;
}
.menu_con_top{
    width: 9.55381%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-left: 0%;
}
.menu_con_topab1{
    width: 57.1429%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0%;
    margin-left: 0%;
    right: 109%;
    top: 59%;
}
.menu_con_topab2{
    width: 73.6264%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    overflow: hidden;
    top: 59%;
    left: 109%;
}



.con9_top_4th{
    border: 1px solid var(--mc);
    width: 84.7165%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: white;
}
.con08_change{
    color: white;
}
.con08_tab{
    transition: 0.3s color;

}
.con09_04{
}
.con08_tab_con{
    opacity: 0;
    width: 98%;
    border-radius: 5vw;
}
.con08_change .con08_tab_con{
    opacity: 1;
}

.con9{
    background: url(/images/con09_bg.png) no-repeat center / cover;

}
.con9_top_4th {
    font-size: 1.2vw;
}



.con08_tab_wrap{
    width: 69.8265%;
    display: flex
;
    justify-content: center;
    align-items: center;
    height: 7vw;

}


div.con08_menu {
    width: 70%;
    height: 35vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con08_menu .swiper-slide {
    flex-direction: column;
}
.con08_menu_img {
    width: auto;
    height: 13vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1vw;
}
.con08_menu_img img {
    width: auto;
    height: 100%;
    object-fit: cover;
}
.con08_arr {
    width: 4.51444%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
.con08_arr.con08_change {
    z-index: 1;
    opacity: 1;
    pointer-events: all;
}
.con08_prev {
    left: 10%;
}
.con08_next {
    right: 10%;
}
.con08_menu {
    opacity: 0;
}
.con08_menu.con08_change {
    opacity: 1;
    z-index: 2;
}
.con0809_wrap {
    overflow: hidden;
}
.con08_tab{
    color: black;
}
.con08_change.con08_tab{
    color: white;
}
div.con08_menu {
    width: 90%;
    height: 37vw;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}
.con08_menu_tt{
    color: white;
    font-size: 1.3vw;
    text-align: center;
}
.con08_menu_desc{
    color: white;
    font-size: 0.9vw;
    text-align: center;



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

.con08_menu_img img {
    height: unset;
}
.con08_menu_img {
    width: 69%;
    height: 10vw;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-bottom: 1vw;
}
div.con08_menu {
    width: 90%;
    height: 37vw;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 4%;
}
.con9 {
    background: url(/images/con09_bg.png) no-repeat top / cover;
}
.con9_top_4th {
    font-size: 1.2vw;
    margin-bottom: 17%;
}
.con08_tab_con{
    opacity: 0;
    width: 96%;
    border-radius: 5vw;
    height: 84%;
    overflow: hidden;
    transition: 0.3s all;
}
.con08_tab{
    width: 16.5927%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 1%;
}
.con08_tab_wrap {
    width: 69.8265%;
    display: flex
;
    justify-content: center;
    align-items: center;
    height: 7vw;
    margin-top: -4%;
}
.con9_top_4th {
    font-size: 1.2vw;
    margin-bottom: 1%;
    margin-top: 4%;
}

.con08_tab_conab{
    width: 31.8436%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -100%;
    left: -100%;
}
.con08_tab_conab2{
    width: 31.8436%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -100%;
    transition: 0.3s all;
    right: -100%;
}
.con08_change .con08_tab_conab{
    width: 31.8436%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -45%;
    left: -6%;
}
.con08_change .con08_tab_conab2{
    width: 31.8436%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -45%;
    right: -10%;
}
.con08_menu_img_con_wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con08_menu_img_con{
    height: 14vw;
    width: 14vw;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.con08_menu_img_con{
    height: 14vw;
    width: 14vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border: 1px solid var(--mc);
    border-radius: 50%;
    transition: 0.3s all;
}
.con08_menu_img_con_wrap:hover .con08_menu_img_con{
    background: var(--mc);

}
.con08_menu_img_con_wrap:hover .con08_menu_img{
    top: 15%;


}
div.con08_menu{
    width: 85%;
    height: 38vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-top: 2%;
    margin-bottom: 4%;
}
.con08_menu_img{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
    margin-bottom: 1vw;
    top: 40%;
}
.con08_menu_tt{
    color: black;
    font-size: 1.3vw;
    text-align: center;
    margin-top: 3%;
}
.con7_prev{
    left: 1% !important;
    top: unset !important;
    width: 3vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 4.7% !important;
    bottom: 33.4%;
    transition: 0.4s background;
}
.con7_next{
    right: 1% !important;
    top: unset !important;
    width: 3vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 4.7% !important;
    bottom: 33.4%;
    transition: 0.4s background;
}
.con9_top_4th{
    margin-bottom: 6%;
}

.con9_top{
    width: 5.77428%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4.6%;
    margin-left: 0%;
}
.con9_top_2nd{
    width: 15.4856%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 1.1%;
    margin-left: 0%;
}
.con9_top_3rd{
    width: 19.3701%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0.6%;
    margin-left: 0%;
}
.con9_top_5th{
    margin-top: 1%;
    margin-left: 0%;
}
.con9_top_5th .line{
    overflow: hidden;
}
.con9_top_6th{
    margin-top: 1.5%;
}
.con9_top_6th_item{
    width: 9.39633%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 0.5%;
}
.con9_top_7thab{
    animation: 2s infinite ddm_m;
}
.con9_top_7thab4{
    width: 110.192%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 10%;
}
.con9_top_7th{
    width: 43.7795%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.3%;
    margin-left: 0%;
    margin-bottom: -15.3%;
}
.con9_top_7thab1{
    width: 32.494%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -11%;
    top: 13%;
}
.con9_top_7thab2{
    width: 29.1367%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    animation-delay: 1s;
    margin-left: 0%;
    top: 3%;
    right: -2%;
}
.con9_top_7thab3{
    width: 29.1367%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: -13%;
    top: 23%;
}


.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;
}
.con08_tab_text{
    font-size: 1vw;
}
.con08_tab{
    cursor: pointer;
}
.con10_top{
    width: 2.20472%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4.4%;
    overflow: hidden;
    margin-left: 0%;
}
.con10_top2nd{
    width: 10.7612%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    overflow: hidden;
    margin-left: 0%;
}
.con10_top4th .line{
    overflow: hidden;
}
.con10_top3rd{
    width: 32.0735%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 0.3%;
    margin-left: 0%;
}
.con6_mid_swiper_1_slide_p_con6{
    width: 37vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24vw;
    border-radius: 2vw;
    overflow: hidden;
}
.con6_mid_swiper_6{
    margin-top: 3%;
    margin-left: 0%;
    width: 124%;
}
.con10_top4th{
    margin-top: 2%;
    margin-left: 0%;
    margin-bottom: 3.2%;
    text-align: center;
}
.con6_mid_swiper_1_slide_p_con6 video,.con6_mid_swiper_1_slide_p_con6 iframe{
    width: 118% !important;

}
.con10 .con7_prev{
    left: 1% !important;
    top: unset !important;
    width: 3vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 33.7% !important;
    bottom: 43.4%;
    transition: 0.4s background;
}
.con10 .con7_next{
    right: 1% !important;
    top: unset !important;
    width: 3vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 33.7% !important;
    bottom: 43.4%;
    transition: 0.4s background;
}
.con11_top{
    width: 15.1181%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 7%;
    margin-left: 0%;
    overflow: hidden;
}
.con11_top2nd{
    width: 30.1312%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.8%;
    margin-left: 0%;
}
.con11_top3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con11_top3rd .line{
    overflow: hidden;
}
.con11_top4th{
    ㅈ: ㅈ;
    width: 91%;
    margin-top: 2.3%;
    margin-bottom: 5.2%;
}
.con11_top4thitem{
    width: 25.1557%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 1% 2%;
}
.con11_top4thitemab{
    width: 4.81545%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 106%;
}
.con11ab{
    width: 21.2073%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -13%;
    right: 0;animation: sway4 2s infinite;
}
.con12_top{
    width: 19.895%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
    margin-left: 0%;
}
.con12_top_2nd{
    width: 26.5617%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 1%;
    margin-left: 0%;
}
.con12_top_3rd{
    width: 22.4147%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 0%;
}
.con12_top_4th{
    background: url("/images/con13_12.png") center center / cover no-repeat;
    margin-top: 2.6%;
    margin-left: 0%;
    padding: 2% 0;
    height: 13.4vw;
    align-items: flex-start;
}
.con12_top_4th_item{
    width: 11.8635%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 1%;
    flex-direction: column;
}
.con12_top_5th{
    margin-top: 3.75%;
}
.con12_top_5thitem{
    width: 32.2835%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 1%;
}
.con12_top_5th{
    margin-top: 3.75%;
    margin-bottom: 6.9%;
}
.con12_top_5thitemab{
    width: 30.7313%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: blk 1s infinite;
    right: 7%;
    top: 29%;
}
.con12_top_5thitemab2{
    width: 18.3737%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 87.1%;
    left: 34%;
}
.con12_top_4th_item_top{
    z-index: 2;
}
.con12_top_4th_item_mid {
    width: 85.5222%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: -4%;
    margin-left: 0%;
    margin-bottom: -7%;
    height: 13.3vw;
    overflow: hidden;
}
.con12_top_4th_item_midab{
    width: 70.4141%;
    display: flex;
    overflow: hidden;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 26%;
}
.con12_top_4th_item_midab2{
    width: 68.8609%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: blk 1s infinite;
    top: 54%;
}
.con12_top_5thitemab3{
    display: none;
}
.con13_con{
    background: url(/images/con14_9.png) no-repeat center / cover;
    width: 95.5%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    border-radius: 0.8vw;
}
.con13_con_top{
    width: 15.0582%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 7%;
    margin-left: 0%;
}
.con13_con_top2nd{
    width: 25.445%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.8%;
    margin-left: 0%;
}
.con14_top{
    width: 15.8005%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13%;
    overflow: hidden;
    margin-left: -60%;
}
.con14_top_2nd{
    width: 16.168%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 1%;
    margin-left: -59.3%;
}
.con14_top_3rd{
    width: 19.4226%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-left: -56.1%;
}
.con14_top_4th .line{
    overflow: hidden;
}
.con14_top_4th{
    margin-top: 1.1%;
    margin-left: 0%;
    width: 75.5%;
}
.con14_top_5th{
    width: 14.5932%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.45%;
    margin-left: -61%;
    margin-bottom: 13%;
}
.con14ab > img{
    animation: rotate360 20s infinite;
}
.con14ab{
    width: 27.8215%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -10%;
    left: 30%;
}
.con14abab{
    width: 144.821%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    animation: smoke 2s infinite;
    margin-left: 0%;
    bottom: -1%;
}



















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

.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 > span {
    font-size: 1.3vw;
    margin-right: -18%;
    color: black;
    font-family: GmarketSansMedium !important;
}
.form_agree_span{
    font-family: GmarketSansMedium !important;

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



.form_row_imput_radio {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fe0908;
    background: transparent;
}

.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_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 {
    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: white;
    z-index: 1;
    margin-bottom: 7%;
    right: 13%;
    top: 7%;
}
.form_row_label {
    font-family: Pretendard-regular;
    color: black;
    white-space: nowrap;
    font-size: 1.2vw;
    width: 22% !important;
}

.form_row_imput_radio {
    border: 1px solid black;
    background: transparent;
}



.form_row {
    border-bottom: 1px solid black !important;
}
.form_agree {
    display: flex
;
    justify-content: flex-end;
    align-items: center;
    width: 78%;
    margin-top: 5%;
    margin-bottom: 4%;
}

.form_agree_span {
    font-size: 1vw;
    font-family: Pretendard-regular;
    color: black;
}
.form_agree_check {
    border: 1px solid #002c46;
}
.form_agree_check:checked::after {
    content: "";
    width: 0.8vw;
    height: 0.8vw;
    position: absolute;
    background: #002c46;
    color: unset !important;
}
.form_submit {
    display: flex
;
    justify-content: center;
    align-items: center;
    background: #002c46;
    padding: 1.5%;
    width: 76%;
    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;
    text-align: center;
}
.form_agree_check:checked {
    border: 1px solid #002c46;
}
.form_submit {
    display: flex
;
    justify-content: center;
    align-items: center;
    background: #002c46;
    padding: 1.5%;
    width: 76%;
    color: white;
    position: relative !important;
    margin-bottom: 3%;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 1.5%;
    padding-bottom: 2%;
    cursor: pointer;
    text-align: center;
}
.form_row > span {
    font-size: 1.3vw;
    margin-right: -18%;
    color: black;
}

.form_row_radio {
    padding-top: 2%;
    padding-bottom: 2%;
    justify-content: flex-start;
}
.form_row_imput_radio_1 {
    margin-right: 0;
}
.form_row > span {
    font-size: 1.1vw;
    margin-right: 0;
    color: black;
    white-space: nowrap;
}
.form_row > span {
    margin-right: 3% !important;
    margin-left: 3%;
}
.form_row_imput_radio {
    margin-right: 0;
}

.form_submit{
    background: transparent;
}
.form_agree_check {
    border: 1px solid black;
}
.form_agree_check:checked::after {
    content: "";
    width: 0.8vw;
    height: 0.8vw;
    position: absolute;
    background: black;
    color: unset !important;
}
.form_agree_check:checked {
    border: 1px solid black;
}
.form_agree_span {
    font-size: 1vw;
    font-family: Pretendard-regular !important;
    color: black;
}
.form_row_label{
    font-family: GmarketSansMedium !important;
}

.form_row_label_required::after {
    content: '*';
    font-family: Pretendard-regular;
    color: #cb1f39;
    white-space: nowrap;
    font-size: 1.1vw;
    position: absolute;
    right: 100%;
    width: 0%;
    bottom: 40%;
}
.form_row_label {
    width: 37% !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: 13%;
    top: 7%;
}


.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: 15%;
    top: 16%;
}

.form_row_label_3lettters {
    letter-spacing: 1.5vw;
}

.form_row_label_4lettters {
    letter-spacing: 0.67vw;
}




section img{
    width: 100%;
}































.con17_mid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 83%;
    margin-bottom: 5%;
}
.map{
    width: 98%;
    height: 33vw;
    border-radius: 30px;
    border: 1px solid black;
}
.con17_mid_map_search{
    width: 26%;
    background: white;
    height: 30vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    left: 5%;
    flex-direction: column;
}
.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: #10069f;
    color: white !important;
}
.off2{
    color: grey !important;
}
.con17_mid_map_search_mid{
    background: #10069f;
    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;
}
.map_search{
    width: 7% !important;
    right: 8% !important;
}
.con17_mid_map_search_bottom{
    overflow-y: scroll;
    height: 23.5vw;
    width: 100%;
}
.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    width: 80%;
}
.con17_mid_map_search_item_title{
    font-size: 1vw;
    font-family: pretendard-bold;
}
.con17_mid_map_search_item_address{
    margin-top: 4%;
    margin-bottom: 1%;
}
.con17_mid_map_search_bottom {
    overflow-y: scroll;
    height: 23.5vw;
    width: 100%;
    flex-direction: column;
}
.con17_mid_map_search_bottom {
    overflow-y: scroll;
    height: 23.5vw;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start !important;
}
#page_wrap{
    background: #f6f6f6;
}

.con17_mid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 5%;
}
.map {
    width: 98%;
    height: 38vw;
}
.con17_mid_map_search {
    width: 24%;
    background: white;
    height: 30vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    left: 5%;
    flex-direction: column;
}
.con17_mid_map_search_mid input{
    border-radius: unset !important;
}


.map {
    width: 80%;
    height: 38vw;
    border-radius: 0;
    border:unset;
}
.con17_mid_map_search {
    width: 21%;
    background: white;
    height: 34vw;
    top: 5%;
    z-index: 2;
    overflow: hidden;
    left: 13%;
    flex-direction: column;
}






.con17_mid {
    margin-bottom: 0;
}

.con17_mid {
    margin-bottom: 5%;
}





.con17_mid {
    margin-bottom: 5%;
    margin-top: 3%;
}

.con17_mid_map_search {
    width: 21%;
    background: white;
    height: 38vw;
    top: 0;
    z-index: 2;
    overflow: hidden;
    left: 10%;
    flex-direction: column;
}

.on2 {
    background: #ff490e;
    color: white !important;
}
.con17_mid_map_search_mid {
    background: #ff490e;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94%;
    padding: 3%;
}


.con17_mid {
    margin-bottom: -8%;
    margin-top: 3%;
}

.con17_mid_map_search_top {
    background: black;
}
.con17_mid_map_search_mid {
    background: black;
}
.on2 {
    background: black;
    color: #d7ad56 !important;
}
.con17_mid_map_search_mid input {
    border-radius: 30px !important;
}
.con17_mid {
    margin-bottom: 3%;
    margin-top: 0%;
}











.off2 {
    color: grey !important;
    background: white;
}




.on2 {
    background: #002c46;
    color: white !important;
}

.con17_mid_map_search_mid {
    background: #002c46;

}


.con17_mid {
    margin-bottom: 6%;
    margin-top: 0%;
}
.con17_mid {
    margin-top: 2%;
}




.con17_mid_map_search_bottom::-webkit-scrollbar {
    width: 1vw;
    margin-right: 6%;
    position: absolute;
}

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

.con17_mid_map_search_bottom::-webkit-scrollbar-thumb {
    background: #002c46;/* 스크롤바 색상 */
    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;
}

.con17_mid_map_search {
    height: 31vw;
}
.form{
    background: white;
    top: 3%;
    left: 59%;
    width: 32%;
}


.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #002c46;
    padding: 1.5%;
    width: 100%;
    color: white;
    position: relative !important;
    margin-bottom: 0;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 1.5%;
    padding-bottom: 0;
    cursor: pointer;
    text-align: center;
}
.form_row > span {
    margin-right: 3% !important;
    margin-left: 3%;
    display: none;
}
.form_row_imput_radio{
    width: 27%;
    border-radius: unset;
    height: 2vw;
    border: unset;
    background: #fffced;
}
.form_row_imput_radio_2{
    margin-left: 1%;
}
.form_row_imput_radio_1::before{
    content: '유';
    font-family: GmarketSansMedium;
    position: absolute;
    color: black;
    font-size: 1vw;
}
.form_row_imput_radio_2::before{
    content: '무';
    font-family: GmarketSansMedium;
    position: absolute;
    color: black;
    font-size: 1vw;
}
.form_row_imput_radio:checked{
    background: #f4a81c;
}
.form_agree_check:checked::after{
    background: #f4a81c;
}


.form{
    background: white;
    top: 3%;
    left: unset;
    width: 32%;
    position: relative !important;
    margin: 0;
    transform: unset;
    right: unset;
    margin-top: 2%;
    margin-bottom: 6%;
}
.form_row {
    border-bottom: unset;
}
.form_row_imput_text {
    padding-left: 3%;
    box-sizing: border-box;
    background: #80808026;
    border-radius: 0.5vw;
}
.form_row_imput_radio {
    width: 34%;
    border-radius: unset;
    height: 2vw;
    border: unset;
    background: #fffced;
    border-radius: 0.5vw;
}
.form_row_imput_radio:checked {
    background: var(--mc);
}
.form_row_imput_radio {
    width: 34%;
    border-radius: unset;
    height: 2vw;
    border: unset;
    background: #80808026;
    border-radius: 0.5vw;
}
.form_row_imput_radio:checked::before {
    color: white;
}
.form_row {
    border-bottom: unset !important;
}
.form_agree_check:checked::after {
    background: var(--mc);
}
.form_submit{
    display: flex;
    justify-content: center;
    align-items: center;
    background: unset;
    padding: 1.5%;
    width: 71%;
    color: white;
    position: relative !important;
    margin-bottom: 0;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 1.5%;
    padding-bottom: 0;
    cursor: pointer;
    text-align: center;
    margin-top: -3%;
    margin-bottom: 5%;
}
.form {
    border-radius: 1vw;
}
.form_agree {
    justify-content: center;
    align-items: center;
}
.form {
    border-radius: unset;
    border: 1px solid var(--mc);
    width: 37%;
    top: 10%;
    position: absolute !important;
    right: 12%;
}
.form_submit{
    display: flex;
    justify-content: center;
    align-items: center;
    background: unset;
    padding: 0;
    width: 100%;
    height: 3.5vw;
    background: var(--mc);
    color: white;
    position: relative !important;
    margin-bottom: 0;
    font-size: 1.6vw;
    font-family: pretendard-bold;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    top: 104%;
    position: absolute !important;
}
.form_row_imput_text{
    padding-left: 3%;
    box-sizing: border-box;
    border: 1px solid #80808026;
    border-radius: 0.5vw;
    background: white;
}
.form_agree{
    display: flex;
    align-items: center;
    width: 78%;
    margin-top: 4%;
    margin-bottom: 8%;
}

.con14_conab1{
    left: 2.2%;
    top: 2%;
}
.con14_conab2{
    right: 2.2%;
    top: 2%;
}
.con14_conab3{
    left: 2.2%;
    bottom: 2%;
}
.con14_conab4{
    right: 2.2%;
    bottom: 2%;
}

.con14 .con2_conab{
    width: 5.69947%;
}
.con3bg{
    filter: brightness(0.4);
}
.con6_top_2ndcon{
    margin-top: 1%;
}
.con6_top_2ndcon1{
    width: 5.72178%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0%;
    margin-left: 0%;
}
.con6_top_2ndcon2{
    width: 14.1207%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 1%;
}
.con11_top2ndcon{
    margin-top: 0.5%;
}
.con11_top2ndcon1{
    width: 10.7087%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    overflow: hidden;
    margin-left: 0%;
}
.con11_top2ndcon2{
    overflow: hidden;
    width: 19.4226%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.main{
    background: black;
}
.mainbg{
    height: 100%;
    overflow: hidden;
}
.con8_top {
    width: 11.2861%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 4.6%;
    margin-left: 6%;
}
.con6_top_3rd_item{
    cursor: pointer;
}























.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%;
    margin-top: 2%;
}
.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;
    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;
}
.header_menu_1_store{
    color: #0064de !important;
}

.main img{
    width: 100%;
}

.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: var(--mc);/* 스크롤바 색상 */
    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;
}


.popup {
    background: white;
    border-radius: 1vw !important;
    overflow: hidden;
}

.popup2_img{
    width: 28.5931%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 69%;
}
.popup2 .popup_close{
    width: 2.80634% !important;
}
.con1bg {
    filter: brightness(0.23);
}
.popup2_txt_con_content_item {
    width: 92%;
}

.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab4{
        opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(-8%, 55%);
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab5{
        opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(18%, 70%);
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab6 {
    opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(33%, 160%);
}

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

.con10_swiper_y_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 17%;
    height: 118%;
    overflow: hidden;
    right: 1.5%;
    top: 0;
    pointer-events: none;
}
.con9_top_7thab111{
        width: 100%;
    height: 100%;
    border: 1px solid white;
    border-radius: 50%;
}
.con6_top_3rd_itembg{
    background: #000000ba;
    height: 0%;
    z-index: 1;
    transition: 0.4s all;
    top: 0;
    
}
.con6_top_3rd_itembgab{
        margin-top: 0%;
    margin-left: 0%;
    font-size: 1.3vw;
    opacity: 0;
    transition: 0.3s all;
    transition-delay: 0.4s;
    margin-top: 20%;
}
.con6_top_3rd_item:hover .con6_top_3rd_itembg{
    height: 100%;
}
.con6_top_3rd_item:hover .con6_top_3rd_itembgab{
    opacity: 1;
    margin-top: 0% !important;
}
.con13_con_top{
    white-space: nowrap;
}

.con13_con_top {
    width: 26.0582%;
    display: flex;
    justify-content: center;
    overflow: unset !important;
    align-items: center;
    margin-top: 7%;
    margin-left: 0%;
}
.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: 6vw;
    margin-bottom: 3;
}
.con17_mid_map_search_item_title {
    width: 83%;
    margin-left: 12%;
    margin-top: 12%;
    font-family: pretendard-regular !important;
}

.con13_con_top2nd1{
        width: 16.9325%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-left: 0%;
}
.con13_con_top2nd2{
        width: 35.8442%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-left: 0%;
}
.con6_top_3rd_itemab1 {
    top: 76.3%;
}
.con6_top_3rd_itemab2 {
    top: 80%;
}
.con6_top_3rd_itemab3{
        width: 40.4382%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 89%;
}
.con6_top_3rd_itemab3ab{
    width: 23.1527%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: blk 1s infinite;
    left: 84%;
    top: 33%;
}
.con6_top_3rd_itembgab2{
        width: 27.49%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con6_top_3rd_itemab{
    z-index: 5
}
.con6_top_3rd_itembg{
    overflow: hidden;
}
.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 {
        height: 81vw;
    }
    .mainbg{
        height: 100%;
    }
    .mainbg video{
        height: 100% ;
        width: 145%;
    }
    .con6_mid_swiper_1{
        width: 375%;
        flex-direction: column;
        margin: 7% 0;
    }
    .con1_top{
        width: 35.87402%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.2%;
        margin-left: 0%;
    }
    .con1_top_2nd {
        width: 59.7218%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 5.3%;
        margin-left: 0%;
    }
    .con1_top_3rd {
        margin-top: 4%;
        width: 272%;
    }
    .con1_top_4th{
        width: 1.419948%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4.5%;
        margin-left: 0%;
    }
    .con1_top_5th{
        margin-top: 3.4%;
    }
    .con1_top_6th{
        margin-top: 6%;
        margin-bottom: 12%;
        flex-wrap: wrap;
    }
    .con1bg{
        filter: brightness(0.4);
        width: 200%;
    }
    .con1_top_6th_item{
        width: 39.8635%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 0 1.8%;
        margin-bottom: 22%;
    }
    .con1bg{
        filter: brightness(0.4);
        width: 270%;
    }
    .con1_top_6th_line{
        display: none;
    }
    .con1_top_3rd {
        margin-top: 4%;
        width: 342%;
    }
    .con2_top{
        width: 60.7874%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16.8%;
        margin-left: 0%;
    }
    .con1ab{
        width: 38.3202%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 1;
        left: -13%;
        top: -7%;
    }
    .con1ab2{
        width: 38.3202%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 1;
        right: -13%;
        top: -7%;
    }
    .con2_top_2nd {
        width: 86.9711%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 2.7%;
        margin-left: 0%;
    }
    .con2_conab{
        width: 8.19947%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con2_top_3rd{
        margin-top: 3%;
        flex-direction: column;
    }
    .con2_top_3rd_item {
        width: 73.4698%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 2% 0.8%;
        overflow: hidden;
    }
    .con2_top_4th{
        margin-top: 4%;
        margin-left: 0%;
        text-align: center;
        margin-bottom: 14.2%;
    }
    .con2_conab1{
        top: 1%;
    }
    .con2_conab2{
        top: 1%;
    }
    .con2_conab3{
        bottom: 1%;
    }
    .con2_conab4{
        bottom: 1%;
    }
    .con6_mid_swiper_1_slide_p_con2{
        width: 120% !important;
    }
    .con2ab5{
        width: 21.2257%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 5%;
        left: 3%;
    }
    .con2ab6{
        width: 21.4357%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 5%;
        right: 3%;
    }
    .con3_top_con {
        width: 100% !important;
    }
    .con3_top{
        width: 24.6299%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con3bg{
        top: 0;
        overflow: hidden;
        height: 61vw;
    }
    .con3bg video{
        width: 150%;
    }
    .con6bg2{
        position: relative !important;
        width: 100% !important;
        left: unset;
    }
    .con3_top_3rd{
        width: 76.1777%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3%;
        margin-left: 0%;
        margin-bottom: 19.3%;
    }
    .con6bg2_item_top{
        width: 21.66702%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10%;
        margin-left: 0;
    }
    .con6bg2_item1_top_2nd{
        width: 68.9345%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4.6%;
        margin-left: 0;
    }
    .con6bg2_item_top_3rd{
        text-align: center;
        margin-top: 5.5%;
        margin-left: 0%;
        width: 90%;
    }
    .con6_mid_swiper_1_slide_p_con3{
        width: 93.3494%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con6_mid_swiper_3 {
        margin-top: 7%;
        margin-left: 0%;
        margin-bottom: 8%;
        width: 221%;
    }
    .con6bg2_item2_top_2nd {
        width: 88.0644%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
        margin-left: 0;
    }
    .con6bg2_item_top_3rd {
        text-align: center;
        margin-top: 5.5%;
        margin-left: 0%;
        width: 101%;
        font-size: 3.2vw !important;
    }
    .con6bg2_item3_top_2nd {
        width: 93.8238%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 5.4%;
        margin-left: 0;
    }
    .con6bg2_item_top_4th_item{
        width: 47.2361%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con4_top {
        margin-top: 17%;
        margin-left: 0%;
        width: 76%;
        text-align: center;
    }
    .con4_top_2nd {
        width: 42.0262%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0;
    }
    .con4_top_3rd {
        width: 54.5249%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
        margin-left: 0;
    }
    .con6_mid_swiper_4 {
        margin-top: 8%;
        margin-left: 0%;
        width: 222% !important;
        left: unset;
        overflow: hidden;
        position: relative !important;
        margin-bottom: 37.6%;
    }
    .con6_mid_swiper_1_slide_p_con4_con {
        height: 84vw;
        border-radius: 1.5vw;
        width: 100%;
        overflow: hidden;
        border: 1px solid var(--mc);
    }
    .con4 .con7_prev{
        left: 1% !important;
        top: unset !important;
        width: 10vw !important;
        height: 10vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 6.7% !important;
        bottom: 46.4%;
        transition: 0.4s background;
    }
    .con4 .con7_next{
        right: 1% !important;
        top: unset !important;
        width: 10vw !important;
        height: 10vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 6.7% !important;
        bottom: 46.4%;
        transition: 0.4s background;
    }
    .con4ab2 {
        width: 63.3333%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 26px;
        bottom: -7%;
    }
    .con4ab2ab2{
        width: 84.2756%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 49%;
        bottom: 7%;
    }
    .con4ab {
        width: 29.34646%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 2;
        top: 23.8%;
        left: 2%;
    }
    .con5_top {
        width: 78.2677%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 15.5%;
        margin-left: 0%;
    }
    .con5_top_2nd {
        width: 59.5144%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 2.6%;
        margin-left: 0%;
    }
    .con5_top_3rd {
        text-align: center;
        margin-top: 4%;
        margin-left: 0%;
        width: 80%;
    }
    .con5_top_4th {
        width: 76.4278%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 47.1%;
        margin-left: 0%;
    }
    .con5_top_4thab1{
        width: 48.1907%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        갸홋: 홋;
        right: 60%;
        top: 8%;
    }
    .con5_top_4thab2{
        width: 47.1907%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        left: 56%;
        top: 13%;
    }
    .con5_top_4thab3{
        width: 57.8008%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 52%;
        top: 36%;
    }
    .con5_top_4thab4 {
        width: 50.3128%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 60%;
        top: 44%;
    }
    .con5_top_4thabab{
        scale: 3;
    }
    .con5ab {
        width: 16.9186%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 16%;
        top: 35%;
    }
    .con5ab2{
        width: 16.9186%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 16%;
        top: 33%;
    }
.con5ab2ab {
    width: 232.692%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 23%;
}
    con5abab {
        top: 23%;
        top: 23%;
        width: 227.404%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con5_top_5thabab{
        bottom: 10%;
        width: 50%;
        text-align: center;
    }
    .con5_top_5thab {
        top: 30%;
        flex-direction: column;
    }
    .con5_top_5th{
        width: 250% !important;
    }
    .con5_top_5thab2{
         width: 40%;
         display: flex;
         justify-content: center;
         align-items: center;
         margin-top: 0%;
         margin-left: 0;
     }
    .con5_top_5th{
        width: 250% !important;
        height: 178vw;
    }
    .con5_top_5thab {
        top: 27%;
        flex-direction: column;
    }
    .con5_top_5thab2{
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
        margin-left: 0;
    }
    .con5_top_5thabab {
             bottom: 6%;
             width: 50%;
             text-align: center;
             text-align: center;
             width: 30%;
         }
    .con5_top_5thabab2{
        width: 2.51042%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -1%;
        margin-left: 0%;
        left: unset;
    }
    .con5_top_5thab1{
        width: 30.3021%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -7%;
        margin-left: 0%;
    }
    .con5_top_5thab2 {
        width: 75%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 26%;
        margin-left: 0;
        flex-direction: column;
        top: 50%;
    }
    .con5_top_5th {
        width: 250% !important;
        height: 388vw;
    }
    .con5_top_5thab1ab{
        width: 53.8337%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -6%;
    }
    .con5_top_5thabab2 {
        width: 2.51042%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -35%;
        margin-left: 0%;
        left: unset;
    }
    .con5_top_5thab2ab {
        width: 20.6042%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -43%;
    }
    .con5_top_5thab2ab1 {
        width: 39.9219%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: -26%;
    }
    .con5_top_5thab2ab2 {
        width: 33.9219%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        left: unset;
        margin-left: 0%;
    }
    .con5_top_5thab2ab2 {
        width: 39.9219%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        left: unset;
        margin-left: 0%;
        top: 67%;
    }
    .con5_top_5thabab {
        bottom: 4%;
        width: 50%;
        text-align: center;
        text-align: center;
        width: 30%;
    }
    .con5_top_5th{
        flex-direction: column;
    }
    .con5_top_5th >img{
        width: 500% !important;
        opacity: 0;
    }
    .con5_top_5thab2 > img{
        width: 100%;
        rotate: 90deg;
    }
    .con5_top_5th {
        background: var(--sc);
        flex-direction: column;
    }
    .con5_top_5thabab {
        bottom: 20%;
        width: 50%;
        text-align: center;
        text-align: center;
        width: 30%;
    }
    .con5_top_5thab {
        top: 14%;
        flex-direction: column;
    }
    .con5_top_4th {
        width: 76.4278%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 47.1%;
        z-index: 3;
        margin-left: 0%;
    }
    .con5_top_5thabab {
        bottom: 16%;
        width: 50%;
        text-align: center;
        text-align: center;
        width: 30%;
    }
    .con5_top_5th {
        background: var(--sc);
        flex-direction: column;
        margin-bottom: -47%;
    }
    .con5ab {
        width: 16.9186%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 16%;
        top: 11%;
    }
    .con5ab2 {
        width: 16.9186%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 16%;
        top: 11%;
    }
    .con5abab {
        top: 56%;
        width: 227.404%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con6_top {
        width: 43.23885%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.8%;
        margin-left: 0%;
    }
    .con6_top_2nd {
        width: 68.6824%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.5%;
        margin-left: 0%;
    }
    .con6_top_3rd {
        margin-top: 5%;
        margin-left: 0%;
        ㅅㄷ: ㄷ;
        text-align: center;
    }
    .con6_top_4th {
        margin-top: 7.5%;
        z-index: 3;
        flex-wrap: wrap;
    }
    .con6_top_3rd_item {
        width: 82.3517%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 4% 2%;
    }
    .con6_top_5th {
        width: 300.787%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -17%;
        margin-left: 0%;
    }
    .con6_top_5thab {
        cursor: pointer;
        width: 28.3229%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 18%;
    }
    .con6_top_3rd {
        margin-top: 5%;
        margin-left: 0%;
        ㅅㄷ: ㄷ;
        text-align: center;
        width: 80%;
    }
    .con7 {
        background-attachment: unset !important;
        height: 70vw;
    }
    .con8_top {
        width: 44.2861%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.6%;
        margin-left: 0;
    }
    .con8_top2nd {
        width: 84.5013%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4.9%;
        margin-left: 0;
    }
    .con8_top3rd {
        margin-top: 5%;
        margin-left: 0;
        text-align: center;
        color: white;
    }
    .con6_mid_swiper_1_slide_p_con5{
        width: 90% !important;
    }
    .pagination_container {
        width: 53vw;
        height: 2vw;
        bottom: 10.3%;
        left: unset;
        background: unset;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .con6_mid_swiper_5 {
        margin-top: 6%;
        margin-left: 110% !important;
        width: 164%;
        margin-left: 0;
        overflow: hidden;
        padding-top: 7%;
        margin-bottom: 18.3%;
    }
    .con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab_item {
        opacity: 1;
        left: 0%;
        top: 0%;
        transform: translate(0%, -10%);
        scale: 1.4;
    }

    .con6_mid_swiper_5 {
        margin-top: 6%;
        margin-left: 110% !important;
        width: 164%;
        margin-left: 0;
        overflow: hidden;
        padding-top: 1%;
        margin-bottom: 18.3%;
    }
    .con8 .con7_prev {
        left: 1% !important;
        top: unset !important;
        width: 8vw !important;
        height: 8vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 4.7% !important;
        bottom: 33.4%;
        transition: 0.4s background;
    }
    .con8 .con7_next {
        right: 1% !important;
        top: unset !important;
        width: 8vw !important;
        height: 8vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 4.7% !important;
        bottom: 33.4%;
        transition: 0.4s background;
    }
    .con6_mid_swiper_1_slide_p_con5ab_item{
        transform-origin: left top;

    }
    .con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab_item {
        opacity: 1;
        left: 0%;
        top: 0%;
        transform: translate(-33%, -27%);
        scale: 4.4;
    }
    .con6_mid_swiper_5 {
        margin-top: 6%;
        margin-left: 102% !important;
        width: 164%;
        margin-left: 0;
        overflow: hidden;
        padding-top: 8%;
        margin-bottom: 18.3%;
        padding-left: 7%;
    }
    .menu_con_top {
        width: 28.55381%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con08_tab_wrap {
        width: 169.8265%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 7vw;
        margin-top: -4%;
    }

    .con08_tab_text {
        font-size: 3.3vw;
    }.con08_menu_tt {
         color: black;
         font-size: 3.3vw;
         text-align: center;
         margin-top: 3%;
     }
    .con08_menu_img_con {
        height: 28vw;
        width: 28vw;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        border: 1px solid var(--mc);
        border-radius: 50%;
        transition: 0.3s all;
    }
    div.con08_menu {
        width: 85%;
        height: 79vw;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        margin-top: 2%;
        margin-bottom: 4%;
    }
    .con9_top_4th {
        border: 1px solid var(--mc);
        width: 94.7165%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: white;
    }
    .con9_top_4th {
        margin-bottom: 11%;
    }
    .con9_top_4th {
        font-size: 1.2vw;
        margin-bottom: 1%;
        margin-top: 10%;
    }
    .con9_top {
        width: 25.77428%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 14.6%;
        margin-left: 0%;
    }
    .con9_top_2nd {
        width: 54.4856%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5.1%;
        margin-left: 0%;
    }
    .con9_top_3rd {
        width: 59.3701%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.6%;
        margin-left: 0%;
    }
    .con9_top_6th_item {
        width: 29.39633%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 0 0.5%;
    }
    .con9_top_6th {
        margin-top: 3.5%;
    }
    .con9_top_7th {
        width: 79.7795%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 94.3%;
        margin-left: 0%;
        margin-bottom: -35.3%;
    }
    .con10_swiper_y_left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 164%;
        height: unset;
        overflow: hidden;
        left: unset;
        top: 35%;
        pointer-events: none;
    }
    .con10_swiper_y_right{
        display: none;
    }
    .con9_top_7thab1 {
        width: 56.494%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: -11%;
        top: 16%;
    }
    .con9_top_7thab2 {
        width: 53.1367%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 1%;
        right: -2%;
    }
    .con9_top_7thab3 {
        width: 54.1367%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: -9%;
        top: 23%;
    }
    .con10_top {
        width: 10.20472%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 14.4%;
        margin-left: 0%;
    }
    .con10_top2nd {
        width: 48.7612%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0%;
    }
    .con10_top3rd {
        width: 87.0735%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.3%;
        margin-left: 0%;
    }
    .con10_top4th {
        margin-top: 5%;
        margin-left: 0%;
        margin-bottom: 11.2%;
        width: 68%;
        text-align: center;
    }
    .con6_mid_swiper_6 {
        margin-top: 5%;
        margin-left: 0%;
        width: 224%;
    }
    .con6_mid_swiper_1_slide_p_con6 {
        width: 70vw;
        height: 43vw;
        border-radius: 2vw;
        overflow: hidden;
    }
    .con10 .con7_next {
        right: 1% !important;
        top: unset !important;
        width: 8vw !important;
        height: 8vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 31.7% !important;
        bottom: 43.4%;
        transition: 0.4s background;
    }
    .con10 .con7_prev {
        left: 1% !important;
        top: unset !important;
        width: 8vw !important;
        height: 8vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 31.7% !important;
        bottom: 43.4%;
        transition: 0.4s background;
    }
    .con11_top {
        width: 49.1181%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con11_top2nd {
        width: 79.1312%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.8%;
        margin-left: 0%;
    }
    .con11_top3rd{
        margin-left: 0%;
        text-align: center;
        width: 75%;
        margin-top: 3%;
    }
    .con11_top4thitem {
        width: 86.1557%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 1% 2%;
    }
    .con11_top4thitemab{
        display: none;
    }
    .con11_top4th {
        width: 91%;
        margin-top: 3.3%;
        margin-bottom: 9.2%;
    }
    .con12_top {
        width: 71.895%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con12_top_2nd {
        width: 81.5617%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0%;
    }
    .con12_top_3rd {
        width: 65.4147%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.5%;
        margin-left: 0%;
    }
    .con12_top_4th {
        background: url("/images/con13_12.png") center center / cover no-repeat;
        margin-top: 4.6%;
        margin-left: 0%;
        padding: 5% 0;
        height: 94.4vw;
        align-items: flex-start;
    }
    .con12_top_4th_item {
        width: 34.8635%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 3% 1%;
        flex-direction: column;
    }
    .con12_top_4th_item_mid {
        width: 85.5222%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -4%;
        margin-left: 0%;
        margin-bottom: -7%;
        height: 39.3vw;
        overflow: hidden;
    }
    .con12_top_5th {
        margin-top: 3.75%;
        flex-direction: column;
        margin-bottom: 6.9%;
    }
    .con12_top_5thitem {
        width: 85.2835%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 6% 1%;
    }
    .con13_con_top {
        width: 77.0582%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con13_con_top2nd {
        width: 67.445%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.8%;
        margin-left: 0%;
    }
    .con14_top {
        width: 57.8005%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 17%;
        margin-left: 0;
    }
    .con14_top_2nd {
        width: 44.168%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
        margin-left: 0;
    }
    .con14_top_3rd {
        width: 53.4226%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
        margin-left: 0;
    }
    .con14_top_4th {
        margin-top: 4.1%;
        margin-left: 0%;
        width: 75.5%;
        text-align: center;
    }
    .con14_top_5th {
        width: 49.5932%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4.45%;
        margin-left: 0;
        margin-bottom: 17%;
    }
    .form{
        position: relative !important;
    }
    .form {
        border-radius: unset;
        border: 1px solid var(--mc);
        width: 87%;
        top: 10%;
        position: relative !important;
        right: unset;
        margin-bottom: 28%;
    }
    .form_row_imput {
        width: 70%;
        height: 7.8vw;
        background: transparent;
        font-size: 3.2vw;
        font-family: 'Pretendard variable';
    }
    .form_row_label {
        color: black;
        white-space: nowrap;
        font-size: 3.2vw;
        width: 22% !important;
    }
    .form_row_label {
        font-family: pretendard variable !important;
    }
    .form_row_imput_radio {
        width: 34%;
        border-radius: unset;
        height: 7.5vw;
        border-radius: 0.5vw;
    }
    .form_agree_span {
        font-size: 3vw;
        font-family: Pretendard-regular !important;
        color: black;
    }
    .form_agree_check {
        width: 3vw;
        height: 3vw;
    }
    .form_agree_check:checked::after {
        width: 2.3vw;
        height: 2.3vw;
    }
    .form_row_label_required::after {
        content: '*';
        font-family: Pretendard-regular;
        color: #cb1f39;
        white-space: nowrap;
        font-size: 3.1vw;
        position: absolute;
        right: 100%;
        width: 0%;
        bottom: 40%;
    }
    .form_submit {
        display: flex;
        justify-content: center;
        align-items: center;
        background: unset;
        padding: 0;
        width: 100%;
        height: 9.5vw;
        background: var(--mc);
        color: white;
        position: relative !important;
        margin-bottom: 0;
        font-size: 1.6vw;
        font-family: pretendard-bold;
        border-radius: 0;
        padding-top: 0;
        padding-bottom: 0;
        cursor: pointer;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
        top: 104%;
        position: absolute !important;
    }
    .form_submitab{
        width: 33.0219%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .form_row_imput_radio_1::before {
        content: '유';
        font-family: pretendard variable !important;
        position: absolute;
        font-weight: 600;
        color: black;
        font-size: 3.3vw;
    }
    .form_row_imput_radio_2::before {
        content: '무';
        font-family: pretendard variable !important;
        position: absolute;
        font-weight: 600;
        color: black;
        font-size: 3.3vw;
    }
    .form_row_label {
        color: black;
        white-space: nowrap;
        font-size: 3.2vw;
        width: 31% !important;
    }
    .form_row_imput_radio {
        background: #80808026;
    }
    .con14ab {
        width: 68.8215%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -17%;
        left: unset;
    }
    .form {
        border-radius: unset;
        border: 1px solid var(--mc);
        width: 87%;
        top: 10%;
        position: relative !important;
        right: unset;
        margin-bottom: 35%;
        margin-top: -11%;
    }

    .con6_top_2ndcon {
        margin-top: 3%;
        width: 300%;
    }
    .con11_top2ndcon {
        margin-top: 1.5%;
        width: 300%;
    }
    .con11bg{
        display: none !important;
    }
    .con11_top4thitemab{
        display: none !important;
    }
    .con13_con_top {
        width: 47.0582%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con14_top {
        width: 46.8005%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16%;
        margin-left: 0;
    }
    
    

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .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%;
    margin-top: 2%;
}    

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

        .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;
    }
    
    .con07_menu_wrap {
        height: 103.8vw;
    }
.con07_tab_h {
    overflow: hidden;
    bottom: 0;
    width: 74.0715%;
    display: flex
;
    justify-content: center;
    align-items: center;
}
    

.con17_mid_map_search_mid input {
    margin-top: 0%;
    border: #291e14 1px solid !important;
}
    .popup {
        background: white;
    }
.popup2_con {
    margin-top: 0%;
    margin-left: 0%;
    position: fixed;
    top: unset;
    width: 92%;
    height: 168vw;
    background: white;
    border-radius: 1vw;
}
.popup2 .popup_close {
    width: 6.80634% !important;
}    
    .popup2_img{
            width: 78.5931%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0%;
    margin-left: 0%;
    right: unset;
    height: 46vw;
    top: 9%;
    overflow: hidden;
    }
.popup2_txt_con {
    width: 90%;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5%;
}
.popup2_txt_con {
    width: 90%;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: 0%;
    top: 12%;
}
.popup2_txt_con_content_itemqq {
    width: 5.43902%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 101.5%;
}
.popup2_txt_con_content {
    margin-top: 0%;
    margin-left: 0%;
    height: 82vw;
    width: 93%;
    overflow-y: scroll;
    margin-bottom: 6%;
}    
.popup2_txt_con_content_itemq {
    margin-top: 3%;
    margin-left: 8%;
}    
.popup2_txt_con {
    width: 90%;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: 0%;
    top: 16%;
}
    
.popup2_img {
    width: 78.5931%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: unset;
    height: 46vw;
    top: 9%;
    overflow: hidden;
}    
.con9_top_4th {
    font-size: 1.2vw;
    margin-bottom: 9%;
    margin-top: 10%;
}
.menu_con .con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 7vw !important;
    height: 7vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 4.7% !important;
    bottom: 33.4%;
    transition: 0.4s background;
}    
.menu_con .con7_next {
    right: 1% !important;
    top: unset !important;
    width: 7vw !important;
    height: 7vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 4.7% !important;
    bottom: 33.4%;
    transition: 0.4s background;
}    
.con1_top_6th_itemab {
    margin-top: 0%;
    margin-left: 0%;
    top: 127%;
    white-space: nowrap;
}    
    .con2ab5{
        display: none;
    }
    .con2ab6{
        display: none;
    }
.con1bg {
    filter: brightness(0.23);
    width: 270%;
}    
    .con8ab{
        display: none;
    }
    .con10_swiper_div_y{
        width: 97% !important;
    }
    .con6_top_3rd_itembgab{
    font-size: 3.8vw;
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab4{
        opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(-29%, -3%);
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab5{
        opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(-28%, 7%);
}
.con6_mid_swiper_1_slide.swiper-slide-active .con6_mid_swiper_1_slide_p_con5ab6 {
    opacity: 1;
    left: 0%;
    top: 0%;
    transform: translate(-13%, 60%);
}
.con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: 23vw;
    font-family: pretendard-regular;
}
    
    .con17_mid_map_search_item_title {
    width: 83%;
    margin-left: 12%;
    margin-top: 10%;
    font-family: pretendard-regular !important;
}
.con13_con_top2nd {
    margin-top: 0.8%;
}
    
.con13_con_top2nd1 {
    width: 62.9325%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    margin-left: 0%;
}    
.con13_con_top2nd2 {
    width: 82.8442%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
}    
    
}


