/* ============ 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;
}

/* 접근성 유틸 (화면에서 숨기기) */
.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;
}

/* ============ 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 marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marquee2 {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
@keyframes marqueeX {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
@keyframes marqueeY {
    from { transform: translateY(0); }
    to   { transform: translateY(-100%); }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes hand {
    0%   { transform: translateY(-0.5%); }
    25%  { transform: translateY(1%); }
    50%  { transform: translate(0.5%, -1%); }
    75%  { transform: translate(1%, 0.5%); }
    100% { transform: translate(1%, -1%); }
}
@keyframes hand2 {
    0%   { transform: translateY(2%); }
    25%  { transform: translateY(-1%); }
    50%  { transform: translate(-1%, 2%); }
    75%  { transform: translate(2%, 1%); }
    100% { transform: translateY(2%); }
}

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

/* ❗️기존 smoke에 있던 random()은 CSS 문법이 아니므로 제거/치환 */
@keyframes smoke {
    0%   { transform: translate(0, 30%) rotate(0); opacity: 0.2; }
    25%  { transform: translate(10vw, 50vh) rotate(50deg) translateX(10px); opacity: 1; }
    50%  { transform: translate(25vw, 75vh) rotate(50deg) translateX(50px); opacity: 1; }
    75%  { transform: translate(40vw, 85vh) rotate(50deg) translateX(50px); opacity: 1; }
    100% { transform: translate(50vw, 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; }
}

/* 떨어지는 효과 – 잘못된 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 2s linear infinite; }
.pointer   { cursor: pointer; }
.blk       { animation: blk 1s infinite; }
.scaleopa1 { animation: scaleOpa 2s infinite; }
.scaleopa2 { animation: scaleOpa2 2s infinite; }

.main1 {
    top: 0;
    opacity: 0.3;
    width: 100%;
    z-index: 100011;
    pointer-events: none;
    margin-top: -83%;
}
.face.brandface.main{
    height: 33.5vw;
    background: url(/images/06_sub_01.jpg) no-repeat center / cover;
    justify-content: flex-start;
}


.con6_mid_swiper_1_slide_p_con{
    width: 84%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.con4_top_4th {
    padding-top: 7%;
    padding-bottom: 7%;
    margin-left: 17%;
    overflow: hidden;
    width: 80% !important;
    margin-top: -1%;
    margin-bottom: -9%;
    padding-right: 7%;
}
.con6_mid_swiper_1_slide_p_con{
    transition: 0.3s all;
    transform-origin: bottom;
}
.con6_mid_swiper_1_slide.swiper-slide.swiper-slide-next + .con6_mid_swiper_1_slide{
    z-index: 2;
}
.con6_mid_swiper_1_slide.swiper-slide.swiper-slide-next + .con6_mid_swiper_1_slide .con6_mid_swiper_1_slide_p_con {
    scale: 1.6;
}
section  img{
    width: 100%;
}
.con2_con{
    width: 94% !important;
}
.con2bg{
    bottom: 0;
}
.con2_top{
    width: 15.8571%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13%;
    margin-left: 0%;
}
.con2_top_2nd{
    margin-top: 1%;
    margin-left: 0%;
    font-size: 3.6vw;
}

.con4_top_4th {
    padding-top: 16%;
    margin: 0;
    padding-bottom: 0;
    margin-left: 0;
    overflow: hidden;
    width: 126% !important;
    margin-top: 1%;
    margin-bottom: 3%;
    padding-right: 0;
}
.con6_mid_swiper_1_slide{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.con2_conab{
    top: 0;
}
.con2_conab {
    top: 0;
    height: 43vw;
    overflow: hidden;
    filter: brightness(0.5);
}
.con2_ab{
    right: 67%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    top: 53%;
}
.con2_ab2nd{
    left: 67%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    top: 53%;
}
.con2_ab2{
    margin-top: -13%;
    margin-left: 0%;
    font-size: 5.5vw;
}
.con2_ab22 {
    margin-top: -7%;
    margin-left: -5%;
    font-size: 3vw;
    overflow: hidden;
}
.con2_ab22 span{
    font-size: 5.5vw;

}

.con2_conab2{
    width: 4.96929%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 1;
    left: 39%;
    top: 44%;
}
.con2_conab3{
    width: 4.41094%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 50%;
    z-index: 2;
    right: 39%;
}
.con2_conab4{
    width: 3.23841%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 2;
    top: 41%;
    right: 44%;
}

.con3_top{
    width: 2.46719%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9%;
    margin-left: -73%;
}
.con3_top_2nd{
    margin-top: 0.8%;
    margin-left: 0%;
    width: 75%;
    font-size: 2.8vw;
}
.con3_top_3rd{
    margin-top: 4%;
    margin-left: 0%;
    width: 75%;
}
.con3{
    background: url(/images/06_con02_06.png) no-repeat 100% 100%/ cover;

}


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

.media_swiper{
    width:100%;
    height:auto;
    overflow: hidden;
}

.media_swiper .swiper-slide video{
    width:100%;       /* 부모 기준 반응형 */
    height:auto;      /* 비율 유지 */
    border-radius:0.5vw; /* 선택: 살짝 둥글게 */
    object-fit:cover; /* 영상 잘림 방지 */
}
.con3_top_3rd {
    margin-top: 4%;
    margin-left: 0%;
    width: 75%;
    margin-bottom: 18.8%;
}
.media_swiper {
    width: 55.7%;
    height: 29.4vw;
    top: 18%;
    right: 10%;
}

.con7_prev:after,.con7_next:after {
    content: unset !important;
}
.con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 6vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 13% !important;
    bottom: 60%;
    transition: 0.4s background;
}
.con7_next {
    right: 1% !important;
    top: unset !important;
    width: 6vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    transition: 0.4s background;
    right: 49% !important;
    bottom: 60%;
}
.con3ab{
    width: 25.7218%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
    left: 20.1%;
}
.con3ab2{
    width: 25.4068%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 2%;
    right: 3%;
}
.con4_top{
    width: 3.2021%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 5.4%;
    margin-left: 0%;
}
.con4_top_2nd{
    margin-top: 1.6%;
    margin-left: 0%;
    font-size: 2.8vw;
    text-align: center;
}
.con4_top_3rd{
    margin-top: 2%;
    margin-left: 0%;
}


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

.menu_swiper {
    margin: 0;
    width: 130%;
}

.slide_inner{
    width:30vw;
    height:23vw;
    display:flex;
    flex-direction:column;
    justify-content:flex-start !important;
    align-items:center;
    text-align:center;
    gap:1vw;
}
.menu_text_wrap {
    display: flex
;
    flex-direction: column;
    gap: 0.4vw;
    margin-top: 12%;
}
.slide_bg_sc{ background:var(--sc); }
.slide_bg_tc{ background:var(--tc); }

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

.menu_img{
    width:70%;
    height:auto;
    object-fit:contain;
}

