.container{
    display: none;
}
::selection {
    background: #FDF8E5;
    color: #A79277;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    /* background: #FDF8E5; */
    background: #fff;
}
::-webkit-scrollbar-thumb { 
    background: #A79277;
    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;
}
.rltv{
    position: relative;
}
.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: 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);
    }
    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: 'SUIT-Light';
    font-size: 0.9vw;
    letter-spacing: -0.04vw;
    color: #333333;
}
section img { 
    width: 100%;
}
.noto {
    font-family: "Noto Serif", serif;
}
.notokr {
    font-family: "Noto Serif KR", serif;
}
.heavy {
    font-family: 'SUIT-Heavy';
}
.exbold {
    font-family: 'SUIT-ExtraBold';
}
.sebold {
    font-family: 'SUIT-SemiBold';
}
.medium {
    font-family: 'SUIT-Medium';
}
.regular {
    font-family: 'SUIT-Regular';
}
.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;
}
.image_sd .absol {
    left: 100%;
}
.image_sd_r {
    animation: marqueeX_r 20s infinite linear;
}
.image_sd_r .absol {
    right: 100%;
}
/* 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;
}
.arr_next {
    transform: rotate(180deg);
}
/* swiper-arr */
iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mott {
    display: none;
}
.w100{
    width: 100%;
}
.wh100{
    width: 100%;
    height: 100%;
}


/* 퍼블시작 */


:root{
    --main-beige: #FDF8E5;
    --main-brown: #A79277;
    --main-rbrown: #917056;
    --main-dbrown: #4D311C;
}
.beige{
    color: #FDF8E5;
}
.brown{
    color: #A79277;
}
.dbrown{
    color: #4D311C;
}
.rbrown{
    color: #917056;
}
b{
    font-family: 'SUIT-Bold';
}
.bold{
    font-family: 'SUIT-Bold';
}
.proxi{
    font-family: "proxima-nova-hangeul";
}
.sub {
    font-size: 1.8vw;
    margin-bottom: 0.7vw;
    text-align: center;
    line-height: 1.5;
}
.title{
    font-size: 2.9vw;
    letter-spacing: -0.2vw;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.8vw;
    overflow: hidden;
}
.title b{
    color: var(--main-rbrown);
}
.subtt{
    font-size: 1.1vw;
    line-height: 1.4;
    text-align: center;
}
.subtt b{
    font-family: 'SUIT-SemiBold';
}
.subttt{
    font-size: 1.05vw;
    line-height: 1.4;
    text-align: center;
}
.mini_title{
    color: var(--main-rbrown);
    margin-bottom: 0.7vw;
    font-size: 1.3vw;
    font-family: 'SUIT-Bold';
    overflow: hidden;
}
.proxi_title{
    font-family: "proxima-nova-hangeul";
    font-weight: 800;
    font-size: 4vw;
    text-transform: uppercase;
    letter-spacing: -0.2vw;
    line-height: 1;
    margin-bottom: 2.5vw;
    overflow: hidden;
    padding-right: 0.3vw;
}






/* 섹션 공통 버튼 */
.sec_btn{
    font-family: 'SUIT-SemiBold';
    font-size: 0.95vw;
    background-color: var(--main-rbrown);
    color: #fff;
    padding: 1vw 1.9vw;
    border-radius: 100px;
    width: fit-content;
    display: flex;
    gap: 0.8vw;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}
.con01_1{
    width: 0.4688vw !important;
}
.sec_btn:hover {
    background-color: var(--main-dbrown);
}
.sec_btn:hover .con01_1{
    animation: arrow 1.8s infinite;
}
@keyframes arrow {
    0% {
        transform: translateX(0);
    }
    26% {
        transform: translateX(0.3vw);
    }
    40% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(0.3vw);
    }
    60% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}


/* 스와이퍼 버튼 */
.arrow{
  width: 2.6042vw !important;
  cursor: pointer;
  z-index: 5;
}
.arrow.prev{
  rotate: 180deg;
}



/* 대문페이지 */
.index{
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.index_box{
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding-top: 9vw;
  box-sizing: border-box;
}
.index_box.item1{
  background-color: var(--main-beige);
  color: #917056;
}
.index_box.item2{
  background-color: var(--main-brown);
  color: #fff;
}
.index_tt01{
    font-size: 1.6vw;
    margin-bottom: 0.2vw;
}
.index_tt02{
    font-size: 4.4vw;
    font-weight: 900;
    line-height: 1;
    overflow: hidden;
}
.index_line{
    width: 1px;
    height: 2vw;
    margin: 1vw 0;
}
.item1 .index_line{
    background-color: var(--main-brown);
}
.item2 .index_line{
    background-color: #fff;
}
.index_tt03{
    font-size: 1.25vw;
    overflow: hidden;
}
.i_02{
    bottom: -20%;
    width: 43.0208vw !important;
}
.i_01{
    bottom: -9%;
    width: 33.3333vw !important;
}
.i_03{
    bottom: -4.5%;
    width: 37.3438vw !important;
}



/* 서브페이지 탑 */
.subpage_top{
    height: 23vw;
    margin-top: 4.7vw;
    color: #fff;
}
.subpage_tt01{
    font-size: 1.3vw;
    margin-bottom: 0.8vw;
    font-family: 'SUIT-SemiBold';
    overflow: hidden;
}
.subpage_tt02{
    font-size: 4.3vw;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2vw;
    overflow: hidden;
    line-height: 1;
}
.subpage_tt03{
    display: flex;
    align-items: center;
    gap: 0.8vw;
    font-size: 1vw;
    font-family: 'SUIT-Regular';
}
.sm_01{
    width: 1.1979vw !important;
}
.sm_02{
    width: 0.3646vw !important;
}




/* 플로팅 버튼 */
.fixed_btnwrap{
    position: absolute;
    margin-top: -2vw;
}
.fixed_btnwrap_move{
    width: fit-content;
    height: 4vw;
    padding: 0 3vw;
    border-radius: 100px;
    border: 1px solid var(--main-rbrown);
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 0 0.5vw 0.1vw #00000015;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    transition: 0.3s;
}
.fixed_btnwrap_move.on{
    width: 80%;
    height: 3vw;
    gap: 2.5vw;
    position: fixed;
    top: 5.2vw;
}
.fixed_btnwrap p{
    font-weight: 700;
    font-size: 1vw;
    rotate: 15deg;
}
.fixed_btn{
    padding: 0.5vw 1.2vw;
    border-radius: 100px;
    transition: 0.3s;
    font-size: 1vw;
}
.fixed_btn.on{
    background-color: var(--main-rbrown);
    color: #fff;
  font-family: 'SUIT-SemiBold';
}
.fixed_btn:hover{
    background-color: var(--main-rbrown);
    color: #fff;
  font-family: 'SUIT-SemiBold';
}




.naver_btn.dn {
    display: none !important;
}