/* ============ 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: -155%;*/
/*    pointer-events: none;*/
/*}*/
/* ============ Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;500;600;700&display=swap");

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

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

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

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


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


@keyframes headlightBlink {
    0% {
        opacity: 0.2;
    }
    15% {
        opacity: 0.8;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0.7;
    }
    55% {
        opacity: 1;
    }
    70% {
        opacity: 0.6;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

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

    }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marquee2 {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
@keyframes marqueeX {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
@keyframes marqueeY {
    from { transform: translateY(0); }
    to   { transform: translateY(-100%); }
}

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

@keyframes soul_out {
    0% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-50%); }
}

@keyframes ddm3 {
    0% { transform: scale(1); }
    50% { transform: rotate(-2deg); }
    100% { transform: scale(1.05); }
}
@keyframes ddm4 {
    0% { transform: scale(1); }
    25% { transform: rotate(-2deg); }
    50% { transform: scale(1.05); }
    75% { transform: rotate(2deg); }
    100% { transform: scale(1); }
}

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

@keyframes rotate_img10deg {
    0%,49% { transform: rotate(10deg); }
    50%,99% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}


@keyframes rotate_img5deg {
    0%,49% { transform: rotate(5deg); }
    50%,99% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

@keyframes opazoom {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.opazoom { animation: opazoom 1.5s infinite; }

@keyframes ani_scale {
    0% { transform: scale(1); }
    50% { transform: matrix(1.1, 0.01, 0.01, 1.2, 0, 0); }
    100% { transform: scale(1); }
}
@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes blk {
    0%,30% { opacity: 0; }
    31%,99% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes blk2 {
    0%,49% { opacity: 0; }
    50%,99% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes blk3 {
    0%,24% { opacity: 1; }
    25%,99% { opacity: 0; }
    100% { opacity: 1; }
}

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

@keyframes ball   { 0% { bottom: 0; } 100% { bottom: 20px; } }
@keyframes ddm    { 0% { transform: scale(1); } 50% { transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -30); } 100% { transform: scale(1); } }
@keyframes ddm_m  { 0% { transform: scale(1); } 50% { transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -15); } 100% { transform: scale(1); } }
@keyframes ddm_m2 { 0% { transform: scale(1); } 50% { transform: matrix(1.15, 0.01, 0.01, 1.15, 0, 30); } 100% { transform: scale(1); } }

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

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

@keyframes ddm2   { 0% { transform: scale(1); } 50% { transform: translateY(20px); } 100% { transform: scale(1.02); } }
@keyframes ddm2X  { 0% { transform: scale(1); } 50% { transform: translateX(-100%); } 100% { transform: scale(1.02); } }
@keyframes ddm2Xhalf { 0% { transform: scale(1); } 50% { transform: translateX(-50%); } 100% { transform: scale(1.02); } }

@keyframes uitLineMove {
    0%   { stroke-dashoffset: 300.292; }
    100% { stroke-dashoffset: 110; }
}
@keyframes rotate_img10deg {
    0% {
        transform: rotate(10deg);
    }
    49% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    99% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(10deg);
    }
}
@keyframes hand {
    0%   { transform: translateY(-0.5%); }
    25%  { transform: translateY(1%); }
    50%  { transform: translate(0.5%, -1%); }
    75%  { transform: translate(1%, 0.5%); }
    100% { transform: translate(1%, -1%); }
}
@keyframes hand2 {
    0%   { transform: translateY(2%); }
    25%  { transform: translateY(-1%); }
    50%  { transform: translate(-1%, 2%); }
    75%  { transform: translate(2%, 1%); }
    100% { transform: translateY(2%); }
}

@keyframes bg-position {
    0%   { background-position: bottom; }
    25%  { background-position: center; }
    50%  { background-position: inherit; }
    75%  { background-position: center; }
    100% { background-position: bottom; }
}

/* ❗️기존 smoke에 있던 random()은 CSS 문법이 아니므로 제거/치환 */
@keyframes smoke {
    0% {
        transform: translate(0, 30%) rotate(0);
        opacity: 0.2;
    }
    25% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
        opacity: 1;
    }
    75% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
        opacity: 1;
    }
    100% {
        transform: translate(calc(random() * 100vw), 200vh) rotate(0) translateX(70px);
        opacity: 0.2;
    }
}
@keyframes light {

    0%,31%,34%,39%,42%,47% { opacity: 0; }
    5%,30%,35%,38%,43%,46% { opacity: 0.4; }
    50%,55%,60%,67%,51%,54%,68%,100% { opacity: 1; }
    70% { opacity: 0.2; }
}
@keyframes shakeAndFall {
    0% {
        transform: translate(0, -100%) rotate(0);
        opacity: 0;
    }
}

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