.menu_text_wrap{
    display:flex;
    flex-direction:column;
    gap:0.4vw;
}

.slide_inner{
    width: 34vw;
    height: 27.3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    align-items: center;
    text-align: center;
    transition: 0.3s all;
    gap: 1vw;
}
.menu_swiper{
    margin-top: 3%;
    margin-left: 0%;
    margin-bottom: 5%;
}

.con4 .swiper-slide.swiper-slide-next > div{
background: var(--sc);
}
.menu_img_wrap4ab2{
    width: 36.4198%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 53%;
    top: 19%;
}
.menu_img_wrap4ab{
    width: 12.7469%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 6%;
    right: 71%;
}
.menu_img_wrap2ab2{
    width: 22.9444%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 68%;
    top: 44%;
}
.menu_img_wrap2ab{
    width: 12.6728%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 16%;
    top: 0;
}
.menu_img_wrap_item{
    z-index: 2;
}
.menu_img_wrap3ab{
    width: 22.4815%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 68%;
    top: 26%;
}
.menu_img_wrap5ab{
    width: 48.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 45%;
    top: 20%;
}
.menu_img_wrap6ab{
    width: 27.3395%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 59%;
    top: 31%;
}
.menu_img_wrap1ab{
    width: 32.1296%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 68%;
    top: 26%;
}

.con4 .con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 4vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 31.8% !important;
    bottom: 0%;
    transition: 0.4s background;
}
.con4 .con7_next {
    right: 1% !important;
    top: unset !important;
    width: 4vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 31.8% !important;
    bottom: unset !important;
    top: 2% !important;
    transition: 0.4s background;
}
.menu_text_wrap .bold{
    font-size:2vw ;
}
.menu_img_wrap4ab2 {
    width: 28.4198%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 61%;
    top: 19%;
}
.con5_top{
        width: 3.2021%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7%;
    overflow: hidden;
    margin-left: 0%;
}
.con5_top_2nd{
    margin-top: 1.4%;
    margin-left: 0%;
    font-size: 1.6vw;
}
.con5_top_3rd{
    margin-top: 0.5%;
    margin-left: 0%;
    font-size: 2.8vw;
}
.con5_top_4th{
    width: 28.8714%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
    margin-left: 2%;
    margin-bottom: -3.5%;
}



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

.menu_vertical_swiper {
    width: 8%;        /* 얇게 */
    height: 23vw;     /* 전체 높이 */
    overflow: hidden;
}

.menu_vertical_swiper .swiper-slide {
    height: 23vw; /* 각 슬라이드가 전체 영역 채움 (자동 반복됨) */
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.menu_img_wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;

}
.con5_ab{
    width: 22.3622%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 3%;
    top: 48%;
    z-index: 5;
}
.con5_abab2{
    width: 41.784%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -6%;
    margin-left: -7%;
}
.con5_abab{
    width: 21.831%;
    display: flex;
    justify-content: center;overflow: hidden;
    align-items: center;
    margin-top: -22%;
    margin-left: 21%;
}
.con5_abab3{
    top: 100%;
    height: 20vw;
    width: 0.01vw;
    background: #bababa;
}
.con5_ab_2nd{
    margin-top: 0%;
    z-index: 2;
    margin-left: 0%;
    left: 19%;
    text-align: right;
    top: 78%;
}
.con5_ab_3rd{
    width: 27.1916%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0%;
    right: 11.5%;
    z-index: 4;
}
.con5_ab_4th{
    background: var(--sc);
    width: 15.1%;
    height: 100%;
    right: 0;
}
.con5_ab_4thab{
    width: 44.4444%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 22%;
    margin-left: 29%;
}
.con5_ab_5th{
    width: 27.874%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
    right: -6%;
}
.con5_top_4thab{
    width: 319.273%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -39%;
}
.menu_vertical_swiper{
    width: 9%;
    height: 33vw;
    overflow: hidden;
    left: 9.5%;
    top: -11%;
}
.con6_top{
    width: 3.2021%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    margin-left: -70.4%;
    overflow: hidden;
}
.con6_top_2nd{
    margin-top: 2.5%;
    margin-left: 0%;
    width: 76%;
    font-size: 2.9vw;
}
.con6_ab{
    width: 50.3937%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 0;
    right: 50%;
    height: 43vw;
}
.con6_top_3rd{
    width: 26.1417%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-left: -74%;
}


.content_swiper {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 43vw;
}

.content_swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2vw;
    box-sizing: border-box;
    width: 100%;
}

.sm-md.mf.bold {
    margin-bottom: 1vw;
}

.con6 .exsm.mf {
    margin-bottom: 2vw;
}



.content_swiper .swiper-slide p:nth-child(1){
    margin-top: 13%;
    width: 69%;
}
.content_swiper .swiper-slide p:nth-child(2){
    margin-top: 11%;
    width: 69%;
    height: 10vw;
}

.custom-pagination {
    position: absolute;
    top: 23%;

    transform: unset;
    background: var(--mc);
    border-radius: 2vw;
    padding: 2vw 0;
    display: flex
;
    flex-direction: column;
    align-items: center;
    z-index: 19;
    width: 3.2%;
    height: 15.5vw;
}
.pagination-bullet {
    font-size: 1vw;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    margin: 0.5vw 0;
}

.pagination-bullet.active {
    background: #000;
    color: #fff;
}

/* bullet 사이 선 */
.pagination-line {
    width: 0.12vw;
    height: 4vw;   /* bullet 사이 간격에 맞게 */
    background: rgba(255, 255, 255, 0.5);
}


.con6 .con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 4vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 44.4% !important;
    bottom: 19% !important;
    transition: 0.4s background;
}
.con6 .con7_next {
    right: 1% !important;
    top: unset !important;
    width: 4vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 44.4% !important;
    bottom: 19% !important;
    transition: 0.4s background;
}
.con7{
    background: url(/images/06_con06_07.png) no-repeat top / cover;

}
.con7_top{
        width: 3.2021%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    overflow: hidden;
    margin-left: 0%;
}
.con7_top_2nd{
    margin-top: 2%;
    margin-left: 0%;
    font-size: 2.9vw;
}
.con7_top_3rd{
    margin-top: 1.4%;
    margin-left: 0%;
    text-align: center;
}
.con7_top_4th{
    width: 42.2572%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
    z-index: 2;
    margin-left: 0%;
}
.con1_scrx1{
    width: 110%;
    top: 53%;
}

.menu_slider {
    width: 100%;
    height: auto;
}

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

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

.menu_slider .img_wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.menu_slider{
    margin-top: 0%;
    margin-left: 0%;
    width: 95% !important;
    top: 3%;
}


