/* 전체 기본 폰트 — Pretendard Variable */
html, body {
    font-family: 'Pretendard Variable', 'Pretendard',
                 -apple-system, BlinkMacSystemFont,
                 'Segoe UI', 'Noto Sans KR',
                 'Apple SD Gothic Neo', 'Malgun Gothic',
                 sans-serif;
}
input, button, select, textarea {
    font-family: inherit;
}


.container{
    display: none;
}
body {
    overflow: visible;
}
#content_wrap {
    overflow: visible;
}
/* ::selection {
    background: #F5F7E7;
    color: #5B6B42;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F5F7E7;
}
::-webkit-scrollbar-thumb { 
    background: #5B6B42;
    border-radius: 100px;
} */



/* 마커디자인 */
.map_marker {
    position: relative;
    display: inline-block;
}

/* 커스텀 오버레이 (말풍선) 디자인 */
.my-place-label {
    background: #fff;
    border: 2px solid #5B6B42;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-align: center;
    white-space: nowrap;
    position: relative;
    bottom: 50px;

    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
}


/* 모바일 */
@media screen and (max-width:599px) {
    .my-place-label {
        bottom: 50px;
    }
}

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

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

* {
    padding: 0;
    margin: 0;
    box-sizing: unset;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}
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;
}
html {
    scroll-behavior: smooth;
}
.main::after{
    width: 1vw;
    height: 0vw;
    position: absolute;
    top: 0;
    pointer-events: none;
    opacity: 0;
    pointer-events: none;
/*     content:url(/images/con1_10.png) url(/images/con1_11.png) url(/images/con1_12.png)
    url(/images/con6_08.png) url(/images/con6_09.png)  url(/images/con6_10.png) url(/images/con6_11.png) url(/images/con6_12.png)
    url(/images/con7_02.png) url(/images/con7_03.png) url(/images/con7_04.png)  url(/images/con7_05.png); */
}
.clearfix::after,
.clearfix::before {
    display: block;
    clear: both;
    content: "";
}
.flowhid{
    overflow: hidden;
}
.hide{
    display: none !important;
}
.hideopa{
    opacity: 0 !important;
}
.show{
    opacity: 1 !important;
}
.absol{
    position: absolute !important;
}
.rltv{
    position: relative !important;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
.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;
}


body {
    font-size: calc(1rem + ((1vw - 0.48rem) * 1.3889));
    min-height: 0vw;
}