@keyframes backgroundchange {
    0%   { background: url(/images/con11_07.png) no-repeat center / contain; }
    25%  { background: url(/images/con11_08.png) no-repeat center / contain; }
    50%  { background: url(/images/con11_09.png) no-repeat center / contain; }
    75%  { background: url(/images/con11_10.png) no-repeat center / contain; }
    100% { background: url(/images/con11_07.png) no-repeat center / contain; }
}
@keyframes opa {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes backgroundchange_2 {
    0%   { background: url(/images/con08_07.png) no-repeat center / contain; }
    20%  { background: url(/images/con08_08.png) no-repeat center / contain; }
    40%  { background: url(/images/con08_09.png) no-repeat center / contain; }
    60%  { background: url(/images/con08_10.png) no-repeat center / contain; }
    80%  { background: url(/images/con08_11.png) no-repeat center / contain; }
    100% {
        background: url(/images/con08_07.png) no-repeat center / contain;
    }
}

@keyframes rotateAnimation {
    0% { transform: rotate(-1deg); }
    40% { transform: rotate(1deg); }
    60% { transform: rotate(2deg); }
    80% { transform: rotate(-1deg); }
    100% { transform: rotate(1deg); }
}

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

.main_top{
    margin-top: 12.5%;
    margin-left: 0%;
}
.main_top_2nd{
    margin-top: 1%;
    margin-left: 0%;
    text-align: center;
}
.main_top_3rd{
    margin-top: 0.5%;
    margin-left: 0%;
}
.main_top_4th{
    margin-top: -1.5%;
    font-size: 10vw;
    mix-blend-mode: color-burn;
}
.main_top_5th{
    width: 57.1654%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -8.5%;
    margin-left: 0%;
    z-index: 4;
}
.main_top_5thab2{
    width: 90.9091%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    새ㅔ: ㅔ;
    top: 6%;
}
.main_top_6th{
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -16%;
    margin-left: 0%;
}
.main_top_5thab{
    width: 126.905%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -5%;
    bottom: -22%;

    transform-origin: 50% 100%;            /* 불의 밑부분을 고정점으로 */
    filter: drop-shadow(0 6px 14px rgba(255,120,40,.45));
    animation:
            flame-flicker 2900ms ease-in-out infinite,
            heat-haze 4800ms ease-in-out infinite,
            luminosity 5300ms steps(12,end) infinite;

    will-change: transform, filter, opacity;
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;


}

/* 1) 불의 미세 흔들림(기본 일렁임) */
@keyframes flame-flicker{
    0%   { transform: translateY(0px)  scaleY(1)    scaleX(1)    skewX(0deg); }
    20%  { transform: translateY(-0.5px) scaleY(1.03) scaleX(.992) skewX(.6deg); }
    40%  { transform: translateY(0.6px) scaleY(.985) scaleX(1.006) skewX(-.4deg); }
    60%  { transform: translateY(-1px)  scaleY(1.04) scaleX(.988) skewX(.8deg); }
    80%  { transform: translateY(0.4px) scaleY(.992) scaleX(1.008) skewX(-.3deg); }
    100% { transform: translateY(0px)   scaleY(1)    scaleX(1)    skewX(0deg); }
}

/* 2) 열기 왜곡(가벼운 블러/채도 흔들림) */
@keyframes heat-haze{
    0%   { filter: drop-shadow(0 6px 14px rgba(255,120,40,.45)) blur(0px) saturate(1) hue-rotate(0deg); }
    25%  { filter: drop-shadow(0 7px 16px rgba(255,120,40,.50)) blur(.3px) saturate(1.08) hue-rotate(4deg); }
    50%  { filter: drop-shadow(0 5px 14px rgba(255,120,40,.42)) blur(.6px) saturate(1.15) hue-rotate(2deg); }
    75%  { filter: drop-shadow(0 8px 18px rgba(255,120,40,.52)) blur(.4px) saturate(1.06) hue-rotate(5deg); }
    100% { filter: drop-shadow(0 6px 14px rgba(255,120,40,.45)) blur(0px) saturate(1) hue-rotate(0deg); }
}

/* 3) 광량 깜빡임(밝기/불투명도 펄스) */
@keyframes luminosity{
    0%   { opacity: 1; }
    8%   { opacity: .92; }
    16%  { opacity: 1; }
    28%  { opacity: .88; }
    40%  { opacity: 1; }
    55%  { opacity: .9; }
    72%  { opacity: 1; }
    86%  { opacity: .93; }
    100% { opacity: 1; }
}

/* 상단 공기 아지랑이 같은 일렁임 */
@keyframes shimmer{
    0%   { transform: translateY(0) scaleY(1); opacity:.55; filter: blur(6px) saturate(1.05); }
    45%  { transform: translateY(-3%) scaleY(1.06); opacity:.75; filter: blur(7px) saturate(1.12); }
    70%  { transform: translateY(-1%) scaleY(1.02); opacity:.6;  filter: blur(6.5px) saturate(1.08); }
    100% { transform: translateY(0) scaleY(1); opacity:.55; filter: blur(6px) saturate(1.05); }
}


.mainab{
    width: 24.357%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
    top: 24%;
    animation: sway4 2s infinite;
}
.main_top_6thab{
    width: 20.4688%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 97%;
    left: -3%;
}
.main_top_5thab2ab{
    width: 91.5152%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 6%;
    animation: smoke 2s infinite;
}

.mainab1{
    width: 100%;
    top: 9.9%;
    border-bottom: 1px solid #00000085;
}
.mainab2{
    width: 100%;
    top: 10.6%;
    border-bottom: 1px solid #000000bf;
}
.mainab3{
    left: 2.7%;
    height: 100%;
    border-right: 1px solid #000000bf;
}
.mainab4{
    right: 2.7%;
    height: 100%;
    border-right: 1px solid #000000bf;
}
.con1_left{
    height: 44.5vw;
    overflow: hidden;
    z-index: 2;
}
.con1_right{
    height: 44.5vw;
    z-index: 2;
    overflow: hidden;

}
.con1_leftab{
    width: 59.2865%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: -30%;
}
.con1_rightab{
    width: 59.2865%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -30%;
}
.con1_rightab2{
    width: 21.1962%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    left: 25%;
    top: 37%;
}
.con1_leftab2{
    width: 21.1962%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 26%;
    top: 37.5%;
}

.con2_top{
    margin-top: 11%;
    margin-left: 0%;
    width: 75%;
}
.con2_top2nd{
    margin-top: 0%;
    margin-left: 0%;
    width: 75.5%;
}
.con2_top3rd{
    margin-top: 4%;
    margin-left: 0%;
    width: 75.3%;
    margin-bottom: 11%;
}
.con2ab{
    width: 45.0394%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 3%;
}
.con2_right{
    height: 100%;
    left: 50%;
    overflow: hidden;
}
.con2_rightab2{
    width: 99.6852%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 42%;
}
.con2_rightab2ab{
    width: 41.7895%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 66%;
    z-index: 3;
}
.con2_rightab2ab2{
    width: 59.4737%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 58%;
    right: 0%;
}
.con2_rightab{
    width: 145.016%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0%;
}
.con2_rightab1st{
    width: 12.277%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 1%;
    bottom: 54%;
}
.con2ab2{
    width: 25.5118%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -6%;
    right: 39%;
}
.con3_top{
    margin-top: 9.5%;
    margin-left: 0%;
    z-index: 2;
    text-align: center;
}

.con3_top2ndab {
    width: 21vw;
    background: var(--tc);
    height: 5vw;
    overflow: hidden;
    bottom: unset;
    margin-top: -2%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con3_top2nd{
    width: 71.5651%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -7%;
}
.con3_top3rd{
    width: 24.1995%;
    display: flex;
    justify-content: center;
    z-index: 2;
    align-items: center;
    margin-top: 2%;
    margin-left: 0%;
}
.con3_top3rdab4{
    width: 84.433%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 122%;
    top: 6%;
}
.con3_top3rdab4ab{
    width: 120.478%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 84%;
}
.con3_top3rdab4abab{
    width: 18.55%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 9%;
    top: 49%;
}
.con3_top4th{
    width: 50.3412%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -19%;
    margin-left: 0%;
    margin-bottom: -19.5%;
}
.con3_top3rdab2{
    margin-top: 0%;
    margin-left: 0%;
    left: -107%;
    top: 16%;
    font-size: 3.3vw;
}
.con3_top3rdab2ab{
    margin-top: 0%;
    margin-left: 0%;
    white-space: nowrap;
    bottom: 105%;
}
.con3_top3rdab3{
    left: -107%;
    top: 58%;
    font-size: 3.3vw;
}
.con3_top3rdab3ab{
    white-space: nowrap;
    bottom: 95%;
}
.con3_top3rdab3ab2{
    margin-top: 0%;
    margin-left: 0%;
    left: 107%;
    white-space: nowrap;
    bottom: 17%;
}
.con3_top3rdab{
    width: 25.395%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 21%;
    left: 57%;
}
.con3_top4thab{
    width: 94.5018%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 15%;
}
.con3_ab{
    border-top: 1px solid var(--tc);
    top: 2%;
}
.con3_ab2{
    border-top: 1px solid var(--tc);
    top: 2.4%;
}
.con4_top{
    margin-top: 9%;
    margin-left: 0%;
}
.con4_top2nd{
    margin-top: 0.4%;
    margin-left: 0%;
    font-size: 3.4vw;
}
.con4_topab{
    width: 12.021%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1%;
    margin-left: 0%;
    left: 68.3%;
}
.con4_top3rd{
    margin-top: 3%;
    margin-left: 0%;
}
.con4_top4th{
    margin-top: 2.4%;
    margin-left: 0%;
}
.con4_top4th_item{
    width: 23.6745%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
     flex-direction: column;
}
.con4_top4th_itemab{
    top: 0.1%;
}
.con4_top4th_item{
    width: 23.6745%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    height: 22.5vw;
    border: 1px solid var(--mc);
    background: white;
    margin: 0 0.9%;
}
.con4_top4th_itemtop{
    margin-top: 53%;
    margin-left: 0%;
}
.con4_top4th_itemtop2nd{
    margin-top: 6%;
    position: relative;
    width: 58%;
}
.con4_top4th_itemtop3rd{
    margin-top: 6%;
    position: relative;
    width: 58%;
}
.con4_top4th_itemtop2ndab{
    margin-top: 0%;
    margin-left: 0%;
    position: absolute;
    left: 62%;
    bottom: 0;
}
.con4_top4th_itemtop3rdab{
    width: 53.4351%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 55%;
    top: -63%;
}
.con4_top4th {
    margin-top: 2.4%;
    margin-left: 0%;
    margin-bottom: 6.8%;
    z-index: 3;
}
.con4_ab2{
    width: 49.8688%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 39%;
    right: -13%;
}
.con4ab{
    width: 25.7743%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: sway4 infinite 2s;
    left: 0;
    top: 11%;
}
.con4abab{
    width: 55.6008%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 10%;
    right: 3%;
    animation: smoke 2s infinite;
}

.con5_top{
    width: 13.5433%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    margin-left: 0%;
}
.con5_topab{
    width: 84.1085%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    overflow: hidden;
    align-items: center;
    margin-top: -10%;
    margin-left: 0%;
}
.con5_top_2nd{
    margin-top: -2%;
    margin-left: 0%;
    font-weight: 600;
    text-align: center;
    font-size: 3.5vw;
}
.con5_top_3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con5_top_4th{
    margin-top: 3%;
}
.con5_top_4thitem{
    width: 15.853%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0 2%;
}
.con5_top_4thitemab{
    width: 36.4238%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 79%;
    top: 16%;
}
.con5_top_5th{
    margin-top: 2.5%;
    margin-left: 0%;

}
.con5_top_6th{
    margin-top: 3.3%;
    margin-left: 0%;
    font-size: 0.8vw;
    margin-bottom: 4.5%;
}
.con5ab{
    width: 26.2992%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -0.5%;
    right: -7.3%;
}
.con6con{
    background: white;
    width: 94.4%;
}
.con6top{
    width: 96.7742%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5%;
    margin-left: 0%;
}
.con6top2nd{
    margin-top: 6.3%;
    margin-left: 0%;
    text-align: center;
}
.con6top3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con6con_item1{
    background: #f5efe3;
    position: relative !important;
}
.con6con_item_con{
    margin-top: 2.5%;
    margin-left: 0%;
}
.con6con_item{
    width: 80%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 100%;
}
.con6con_item1_top{
    margin-top: 3%;
    margin-left: 0%;
 }
.con6con_item1_top2nd{
    margin-top: 0%;
    margin-left: 0%;
    text-align: center;
}
.con6con_item1_top3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con6con_item1_top4th{
    margin-top: 2%;
}
.con6con_item1_top4th1{
    width: 38.1515%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con6con_item1_top4th2{
    width: 38.082%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 9%;
}
.con6con_item1_bt{
    margin-top: 2.4%;
    margin-left: 0%;
    border: 1px solid black;
    border-left: unset;
    border-right: unset;
}
.con6con_item1_bt1{
    margin-top: 0%;
    margin-left: 0%;
    text-align: center;
    margin: 1.4% 0;
}
.con6con_item1_top4th1ab2{
    width: 23.8616%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: -8%;
    top: -2%;
}
.con6con_item1_top4th1ab{
    width: 33.5155%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 116%;
    left: -7%;
}
.con6con_item1ab{
    width: 3.96108%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 63%;
}
.con6con_item1_top4th2ab{
    width: 33.5766%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 117%;
    right: -11%;
}
.con6con_item2_top{
    margin-top: 14.5%;
    margin-left: 0%;
    width: 82%;
}
.con6con_item2_top2nd{
    margin-top: 1%;
    margin-left: 0%;
    width: 82%;
}

.con6con_item2_top3rd{
    margin-top: 9.5%;
    margin-left: 0%;
    width: 82%;
    margin-bottom: 12%;
}
.con6con_item2ab2{
    width: 21.4732%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
}
.con6con_item2ab2ab{
    margin-left: 0%;
    text-align: center;
    bottom: 45%;
}
.con6con_item2ab3{
    width: 56.706%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: -11%;
    bottom: -13%;
}
.con6con_item2ab{
    width: 18.3461%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 35%;
}
.con6con_item2abab2{
    width: 40.1515%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 70%;
}
.con6con_item2abab{
    margin-top: 0%;
    margin-left: 0%;
    bottom: 121%;
}
.con6con_item2ab3ab{
    width: 67.402%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 30%;
    animation: smoke 2s infinite;
}

.con6con_item2ab1{
    left: 39.3%;
    height: 100%;
    border-left: 1px solid white;
}
.con6con_item2ab2nd{
    right: 39.3%;
    height: 100%;
    border-left: 1px solid white;
}
.con6con_item3_top{
    margin-top: 13.5%;
    margin-left: 0%;
    z-index: 2;
}
.con6con_item3_top2nd{
    margin-top: 1%;
    margin-left: 0%;
    text-align: center;
}
.con6con_item3_top3rd{
    margin-top: 5%;
    margin-left: 0%;
}
.con6con_item3_top4th{
    margin-top: 1.5%;
    margin-left: 0%;
    text-align: center;
}
.con6con_item3_top4th{
    margin-top: 1.5%;
    margin-left: 0%;
    text-align: center;
    margin-bottom: 9%;
}
.con6con_item3ab{
    width: 96.1779%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 17%;
}
.con6con_item3ab22{
    width: 38.9159%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -22%;
    right: -7%;
}
.con6con_item3ab23{
    width: 33.9819%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
    bottom: 12%;
}
.con6con_item3{
    background: black;
}
.con6con_item3ab23ab{
    width: 59.1002%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
    bottom: 19%;
    animation: smoke 2s infinite;
}
.con6con_item3ab2{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-left: 0%;
    bottom: 0%;
}
.con7con{
    width: 33.7008%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 3;
    margin: 6.1% 0;
}
.con7conbest{
    height: 100%;
}
.con7conmenu{
    height: 100%;
}
.con7conab{
    width: 16.5109%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -8%;
    z-index: 1;
    cursor: pointer;
}
.con7conab2{
    cursor: pointer;
    width: 16.5109%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -8%;
    z-index: 1;
}
.con7ab{
    left: 6%;
    width: 33.5vw;
    height: 33.5vw;
    border-radius: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.con7ab_top{
    margin-top: 0%;
    margin-left: 0%;
    width: 59%;
    margin-top: 26%;
}
.con7ab_top2nd{
    margin-top: 2.5%;
    margin-left: 0%;
    width: 62%;
}
.con7ab_top3rd{
    margin-top: 4%;
    margin-left: 0%;
    width: 61%;
}
.con7ab_top4th{
    margin-top: 5%;
    margin-left: 0%;
    width: 61%;
}
.con7conright{
    width: 50%;
    left: 50%;
    height: 73%;
    border: 1px solid black;
}
.con7conrightbest{
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
.con7conrightbest_item{
    height: 8vw;
    width: 88%;
    border-bottom: 1px solid black;
    cursor: pointer;
    transition: 0.3s all;
}
.con7conrightbest_item_top{
    margin-top: 0%;
    margin-left: 0%;
    transition: 0.3s all;
    top: 42%;
    left: 49%;
}
.con7conrightbest_item:last-child{
    border-bottom: unset;
}
.con7conrightbest_item_on{
    height: 9.2vw;
    background: var(--tc);
}
.con7conrightbest_item_on .con7conrightbest_item_top{
    color: white;
    top: 25%;
}
.con7conrightbest_itemab{
    opacity: 0;
    width: 6.20525%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 11%;
    left: 42%;
    transition: 0.3s all;
    rotate: -20deg;
    transform-origin: bottom;
}
.con7conrightbest_item_top2nd{
    opacity: 0;
    color: white;
    top: 64%;
    left: 49%;
    font-size: 0.9vw;
    transition: 0.3s all;
}

.con7conrightbest_item_on .con7conrightbest_item_top2nd{
    color: white;
    top: 52%;
    opacity: 1;

}
.con7conrightbest_item_on .con7conrightbest_itemab{
    top: 21%;
    opacity: 1;
    rotate: 0deg;
transition-delay: 0.2s;
}
.con8_top{
    width: 13.5433%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    margin-left: 0%;
}
.con8_top_2nd{
    margin-top: -1.7%;
    margin-left: 0%;
    text-align: center;
}
.con8_top_3rd{
    margin-top: 1.3%;
    margin-left: 0%;
}

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

.con7_prev {
    top: unset !important;
    width: 3.3vw !important;
    height: 3.3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 32% !important;
    bottom: 43%;
    transition: 0.4s background;
}
.con7_next {
    top: unset !important;
    width: 3.3vw !important;
    height: 3.3vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 32% !important;
    bottom: 43%;
    transition: 0.4s background;
}

.con6_mid_swiper_1{
    margin-top: 3%;
    margin-left: 0%;
    width: 137%;
}
.con6_mid_swiper_1_slide{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.con6_mid_swiper_1_slide_p_con1{
    width: 35.5vw;
    box-sizing: border-box;
    border: 0.5vw solid var(--tc);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: white;
}
.con6_mid_swiper_1_slide_p_con1top{
    margin-top: 0%;
    margin-left: 0%;
    font-family: var(--sf);
    font-size: 1.5vw;
    font-weight: 600;
    padding: 5.5% 0;
}
.con6_mid_swiper_1_slide_p_con1top3rd_itemab{
    position: absolute;
}
.con6_mid_swiper_1_slide_p_con1top2nd{
    margin-top: 0%;
    margin-left: 0%;
    font-family: var(--mf);
    font-size: 1.1vw;
    text-align: center;
    margin-top: 5%;
}
.con6_mid_swiper_1_slide_p_con1top3rd_item{
    width: 36.0947%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0.5%;
}
.con6_mid_swiper_1_slide_p_con1top3rd{
    margin-top: 5%;
    margin-bottom: 6.5%;
}
.con6_mid_swiper_1_slide_p_con1 ,.con6_mid_swiper_1_slide_p_con1top{
    transition: 0.3s all;
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con1{
    border: 0.5vw solid var(--mc);
}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con1top{
    background: var(--mc);
}
.con6_mid_swiper_1{
    margin-left: 0%;
    margin-bottom: 11.3%;
}
.con8{
    background: url(/images/con08_07.png) no-repeat right / contain;
}
.con8_bt{
    height: 5vw;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}
.con8_btab{
    width: 31.3386%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: -1%;
}
.con8_btabab{
    width: 28.6432%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 3%;
}
.con8_ab{
    width: 31.3386%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -7%;
    left: -5%;
    z-index: 2;
}
.con8_abab{
    width: 107.873%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 20%;
    animation: smoke 2s infinite;
    left: -24%;
}
.con9_top{
    width: 11.811%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9%;
    margin-left: 0%;
}
.con9_top_2nd{
    margin-top: 1.5%;
    margin-left: 0%;
    text-align: center;
}
.con9_top_3rd{
    margin-top: 1.1%;
    margin-left: 0%;
}
.con9_top_4th{
    width: 37.1654%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 0%;
}
.con9_top_5th{
    margin-top: -6%;
}
.con9_top_5thitem{
    width: 6.82415%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4.4%;
}
.con9_top_5thitemab{
    margin-top: 0%;
    margin-left: 0%;
    top: 0;
    transform: translateY(90%);
}
.con9_top_5thitem1ab3{
    width: 171.538%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -12%;
}
.con9_top_5thitemab2{
    width: 114.615%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 10%;
    left: 23%;
}
.con9_top_5thitem2ab3{
    width: 209.231%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -20%;
}
.con9_top_5thitem3ab3{
    width: 192.308%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    bottom: -29%;
    margin-left: 0%;
}
.con9_top_5thitem4ab{
    margin-top: 0%;
    margin-left: 0%;
    top: 61%;
    z-index: 3;
}
.con9_top_5thitem4 > img{
    z-index: 3;
}
.con9_top_5thitem4ab3{
    width: 199.231%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 14%;
    z-index: 3;
}
.con9_top_5thitem4ab4{
    width: 510.769%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 40%;
    top: 0%;
}
.con10{
    width: 94.3%;
}
.con10_top{
    width: 5.30184%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.5%;
    margin-left: 0%;
}
.con10_top_2nd{
    margin-top: 1%;
    margin-left: 0%;
}

.con6_mid_swiper_2{
    width: 180%;
    margin-top: 2%;
}
.con6_mid_swiper_1_slide_p_con2{
    height: 25vw;
    width: 45vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con6_mid_swiper_1_slide_p_con2 {
    height: 24vw;
    width: 47vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con10vid{
    margin-top: 0%;
    margin-left: 0%;
    height: 100%;
    overflow: hidden;
}
.con6_mid_swiper_1_slide_p_con2ab{
    width: 7.15084%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 100%;
    top: 0;
}

.con6_mid_swiper_2 {
    width: 180%;
    margin-top: 2%;
    margin-bottom: 8%;
}

.con10 {
    width: 94.3%;
    margin-bottom: 7%;
}
.con10ab{
    width: 28.4521%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -5%;
    left: -8%;
    z-index: 2;
}
.con11_left_top{
    margin-top: 22.5%;
    margin-left: 0%;
    width: 53%;
    font-size: 2.5vw;
}
.con11_left_top2nd{
    margin-top: 1%;
    margin-left: 0%;
    width: 53%;
    font-size: 3.5vw;
}
.con11_left_top3rd{
    margin-top: 7%;
    margin-left: 0%;
    width: 52%;
}
.con11_left_top4th{
    width: 64.9528%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9%;
    margin-left: 0%;
    margin-bottom: -16%;
}
.con11ab {
    height: 100%;
    right: 11.5%;
    width: 0.03vw;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con11ab2{
    height: 100%;
    right: 10.5%;
    width: 0.03vw;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con11abab{
    width: 9900%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -4300%;
    top: 0;
}
.con11_right{
    justify-content: flex-start;
}
.con11{
    align-items: flex-start;
}
.con11_right_item_top{
    width: 8.07975%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20.3%;
    margin-left: -67%;
}
.con11_right_item_top2nd{
    margin-top: 2.1%;
    margin-left: 0%;
    width: 76%;
    font-size: 1.5vw;
}
.con11_right_item_top3rd{
    margin-top: 8%;
    margin-left: 0%;
    width: 76%;
}
.con11_right_item_top4th{
    width: 75.7608%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7%;
    margin-left: 0%;
    margin-bottom: 14%;
}
.con11_left{
    height: 46.4vw;
}
.con11_right{
    height: 46.4vw;
}

.con11_right_item_3ab{
    width: 18.468%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 57%;
    left: 71%;
}
.con12top{
    padding: 1% 0;
}
.con12top2nd{
    width: 4.19947%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
    margin-left: 0%;
}
.con12bg{
    height: 100%;
    background: #00000069;
}
.con12top2ndab1{
    width: 708.75%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -1%;
    right: -275%;
}
.con12top3rd{
    width: 41.7848%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-left: 0%;
    margin-bottom: -14.3%;
}
.con13_top{
    margin-top: 8%;
    margin-left: 0%;
    text-align: center;
}
.con13_top2nd{
    margin-top: 1%;
    margin-left: 0%;
}
.con13_top3rd{
    width: 64.1995%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.6%;
    margin-left: 0%;
}
.con13_top3rdab{
    width: 3.10711%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 78%;
    left: 73%;
}
.con13_top4th{
    width: 68.6614%;
    display: flex;
    justify-content: center;
    animation: ;
    align-items: center;
    margin-top: -5.3%;
    margin-left: 2%;
    margin-bottom: -28%;
}
.con13_top3rd {
    width: 64.1995%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.6%;
    margin-left: 0%;
    z-index: 2;
}
.con13_top3rdab2{
    margin-top: 0%;
    margin-left: 0%;
    font-size: 2.4vw;
}
.con13_top5th{
    width: 100.787%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -22%;
    margin-left: 0%;
    margin-bottom: 3.3%;
}
.con14_con{
    margin-top: 0%;
    margin-left: 0%;
    background: white;
    width: 98%;
    margin-bottom: 1%;
}
.con14_top{
    margin-top: 8.5%;
    margin-left: 0%;
    width: 77%;
}
.con14_top .line{
    overflow: hidden;
}
.con6_mid_swiper_4{
    margin-top: 3%;
    margin-left: 0%;
    margin-bottom: 8%;
}
.con14vid {
    margin-top: 0%;
    margin-left: 0%;
    width: 42%;
    top: 37%;
    height: 48%;
    border: 1px solid var(--tc);
    z-index: 3;
}

.con14vid video{
    width: 96%;
}
.con14_conab{
    height: 100%;
    right: unset;
    width: 0.03vw;
    background: var(--mc);
    display: flex;
    justify-content: center;
    align-items: center;
}
.con14_conabab{
    width: 9900%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 23%;
}
.con14_conab2{
    margin-top: 0%;
    top: 22.4%;
    margin-left: 0%;
    width: 78%;
    text-align: right;
}
.con14_conab2 .line{
    overflow: hidden;
}
.con14_conab2ab{
    margin-top: 0%;
    margin-left: 0%;
    left: 82.2%;
    bottom: 0%;
}

.con15_top{
    width: 3.88451%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.6%;
    margin-left: 0%;
}
.con15_tops_2nd{
    margin-top: 0.2%;
    margin-left: 0%;
}
.con15_tops_3rd{
    width: 57.3753%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.1%;
    margin-left: 0%;
    margin-bottom: 11.7%;
}
.con15ab{
    width: 23.0971%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
    top: -22%;
}
.con15_tops_3rdab{
    margin-top: 0%;
    margin-left: 0%;
    top: 105%;
    font-size: 0.8vw;
    width: 100%;
}
.con15_tops_3rdab2{
    width: 10.8875%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 18%;
    left: 30%;
}
.con15_tops_3rdab3{
    width: 10.8875%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 28%;
    left: 30%;
}
.con15ab2{
    width: 17.4803%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 84%;
    right: 1%;
}
.con16_con{
    width: 94%;
    background: white;
    border: 1px solid var(--tc);
}
.con16_top{
    margin-top: 7%;
    margin-left: 0%;
}
.con16_top2nd{
    margin-top: 3%;
    width: 88%;
}
.con16_top2nd_item{
    width: 35.3426%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0.3% 3.2%;
}
.con16_top2nd_itemab{
    width: 6.4632%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 106%;
}
.con15ab2 {
    z-index: 3;
    width: 17.4803%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 84%;
    right: 1%;
}
.con16_top2nd_item8ab{
    width: 46.6786%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
    left: 57%;
}
.con16_top2nd{
    margin-top: 3%;
    width: 88%;
    margin-bottom: 5.8%;
}
.con17_top{
    width: 11.5486%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7%;
    margin-left: 0%;
}
.con17_topab{
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -11%;
    margin-left: 0%;
}
.con17_top3rd{
    margin-top: -1.6%;
    margin-left: 0%;
}
.con17_bt{
    height: 17vw;
}
.con17_btab{
    width: 33.8583%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
}
.con17ab{
    width: 10.9186%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 5%;
}
.con18_top{
    margin-top: 9.3%;
    margin-left: 0%;
    width: 73%;
}
.con18_top_2nd{
    margin-top: 1%;
    margin-left: 0%;
    width: 73%;
}
.con18ab{
    width: 50.3937%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 50%;
}
.con18_top_2nd{
    margin-top: 1%;
    margin-left: 0%;
    width: 73%;
    margin-bottom: 24%;
}
.con18ab {
    width: 50.3937%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 50%;
    bottom: 0%;
}






.con15ab3{
    left: 50%;
    flex-direction: column;
    top: 0;
}



.form {
    margin-top: 2%;
    width: 75%;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 0;
    background: transparent !important;
    z-index: 1;
    margin-bottom: 3%;
    right: unset;
    top: 14%;
    left: 13%;
    padding-left: 0;
    background: rgba(255, 255, 255, 0.77);
    padding-bottom: 4%;
}

























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

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

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

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

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

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

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

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

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


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

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


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

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

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


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


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

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



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

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

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

}

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

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

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

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


.main_top_ab_4_con{

}

.main_top_ab_4_con {
    animation: rotate_image 10s infinite linear;
}
.main_top_ab_4 {
    width: 6.28571%;
    display: flex
;
    justify-content: center;
    align-items: center;
    top: 0;
    animation: rotate_image 10s infinite linear reverse;
    left: 97%;
}



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

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


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

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

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

.con15ab3{
    width: 50%;
}
.con15ab3{
    margin-top: 0%;
    margin-left: 0%;
    background: var(--fc);
    width: 36%;
    left: 51.4%;
    top: 5%;
}
.form_row_label::after {
    position: absolute;
    content: '*';
    font-size: 1.7vw;
    left: -12%;
    color: var(--mc);
}
.form {
    margin-top: 18%;
    width: 77%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid transparent;
    padding-top: 0;
    background: transparent !important;
    margin-bottom: 3%;
    right: unset;
    top: 15%;
    left: 13%;
    background: rgba(255, 255, 255, 0.77);
    padding-bottom: 4%;
}
.form_row {
    border-bottom: unset !important;
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
}
.form_row {
    height: 3.4vw;
    justify-content: flex-start;
}
.form_row_imput {
    height: 2.5vw;
    font-family: 'Pretendard-Regular';
    background: #ffffff82;
    border: 1px solid var(--sc);
}
.form {
    margin-top: 0;
}
.con15ab3{
    margin-top: 0%;
    margin-left: 0%;
    background: var(--fc);
    width: 36%;
    left: 51.4%;
    top: 5%;
    height: 41.5vw;
    justify-content: flex-start;
    display: flex;
    align-items: flex-start;
}
.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 1.5%;
    width: 33%;
    color: white;
    position: relative !important;
    margin-bottom: 17%;
    font-size: 1.3vw;
    font-family: var(--sf);
    border-radius: 0;
    padding-top: 0.5%;
    padding-bottom: 2%;
    cursor: pointer;
    HEIGHT: 3.4VW;
    width: 100%;
    background: var(--mc);
    box-sizing: border-box;
    position: absolute !important;
    top: 112%;
    padding-bottom: 0;
    left: 0;
    font-size: 1.2vw;
    letter-spacing: -0.04vw;
}
.form_row_imput_radio {
    width: 48.8%;
    height: 2.3vw;
    width: 34% !important;
    appearance: none;
    outline: none;
    border: 1px solid var(--sc) !important;
    border-radius: 0.3vw;
    background: white !important;
    text-align: center;
    margin: 0 0.5%;
}
.form_row_imput_radio_1_label {
    left: 39%;
}
.form_row_imput_radio_1_label_2 {
    left: 73.8%;
}
.con15ab3ab{
    width: 103%;
    height: 103%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border: 1px solid var(--sc);
}
.con15ab3abab{
    width: 6.99708%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0%;
    left: 23%;
}
.con15ab3ababcon{
    overflow: hidden;

}
.con15ab3ababcon > img{
    margin-bottom: -11%;
}
.con15ab3ababab{
    margin-top: 0%;
    margin-left: 0%;
    white-space: nowrap;
    left: 111%;
    bottom: 0;
    overflow: hidden;
}
.con15ab3ababab p{
    margin-bottom: -9%;
}
.con12top3rdab{
    width: 73.4878%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    animation: smoke 2s infinite;
    bottom: 5%;
}
.con6_mid_swiper_32nd{
    margin-top: 0%;
    margin-left: 0%;
    pointer-events: none;
    height: 9vw;
    overflow: hidden;
    z-index: 2;
}
.con13_top3rd {
    width: 64.1995%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4.6%;
    margin-bottom: 1%;
    margin-left: 0%;
    z-index: 2;
}
.con6_mid_swiper_32nd{
    margin-top: 0%;
    margin-left: 0%;
    top: 33%;
    padding-bottom: 1%;
}
.con6_mid_swiper_1_slide_p_con32nd{
    transition: 0.5s all;
    font-weight: 300;

}
.con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con32nd{
    margin-top: 0%;
    margin-left: 0%;
    font-size: 3vw;
    margin-bottom: -3%;
    color: white;
    font-weight: 700;
}
.con2_rightab1stab{
    left: -7%;
}
.con2_rightab2ab2 {
    animation: sway4 infinite 2s;
}
.con14_conab2ab {
    z-index: 2;
}
.con6con_item1 {
    background: #f5efe3;
    position: relative !important;
    top: unset !important;
}




/* ▼ 전환용 공통 상태 */
.con7con .con7best,
.con7con .con7menu,
.con7conright .con7best,
.con7conright .con7menu {
    opacity: 0;
    transform: scale(0.98);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}

/* ▼ 활성화 시 노출 */
.con7con .is-active,
.con7conright .is-active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    pointer-events: auto;
    transition: opacity .35s ease, transform .35s ease, visibility 0s;
}

/* 접근성: 모션 최소화 존중 */
@media (prefers-reduced-motion: reduce) {
    .con7con .con7best, .con7con .con7menu,
    .con7conright .con7best, .con7conright .con7menu {
        transition: none;
    }
}


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

/* 기본 비노출 */
.con7conbest_item,
.con7conmenu .con7conbest_item {
    opacity: 0;
    transform: scale(0.96);
    visibility: hidden;
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
    pointer-events: none;
}

/* 활성 이미지 */
.con7conbest_item.is-active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    transition: opacity .35s ease, transform .35s ease, visibility 0s;
    pointer-events: auto;
}


.con6_mid_swiper_1_slide_p_con1top3rd_item {
    width: 36.0947%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    margin: 0.5%;
    background: #f9dcb7;
    border: 1px solid #b59160;
    height: 2.3vw;
}
.con6_mid_swiper_1_slide_p_con1top3rd_item2{
    width: 73%;
}
.con6_mid_swiper_1_slide_p_con1top3rd_item3{
    height: 5vw;
}
.con6_mid_swiper_1_slide_p_con1top3rd_item3 .con6_mid_swiper_1_slide_p_con1top3rd_itemab{
    position: relative !important;
}

.con6_mid_swiper_1_slide_p_con1top3rd_item3 {
    height: 5vw;
    flex-direction: column;
}

.con3_ab3{
    border-top: 1px solid var(--tc);
    top: 63.4%;
}

.con6_mid_swiper_1 {
    margin-left: 0%;
    margin-bottom: 10.3%;
}
.con15_tops_3rdab4{
    margin-top: 0%;
    margin-left: 0%;
    bottom: 102%;
    right: 0;
}






































.fixed_popup{
    height: 100vh;
    background: #00000045;
}
.popup {
    width: 50%;
    background: white;
    height: 29vw;
    border-radius: 30px;
    overflow: hidden;
    top: 10%;
    justify-content: flex-start;
}
.popup_top{
    font-size: 1.5vw;
    width: 88%;
    padding-bottom: 3%;
    text-align: center;
    border-bottom: 1px solid #0000002e;
}
.popup > p:nth-child(2){
    font-size: 1.3vw;
    width: 88%;
    margin-top: 5%;
    padding-bottom: 2%;
    text-align: left;
}
.popup_img {
    width: 46.5248%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    height: 100%;
    overflow: hidden;
}
.popup > p:nth-child(4){
    font-size: 0.9vw;
    width: 88%;
    margin-top: 1%;
}
.popup > p:nth-child(5){
    left: 42%;
    width: 58%;
    padding-right: 8%;
    height: 12vw;
    top: 43%;
    box-sizing: border-box;
    font-size: 0.9vw;
    overflow-y: scroll;
}
.fixed_popup{
    position: fixed !important;
    top: 0;
    z-index: 5;
    /*pointer-events: none;*/
    /*opacity: 0;*/
}
.popup_right_1st{
    color: #E3C179;
    width: 78%;
    margin-bottom: 1%;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.2vw;
    margin-top: -6%;
}
.popup_right_2nd{
    font-family: Pretendard-semibold;
    width: 78%;
    font-size: 1.56vw;

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

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


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

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

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




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

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

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

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

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

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


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

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


.con17_mid_map_search_mid {
    background: #0064de;
}


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

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

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

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

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

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




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

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

.popup_top_absol{
        width: 12.4369%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 12%;
    left: 10%;
}
.popup_top_absol_2nd{
        width: 96.6687%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 21%;
    left: 1.5%;
}
.popup_img {
    width: 47.5248%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    height: 31vw;
    overflow: hidden;
}

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


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

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



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



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

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

}

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

}

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

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



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




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

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

.con17_mid_map_search_item_img_img {
    scale: 1.6 !important;
}


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

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

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

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

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

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

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

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

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

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

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


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

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

.popup {
    background: white;
}
.con17bg{
    top: 0;
}
.con17{
    z-index: 3;
}

.con18{
    margin-top: -18%;
    overflow: hidden;
    padding-top: 13%;
}

.con15ab3 {
    margin-top: 0%;
    margin-left: 0%;
    background: var(--fc);
    width: 36%;
    left: 51.4%;
    top: 24%;
    height: 41.5vw;
    justify-content: flex-start;
    display: flex;
    align-items: flex-start;
}

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


.con17_mid_map_search_mid input {
    background: white;
    border-radius: unset;
}

.con17_mid_2ndab{
        margin-top: 0%;
    margin-left: 0%;
    width: 7%;
    height: 95%;
    right: 4%;
    background: var(--sc);
        display: flex
;
    justify-content: center;
    align-items: center;
}

.con17_mid_2ndabab{
    width: 51.2861%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con18ab {
    width: 55.3937%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 50%;
    bottom: 0%;
}


.header_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 9.009%;
    margin-left: 8%;
    padding: 0.9% 0;
}

.con6_mid_swiper_1_slide_p_con1ab{
    width: 32.2679%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -14%;
    left: 82%;
    z-index: 2;    
    opacity: 0;
    transition: 0.3s all;
    
}

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

.con6_mid_swiper_1_slide_p_con2ab2{
        margin-top: 0%;
    margin-left: 0%;
    top: 105%;
    width: 100%;
    border-bottom: 1px solid;
    padding-bottom: 2%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.con15ab3ababab p {
    margin-bottom: -6%;
}
.con14vid video{
    filter: brightness(0.3)
}


.con14vidab{
        width: 44.3878%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 16%;
}
.con14vidab2{
        width: 31.8878%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 48%;
    left: 39%;
}
.con14vidab3{
    width: 31.8878%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 16%;
    top: 62%;
}
.con14vidab4{
        width: 36.0969%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 75%;
    left: 51%;
}
.con14vidab5{
        width: 39.5408%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 68%;
}


.con14vidab4ab {
    margin-top: 0%;
    margin-left: 0%;
    left: 57%;
}

.con15ab3abab {
    bottom: 8%;
}
.con15ab3ababcon > img {
    margin-bottom: 0;
}
.con15ab3ababab {
    overflow: unset;
}
.con15ab3ababab .tf .line {
        overflow: unset;
}    
.mobile-pc { display: none !important; }
/* =========== B=reakpoints ============ */
@media screen and (max-width: 1023px) {
    .pc        { display: none; }
    .tablet    { display: flex; }
    .pc-mobile { display: none; }
    .mobile-pc { display: flex; }
}
@media screen and (max-width: 599px) {

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

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

    .main_top {
        margin-top: 35.5%;
        margin-left: 0%;
    }

    .main_top_4th {
        margin-top: -0.5%;
        font-size: 16vw;
        mix-blend-mode: color-burn;
    }

    .main_top_5th {
        width: 102.1654%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -8.5%;
        margin-left: 0%;
        z-index: 4;
    }
    .main_top {
        margin-top: 58.5%;
        margin-left: 0%;
        font-size: 5.5vw;
    }
    .mainab {
        width: 41.357%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 0;
        top: 10%;
    }
    .main_top {
        margin-top: 74.5%;
        margin-left: 0%;
        font-size: 5.5vw;
    }
    .main_top_6thab {
        width: 40.4688%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 97%;
        left: unset;
        bottom: 1778%;
    }
    .mainab {
        width: 41.357%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 0;
        display: none;
        top: 10%;
    }
    .con1_left {
        height: 62.5vw;
    }
    .con1_right{
        height: 62.5vw;

    }
    .con1_leftab {
        width: 80.2865%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: -40%;
    }
    .con1_rightab {
        width: 80.2865%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: -40%;
    }
    .con1_leftab2 {
        width: 39.1962%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 30%;
        top: 37.5%;
    }
    .con1_rightab2 {
        width: 41.1962%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        left: 25%;
        top: 37%;
    }
    .con1vid{
        margin-top: 0%;
        margin-left: 0%;
        width: 115%;
    }
    .mainab1 {
        width: 100%;
        top: 12.9%;
        border-bottom: 1px solid #00000085;
    }
    .mainab2 {
        width: 100%;
        top: 11.6%;
        border-bottom: 1px solid #000000bf;
    }
    .con1_leftab2 {
        width: 45.1962%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 30%;
        top: 37.5%;
    }
    .con1_rightab2 {
        width: 47.1962%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        left: 25%;
        top: 36%;
    }
    .con2_right {
        height: 100%;
        left: 50%;
        overflow: hidden;
        position: relative;
    }
    .con2_top {
        margin-top: 16%;
        margin-left: 0%;
        width: 75%;
        text-align: center;
    }
    .con2_top2nd{
        margin-top: 0%;
        margin-left: 0%;
        text-align: center;
    }
    .con2_top3rd{
        margin-left: 0%;
        text-align: center;
        width: 96.3%;
    }
    .con2_right{
        height: unset;
        left: unset;
        overflow: hidden;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vw;
    }
    .con3_top {
        margin-top: 15.5%;
        margin-left: 0%;
        z-index: 2;
        text-align: center;
    }
    .con3_top2ndab {
        width: 54vw;
        background: var(--tc);
        height: 14vw;
        overflow: hidden;
        bottom: unset;
        margin-top: -5%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con3_top3rd {
        width: 79.1995%;
        display: flex;
        justify-content: center;
        z-index: 2;
        flex-direction: column;
        align-items: center;
        margin-top: 7%;
        margin-left: 0%;
    }
    .con3_top3rdab2 {
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: unset;
        white-space: nowrap;
        width: 100%;
        font-size: 13.3vw;
        position: relative;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con3_top3rdab2{
        margin-top: 17%;
        margin-left: 0%;
    }
    .con3_top3rdab3 {
        left: unset;
        top: unset;
        font-size: 3.3vw;
        position: relative;
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: unset;
        white-space: nowrap;
        width: 100%;
        font-size: 13.3vw;
        position: relative;
        text-align: center;
        display: flex;
        justify-content: center;
        margin-top: 10%;
        align-items: center;
    }
    .con3_top3rdab4 {
        width: 100.433%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0%;
        left: unset;
        top: unset;
        position: relative;
        margin-bottom: 63%;
    }
    .con3_top4th {
        width: 86.3412%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -33%;
        margin-left: 0%;
        margin-bottom: -35.5%;
    }
    .con3_top3rdab3ab2 {
        margin-top: 0%;
        margin-left: 0%;
        left: 69%;
        white-space: nowrap;
        bottom: 15%;
    }
    .con4_top {
        margin-top: 15%;
        margin-left: 0%;
    }
    .con4_top2nd {
        margin-top: 1.4%;
        margin-left: 0%;
        font-size: 10.4vw;
        text-align: center;
    }
    .con4_top3rd{
        margin-left: 0%;
        width: 90%;
        text-align: center;
    }
    .con4_topab {
        width: 24.021%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -1%;
        margin-left: 0%;
        left: 72.3%;
    }
    .con4_top4th {
        margin-top: 2.4%;
        margin-left: 0%;
        margin-bottom: 6.8%;
        z-index: 3;
        flex-direction: column;
    }
    .con4_top4th_item {
        width: 65.6745%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        height: 67.5vw;
        border: 1px solid var(--mc);
        background: white;
        margin: 1% 0.9%;
    }
    .con4ab {
        width: 39.7743%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: -15%;
        top: 42%;
    }
    .con4_ab2 {
        width: 74.8688%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 84%;
        right: -28%;
    }
    .con4_top4th_item {
        width: 78.6745%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        height: 77.5vw;
        border: 1px solid var(--mc);
        background: white;
        margin: 1% 0.9%;
    }
    .con5_top {
        width: 45.5433%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con5_top_2nd {
        margin-top: -5%;
        margin-left: 0%;
        font-weight: 600;
        text-align: center;
        font-size: 10.5vw;
    }
    .con5_top_3rd{
        margin-left: 0%;
        width: 90%;
        text-align: center;
    }
    .con5_top_4th {
        margin-top: 3%;
        flex-direction: column;
    }
    .con5_top_4thitem {
        width: 75.853%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 0 2%;
        margin-bottom: 2%;
    }
    .con5_top_5th{
        margin-left: 0%;
        text-align: center;
        width: 70%;
        font-weight: 700;
    }
    .con5_top_6th {
        margin-top: 6.3%;
        margin-left: 0%;
        font-size: 2.8vw;
        margin-bottom: 20.5%;
        text-align: center;
        width: 90%;
    }
    .con5{
        background: url(/images/con05_12.jpg) no-repeat center / 873% !important;
    }
    .con5ab {
        width: 38.2992%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -1.5%;
        right: -7.3%;
    }
    .con6top2nd {
        margin-top: 15.3%;
        margin-left: 0%;
        text-align: center;
    }
    .con6con_item {
        width: 92%;
        border: 1px solid black;
        display: flex;
        justify-content: center;
        overflow: hidden;
        align-items: center;
        flex-direction: column;
    }
    .con6con_item1_top {
        margin-top: 6%;
        margin-left: 0%;
    }
    .con6con_item1_top2nd {
        margin-top: 4%;
        margin-left: 0%;
        text-align: center;
    }
    .con6con_item1_top3rd {
        margin-top: 3%;
        margin-left: 0%;
        text-align: center;
    }
    .con6con_item1_top4th {
        margin-top: 2%;
        flex-direction: column;
    }
    .con6con_item1_top4th1 {
        width: 89.1515%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con6con_item1_top4th2 {
        width: 89.082%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0;
    }
    .con6con_item1_top4th {
        margin-top: 22%;
        flex-direction: column;
    }
    .con6con_item1_top4th1ab {
        width: 42.5155%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 113%;
        left: unset;
    }
    .con6con_item1_top4th2ab{
        width: 42.5155%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 113%;
        right: unset;
    }
    .con6con_item1_top4th2 {
        width: 89.082%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 32%;
        margin-left: 0;
        margin-bottom: 11%;
    }
    .con6con_item1_bt1 {
        margin-top: 0%;
        margin-left: 0%;
        text-align: center;
        margin: 6.4% 0;
    }
    .con6con_item1ab {
        width: 18.96108%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 63%;
        display: none;
    }
    .con6con_item2_top {
        margin-top: 14.5%;
        margin-left: 0%;
        width: 82%;
        text-align: center;
    }
    .con6con_item2_top2nd {
        margin-top: 3%;
        margin-left: 0%;
        width: 82%;
        text-align: center;
    }
    .con6con_item2_top3rd {
        margin-top: 9.5%;
        margin-left: 0%;
        width: 82%;
        margin-bottom: 12%;
        text-align: center;
    }
    .con6con_item2_top2nd {
        margin-top: 4%;
        margin-left: 0%;
        width: 82%;
        text-align: center;
    }
    .con6con_item2_top3rd {
        margin-top: 4.5%;
        margin-left: 0%;
        width: 82%;
        margin-bottom: 12%;
        text-align: center;
    }
    .con6con_item2ab{
        position: relative;
    }
    .con6con_item2ab2{
        position: relative;

    }
    .con6con_item2ab2 {
        position: relative;
        width: 52%;
    }
    .con6con_item2ab {
        width: 53.3461%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0%;
        top: 35%;
        margin-bottom: 25%;
    }
    .con6con_item2ab1 {
        left: 12.3%;
        height: 100%;
        border-left: 1px solid white;
    }
    .con6con_item2ab2nd {
        right: 12.3%;
        height: 100%;
        border-left: 1px solid white;
    }
    .con6con_item2ab2 {
        position: relative;
        width: 75.5%;
        left: unset;
    }
    .con6con_item2ab3 {
        width: 163.706%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: unset;
        bottom: -27%;
    }
    .con6con_item2ab2ab {
        margin-left: 0%;
        text-align: center;
        bottom: 44%;
        font-size: 5vw;
    }
    .con6con_item3ab {
        width: 140.1779%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 13%;
    }
    .con6con_item3_top {
        margin-top: 20.5%;
        margin-left: 0%;
        z-index: 2;
    }
    .con6con_item3ab23 {
        width: 33.9819%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        bottom: 12%;
        display: none;
    }
    .con6con_item3ab22 {
        width: 38.9159%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -22%;
        right: -7%;
        display: none;
    }
    .con7ab {
        left: unset;
        width: 90.5vw;
        height: 90.5vw;
        border-radius: 50%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        margin-top: 7%;
        position: relative;
    }
    .con7conright {
        width: 90%;
        left: unset;
        height: 77vw;
        border: 1px solid black;
        position: relative;
    }
    .con7conright {
        width: 90%;
        left: unset;
        height: 77vw;
        border: 1px solid black;
        position: relative;
    }
    .con7con {
        width: 94.7008%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 3;
        margin: 6.1% 0;
        position: relative;
        margin-top: -7%;
    }
    .con7ab > div{
        text-align: center;
    }
    .con7conbest_item{
        width: 93.2083%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con7conrightbest_item{
        height: 15vw;
        width: 100%;
        border-bottom: 1px solid black;
        transition: 0.3s all;
    }
    .con7conrightbest_item_top {
        margin-top: 0%;
        margin-left: 0%;
        transition: 0.3s all;
        top: 42%;
        left: 50%;
        transform: translateX(-50%);
    }

    .con7conrightbest_item_on {
        height: 31.2vw;
        background: var(--tc);
    }

    .con7conrightbest_itemab {
        width: 10.20525%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con7conrightbest_item_on .con7conrightbest_item_top2nd {
        opacity: 0;
        color: white;
        top: 50%;
        left: 26%;
        opacity: 1;
        font-size: 2.9vw;
        transition: 0.3s all;
    }
    .con7conrightbest_item_on .con7conrightbest_item_top {
        color: white;
        top: 25%;
        opacity: 1;
        left: 33%;
    }
    .con7conrightbest_item_on .con7conrightbest_itemab {
        top: 21%;
        opacity: 1;
        rotate: 0deg;
        left: 43%;
        transition-delay: 0.2s;
    }
    .con7conright {
        width: 90%;
        left: unset;
        height: 87vw;
        border: 1px solid black;
        position: relative;
    }
    .con7conrightbest_item_on {
        height: 41.2vw;
        background: var(--tc);
    }
    .con7conrightbest_item_on .con7conrightbest_item_top {
        color: white;
        opacity: 1;
        left: 50%;
        top: 33%;
        transform: translateX(-50%);
    }
    .con7conrightbest_item_on .con7conrightbest_item_top2nd {
        opacity: 0;
        color: white;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        text-align: center;
        font-size: 2.9vw;
        transition: 0.3s all;
    }
    .con7conrightbest_item_on .con7conrightbest_itemab {
        top: 16%;
        opacity: 1;
        rotate: 0deg;
        left: 50%;
        transition-delay: 0.2s;
        transform: translateX(-50%);
    }
    .con8_top {
        width: 37.5433%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con8_top_2nd {
        margin-top: -3.7%;
        margin-left: 0%;
        text-align: center;
    }
    .con8_top_3rd {
        margin-top: 2.3%;
        text-align: center;
        margin-left: 0%;
        width: 80%;
    }
    .con6_mid_swiper_1_slide_p_con1 {
        width: 87.5vw;
    }
    .con6_mid_swiper_1 {
        margin-top: 3%;
        margin-left: 0%;
        width: 234%;
    }
    .con6_mid_swiper_1_slide_p_con1top {
        margin-top: 0%;
        margin-left: 0%;
        font-family: var(--sf);
        font-size: 4vw;
        font-weight: 600;
        padding: 7.5% 0;
    }
    .con6_mid_swiper_1_slide_p_con1top2nd {
        margin-top: 0%;
        margin-left: 0%;
        font-family: var(--mf);
        font-size: 3.3vw;
        text-align: center;
        width: 70%;
        margin-top: 5%;
    }
    .con6_mid_swiper_1_slide_p_con1top2nd {
        margin-top: 0%;
        margin-left: 0%;
        font-family: var(--mf);
        font-size: 3.3vw;
        text-align: center;
        width: 70%;
        margin-top: 9%;
    }
    .con6_mid_swiper_1_slide_p_con1top3rd_itemab {
        position: absolute;
        font-size: 3vw;
    }

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

    .con8{
        background: unset !important;
    }
    .con7_prev {
        top: unset !important;
        width: 8.3vw !important;
        height: 8.3vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 32% !important;
        bottom: 43%;
        transition: 0.4s background;
    }
    .con7_next {
        top: unset !important;
        width: 8.3vw !important;
        height: 8.3vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 32% !important;
        bottom: 43%;
        transition: 0.4s background;
    }
    .con8_bt {
        height: 12vw;
        position: absolute;
        bottom: 0;
        overflow: hidden;
    }
    .con6_mid_swiper_1_slide_p_con1top {
        font-size: 5vw;
    }

    .con8_btab {
        width: 91.3386%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: -1%;
    }
    .con6_mid_swiper_1 {
        margin-top: 5%;
        margin-left: 0%;
        width: 234%;
        margin-bottom: 30%;
    }

    .con8_ab {
        width: 38.3386%;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -5%;
        left: -5%;
        display: none;
        z-index: 2;
    }
    .con9_top {
        width: 35.811%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16%;
        margin-left: 0%;
    }
    .con9_top_2nd {
        margin-top: 4.5%;
        margin-left: 0%;
        text-align: center;
    }
    .con9_top_3rd {
        margin-top: 3.1%;
        margin-left: 0%;
        width: 80%;
        text-align: center;
    }
    .con9_top_5thitem {
        width: 14.82415%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 3.4%;
        margin-top: 6%;
    }
    .con9_top_5thitem {
        width: 15.82415%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 3.4%;
        margin-top: 6%;
    }
    .con9_top_5th {
        margin-top: 7%;
    }
    .con9_top_4th {
        width: 60.1654%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4%;
        margin-left: 0%;
    }
    .con9_top_5thitemab2 {
        width: 114.615%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 25%;
        left: 23%;
    }
    .con9_top_5thitem4ab3 {
        width: 180.231%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -9%;
        z-index: 3;
    }
    .con9_top_5thitem4{
        width: 17% !important;
    }
    .con9_top_5thitem4ab4 {
        width: 510.769%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: -27%;
        top: 0%;
    }
    .con10_top {
        width: 21.30184%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 11.5%;
        margin-left: 0%;
    }

    .con6_mid_swiper_2 {
        width: 206%;
        margin-top: 5%;
        margin-bottom: 18%;
    }
    .con6_mid_swiper_1_slide_p_con2 {
        height: 40vw;
        width: 71vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .con6_mid_swiper_2 {
        width: 289%;
        margin-top: 5%;
        margin-bottom: 18%;
    }
    .con6_mid_swiper_1_slide_p_con2ab {
        width: 12.15084%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 100%;
        top: 0;
    }
    .con10ab {
        width: 46.4521%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -5%;
        left: -8%;
        z-index: 2;
    }
    .con11 {
        align-items: center;
        flex-direction: column;
    }
    .con11_left {
        width: 100%;
        height: 96.4vw;
    }
    .con11_left_top {
        margin-top: 22.5%;
        margin-left: 0%;
        width: 69%;
        font-size: 6.5vw;
    }
    .con11_left_top2nd {
        margin-top: 1%;
        margin-left: 0%;
        width: 68%;
        font-size: 7.5vw;
    }
    .con11_left_top3rd {
        margin-top: 8%;
        margin-left: 0%;
        width: 73%;
    }
    .con11_left_top {
        margin-top: 22.5%;
        margin-left: 0%;
        width: 73%;
        font-size: 6.5vw;
    }
    .con11_left_top2nd {
        margin-top: 1%;
        margin-left: 0%;
        width: 71%;
        font-size: 7.5vw;
    }
    .con11ab {
        height: 100%;
        right: 7.5%;
        width: 0.03vw;
        background: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con11ab2 {
        height: 100%;
        right: 5.5%;
        width: 0.03vw;
        background: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con11abab {
        width: 29900%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: -14300%;
        top: 0;
    }
    .con11_right {
        height: unset;
        width: 100%;
    }
    .con11_right_item_top {
        width: 22.07975%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 22.3%;
        margin-left: unset;
    }
    .con11_right_item_top2nd {
        margin-top: 5.1%;
        margin-left: 0%;
        width: 76%;
        font-size: 4.8vw;
        text-align: center;
    }
    .con11_right_item_top3rd {
        margin-top: 4%;
        margin-left: 0%;
        width: 76%;
        text-align: center;
    }
    .con11_right_item1{
        margin: -11% 0;
    }
    .con12top2nd {
        width: 11.19947%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16%;
        margin-left: 0%;
    }
    .con12top {
        padding: 3% 0;
        width: 250%;
    }
    .con12top3rd {
        width: 75.7848%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 6%;
        margin-left: 0%;
        margin-bottom: -24.3%;
    }

    .con13_top {
        margin-top: 15%;
        margin-left: 0%;
        text-align: center;
        width: 80%;
    }
    .con13_top2nd {
        margin-top: 6%;
        margin-left: 0%;
    }
    .con13_top3rd {
        width: 97.1995%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3.6%;
        margin-left: 0%;
        z-index: 2;
    }

    .con13_top3rd {
        width: 127.1995%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 11.6%;
        margin-left: 0%;
        z-index: 2;
    }

    .con6_mid_swiper_1_slide.swiper-slide-next .con6_mid_swiper_1_slide_p_con32nd{
        margin-top: 0%;
        margin-left: 0%;
        font-size: 7.5vw;
        margin-bottom: -3%;
        color: white;
        font-weight: 700;
    }


    .con6_mid_swiper_32nd {
        margin-top: 0%;
        margin-left: 0%;
        top: 49%;
        padding-bottom: 1%;
        height: 23vw;
    }

    .con6_mid_swiper_1_slide_p_con3{
        width: 100% !important;
    }
    .con13_top5th {
        width: 250%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -14%;
        margin-left: 0%;
        margin-bottom: 12.3%;
    }
    .con6_mid_swiper_3{
        width: 37%;
    }

    .con13_top4th {
        width: 131.6614%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -14.3%;
        margin-left: 2%;
        margin-bottom: -75%;
    }
    .con6_mid_swiper_32nd {
        margin-top: 0%;
        margin-left: 0%;
        top: 35%;
        padding-bottom: 1%;
        height: 23vw;
    }


    .con14_top {
        margin-top: 15.5%;
        margin-left: 0%;
        width: 77%;
        text-align: center;
    }
    .con14_conab2{
        position: relative !important;
        text-align: center;
        margin-top: 3%;
    }
    .con14vid{
        position: relative !important;
    }
    .con14_conab2ab{
        margin-top: 0%;
        margin-left: 0%;
        text-align: center;
    }

    .con14vid {
        margin-top: 0%;
        margin-left: 0%;
        width: 79%;
        top: 37%;
        height: 45vw;
        border: 1px solid var(--tc);
        z-index: 3;
        margin-top: 5%;
        margin-left: 0%;
    }
    .con14_conab2ab{
        text-align: center;
    }
    .con14_conab2ab{
        margin-top: 0%;
        margin-left: 0%;
        width: 26%;
        left: 38.5%;
    }
    .con6_mid_swiper_4 {
        margin-top: 6%;
        margin-left: 0%;
        margin-bottom: 12%;
        width: 200%;
    }
    .con14_conab {
        height: 100%;
        right: unset;
        width: 0.03vw;
        background: var(--mc);
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .con15ab {
        width: 32.0971%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        top: -22%;
    }
    .con15_top {
        width: 17.88451%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15.6%;
        margin-left: 0%;
    }
    .con15_tops_2nd {
        margin-top: 2.2%;
        margin-left: 0%;
    }
    .con15_tops_3rd {
        width: 88.3753%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3.1%;
        margin-left: 0%;
        margin-bottom: 22.7%;
    }
    .con15_tops_3rdab {
        margin-top: 0%;
        margin-left: 0%;
        top: 104%;
        font-size: 2.8vw;
        width: 100%;
    }
    .con15_tops_3rd {
        width: 88.3753%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3.1%;
        margin-left: 0%;
        margin-bottom: 37.7%;
    }

    .con15ab {
        width: 32.0971%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        top: -9%;
    }
    .con15ab2 {
        z-index: 3;
        width: 35.4803%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 93%;
        right: 1%;
    }
    .con16_top {
        margin-top: 16%;
        margin-left: 0%;
    }
    .con16_top2nd_item {
        width: 98.3426%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 2.3% 3.2%;
    }
    .con16_top2nd_itemab {
        width: 6.4632%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 106%;
        display: none;
    }
    .con16_top2nd {
        margin-top: 3%;
        width: 88%;
        margin-bottom: 10.8%;
    }
    .con17_top {
        width: 31.5486%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con17_top3rd {
        margin-top: -4.6%;
        margin-left: 0%;
    }
    .con17bg{
        top: 0;
    }
    .con18_top {
        margin-top: 15.3%;
        margin-left: 0%;
        width: 73%;
        text-align: center;
    }
    .con18_top_2nd {
        margin-top: 4%;
        margin-left: 0%;
        width: 73%;
        margin-bottom: 24%;
    }
    .con18ab {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 0;
        bottom: unset;
        top: 0;
    }
    .con15ab3 {
        margin-top: 0%;
        margin-left: 0%;
        background: var(--fc);
        width: 88%;
        left: unset;
        top: unset;
        height: 90.5vw;
        justify-content: flex-start;
        display: flex;
        align-items: flex-start;
        position: relative;
    }
    .con18_top_2nd {
        margin-top: 4%;
        margin-left: 0%;
        width: 73%;
        margin-bottom: 7%;
    }
    .form_row_label {
        font-family: var(--sf);
        font-weight: 500;
        font-size: 3.3vw;
        line-height: 1.5;
        letter-spacing: -0.04vw;
        color: black;
    }
    .form {
        margin-top: 0;
        width: 89%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border: 1px solid transparent;
        padding-top: 0;
        background: transparent !important;
        margin-bottom: 3%;
        right: unset;
        top: 14%;
        left: 5.5%;
        background: rgba(255, 255, 255, 0.77);
        padding-bottom: 4%;
        top: 9%;
    }
    .form_row {
        height: 9.4vw;
        justify-content: flex-start;
    }
    .form_row_imput {
        height: 7.5vw;
        font-family: 'Pretendard-Regular';
        background: #ffffff82;
        border: 1px solid var(--sc);
        font-size: 3.3vw;
    }
    .form_row_imput {
        height: 7.5vw;
        font-family: 'Pretendard-Regular';
        background: #ffffff82;
        border: 1px solid var(--sc);
        font-size: 3.3vw;
        margin-left: 8%;
    }
    .form_row_imput_radio {
        width: 48.8%;
        width: 41% !important;
        appearance: none;
        outline: none;
        border: 1px solid var(--sc) !important;
        border-radius: 0.3vw;
        background: white !important;
        text-align: center;
        margin: 0 0% !important;
    }
    .form_row_imput_radio_1{
        margin-left: 8% !important;
    }
    .form_row_imput_radio_1_label {
        left: 46.5%;
        font-size: 3.3vw;
    }
    .form_row_imput_radio_1_label_2 {
        left: 80.8%;
        font-size: 3.3vw;
    }
    .form_agree_span {
        font-size: 2.9vw;
        font-family: Pretendard-regular;
        color: black;
    }
    .form_agree_check {
        margin-right: 2%;
        width: 3vw;
        height: 3vw;
        overflow: hidden;
        outline: 0;
        background: #f2f2f2;
        color: transparent;
        border: none;
        appearance: none;
        border: 1px solid #fe0908;
        background: transparent;
    }
    .form_agree_check:checked::after {
        content: "";
        width: 2.7vw;
        height: 2.7vw;
        position: absolute;
        background: var(--sc);
        color: unset !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.3vw;
        font-family: var(--sf);
        border-radius: 0;
        padding-top: 0.5%;
        padding-bottom: 2%;
        cursor: pointer;
        HEIGHT: 9.4VW;
        width: 100%;
        background: var(--mc);
        box-sizing: border-box;
        position: absolute !important;
        top: 108%;
        padding-bottom: 0;
        left: 0;
        font-size: 4vw;
        letter-spacing: -0.04vw;
    }
    .con18_top_2nd{
        text-align: center;
    }
    .main_top {
        margin-top: 85.5%;
        margin-left: 0%;
        font-size: 5.5vw;
    }
    .main_top_4th {
        margin-top: 3.5%;
        font-size: 16vw;
        mix-blend-mode: color-burn;
    }
    .main_top_6thab {
        width: 40.4688%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 97%;
        left: unset;
        bottom: 1834%;
    }

    .con2_top3rd {
        margin-left: 0%;
        text-align: center;
        width: 99.3%;
    }

    .con2_rightab1stab{
        left: -9%;
    }
    .con7conrightbest_item_top2nd{
        text-align: center;
        width: 80%;
    }

    .con6_mid_swiper_1_slide_p_con1top2nd {
        margin-top: 0%;
        margin-left: 0%;
        font-family: var(--mf);
        font-size: 3.3vw;
        text-align: center;
        width: 80%;
        margin-top: 9%;
    }

    .con6_mid_swiper_1_slide_p_con1top3rd_item {
        width: 36.0947%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        margin: 0.5%;
        background: #f9dcb7;
        border: 1px solid #b59160;
        height: 7.3vw;
    }
    .con6_mid_swiper_1_slide_p_con1top3rd_item2 {
        width: 94% !important;
    }
    .con6_mid_swiper_1_slide_p_con1top3rd_item3 {
        height: 15.7vw;
        flex-direction: column;
    }
    .con6_mid_swiper_1_slide_p_con1top2nd {
        margin-top: 0%;
        margin-left: 0%;
        font-family: var(--mf);
        font-size: 3.3vw;
        text-align: center;
        width: 98%;
        margin-top: 9%;
    }
    .con8 .con7_prev {
        left: 30% !important;
    }
    .con8 .con7_next {
        right: 30% !important;
    }
    .con6_mid_swiper_1_slide_p_con1top3rd_item {
        width: 46.0947%;
    }
    .con6con_item1_bt1 {
        margin-top: 0%;
        margin-left: 0%;
        text-align: center;
        margin: 6.4% 0;
        width: 92%;
    }
    .con6con_item {
        position: relative !important;
    }

    .con3_top3rdab {
        width: 25.395%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 7%;
        left: 57%;
    }

    .con11_right_item1 {
        margin: -21% 0;
    }


    .con11ab {
        display: none !important;
    }
    .con11ab2{
        display: none !important;
    }
    .con11_left_top {
        text-align: center;
    }
    .con11_left_top2nd {
        text-align: center;
    }
    .con11_left_top3rd {
        margin-top: 8%;
        margin-left: 0%;
        width: 83%;
        text-align: center;
    }
    .con11_right_item_top {
        width: 16.07975%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 22.3%;
        margin-left: unset;
    }
    .con6con_item1_top4th1ab2 {
        width: 23.8616%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: -6%;
        top: -13%;
    }

    .con15_tops_3rdab2 {
        width: 16.8875%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 13%;
        left: 35%;
    }
    .con15_tops_3rdab3 {
        width: 16.8875%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 25.5%;
        left: 35%;
    }

    .form_agree_check {
        border: 1px solid black;
    }
    .form_row_label::after {
        position: absolute;
        content: '*';
        font-size: 3.7vw;
        left: -13%;
        color: var(--mc);
    }
    .con3_ab3 {
        border-top: 1px solid var(--tc);
        top: 52.8%;
    }

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

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

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

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


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

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

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


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

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

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


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

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



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

    
    
    .con17_mid_2nd {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 87%;
        margin-bottom: 17%;
        margin-top: 8%;
    }    
    
.popup_img_con {
    overflow: hidden;
    width: 80%;
    scale: 1;
    height: 49vw;
    display: flex;
    justify-content: center;
    align-items: center;
}    
    
    .con17_mid_map_search_item {
    margin: 0% 7%;
    border-bottom: 1px solid #808080a3;
    padding: 5% 0;
    font-size: 0.8vw;
    height: 43vw;
    font-family: pretendard-regular;
}
    .con17_mid_map_search_item_img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 34vw;
        height: 34vw;
        overflow: hidden;
        top: 18%;
        left: -4%;
        border-radius: 10px;
    }
    .con17_mid_map_search_item_address {
    width: 71%;
    margin-left: 12%;
    margin-top: 4%;
    font-size: 3vw;
}
        .popup {
        width: 94%;
        background: white;
        height: 132vw;
        top: 2% !important;
        padding-top: 2%;
    }
    .popup_top_absol {
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        top: unset;
        left: unset;
        bottom: 0;
}
    
        .popup_img {
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        height: 50%;
        overflow: hidden;
        margin-top: 6%;
        margin-bottom: -4%;
    }
    
        .popup_close {
        top: 4% !important;
        right: 5% !important;
        width: 7.3% !important;
        z-index: 10 !important;
        -webkit-filter: brightness(0) invert(1);
        filter: unset;
    }
        .popup_top_absol_2nd {
        width: 77.6687%;
        display: flex
;
        justify-content: center;
        align-items: center;
        top: 63%;
        left: unset;
    }
    
    .popup{
        background: #f2f1e9;
    }
    
    .popup {
    background: white;
}
    .popup_img_con {
    border-radius: 2vw !important;
        height: 56vw;
    overflow: hidden;
}
    .popup {
    width: 94%;
    background: white;
    height: 137vw;
    top: 2% !important;
    padding-top: 2%;
}
    .popup_top_absol_2nd {
    width: 77.6687%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 61%;
    left: unset;
}
.con17bg {
    top: 0;
    width: 500%;
}
    
.con18 {
    margin-top: -45%;
    overflow: hidden;
    padding-top: 22%;
}
    
.con17_mid_map_search_bottom {
    overflow: scroll;
    height: 103.5vw;
    width: 100%;
}
.con17_mid_2ndab {
    margin-top: 0%;
    margin-left: 0%;
    width: 13%;
    height: 50%;
    right: 3%;
    background: var(--sc);
    display: flex;
    justify-content: center;
    align-items: center;
}    
    
.con15_tops_3rd {
    width: 88.3753%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9.1%;
    margin-left: 0%;
    margin-bottom: 37.7%;
}
    
    .con2ab{
        display: none;
    }
    
.con3_top3rdab2 {
    margin-top: 17%;
    white-space: nowrap;
    margin-left: 0%;
}    
    .con3_top3rdab2{
        width: 150% !important
    }
    
    
    .con6_mid_swiper_1_slide_p_con1ab{
        display: none;
    }
    
.con10ab {
    width: 46.4521%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -14%;
    left: -8%;
    z-index: 2;
}
.con12top {
    padding: 3% 0;
    width: 450%;
}    
.con14vid {
    margin-top: 0%;
    margin-left: 0%;
    width: 96%;
    top: 37%;
    height: 56vw;
    border: 1px solid var(--tc);
    z-index: 3;
    margin-top: 5%;
    margin-left: 0%;
}
    
.con14vidab2 {
    width: 51.8878%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 48%;
    left: 39%;
}
    .con6_mid_swiper_4 {
    margin-top: 35%;
    margin-left: 0%;
    margin-bottom: 12%;
    width: 200%;
}
.con14vidab3 {
    width: 51.8878%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 7%;
    top: 69%;
}    
.con14vidab4 {
    width: 53.0969%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 90%;
    left: 43%;
}
.con14vidab5 {
    width: 59.5408%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 89%;
}
.con6_mid_swiper_4 {
    margin-top: 35%;
    margin-left: 0%;
    margin-bottom: 12%;
    width: 200%;
    z-index: 4;
}    
.con14vidab4ab {
    margin-top: 0%;
    margin-left: 0%;
    left: 57%;
    font-size: 3.8vw;
    white-space: nowrap;
}
    
.con15ab3abab {
    bottom: 4%;
}
.con15ab3ababcon > img {
    margin-bottom: 0;
}    
    
    .con15ab3ababab {
    overflow: unset;
}
.con15ab3ababab .tf .line {
        overflow: unset;
}    
    
}