.circle_badge {
    width: 8.3vw;
    height: 8.3vw;
    border-radius: 50%;
    background: var(--mc);
    display: flex
;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    z-index: 2;
    left: 90%;
}
.circle_badge .text_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.con8_con{
}
.con8_con{
    background: url(/images/06_con07_07.jpg) no-repeat top / cover;
    width: 94% !important;
    margin-top: -7%;
}
.con8_top_prv{
    width: 27.359%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 71%;
}
.con8_top{
    margin-top: 2.75%;
    margin-left: 0%;
    width: 80%;
}
.con8_top_2nd{
    margin-left: 0%;
    font-size: 2.9vw;
    width: 80%;
    margin-top: 1.1%;
}


:root{ --openW: 30vw; }          /* 이미지 펼친 폭 */

.proc46{
    width:46%;
    height:14vw;
    display:flex;  align-items:stretch;
    margin-bottom: 6.73%;
}

/* 공통 */
.step{ display:flex; align-items:stretch; }
.side{ display:flex; flex-direction:column; align-items:center; }
.num{ font-size:1vw; }
.vtext{ writing-mode:vertical-rl; text-orientation:mixed; }

/* 01 왼쪽 검정 블록 */
.side1{
    width:6vw; background:#000; color:#fff;
    padding:.6vw .4vw;
}
.note{ background:#f5df49; margin:.5vw 0; padding:.25vw .5vw; }

/* 02·03 카드(베이지) */
.card{
    width:5vw; background:var(--sc);
    border:.12vw solid rgba(0,0,0,.15);
    padding:.8vw .4vw; color:#000;
    position: relative;
}

/* 이미지 마스크: 닫힘 배경은 var(--sc) */
.mask{
    width:0vw; height:100%;
    background:var(--sc);
    overflow:hidden;
    display:flex;
}
.mask img{
    width:var(--openW); height:100%; object-fit:cover; display:block;
}

/* 보조(아이콘 자리) */
.icon{ width:2.2vw; height:2.2vw; }



.proc46 {
    width: 49%;
    height: 22vw;
    display: flex
;
    align-items: stretch;
    margin-top: -10%;
    margin-left: 31%;
}

.step{
    margin-top: 0%;
    margin-left: 1%;
    width: 6vw;
}
.vtext {
    margin-top: 216%;
    font-weight: 600;
    writing-mode: sideways-lr;
    height: 5vw;
    white-space: nowrap;
}
.num {
    font-size: 1.2vw;
    margin-top: 19%;
    font-weight: 500;
}
.mask{
}
.cardab{
    width: 101.309%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: -24%;
    top: 16%;
    transition: 0.3s all;
    rotate: 50deg;
    opacity: 0;
    z-index: 123;
}

.step_on .cardab{
    left: -34%;
    rotate: 0deg;
    opacity: 1;

}
.step_on{
    z-index: 25;
}
.card , .card p ,.mask{
    transition: 0.3s all;
}
.step_on .card{
    background: black;
}
.step_on .card p{
    color:white;
}
.step_on.mask{
    width: 26.7vw;
}
.mask img{
    width: unset;
    height: 100%;
}

.con8_conab{
    width: 40.5918%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 59%;
    left: -6%;
}
.con9{
    background: url(/images/06_con08_12.jpg) no-repeat center / cover;
}
.con9ab_5th_item img{
    transform: translateY(50%);
}
.con9_top{
    width: 31.706%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7%;
    margin-left: -70.4%;
    overflow: hidden;
}
.con9_top_2nd{
    width: 64.4619%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    margin-top: 2.8%;
    margin-left: 53%;
}
.con9_top_3rd{
    width: 37.7428%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.7%;
    margin-left: -34%;
    margin-bottom: 6.9%;
}
.con9ab{
    width: 7.66404%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 73.5%;
    right: 6%;
}
.con9abab{
    width: 152.055%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 138%;
    right: 0%;
}
.con9ab_7th{
    width: 27.6115%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 0;
    top: -14%;
}
.con9ab_6th{
    width: 32.1785%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    bottom: -4%;
    right: 22%;
}
.con9ab_5th{
    width: 26.6667%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 20%;
    top: 13%;
}
.con9ab_2nd{
    width: 5.14436%;
    display: flex;
    justify-content: center;
    align-items: center;animation: ddm_m 2s infinite;
    margin-top: 0%;
    margin-left: 0%;
    top: 24%;
    left: 54%;
}
.con9ab_3rd{
    width: 2.62467%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;animation: ddm_m 2s infinite;
    animation-delay: 1s;
    top: 34%;
    right: 30%;
}
.con9ab_4th{
    width: 2.20472%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;animation: ddm_m 2s infinite;
    animation-delay: 1.3s;

    left: 60%;
    top: 43%;
}

.con10_top{
    margin-top: 6.6%;
    margin-left: 0%;
    overflow: hidden;
}
.con10_top_2nd{
    margin-top: 0.8%;
    margin-left: 0%;
    font-size: 2.9vw;
}

.con6_mid_swiper_1_slide.swiper-slide-next + .con6_mid_swiper_1_slide .con6_mid_swiper_1_slide_p_con2{
transform: translateY(-15%);
}
.con6_mid_swiper_1_slide_p_con2{
    width: 89.5013%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    transition: 0.3s all;
}
.con10 .con7_prev {
    left: 1% !important;
    top: unset !important;
    width: 5vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    left: 33% !important;
    bottom: -18%;
    transition: 0.4s background;
}

.con10 .con7_next {
    right: 1% !important;
    top: unset !important;
    width: 5vw !important;
    height: 3vw !important;
    border-radius: unset;
    overflow: hidden;
    right: 33% !important;
    top: unset !important;
    bottom: -18% !important;

    transition: 0.4s background;
}
.con10_top_3rd{
    margin-top: 6.3%;
    margin-left: 0%;
    margin-bottom: 7.5%;
}

.con10ab{
    width: 7.45407%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;animation: ddm_m 1.5s infinite;
    top: 8%;
    right: 30%;
}
.con10abab{
    width: 119.014%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 86%;
}
.con10ab img{
    z-index: 2;
}
.con10ab2 img{
    z-index: 2;
}
.con10ab2{
    width: 4.40945%;
    display: flex;
    justify-content: center;animation: ddm_m 1.5s infinite;
    animation-delay: 1s;
    z-index: 5;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 33.4%;
    z-index: 5;
    left: 32%;
}
.con10ab2ab{
    width: 170.238%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 77%;
}
.con10_top_3rdab{
    width: 30.4987%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 3;
    top: 57%;
}
.con10line{
    top: 0;
    height: 5vw;
    width: 0.01vw;
    background: #00000038;
}
.con10line2{
    bottom: 0;
    height: 5vw;
    width: 0.01vw;
    background: #00000038;
}
.con10_top_3rdab2{
    background: #28552bba;
    width: 18%;
    height: 23.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    left: 21%;
    z-index: 2;
    top: 0%;
}
.con10_top_3rdab2ab{
    margin-top: 0%;
    margin-left: 0%;
    top: 36%;
    font-size: 1vw;
}
.con10_top_3rdab2ab2{
    margin-top: 5%;
    margin-left: 0%;
    font-size: 5.3vw;
}
.con10_top_3rdab2ab2 .semilg{
    font-size: 3.6vw;
}


.con10_top_3rdab3{
    background: #28552bba;
    width: 18%;
    height: 23.6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    right: 21%;
    z-index: 2;
    top: 0%;
}
.con10_top_3rdab3ab{
    margin-top: 0%;
    margin-left: 0%;
    top: 36%;
    font-size: 1vw;
}
.con10_top_3rdab3ab2{
    margin-top: 5%;
    margin-left: 0%;
    font-size: 5.3vw;
}
.con10_top_3rdab3ab2 .semilg{
    font-size: 3.6vw;
}

.con11{
    border-top: 1px solid black;
}
.con11_con{
    margin-top: 4%;
    background: white;
    border: 1px solid black;
    width: 94.3% !important;
    overflow: hidden;
}
.con11_top{
    width: 31.6815%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.5%;
    margin-left: -68%;
}
.con11_top_2nd{
    margin-top: 2.6%;
    margin-left: 0%;
    font-size: 2.9vw;
}
.con11_top_2nd .line{
    overflow: hidden;
}
.con11_top_3rd{
    margin-top: 1%;
    margin-left: 0%;
}
.con11_top_4th{
    margin-top: 1.3%;
    margin-left: 5%;
    font-size: 4.7vw;
    width: 32%;
}
.con11_top_4thab{
    width: 13.5652%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 101%;
    bottom: 12%;
}
.con11_top_5th{
    width: 37.3608%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    z-index: 2;
    margin-left: 0%;
}
.con11_top_6th{
    width: 31.9042%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15.5%;
    margin-left: 0%;
}
.con11ab{
    width: 21.0499%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    z-index: 2;
    top: 0;
    right: 0;
}
.con6_mid_swiper_1_slide_p_con3{
    width: 100%;
    border: 1px solid black;
    height: 9vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con11_absw{
    margin-top: 0%;
    margin-left: 0%;
    bottom: 0;
}
.con6_mid_swiper_1_slide_p_con3ab2{
    margin-top: 0%;
    margin-left: 0%;
    top: 44%;
}
.con6_mid_swiper_1_slide_p_con3ab{
    margin-top: 0%;
    margin-left: 0%;
    top: 26%;
}
.con11_top_6th {
    z-index: 2;
}
.con12_con{
    background: white;
    border: 1px solid black;
    width: 94.3% !important;
    overflow: hidden;
}
.con12_top{
    width: 30.4566%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.5%;
    margin-left: -39%;
    margin-bottom: 3.8%;
}
.con12_topab{
    width: 41.6819%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 60%;
    top: 15%;
}
.con12_scrx1{
    width: 123%;
    margin: 0.65% 0;
}




/* 전체 컨테이너 */
.profit-wrap{
    width: 40vw;       /* 전체 폭을 vw 단위로 */
    margin: 0 auto;
}

/* 상단 메모 */
.note-top{
    font-size: 1vw;
    text-align: right;
    color: #000;
    margin: 0 0 1vw auto;
}

/* 표 */
.profit-table{
    width: 100%;
    border-collapse: collapse;
    border: 0.1vw solid var(--line2);
}
.profit-table thead th{
    font-size: 1.1vw;
    color:#000;
    padding: 1vw;
    border-right: 0.1vw solid var(--line2);
}
.profit-table thead th:last-child{ border-right:none; }

.profit-table tbody td{
    font-size: 1vw;
    color:#000;
    padding: 0.9vw;
    border-top: 0.1vw solid var(--line2);
    border-right: 0.1vw solid var(--line2);
}
.profit-table tbody td:last-child{ border-right:none; }

/* 푸터 */
.table-footer{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    border: 0.1vw solid var(--line2);
    border-top: none;
}
.table-footer > div{
    padding: 1vw;
}

/* 좌측 */
.table-footer .footer-left{
    background: var(--mc);
    color: #fff;
    font-size: 1vw;
}

/* 가운데 */
.table-footer .footer-mid{
    background: var(--mc);
    color: #fff;
    font-size: 1.2vw;
    text-align: center;
}

/* 우측 */
.table-footer .footer-right{
    background: black;
    color: #fff;
    font-size: 1.2vw;
    text-align: center;
}

.profit-wrap {
    width: 32vw;
    margin: 0 auto;
    left: 51%;
    top: 12%;
}
.profit-table tbody td {
    font-size: 1vw;
    color: #000;
    padding: 0.9vw;
    border-top: 0.1vw solid var(--line2);
    border-right: 0.1vw solid var(--line2);
    border-bottom: unset !important;
    border-top: unset !important;
}
.profit-table tbody td {
    font-size: 1vw;
    color: #000;
    padding: 0.57vw;
    border-top: 0.1vw solid var(--line2);
    border-right: 0.1vw solid var(--line2);
    border-bottom: unset !important;
    border-top: unset !important;
    text-align: center;
    font-weight: 500;
}
.table-footer > div {
    padding: 0vw;
    height: 3.6vw;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.table-footer .footer-mid {
    background: var(--mc);
    color: #fff;
    font-size: 1.2vw;
    text-align: center;
    font-size: 1.6vw;
}
.table-footer .footer-left {
    background: var(--mc);
    color: #fff;
    font-size: 1vw;
    text-align: center;
    font-weight: 700;
}
.table-footer .footer-right {
    background: black;
    color: #fff;
    font-size: 1.7vw;
    text-align: center;
}
.profit-table thead th {
    font-size: 1.1vw;
    color: #000;
    padding: 1vw;
    border-right: 0.1vw solid var(--line2);
    border-bottom: 0.1vw solid var(--line2);
}
.table-footer > div {
    border: unset !important;
}
.table-footer .footer-left {
    background: var(--mc);
    color: #fff;
    font-size: 1vw;
    text-align: center;
    font-weight: 700;
    border: unset;
    padding: 0;
    width: 115%;
}
.con13{
    background: url(/images/06_con13_05.png) no-repeat center / contain;
    overflow: unset;
    z-index: 3;

}
.con13_top{
    margin-top: 7.3%;
    margin-left: 0%;
    font-size: 2.9vw;
}
.con13_top_2nd{
    margin-top: 1%;
    margin-left: 0%;
}
.con13_top_3rd{
    width: 55.1706%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 2%;
}
.con13_top_3rdab{
    width: 14.843%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 94%;
    top: 19%;
}
.con13_top_3rdab2{
    width: 15.1284%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 94%;
    top: 32%;
}
.con13_top_3rd{
    width: 55.1706%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5%;
    margin-left: 2%;
    margin-bottom: 5.3%;
}
.con13ab{
    width: 39.1601%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 0;
    top: 34%;
    overflow: hidden;
}
.con13ab img{
    width: 100%;
    margin-left: -40%;
}

.con14{
    background: url(/images/06_con14_10.png) no-repeat top / cover;
}
.con14_top{
    margin-top: 9%;
    margin-left: 0%;
    font-size: 2.9vw;
}
.con14_top_2nd {
    margin-top: 0.9%;
    width: 83% !important;
    margin-bottom: 6.3%;
}
.con14_top_2nd_item{
    margin: 1.4% !important;
    width: 17.7103%;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.con14_top_2nd_itemab{
    width: 9.3007%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    left: 100%;
    top: 50%;
}
.con15ab{
    right: 50%;
    width: 50.4462%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: 0;
}
.con15_top{
    margin-top: 0%;
    margin-left: 0%;
    z-index: 2;
    font-size: 2.9vw;
    width: 76%;
    margin-top: 11.2%;
}
.con15_top_2nd{
    margin-top: 3.3%;
    margin-left: 0%;
    width: 76%;
    z-index: 2;
}
.con15_scrx1{
    margin-top: 9.7%;
    width: 79%;
}
.con15ab2{
    width: 71.1811%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    top: -84.5%;
    left: 17.4%;
}
.con15_top_2nd{
    margin-top: 3.3%;
    margin-left: 0%;
    width: 76%;
    z-index: 2;
    margin-bottom: 21%;
}
.con15_scrx1{
    width: 79%;
    position: absolute !important;
    bottom: 5.4%;
}
.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%;
}


.main_top_ab_4_con {
    z-index: 11;
}

.main_swiper_2 {
    width: 66%;
    left: 30%;
    top: 16%;
    overflow: hidden;
}
.con10_ab_con_1_top_3rd_ab{
    width: 33.6134%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -15%;
    top: -8%;
}


.con18 {
    background: url(/images/con19_bg.png) no-repeat center / cover;
    background-attachment: fixed;
}

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

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

/* ============ Reduced Motion (접근성) ============ */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .scrX .scrX_item,
    .scrY .scrY_item { animation: none !important; }
}
.con6_mid_swiper_1_slide_p_con3{
    background: var(--tc) !important;
}

.table-footer .footer-right {
    color: var(--sc) !important;
}
.form_row_imput {
    font-family: var(--mf) !important;
}
.menu_img_wrap2{
    width: 74.8457%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.menu_img_wrap3{
    width: 85.8025%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.menu_img_wrap4{
    width: 74.6914%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.menu_img_wrap5{
    width: 78.5494%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.menu_img_wrap6{
    width: 75.6173%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.menu_img_wrap1{
    width: 77.0062%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
}
.container{
    display: none;
}


.header_menu_1:nth-child(5) {
    font-weight: 700;
    color: var(--mc);
}

.header_menu_1:nth-child(5) .header_menu_1ab1 {
    bottom: 145%;
    width: 55%;
    display: flex
;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.header_menu_1:nth-child(5) .header_menu_1ab2 {
    top: 206%;
    width: 65%;
    display: flex
;
    opacity: 1;
    justify-content: center;
    align-items: center;
}
.con6_mid_swiper_1_slide_p_con3ab2 {
    white-space: nowrap;
}

/* ============ Breakpoints ============ */
@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; }
    .con7_mid_top_cate {
        margin: 0 3% !important;
    }
    .con2_top {
        width: 39.8571%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 16%;
        margin-left: 0%;
    }
    .con2_top_2nd {
        margin-top: 3%;
        margin-left: 0%;
        font-size: 8.6vw;
    }
    .con4_top_4th {
        padding-top: 35%;
        margin: 0;
        padding-bottom: 0;
        margin-left: 0;
        overflow: hidden;
        width: 286% !important;
        margin-top: 24%;
        margin-bottom: 11%;
        padding-right: 0;
    }
    .con2_conab2 {
        width: 13.96929%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 1;
        left: 25%;
        top: 48%;
    }
    .con2_conab4 {
        width: 8.23841%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 2;
        top: 45%;
        right: 45%;
    }
    .con2_conab3 {
        width: 11.41094%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 53%;
        z-index: 2;
        right: 29%;
    }
    .con2_conab {
        top: 0;
        height: 112vw;
        overflow: hidden;
        filter: brightness(0.5);
    }
    .con2_conab video{
        width: 231% !important ;
    }
    .con2bg{
        width: 261.782%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con4_top_4th {
        padding-top: 35%;
        margin: 0;
        padding-bottom: 0;
        margin-left: 0;
        overflow: hidden;
        width: 286% !important;
        margin-top: 49%;
        margin-bottom: 11%;
        padding-right: 0;
    }
    .con2_ab {
        right: 54%;
        display: flex
    ;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column;
        top: 28%;
    }
    .con2_ab2 {
        margin-top: -13%;
        margin-left: 0%;
        font-size: 16.5vw;
    }
    .con2_ab2nd {
        left: 54%;
        display: flex
    ;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        top: 28%;
    }
    .con2_ab22 span {
        font-size: 16.5vw;
    }
    .con2_ab22 {
        margin-top: -7%;
        margin-left: -5%;
        font-size: 5vw;
    }
    .con4_top_4th {
        padding-top: 35%;
        margin: 0;
        padding-bottom: 0;
        margin-left: 0;
        overflow: hidden;
        width: 286% !important;
        margin-top: 38%;
        margin-bottom: 11%;
        padding-right: 0;
    }
    .con2_conab video {
        width: 255% !important;
    }
    .con3_top {
        width: 6.46719%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0;
    }
    .md-lg {
        font-size: 7.6vw !important;
    }
    .con3_top_2nd {
        margin-top: 1.8%;
        margin-left: 0%;
        width: 75%;
        font-size: 2.8vw;
        text-align: center;
    }
    .con3_top_3rd {
        margin-top: 6%;
        margin-left: 0%;
        width: 75%;
        margin-bottom: 18.8%;
        text-align: center;
    }
    .media_swiper {
        width: 85.7%;
        height: 40.4vw;
        top: 18%;
        right: unset;
        position: relative;
        margin: 0;
        margin-top: -13%;
    }
    .con3 {
        background: url(/images/06_con02_06.png) no-repeat top / cover;
        padding-bottom: 19%;
    }
    .con3ab {
        width: 36.7218%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 0%;
        left: unset;
    }
    .con7_prev {
        left: 1% !important;
        top: unset !important;
        width: 11vw !important;
        height: 6vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 22% !important;
        bottom: 51%;
        transition: 0.4s background;
    }
    .con7_next {
        right: 1% !important;
        top: unset !important;
        width: 11vw !important;
        height: 6vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 22% !important;
        bottom: 51%;
        transition: 0.4s background;
    }
    .con3ab2 {
        width: 30.4068%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: unset;
        right: 8%;
        top: 46%;
        z-index: 2;
    }
    .con3_top_3rd {
        margin-top: 4%;
        margin-left: 0%;
        width: 75%;
        margin-bottom: 15.8%;
        text-align: center;
    }
    .con4_top {
        width: 11.24934%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 15.4%;
        margin-left: 0%;
    }
    .menu_swiper {
        margin: 0;
        width: 180%;
    }
    .slide_inner {
        width: 56vw;
        height: 51.3vw;
        display: flex
    ;
        flex-direction: column;
        justify-content: space-between !important;
        align-items: center;
        text-align: center;
        transition: 0.3s all;
        gap: 1vw;
    }
    .menu_text_wrap .bold {
        font-size: 5.3vw;
        margin-top: 4%;
    }
    .menu_img_wrap3ab {
        width: 22.4815%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 73%;
        top: 39%;
    }
    .menu_img_wrap4ab2 {
        width: 28.4198%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 61%;
        top: 40%;
    }

    .menu_img_wrap5ab {
        width: 48.5%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 54%;
        top: 38%;
    }
    .menu_img_wrap6ab {
        width: 34.3395%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 68%;
        top: 40%;
    }
    .menu_img_wrap1ab {
        width: 36.1296%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 68%;
        top: 43%;
    }
    .con5_top {
        width: 11.24934%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0%;
    }
    .con5_top_2nd {
        margin-top: 3.4%;
        margin-left: 0%;
        font-size: 4.2vw;
    }
    .con5_ab_4th {
        background: var(--sc);
        width: 15.1%;
        height: 100%;
        right: 0;
        display: none;
    }
    .con5_ab_3rd {
        width: 47.1916%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 0%;
        right: -4.5%;
        z-index: 4;
    }
    .con5_top_4th {
        width: 58.8714%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 58%;
        margin-left: 0;
        margin-bottom: -3.5%;
    }
    .con5_ab_2nd{
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: 36%;
        text-align: center;
    }

    .con5_ab {
        width: 52.3622%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: 42%;
        z-index: 5;
    }
    .con5_ab_2nd{
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: 28%;
        text-align: center;
    }
    .con5_ab_3rd {
        width: 47.1916%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: 0%;
        right: 1.5%;
        z-index: 4;
    }
    .menu_vertical_swiper{
        display: none;
    }
    .con5_ab_5th{
        display: none;

    }
    .con6_top {
        width: 11.24934%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 15%;
        margin-left: 0;
    }
    .con6_top_2nd {
        margin-top: 3.5%;
        margin-left: 0%;
        width: 76%;
        text-align: center;
    }
    .content_swiper {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        height: 86vw;
    }
    .content_swiper {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        height: 109vw;
    }
    .content_swiper .swiper-slide p:nth-child(2) {
        margin-top: 5%;
        width: 80%;
        height: 46vw;
        text-align: center;
    }
    .img_group{
        width: 82.5838%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
    }
    .con6_ab {
        width: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 0;
        right: 0%;
        height: 42vw;
    }
    .con6_top_3rd {
        width: 26.1417%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
        margin-left: -74%;
        opacity: 0;
    }

    .content_swiper .swiper-slide p:nth-child(1) {
        margin-top: 3%;
        width: 69%;
    }

    .content_swiper {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        height: 100vw;
    }
    .con6_top_3rd {
        width: 26.1417%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: -7%;
        margin-left: -74%;
        opacity: 0;
    }
    .custom-pagination {
        position: absolute;
        top: 30%;
        transform: unset;
        background: var(--mc);
        border-radius: 2vw;
        padding: 2vw 0;
        display: flex
    ;
        flex-direction: column;
        align-items: center;
        z-index: 1;
        width: 80.2%;
        height: 6.5vw;
    }
    .custom-pagination {
        position: absolute;
        top: 30%;
        transform: unset;
        background: var(--mc);
        border-radius: 6vw;
        padding: 2vw 0;
        display: flex
    ;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 1;
        width: 66.2%;
        height: 5.5vw;
    }
    .pagination-bullet {
        font-size: 3vw;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        width: 6vw;
        height: 6vw;
        border-radius: 50%;
        background: transparent;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        transition: all .3s
        ease;
        margin: 2.5vw 5%;
    }
    .pagination-line {
        width: 4vw;
        height: .02vw;
        background: rgba(255, 255, 255, 0.5);
    }
    .con6_ab {
        width: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -6%;
        right: 0%;
        height: 42vw;
    }
    .content_swiper .swiper-slide p:nth-child(1) {
        margin-top: 3%;
        width: 69%;
        text-align: center;
    }

    .content_swiper .swiper-slide p:nth-child(2) {
        margin-top: 5%;
        width: 100%;
        height: 46vw;
        text-align: center;
    }
    .content_swiper {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        height: 90vw;
    }
    .content_swiper .swiper-slide p:nth-child(2) {
        margin-top: 5%;
        width: 100%;
        height: 42vw;
        text-align: center;
    }
    .con6 .con7_prev {
        left: 1% !important;
        top: unset !important;
        width: 11vw !important;
        height: 6vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 37.4% !important;
        bottom: 23% !important;
        transition: 0.4s background;
    }
    .con6 .con7_next {
        right: 1% !important;
        top: unset !important;
        width: 11vw !important;
        height: 6vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 37.4% !important;
        bottom: 23% !important;
        transition: 0.4s background;
    }
    .content_swiper .swiper-slide p:nth-child(2) {
        margin-top: 5%;
        width: 100%;
        height: 35vw;
        text-align: center;
    }
    .con6_ab {
        width: 100%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -8%;
        right: 0%;
        height: 42vw;
    }
    .con7_top {
        width: 11.24934%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 10%;
        margin-left: 0%;
    }
    .con7_top_2nd {
        margin-top: 4%;
        margin-left: 0%;
        font-size: 2.9vw;
        width: 80%;
        text-align: center;
    }
    .con7_top_3rd {
        margin-top: 4.4%;
        margin-left: 0%;
        width: 53%;
        text-align: center;
    }
    .con7_top_4th {
        width: 78.2572%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 13%;
        z-index: 2;
        margin-left: 0%;
    }
    .circle_badge{
        width: 23.3vw;
        height: 23.3vw;
        border-radius: 50%;
        background: var(--mc);
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        text-align: center;
        z-index: 2;
        left: 80%;
    }
    .con1_scrx1{
        width: 180%;
        top: 52%;
    }
    .con8_top_2nd{
        text-align: center;
        margin-left: 0%;
        margin-top: 2.1%;
    }
    .proc46 {
        width: 84%;
        height: 44vw;
        display: flex
    ;
        align-items: stretch;
        margin-top: 6%;
        margin-left: 0;
    }
    .step {
        margin-top: 0%;
        margin-left: 1%;
        width: 11vw;
    }
    .proc46 {
        width: 84%;
        height: 37vw;
        display: flex
    ;
        align-items: stretch;
        margin-top: 6%;
        margin-left: 0;
    }
    .vtext {
        margin-top: 516%;
        font-weight: 600;
        writing-mode: sideways-lr;
        height: 5vw;
        white-space: nowrap;
    }
    .num {
        font-size: 3.2vw;
        margin-top: 19%;
        font-weight: 500;
    }
    .con8_top_prv {
        width: 30.359%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 71%;
    }
    .con8_top {
        margin-top: 4.75%;
        margin-left: 0%;
        width: 80%;
        text-align: center;
    }
    .card {
        width: 10vw;
        background: var(--sc);
        border: .12vw solid rgba(0, 0, 0, .15);
        padding: .8vw .4vw;
        color: #000;
        position: relative;
    }

    .step_on.mask {
        width: 43.7vw;
    }
    .vtext {
        margin-top: 199%;
        font-weight: 600;
        writing-mode: sideways-lr;
        height: 5vw;
        white-space: nowrap;
    }
    .proc46 {
        width: 84%;
        height: 37vw;
        display: flex
    ;
        align-items: stretch;
        margin-top: 6%;
        margin-left: 0;
        margin-bottom: 15%;
    }
    .con8_conab {
        width: 50.5918%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 59%;
        left: -6%;
    }
    .step_on .cardab {
        left: -82%;
        rotate: 0deg;
        opacity: 1;
    }
    .con9_top {
        width: 53.706%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 13%;
        margin-left: -47.4%;
    }
    .con9_top_2nd {
        width: 103.4619%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 8.8%;
        margin-left: 30%;
    }
    .con9_top_3rd {
        width: 59.7428%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 7.7%;
        margin-left: -25%;
        margin-bottom: 13.9%;
    }
    .con9ab_7th {
        width: 38.6115%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        right: 0;
        top: -14%;
    }
    .con9ab_5th {
        width: 34.6667%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 20%;
        top: 18%;
    }
    .con9ab_6th{
        width: 44.1785%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -4%;
        right: 22%;
    }
    .con9ab {
        width: 15.66404%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 73.5%;
        right: 6%;
    }
    .con9ab_6th{
        width: 44.1785%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        bottom: -4%;
        right: 36%;
    }
    .con9ab_5th {
        width: 38.6667%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 7%;
        top: 18%;
    }
    .con9_top_3rd{
        width: 59.7428%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 7.7%;
        margin-left: -35%;
        margin-bottom: 13.9%;
    }
    .con9ab_2nd {
        width: 9.14436%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 24%;
        left: 54%;
    }
    .con9ab_3rd {
        width: 7.62467%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 36%;
        right: 25%;
    }
    .con9ab_4th{
        width: 6.20472%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 55%;
        top: 43%;
    }
    con10_top {
        margin-top: 14.6%;
        margin-left: 0%;
    }
    .con10_top_2nd{
        font-size: 7.9vw;
    }
    .con10_top_3rd{
        margin-top: 21.3%;
        margin-left: 0%;
        margin-bottom: 12.5%;
        width: 169%;
    }
    .con10_top_3rdab2ab{
        margin-top: 0%;
        margin-left: 0%;
        top: 32%;
        font-size: 3vw;
    }
    .con10_top_3rdab2{
        background: #28552bba;
        width: 18%;
        height: 37.6vw;
        display: flex;
        pointer-events: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        left: 21%;
        z-index: 2;
        top: 0%;
    }
    .con10_top_3rdab2ab2{
        margin-top: 19%;
        margin-left: 0%;
        font-size: 11.3vw;
    }
    .con10_top_3rdab3{
        background: #28552bba;
        width: 18%;
        height: 37.6vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        right: 21%;
        z-index: 2;
        pointer-events: none;
        top: 0%;
    }
    .con6_mid_swiper_1_slide.swiper-slide-next + .con6_mid_swiper_1_slide .con6_mid_swiper_1_slide_p_con2 {
        transform: translateY(-15%);
        scale: 1.6;
    }
    .con10_top_3rd{
        width: 180% !important;
    }
    .con10_top_3rdab {
        width: 30.4987%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 3;
        top: 74%;
    }
    .con10 .con7_prev{
        width: 11vw !important;
        height: 7vw !important;
    }
    .con10 .con7_next{
        width: 11vw !important;
        height: 7vw !important;
    }
    .con10ab2 {
        width: 10.40945%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 29.4%;
        z-index: 2;
        left: 11%;
    }
    .con10ab {
        width: 13.45407%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 8%;
        right: 6%;
    }
    .con10_top_3rd {
        width: 224% !important;
        margin-top: 67.3%;
    }
    .con10_top_3rdab2 {
        background: #28552bba;
        width: 21%;
        height: 22.6vw;
        display: flex
    ;
        pointer-events: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        left: 29%;
        z-index: 2;
        top: -118%;
    }
    .con10_top_3rdab3 {
        background: #28552bba;
        width: 21%;
        height: 22.6vw;
        display: flex
    ;
        pointer-events: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        right: 29%;
        z-index: 2;
        top: -118%;
    }
    .con10_top_3rdab2ab2 {
        margin-top: 11%;
        margin-left: 0%;
        font-size: 11.3vw;
    }
    .con10_top_3rdab2ab {
        margin-top: 0%;
        margin-left: 0%;
        top: 20%;
        font-size: 3vw;
    }
    .con10ab2 {
        width: 12.40945%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 38.4%;
        z-index: 2;
        left: 8.7%;
    }
    .con10_top {
        margin-top: 14.6%;
        margin-left: 0%;
    }
    .con11_top_2nd {
        margin-top: 10.6%;
        margin-left: 0%;
        font-size: 6.9vw;
    }
    .con11_top_3rd {
        margin-top: 3%;
        margin-left: 0%;
        text-align: center;
    }
    .con11_top_4th {
        margin-top: 2.3%;
        margin-left: 5%;
        font-size: 10.7vw;
        width: 66%;
    }
.con11_top_4thab {
    width: 24.5652%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-left: 0%;
    right: 101%;
    bottom: 12%;
}
    .con11_top_5th {
        width: 79.3608%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3%;
        z-index: 2;
        margin-left: 0%;
    }
    .con11_top_6th {
        width: 64.9042%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: -30.5%;
        margin-left: 0%;
    }
    .con11_absw{
        position: relative !important;
    }
    .con11_absw {
        position: relative !important;
        width: 225%;
    }
    .con6_mid_swiper_1_slide_p_con3{
        width: 100%;
        border: 1px solid black;
        height: 26vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .con11_top {
        width: 41.6815%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: -0.5%;
        margin-left: -63%;
    }
    .con11ab {
        width: 29.0499%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        z-index: 2;
        top: -3%;
        right: 0;
    }
    .con12_top {
        width: 79.4566%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 13.5%;
        margin-left: 0;
        margin-bottom: 4.8%;
    }
    .profit-wrap {
        width: 82vw;
        margin: 0 auto;
        left: unset;
        top: 12%;
        position: relative;
    }
    .profit-table thead th {
        font-size: 3.5vw;
        color: #000;
        font-weight: 600;
        padding: 1vw;
        border-right: 0.1vw solid var(--line2);
        border-bottom: 0.1vw solid var(--line2);
    }
    .profit-table tbody td {
        font-size: 3vw;
        color: #000;
        padding: 1.57vw;
        border-top: 0.1vw solid var(--line2);
        border-right: 0.1vw solid var(--line2);
        border-bottom: unset !important;
        border-top: unset !important;
        text-align: center;
        font-weight: 500;
    }
    .table-footer .footer-left {
        background: var(--mc);
        color: #fff;
        font-size: 3vw;
        text-align: center;
        font-weight: 700;
        border: unset;
        padding: 0;
        width: 115%;
    }
    .table-footer > div {
        padding: 0vw;
        height: 11.6vw;
        display: flex
    ;
        justify-content: center;
        align-items: center;
    }
    .table-footer .footer-right {
        background: black;
        color: var(--sc) !important;
        font-size: 4.7vw;
        text-align: center;
    }
    .table-footer .footer-mid {
        background: var(--mc);
        color: #fff;
        font-size: 1.2vw;
        text-align: center;
        font-size: 4.7vw;
    }
    .table-footer .footer-mid {
        background: var(--mc);
        color: #fff;
        font-size: 1.2vw;
        text-align: center;
        font-size: 4.7vw;
        width: 102.2%;
        z-index: 1;
    }

    .note-top {
        font-size: 3vw;
        text-align: right;
        color: #000;
        margin: 0 0 1vw auto;
    }
    .con12_con {
        background: white;
        border: 1px solid black;
        width: 94.3% !important;
        overflow: hidden;
        padding-bottom: 6%;
    }
    .con12_scrx1 {
        width: 203%;
        margin: 1.65% 0;
    }
    .con13_top {
        margin-top: 14.3%;
    }
    .con13_top_2nd {
        margin-top: 3%;
        text-align: center;
    }
    .con13_top_3rd {
        width: 88.1706%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 1.5%;
        margin-left: 2%;
        margin-bottom: 9.3%;
    }
    .con13_top_3rdab {
        width: 27.843%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 67%;
        top: 11%;
    }
    .con13_top_3rdab2{
        width: 15.1284%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 94%;
        top: 34%;
    }
    .con13_top_3rdab {
        width: 35.843%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 29%;
        top: 18%;
    }
    .con13_top_3rdab2{
        width: 35.1284%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: unset;
        top: 28%;
    }
    .con13ab {
        width: 49.1601%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 0;
        top: 70%;
        overflow: hidden;
    }
    .con14_top {
        margin-top: 15%;
    }
    .con14_top_2nd {
        margin-top: 2.9%;
        width: 102% !important;
        margin-bottom: 10.3%;
    }
    .con14_top_2nd_item {
        margin: 1.4% !important;
        width: 40.7103%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
    }
    .con14_top_2nd_itemab {
        width: 9.3007%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        left: 100%;
        top: 50%;
        ㅋ: ㅋ;
        z-index: 3;
    }
    .con15_top {
        margin-top: 0%;
        margin-left: 0%;
        z-index: 2;
        font-size: 2.9vw;
        width: 76%;
        margin-top: 15.2%;
        text-align: center;
    }
    .con15_top_2nd {
        margin-top: 3.3%;
        margin-left: 0%;
        width: 76%;
        z-index: 2;
        margin-bottom: 21%;
        text-align: center;
    }
    .con15ab3{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        position: relative;
        left: unset;
    }
    .form {
        margin-top: 2%;
        width: 81%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border: 1px solid transparent;
        padding-top: 0;
        background: transparent !important;
        margin-bottom: 3%;
        right: unset;
        top: unset;
        left: unset;
        background: rgba(255, 255, 255, 0.77);
        padding-bottom: 4%;
    }
    .form_row_label {
        font-family: var(--sf);
        font-weight: 500;
        font-size: 3.2vw;
        letter-spacing: -0.04vw;
        color: black;
    }
    .form_row {
        height: 10.4vw;
        justify-content: flex-start;
    }
    .form_row_imput {
        height: 7.5vw;
        font-family: var(--mf) !important;
        font-size: 3vw;
    }
    .form_submit {
        HEIGHT: 9.4VW;
        width: 36%;
        font-size: 4.2vw;
    }
    .form_row_imput_radio {
        width: 36% !important;
    }
    .form_agree_span {
        font-size: 2.9vw;
    }
    .form_agree_check {
        width: 3vw;
        height: 3vw;
    }
    .form_agree_check:checked::after {
        content: "";
        width: 2.7vw;
        height: 2.7vw;
    }
    .form {
        margin-top: -12%;
    }
    .form_row_imput_radio_1_label {
        font-size: 3vw;
    }
    .form_row_imput_radio_1_label_2 {
        font-size: 3vw;
    }
    .form_row_imput_radio_1_label_2 {
        left: 76.8%;
    }
    .form_row_label::after {
        position: absolute;
        content: '*';
        font-size: 3vw;
        left: -15%;
    }
    .con15ab {
        right: 0;
        width: 100.4462%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: 0;
    }
    .con15_scrx1 {
        width: 139%;
        position: absolute !important;
        bottom: 54.4%;
    }

    .con15ab2 {
        width: 104.1811%;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -28%;
        z-index: 1;
        right: -50%;
    }
    .con4 .con7_prev {
        left: 1% !important;
        top: unset !important;
        width: 12vw !important;
        height: 7vw !important;
        border-radius: unset;
        overflow: hidden;
        left: 31.8% !important;
        bottom: 0%;
        transition: 0.4s background;
    }
    .con4 .con7_next {
        right: 1% !important;
        top: 11% !important;
        width: 12vw !important;
        height: 7vw !important;
        border-radius: unset;
        overflow: hidden;
        right: 31.8% !important;
        bottom: 0%;
        transition: 0.4s background;
    }
    .menu_swiper{
        margin-top: 6%;
    }
    
    .media_swiper{
        height: 46.4vw;
    }
    .con7_top_3rd {
        margin-top: 4.4%;
        margin-left: 0%;
        width: 66%;
        text-align: center;
    }    
    .form_row_imput_radio_1_label{
        left: 39.5% !important;
    }
    .con15ab2 {
        width: 104.1811%;
        display: flex
;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -28%;
        z-index: 1;
        right: -52%;
        left: unset;
    }    
    .con15_top {
        margin-top: 0%;
        margin-left: 0%;
        z-index: 2;
        font-size: 2.9vw;
        width: 76%;
        margin-top: 21.2%;
        text-align: center;
    }
    .con15_top_2nd {
        margin-top: 3.3%;
        margin-left: 0%;
        width: 76%;
        z-index: 2;
        margin-bottom: 24%;
        text-align: center;
    }
    .con15ab2 {
        width: 104.1811%;
        display: flex
;
        justify-content: center;
        align-items: center;
        margin-top: 0%;
        margin-left: 0%;
        top: -23%;
        z-index: 1;
        right: -52%;
        left: unset;
    }    
}