.shakeTwice {
    animation: shakeTwice 2s ease-in-out infinite;
    transform-origin: center;
  }
  .shakeTwices {
    animation: shakeTwices 2s ease-in-out infinite;
    transform-origin: center;
  }
  @keyframes shakeTwice {
    0% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(5deg);
    }
    20% {
      transform: rotate(-5deg);
    }
    30% {
      transform: rotate(4deg);
    }
    40% {
      transform: rotate(-4deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  @keyframes shakeTwices {
    0% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(3deg);
    }
    20% {
      transform: rotate(-3deg);
    }
    30% {
      transform: rotate(2deg);
    }
    40% {
      transform: rotate(-2deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes marquee2 {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
@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(-8deg);
    }
    65% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes ddm4 {
    0% {
        transform: scale(1);
    }
    25% {
        transform: rotate(-2deg);
    }
    50% {
        transform: scale(1.05);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes rotate_image1 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@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% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    31% {
        opacity: 1;
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes blk2 {
    0% {
        opacity: 0;
    }
    49% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes blk3 {
    0% {
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes rotate_image {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes scaleOpa {
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}
@keyframes scaleOpa2 {
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@keyframes ball {
    0% {
        bottom: 0px;
    }
    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: translateY(-0.5vw);
    }
    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);
    }
    75% {
        transform: scale(1.02);
        transform: translateY(10px);
    }
    100% {
        transform: scale(1);
        transform: translateY(0px);
    }
}
@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 scaleOpa3 {
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
@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;
    }
}
@keyframes smoke {
    0% {
        transform: translate(0, 30%) rotate(0);
        opacity: 0.2;
    }
    25% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
        opacity: 1;
    }
    75% {
        transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
        opacity: 1;
    }
    100% {
        transform: translate(calc(random() * 100vw), 200vh) rotate(0) translateX(70px);
        opacity: 0.2;
    }
}

@keyframes light {
    0%, 31%, 34%, 39%, 42%, 47% {
        opacity: 0;
    }
    5%, 30%, 35%, 38%, 43%, 46% {
        opacity: 0.4;
    }
    50%, 55%, 60%, 67%, 51%, 54%, 68%, 100% {
        opacity: 1;
    }
    70% {
        opacity: 0.2;
    }
}
@keyframes marqueeX {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
@keyframes marqueeX_r {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}
@keyframes marqueeY {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}
@keyframes marqueeY_r {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}
@keyframes fall {
    0% {
        top: -0%;
        opacity: 1;
        transform: rotateX(0deg) rotateY(0deg) (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) (0deg);
        transform-origin: center center;
    }
    100%{
        transform: rotateX(-240deg) rotateY(-400deg) rotateZ(-310deg);
        transform-origin: center center;
        top: 100%;
        opacity: 0;
    }
}
@keyframes backgroundchange {
    0% {
        background: url(/images/con11_07.png) no-repeat center / contain;
    }

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

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

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

    100% {
        background: url(/images/con11_07.png) no-repeat center / contain;
    }
}
@keyframes opa {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes backgroundchange_2 {
    0% {
        background: url(/images/con08_07.png) no-repeat center / contain;

    }

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

    }

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

    }

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

    }

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

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

    }
}
@keyframes rotateAnimation {
    0% {
        transform: rotate(-1deg);
    }
    40% {
        transform: rotate(1deg);
    }
    60% {
        transform: rotate(2deg);
    }
    80% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(1deg);
    }
}
@keyframes shakeAndFall {
    0% {
        transform: translate(0, -50%) rotate(0);
        opacity: 0;
    }
}
div.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.swiper-wrapper.flow {
    pointer-events: none;
    transition-timing-function: linear;
}
section {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 0.9vw;
    letter-spacing: -0.04vw;
}
section img { 
    width: unset;
    min-height: 100%;
    max-width: 101%;
    vertical-align: top;
}
section:not(.map_section) img {
    pointer-events: none;
}
.noto {
    font-family: "Noto Serif", serif;
}
.notokr {
    font-family: "Noto Serif KR", serif;
}
.exbold {
    font-weight: 900;
}
.sebold {
    font-weight: 600;
}
.medium {
    font-weight: 500;
}
.regular {
    font-weight: 400;
}
.flight {
    font-weight: 200;
}
.thin {
    font-weight: 100;
}
.animate-blk {
    animation: blk 1s infinite ease-in-out;
}
.scaleOpa {
    animation: scaleOpa infinite 2s;
}
.scaleOpa2 {
    animation: scaleOpa2 infinite 2s;
}
.light {
    animation: light infinite 5s;
}
.rotate_img {
    animation: rotate_image 10s infinite linear;
}
.white {
    color: white;
}
.txct {
    text-align: center;
}
.lh {
    line-height: 1.5;
}
/* reveal 대신 사용 start */
/* 왼쪽부터 나타나기 */
.clip_off02 {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: all 0.8s;
}
/* 가운데에서 나타나기 */
.clip_off {
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    transition: all 0.8s;
}
/* gsap에서 넣을 class */
.clip_on {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}
/* reveal 대신 사용 end */
.absol_cover {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.max_width {
    width: unset !important;
    max-width: 101%;
}
.back_img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
/* image_sd */
.image_sd_wrap {
    padding: 0.5vw 0;
    overflow: hidden;
}
.image_sd {
    animation: marqueeX 20s infinite linear;
    display: flex;
    align-items: center;
}
.image_sd .absol {
    left: 100%;
    top: 0;
}
.image_sd_r {
    animation: marqueeX_r 20s infinite linear;
}
.image_sd_r .absol {
    right: 100%;
    top: 0;
}
/* image_sd end */
/* y_slide start */
.slide_y_wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide_y {
    height: 100%;
    animation: marqueeY 20s infinite linear;
}
.slide_y img {
    width: unset !important;
    height: 100%;
}
.slide_y img.absol {
    top: 100%;
}
.slide_y_r {
    height: 100%;
    animation: marqueeY_r 20s infinite linear;
}
.slide_y_r img {
    width: unset !important;
    height: 100%;
}
.slide_y_r img.absol {
    bottom: 100%;
}
/* y_slide end */
/* swiper-arr */
.btn_arr {
    z-index: 2;
    cursor: pointer;
}
/* swiper-arr */
iframe {
    width: 100%;
    height: 100%;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mott {
    display: none;
}
.wh100{
    width: 100%;
    height: 100%;
}
.w100{
    width: 100%;
}
.w100con{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 퍼블시작 */


:root{
    --main-blue: #0C254E;
    --main-blue2: #21649A;
    --main-sky: #E2EEF8;
    --main-yellow: #FED964;
    --main-yellow2: #FFEBAA;
    --main-beige: #F9F2E5;
    --main-red: #CC0000;
}
.blue{
    color: #0C254E;
}
.blue2{
    color: #21649A;
}
.sky{
    color: #E2EEF8;
}
.yellow{
    color: #FED964;
}
.yellow2{
    color: #FFEBAA;
}
.beige{
    color: #F9F2E5;
}
.red{
    color: #CC0000;
}
b{
    font-weight: 700;
}
.bold{
    font-weight: 700;
}
.subtitle {
    font-size: 1.4vw;
    margin-bottom: 0.2vw;
    text-align: center;
    font-weight: 400;
}
.subtitle2{
    font-size: 1.6vw;
    font-weight: 400;
    margin-bottom: 0.2vw;
  }
.title {
    font-size: 2.2vw;
    letter-spacing: -0.1vw;
    font-family: 'VITROCORE';
    text-align: center;
    line-height: 1.25;
    margin-bottom: 0.5vw;
    overflow: hidden;
}
.subtt {
    font-size: 1.1vw;
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
}
.subtt2 {
    font-size: 1.25vw;
    font-weight: 600;
}
.vit{
    font-family: 'VITROCORE';
}
.paper3{
  font-family: 'Paperlogy-3Light';
}
.paper4{
  font-family: 'Paperlogy-4Regular';
}
.paper5{
  font-family: 'Paperlogy-5Medium';
}
.paper6{
  font-family: 'Paperlogy-6SemiBold';
}
.paper7{
  font-family: 'Paperlogy-7Bold';
}
.paper8{
  font-family: 'Paperlogy-8ExtraBold';
}
.paper9{
  font-family: 'Paperlogy-9Black';
}
.grad{
    background: linear-gradient(
        135deg,
        #FFED84,
        #FEDA64,
        #ECA63D
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
}
.grad2{
    background: linear-gradient(
        -45deg,
        #fff98a,
        #fdd26c
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
}
.arrow{
    width: 3.0975vw !important;
    cursor: pointer;
    z-index: 5;
}
.arrow.rt{
    transform: rotate(180deg);
}





.sec_btm{
    width: 55%;
   padding: 0.8vw 0;
    background-color: #FFEBAA;
    border: 1px solid #E7D59A;
    border-radius: 100px;
}
.sec_btm_tt{
    width: 100%;
    text-align: center;
    font-size: 1.05vw;
    font-weight: 600;
    line-height: 1.3;
}
.sec_btm_tt span{
    font-weight: 700;
}
.sec_btm_img {
    left: -3%;
    bottom: -40%;
    z-index: 5;
    scale: 0.8;
    transform-origin: center bottom;
}
.sec_btm_img.scale1{
    scale: 1;
}
.sec_btm_img img{
    animation: sec_btm_img 1.7s infinite;
}
@keyframes sec_btm_img {
    0% {
        transform: scale(1);
    }
    50% {
        transform: matrix(1.02, 0.01, 0.01, 1.02, 0, -10);
    }
    100% {
        transform: scale(1);
    }
}
.sec_btm_sky{
    background-color: var(--main-sky);
    border: 1px solid #CFDCE7;
}
.sec_btm_blue{
    background-color: var(--main-blue);
    color: #fff;
    border: none;
}
.sec_btm_blue .sec_btm_tt{
    font-weight: 500;
}

.fitimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


.sec_btn{
    width: 9.5vw;
    height: 2.7vw;
    line-height: 2.7vw;
    background-color: var(--main-blue);
    color: #fff;
    text-align: center;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9vw;
    transition: 0.3s;
    cursor: pointer;
}
.sec_btn:hover{
    color: var(--main-yellow);
}



.shad{
    box-shadow: 0.2vw 0.2vw 0.3vw 0.1vw rgba(0, 0, 0, 0.068);
}







/* ===== 인트로 섹션 ===== */
.intro {
    flex-direction: row;
    width: 100%;
    height: 100vh;
}
.intro_half {
    width: 50%;
    height: 51.601vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
}
.intro_brand {
    background-color: var(--main-beige);
}
.intro_franchise {
    background-color: var(--main-blue);
}
.intro_text_wr {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro_big {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3.5vw;
    white-space: nowrap;
    line-height: 1;
}
.intro_brand .intro_big {
    color: #111111;
}
.intro_franchise .intro_big {
    color: #ffffff;
}
.intro_line {
    width: 6.3517vw;
    height: 1px;
    margin: 2vw 0;
}
.intro_brand .intro_line {
    background-color: #111111;
}
.intro_franchise .intro_line {
    background-color: #ffffff;
}
.intro_mid {
    font-family: 'Pretendard Variable';
    font-weight: 600;
    font-size: 1.5837vw;
    white-space: nowrap;
}
.intro_brand .intro_mid {
    color: #111111;
}
.intro_franchise .intro_mid {
    color: #ffffff;
}
.intro_small {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 1.0556vw;
    margin-top: 1.1549vw;
    white-space: nowrap;
    margin-bottom: 15vw;
}
.intro_brand .intro_small {
    color: #111111;
}
.intro_franchise .intro_small {
    color: #ffffff;
}
.intro_02, .intro_03, .intro_04{
    bottom: 0;
}
.intro_01b {
    pointer-events: none;
}
.intro_01b_img{
    rotate: 60deg;
}

/* ===== main 이미지 설정 (vw 너비 + aspect-ratio) ===== */
.intro_02 { width: 46.7192vw; aspect-ratio: 890/299; }
.intro_03 { width: 28.7139vw; aspect-ratio: 547/405; }
.intro_04 { width: 50.3937vw; aspect-ratio: 960/563; }
.intro_01, .intro_01a, .intro_01b { width: 22.827vw; aspect-ratio: 1/1; }







.sub_top{
    height: 24vw;
}
.sub_top_tt01{
    font-size: 1.5vw;
    font-weight: 600;
    margin-bottom: 0.4vw;
    margin-top: 6vw;
}
.sub_top_tt02{
    font-size: 2.6vw;
}
.sub_top_tt03{
    bottom: -0.1vw;
    width: unset !important;
    height: 5.0521vw;
}
.sub_top_tt03 img{
    width: unset;
    height: 100%;
    object-fit: cover;
}







/* ===== sub01 탭 네비게이션 ===== */
.sub01_tab {
    width: 80%;
    margin: 0 auto;
    background: #fff;
    border-radius: 0.8vw;
    box-shadow: 0 0 0.3vw 0.3vw rgba(0, 0, 0, 0.048);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6vw;
    height: 3.5vw;
    position: relative;
    z-index: 998;
    transition: top 0.3s;
  }
  .sub01_tab_1 {
    font-family: 'pretendard Variable';
    font-size: 0.95vw;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    position: relative;
    transition: color 0.25s, font-weight 0.25s;
    height: 3.5vw;
    line-height: 3.5vw;
  }
  .sub01_tab_1::after {
    content: '';
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s;
    background-color: #0c254e;
  }
  .sub01_tab_1:hover,
  .sub01_tab_1.on {
    color: #0c254e;
    font-weight: 700;
  }
  .sub01_tab_1:hover::after,
  .sub01_tab_1.on::after {
    width: 100%;
  }
  
  #sub01TabSentinel {
    width: 100%;
    height: 0;
  }
  .sub01_tab_overlay {
    position: absolute;
    top: 1.5vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .sub01_tab_overlay.fixed {
    position: fixed;
    background: #fff;
    backdrop-filter: none; 
    top: 1vw;
  }



















/* ===== acon10 매장 안내 ===== */
.acon10 {
    padding: 4vw 0;
    background-color: #ffffff;
}

.acon10_01 {
    top: -0.1vw;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.acon10_01 img {
    width: 100%;
    height: auto;
}

.acon10_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.acon10_tt01 {
    margin-top: 4vw;
    z-index: 1;
    margin-bottom: 0.5vw;
}

.acon10_tt02 {
    color: #161616;
}

.acon10_label {
    margin-top: 1.5vw;
    z-index: 2;
}

.swiper_acon10 {
    width: 70vw;
    background-color: var(--main-sky);
    padding: 2.5vw 0 1.5vw 0 !important;
    border-radius: 1.2vw;
    margin-top: -1.2vw;
}

.swiper_acon10 .swiper-slide {
    display: flex;
    justify-content: center;
}

.acon10_slide {
    width: 15vw;
    height: 9.5vw;
    aspect-ratio: 270 / 210;
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: 1.3vw;
    overflow: hidden;
    position: relative;
}

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

.acon10_slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.acon10_slide_ttwrap {
    z-index: 2;
}

.acon10_slide_ttwrap {
    width: 100%;
    padding: 1.5vw 0 1.5vw 2vw;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.acon10_slide_num {
    font-family: 'Pretendard Variable';
    font-weight: 700;
    font-size: 1.1vw;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.2;
}

.acon10_slide_name {
    font-family: 'Pretendard Variable';
    font-weight: 500;
    font-size: 0.9vw;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.4;
    margin-top: 0.2vw;
}

.acon10_con {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70vw;
    margin-top: 2.5vw;
}

/* 검색 영역 */
.acon10_search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.0499vw;
    width: 100%;
}

.acon10_select_wrap {
    width: 25vw;
    height: 2.8871vw;
}

.acon10_select {
    width: 100%;
    height: 100%;
    border: 0.0525vw solid #ccc;
    border-radius: 1.5748vw;
    padding: 0 1.3123vw;
    font-size: 0.7874vw;
    font-family: 'Pretendard Variable';
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
}

.acon10_select:focus {
    border-color: #999;
}

.acon10_select_arrow {
    width: 1.1458vw;
    height: 1.1458vw;
    right: 1.3123vw;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.acon10_input_wrap {
    width: 25vw;
    height: 2.8871vw;
}

.acon10_input {
    width: 100%;
    height: 100%;
    border: 0.0525vw solid #ccc;
    border-radius: 1.5748vw;
    padding: 0 2.6247vw 0 1.3123vw;
    font-size: 0.7874vw;
    font-family: 'Pretendard Variable';
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.acon10_input:focus {
    border-color: #999;
}

.acon10_input::placeholder {
    color: #000;
}

.acon10_search_btn {
    right: 1.0499vw;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acon10_search_btn img {
    width: 1.0499vw;
    height: auto;
}

/* 테이블 */
.acon10_table {
    width: 100%;
    margin-top: 1.5748vw;
    font-size: 0.9vw;
}

.acon10_thead {
    display: flex;
    align-items: center;
    height: 2.8vw;
    background: #f7f7f7;
    font-weight: 600;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

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

.th_region {
    width: 15%;
}

.th_name {
    width: 20%;
}

.th_addr {
    width: 40%;
}

.th_tel {
    width: 25%;
}

.acon10_row {
    display: flex;
    align-items: center;
    height: 2.68vw;
    border-bottom: 0.0525vw solid #e5e5e5;
    font-family: 'Pretendard Variable';
    color: #333;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.acon10_row:hover{
    background-color: #faf3e6;
}

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

.td_region {
    width: 15%;
    justify-content: center;
}

.td_name {
    width: 20%;
    justify-content: center;
    position: relative;
}

.td_addr {
    display: block;
    width: 40%;
    justify-content: center;
    white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.td_tel {
    width: 25%;
    justify-content: center;
}

.acon10_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-blue);
    color: #fff;
    font-weight: 600;
    padding: 0.3vw 0.8vw;
    border-radius: 0.3vw;
    white-space: nowrap;
    font-size: 0.75vw;
}

.acon10_new_badge {
    position: absolute;
    left: -1vw;
    top: 50%;
    transform: translateY(-50%);
    background: #d1512a;
    color: #fff;
    font-size: 0.8vw;
    font-weight: 500;
    font-family: 'Pretendard Variable';
    padding: 0.25vw 0.7vw;
    border-radius: 100px;
    white-space: nowrap;
    line-height: 1.3;
}

/* 페이지네이션 */
.acon10_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4vw;
    margin-top: 1.5748vw;
    padding-bottom: 1.0499vw;
    border-radius: 100px;
}

.acon10_page_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2vw;
    height: 2vw;
    line-height: 2vw;
    text-align: center;
    cursor: pointer;
    border-radius: 100%;
    border: none;
    color: #ddd;
}

.acon10_page_btn.active {
    background: var(--main-beige);
    color: #000;
    font-weight: 700;
}

.acon10_page_btn.acon10_arrow {
    width: 1.5vw;
    border: none;
    background: none;
    font-size: 1.5vw;
    color: #000;
}

.acon10_page_ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7848vw;
    height: 1.7848vw;
    font-size: 0.7349vw;
    color: #999;
}

/* ===== acon10 매장 상세 팝업 ===== */
.acon10_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.acon10_popup.on {
    display: flex;
}
.acon10_popup_dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.acon10_popup_box {
    width: 56vw;
    background: #fff;
    border-radius: 1.3vw;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0.5vw 2vw rgba(0,0,0,0.2);
}
.acon10_popup_close {
    top: 1.2vw;
    right: 1.2vw;
    width: 2vw;
    height: 2vw;
    cursor: pointer;
}

.acon10_popup_head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: #FFF6EA;
    padding: 3vw 6vw 1.5vw 6vw;
}
.acon10_popup_head_left {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
}
.acon10_popup_new {
    display: inline-block;
    background: #d25631;
    color: #fff;
    font-size: 0.85vw;
    font-weight: 500;
    padding: 0.5vw 0.7vw;
    border-radius: 1vw;
    width: fit-content;
}
.acon10_popup_new.hide {
    display: none;
}
.acon10_popup_name {
    font-size: 1.6vw;
    font-weight: 700;
    font-family: 'Pretendard Variable';
    color: #1C1F2E;
    line-height: 1.2;
}
.acon10_popup_naver {
    display: flex;
    align-items: center;
    gap: 0.4vw;
    font-size: 0.85vw;
    font-family: 'Pretendard Variable';
    color: #333;
    text-decoration: none;
    transform: translateY(-0.5vw);
}
.acon10_popup_naver img {
    width: 1.1vw;
    height: 1.1vw;
}
.acon10_popup_naver span{
    border-bottom: 1px solid #333;
}

.acon10_popup_body {
    width: 38%;
    display: flex;
    padding: 1.5vw 6vw 2.5vw 6vw;
    gap: 2vw;
}
.acon10_popup_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}
.acon10_popup_info_row {
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}
.acon10_popup_label {
    font-size: 0.95vw;
    font-weight: 700;
    font-family: 'Pretendard Variable';
    color: #1C1F2E;
}
.acon10_popup_value {
    font-size: 0.85vw;
    font-family: 'Pretendard Variable';
    color: #555;
    line-height: 1.5;
}
.acon10_popup_map {
    width: 22vw;
    height: 17.1vw;
    background: #f0f0f0;
    border-radius: 0;
    flex-shrink: 0;
    left: 50%;
    bottom: 2.5vw;
}

.acon10_row {
    cursor: pointer;
}
