@import url('../font/pretendard/web/static/pretendard.css');

@font-face {
    font-family: 'JalnanGothic';
    src: url('../font/JalnanGothic/JalnanGothicTTF.ttf') format('truetype'),
        url('../font/JalnanGothic/JalnanGothic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Pretendard';
}

.jal {
    font-family: 'JalnanGothic';
}







.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}










/* Large Headings */
.heading-xl {
    font-size: 53px;
    line-height: 56px;
    letter-spacing: 2%;
}

/* Medium Headings */
.heading-lg {
    font-size: 43px;
    line-height: 44px;
    letter-spacing: 2%;
}

.heading-md {
    font-size: 40px;
    line-height: 42px;
    letter-spacing: 2%;
}

/* Body Text */
.text-lg {
    font-family: 'Medium', 'Semibold', sans-serif;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -1%;
}

.text-md {
    font-family: 'Medium', 'Semibold', sans-serif;
    font-size: 19px;
    line-height: 20px;
    letter-spacing: -1%;
}

.sec {
    width: 100%;
    max-width: 1520px;
    margin: auto;
}

.wrap {
    padding: 120px 0;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    width: 192px;
    height: 64px;
    background: rgba(255, 255, 255, 0.4);
    border: 3px solid #FFFFFF;
    box-shadow: 0px 0px 20px rgba(16, 0, 0, 0.4);
    border-radius: 40px;
    cursor: pointer;
    color: #fff;
}

.btn p {
    font-size: 20px;
    font-family: 'JalnanGothic';
}


#header {
    width: 100%;
    position: fixed;
    background-color: transparent;
    margin: auto;
    padding: 15px 0;
    z-index: 999999;
}

#header .scll {
    display: none;
}

#header.active {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);

}

#header.active .top_logo {
    display: none;
}

#header.active .scll {
    display: block;
}

#header.active .ham span {
    background-color: #FFE8CE;
}

#header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ham {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.ham span {
    display: block;
    width: 28px;
    height: 4px;
    background: #2B0000;
    border-radius: 2px;
    margin: 3px 0;
    transition: all 0.3s;
}

.ham.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.ham.active span:nth-child(2) {
    opacity: 0;
}

.ham.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}





/* sec01 */
.sec01_wrap {
    background-image: url(../img/sec01_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec01_wrap .sec01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.sec01_wrap .sec01 .title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.sec01_wrap .sec01 .title p {
    font-size: 28px;
    line-height: 34px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0px 0px 16px rgba(81, 23, 0, 0.75);

}

.sec01_wrap .sec01 .title .line {
    width: 100%;
    max-width: 623px;
    height: 1px;
    background-color: #fff;
}


/* sec02 */
.sec02_wrap {
    width: 100%;
    height: 946px;
    background-color: #FFF3E5;
}

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

.sec02_wrap .sec02 iframe {
    box-sizing: border-box;
    border: 4px solid #EAC397;
    filter: drop-shadow(10px 0px 0px #EAC397) drop-shadow(0px 0px 0px #EAC397) drop-shadow(0px 10px 0px #EAC397);
    border-radius: 10px;
}






/* sec03 */
.sec03_wrap {
    background-image: url(../img/sec_03bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* 배경 고정 */
    width: 100%;
    height: 500vh;
    /* 뷰포트 높이로 변경 */
    position: relative;
    overflow: hidden;
    /* 내부 스크롤을 위해 추가 */
}

.sec03_wrap .sec03 {
    position: relative;
    height: 100%;
    overflow: visible;
    /* sticky 요소가 보이도록 설정 */
}

.sec03_wrap .me {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* 상단에서 시작하도록 변경 */
    gap: 40px;
    padding: 100px 0;
    /* 상하 여백 추가 */
    position: relative;
    z-index: 2;
}

.sec03_wrap .me .inner_box {
    background: #FFFCF8;
    border: 4px solid #FFE8CE;
    box-shadow: 10px 10px 0px #FFE8CE, 10px 0px 0px #FFE8CE, 0px 10px 0px #FFE8CE;
    border-radius: 10px;
    width: 493px;
    height: 404px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    z-index: 999;
    opacity: 0;
    /* 초기 투명도 0으로 설정 */
    transform: translateY(50px);
    /* 초기 위치 설정 */
}
.sec03_wrap .me .inner_box img{
    max-width: 493px;
}

.sec03_wrap .me .inner_box p:nth-child(2) {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.scroll_animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #FFE8CE;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.scroll_animation.active {
    position: absolute;
    bottom: 7%;
    top: unset;
    opacity: 1;
}

.scroll_animation.fixed {
    position: fixed;
    opacity: 1;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.scroll_animation span {
    display: block;
    font-size: 50px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    filter: blur(4px);
    transform-origin: center;
}

.scroll_animation.active span {
    filter: blur(0);
}










/* sec04 */
.wrapwrap {
    background-color: #2B0000;
    overflow: hidden;
}

.sec04_wrap {
    aspect-ratio: 14 / 9;
    /* 원하는 비율로! */
    height: auto;
    min-height: 600px;
    /* 모바일 대응용 */
    max-width: 1920px;
    /* 필요시 */
    margin: 0 auto;
    background-image: url(../img/sec04_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 170px 0;
}

.sec04_wrap .sec04 {
    position: relative;
}

.sec04_wrap .point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.sec04_wrap .point.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.sec04_wrap .point .textbox {
    position: relative;
    z-index: 3;
    background: none;
}

.sec04_wrap .point .tit p {
    font-size: 40px;
    font-weight: 400;
    color: #FFEEDA;
    position: relative;
    line-height: 56px;
}

.sec04_wrap .point .tit p::before {
    content: "\"";
    /* 큰따옴표 이스케이프 */
    position: absolute;
    left: -30px;
    /* -30px에서 0으로 변경하여 요소의 시작점에 위치시킵니다. */
    top: 0;
    color: #D2B89B;
    display: flex;
    /* 내용 중앙 정렬을 위해 추가 */
    align-items: center;
    /* 내용 수직 중앙 정렬 */
    justify-content: center;
    /* 내용 수평 중앙 정렬 */
}

.sec04_wrap .point .tit p span {
    color: #D2B89B;
}

.sec04_wrap .point .sub_tit .p_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    width: 111px;
    height: 44px;
    border: 2px solid #FFE8CE;
    border-radius: 12px;
    color: #ffe8ce;
    margin: 60px 0 20px;
    font-weight: 700;
}

.sec04_wrap .point .sub_tit p {
    color: #D2B89B;
    font-weight: 600;
    line-height: 26px;
    position: relative;
    z-index: 99;
}

.sec04_wrap .point .sub_tit p span {
    font-weight: 800;
}

.t_back_01,
.t_back_02,
.t_back_03 {
    position: relative;
    color: #2B0000;
}

.t_back_01::after {
    content: url(../img/marker01-01.png);
    position: absolute;
    left: -5px;
    top: -8px;
    display: block;
    z-index: -1;
}

.t_back_02::after {
    content: url(../img/marker01-02.png);
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    z-index: -1;
}

.t_back_03::after {
    content: url(../img/marker01-03.png);
    position: absolute;
    left: -8px;
    top: -8px;
    display: block;
    z-index: -1;
}
#sec04 .t_back_01.t_02::after{
    content: url(../img/marker02-02.png);
}
#sec04 .t_back_02.t_02::after{
    content: url(../img/marker02-01.png);
}
#sec04 .t_back_01.t_03::after{
    content: url(../img/marker03-02.png);
}
#sec04 .t_back_02.t_03::after{
    content: url(../img/marker03-01.png);
}



.sec04_wrap .point .imgbox {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    transition: none;
    /* gsap이 제어하므로 */
}





/* miss */
.sticky_box{
    position: relative; /* 반드시 relative! */
    height: 180vh;
    overflow: visible;
    background-color: #2B0000;
}
.miss_wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #2B0000;
}

.miss {
    width: 100%;
    height: 100vh;
    background: url(../img/miss_bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0 0;
    opacity: 0.25;
    z-index: 1;
}

.miss_wrap .circle {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    clip-path: circle(0% at 50% 50%);
    z-index: 10;
    pointer-events: none;
}

.miss .flex_box {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 10%;
}

.miss .flex_box.reverse {
    justify-content: end;
    align-items: end;
}

/* sec05 */

/* Section 05 - Sticky Sidebar */
.sec05_wrap {
    background-color: #FFF8F0;
}

.sec05 {
    display: flex;
    justify-content: space-between;
    /* Space between sticky and imgbox */
    align-items: flex-start;
    /* Align items to the top */
    padding: 120px 0;
    /* Adjust padding as needed */
    min-height: auto;
    /* Ensures enough scrollable content */
    max-width: 1520px;
    /* Max width like .sec */
    margin: auto;
}

.sec05 .sticky {
    position: sticky;
    top: 0;
    width: 400px;
    padding: 20px;
    box-sizing: border-box;
    align-self: flex-start;
    padding-top: 100px;
    padding-bottom: 500px;
    font-size: 30px;
    line-height: 1.4;
    color: #333;
}

.sec05 .sticky p {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 58px;
    color: #2B0000;
}

.sec05 .sticky span {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.01em;
    color: #2B0000;



}

.sec05 .imgbox {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    gap: 20px;
    /* Space between images */
    padding-left: 40px;
    /* Space from sticky text box */
}

.sec05 .imgbox img {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 10px;
}

.image-grid-item-bottom-left {
    grid-column: 1;
    /* First column */
    background-position: center 70%;
    /* Adjust to show bottom left part */
}

.image-grid-item-bottom-right {
    grid-column: 2;
    /* Second column */
    background-position: center 90%;
    /* Adjust to show bottom right part */
}



/* sec06 */
.sec06_wrap {
    aspect-ratio: 20 / 7;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    max-width: 1920px;
    margin: 0 auto;
    background: url(../img/sec06_bg.png) center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: end;
    overflow: hidden;
}

.sec06_wrap .sec06 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;

}

.sec06_wrap .inner {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    max-width: 1720px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.2s;
}

.sec06_wrap .inner.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.sec06_wrap .left,
.sec06_wrap .right {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.sec06_wrap .sec06 .inner .left {
    color: #FFE8CE;
    padding-left: 150px;
    position: relative;
}

.sec06_wrap .sec06 .inner .left::before {
    font-family: 'Acumin Pro';
    content: "1.";
    font-size: 200px;
    position: absolute;
    left: 0;
    top: -25px;
}

.sec06_wrap .sec06 .inner.in_02 .left::before {
    font-family: 'Acumin Pro';
    content: "2.";
    left: -20px;
}

.sec06_wrap .sec06 .inner.in_03 .left::before {
    font-family: 'Acumin Pro';
    content: "3.";
    left: -20px;
}

.sec06_wrap .sec06 .inner .left p {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 130%;
}

.sec06_wrap .sec06 .inner .left span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #D7BFA3;
}


/* sec07 */
.sec07_wrap {
    width: 100%;
    height: 800px;
    background: url(../img/sec07_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

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

.sec07_wrap .sec07 p {
    font-size: 60px;
    line-height: 140%;
    text-align: center;
    color: #2B0000;
}

/* sec08 */
.sec08_wrap {
    width: 100%;
    position: relative;
    height: 100%;
    padding-bottom: 150px;
    position: relative;
}

.sec08_wrap .bg_box {
    background-image: url(../img/review/r_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    /* 배경 고정 */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.sec08 {
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.sec08 p {
    position: relative;
    z-index: 9;
    margin-bottom: 40px;
    font-size: 54px;
    line-height: 72px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #B1B1B1;


}

.sec08 p span {
    color: #fff;
    /* Example highlight color */
}

.sec08_wrap .sec08 .gra_bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
}

.sec08_wrap .rr_view {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sec08_wrap .left {
    position: absolute;
    left: 10%;
    bottom: 10%;
    z-index: 99;
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0.2s;
}

.sec08_wrap .right {
    position: absolute;
    right: 10%;
    top: 30%;
    z-index: 99;
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0.8s;
}

.sec08_wrap .left.active,
.sec08_wrap .right.active {
    opacity: 1;
}

.infinite_slider {
    position: relative;
    z-index: 9;
    width: 100%;
    overflow: hidden;
    /* Hide anything outside the slider */
    padding: 20px 0;
}

.infinite_slider .one,
.infinite_slider .two {
    display: flex;
    white-space: nowrap;
    /* Prevent images from wrapping */
    animation: none !important;
    /* Adjust duration as needed */
    gap: 20px;
    /* Space between images */
}

.infinite_slider .one,
.infinite_slider .two {
    animation-direction: normal;
    /* Move left to right */
}

.infinite_slider .two {
    margin-top: 20px;
    /* Space between two rows of sliders */
}

.infinite_slider img {
    flex-shrink: 0;
    /* Prevent images from shrinking */
    width: 220px;
    /* Set a fixed width for each image, adjust as needed */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sec08_wrap .under {
    margin-top: 100px;
}

.sec08_wrap .under>p {
    position: relative;
    font-weight: 400;
    font-size: 54px;
    line-height: 72px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #B1B1B1;
}

.sec08_wrap .under>p span {
    color: #fff;
}

.sec08_wrap .grid_box {
    position: relative;
    z-index: 9;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sec08_wrap .grid_box .grid_inner {
    background: rgba(217, 217, 217, 0.2);
    border: 2px solid #616161;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.45);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    height: 300px;
    text-align: center;
    opacity: 0.5;
    transition: 0.7s;
}

.sec08_wrap .grid_box .grid_inner:nth-child(1) {
    transition-delay: 0.2s;
}

.sec08_wrap .grid_box .grid_inner:nth-child(2) {
    transition-delay: 0.6s;
}

.sec08_wrap .grid_box .grid_inner:nth-child(3) {
    transition-delay: 1s;
}

.sec08_wrap .grid_box .grid_inner:nth-child(4) {
    transition-delay: 1.4s;
}

.sec08_wrap .grid_box .grid_inner:nth-child(5) {
    transition-delay: 1.8s;
}

.sec08_wrap .grid_box .grid_inner:nth-child(6) {
    transition-delay: 2.2s;
}

.sec08_wrap .grid_box .grid_inner.active {
    backdrop-filter: blur(22px);
    opacity: 1;
}

.sec08_wrap .grid_box .grid_inner .jal {
    font-size: 28px;
    line-height: 130%;
}

.sec08_wrap .grid_box .grid_inner .num {
    position: absolute;
    left: 15px;
    top: 15px;
}

@keyframes slide-infinite {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the total width to create seamless loop */
    }
}



/* sec09 */
.sec09_wrap {
    width: 100%;
    height: 1712px;
    background-image: url(../img/sec_09bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 250px 0;
}

.sec09 .title {
    padding-left: 150px;
}

.sec09 .title .jal {
    font-size: 54px;
    color: #C6BEB3;
    transition: all 0.7s;
    opacity: 0;
}

.sec09 .title .jal:nth-child(2) {
    color: #FFE8CE;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sec09 .title .jal.active:nth-child(1) {
    opacity: 1;
    transition-delay: 0.4s;
}

.sec09 .title .jal.active:nth-child(2) {
    opacity: 1;
    transition-delay: 0.6s;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-container.two {
    margin-top: 20px;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-right 30s linear infinite;
}

.marquee-group {
    display: flex;
}

.marquee-track img {
    margin-right: 20px;
}

/* 오른쪽 방향으로 무한 슬라이드 */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}


/* sec10 */
.sec10_wrap {
    background-image: url(../img/sec10/sec10_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sec10 {
    padding: 80px 0;
    text-align: center;
}

.sec10 .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.sec10 .title img:nth-child(1) {
    height: auto;
    margin-left: 100px;
}

.sec10 .title img:nth-child(2) {
    margin-bottom: 40px;
}

.sec10 .flex_box {
    width: 100%;
    max-width: 1264px;
    display: flex;
    margin: auto;
    align-items: start;
    justify-content: center;
    border: 3px solid #221A10;
    border-radius: 20px;
    box-sizing: border-box;
}

.sec10 .flex_box img {
    width: 100%;
}

.sec10 .flex_box .l_img {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

.sec10 .flex_box .l_img img {
    height: 596px;
}

.sec10 .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.sec10 .grid_box img {
    max-width: 385px;
    max-height: 300px;
}

.hover_black {
    box-sizing: border-box;
    transition: all 0.3s;
    border: 3px solid #221A10;
}

.hover_black:hover {
    filter: brightness(0.3);
}

.tr {
    border-top-right-radius: 15px;
}

.br {
    border-bottom-right-radius: 15px;
}

.swiper.mySwiper {
    width: 100%;
    margin-top: 80px;
    margin-right: 0;
}

.swiper.mySwiper .swiper-slide {
    max-width: 493px;
}

.arrow_box {
    position: relative;
    width: 100%;
    max-width: 136px;
    margin: 50px auto 0;
}

.swiper-gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    /* 원하는 만큼 */
    height: 100%;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to left, #91887D 10%, transparent 100%);
    /* #fff 대신 배경색(또는 반투명)으로 조정 */
}

.swiper-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    /* 원하는 만큼 */
    height: 100%;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to right, #91887D 10%, transparent 100%);
    /* #fff 대신 배경색(또는 반투명)으로 조정 */
}


/* sec11 */
.sec11_wrap {
    background-color: #2B0000;
}

.sec11_wrap .sec11 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.sec11_wrap .sec11 .coulmn_box {
    width: 100%;
    border-top: 2px solid #603A34;
}

.sec11_wrap .sec11 .coulmn_box .flex_box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 60px;
}

.sec11_wrap .sec11 .coulmn_box .flex_box img {
    display: block;
    width: 100%;
    opacity: 0.25;
}

.sec11_wrap .textbox p.jal {
    color: #ffe8ce;
    font-size: 40px;
    line-height: 52px;
    opacity: 0.25;
}

.sec11_wrap .textbox .sub_tit {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    opacity: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.01em;
    color: #D7BFA3;


}

.sec11_wrap .textbox p span {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    /* or 143% */
    text-align: center;
    letter-spacing: -0.01em;

    color: #2B0000;


}

.sec11_wrap .coulmn_box.active .flex_box img {
    transition: all 0.3s;
    transition-delay: 0.2s;
    opacity: 1 !important;
}

.sec11_wrap .coulmn_box.active .textbox p.jal {
    transition: all 0.3s;
    transition-delay: 0.5s;
    opacity: 1 !important;
}

.sec11_wrap .coulmn_box.active .textbox .sub_tit {
    transition: all 0.3s;
    transition-delay: 1s;
    opacity: 1 !important;
}

.t_back_01.t_01::after {
    content: url(../img/sec11/marker01-01.png);
}

.t_back_02.t_01::after {
    content: url(../img/sec11/marker01-02.png);
}

.t_back_01.t_02::after {
    content: url(../img/sec11/marker02-01.png);
}

.t_back_02.t_02::after {
    content: url(../img/sec11/marker02-02.png);
}

.t_back_03.t_02::after {
    content: url(../img/sec11/marker02-03.png);
}

.t_back_01.t_03::after {
    content: url(../img/sec11/marker03-01.png);
}

.t_back_02.t_03::after {
    content: url(../img/sec11/marker03-02.png);
}


/* sec12 */
.sec12_wrap {
    position: relative;
    background-color: #280000;
}

.sec12 .jal {
    font-size: 54px;
    line-height: 70px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFE8CE;
}
.sec12 .jal span {
    color: #603A34;
}


.sec12 .line {
    width: 100%;
    height: 2px;
    background-color: #FFE8CE;
    margin-top: 35px;
}
.sec12{
    padding:304px 0 ;
}
.sec12 .st_box {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sec12 .st_box .flex_box {
    width:100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: transform 0.5s;
}

.sec12 .st_box .flex_box img {
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}


.sec12_wrap .cash {
    position: relative;
}

.sec12_wrap .cash p {
    font-size: 54px;
    line-height: 70px;
    text-align: center;
    letter-spacing: 0.02em;

    color: #FFE8CE;


}

.sec12_wrap .cash span {
    display: block;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #D7BFA3;
    margin-top: 15px;
}

.sec12_wrap .cash .textbox {
    margin-bottom: 65px;
}

.sec12_wrap .cash .flex_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sec12_wrap .cash .flex_box .coulmn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.sec12_wrap .cash>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.7s;
}

.sec12_wrap .cash .textbox,
.sec12_wrap .cash .flex_box {
    filter: blur(22px);
}

.sec12_wrap .cash img {
    opacity: 1;
}


/* sec13 */
.sec13_wrap {
    background-image: url(../img/sec13/sec13_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: -10px;
}

.sec13_wrap .sec13 .title img {
    margin: auto;
    display: block;
}
.sec13_wrap .sec13 .title img.only_m{
    display: none;
}
.sec13_wrap .sec13 .title .map {
    margin-top: -200px;
}

.sec13_wrap .grid_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}



/* sec14 */
.sec14_wrap {
    padding-bottom: 220px;
    background-color: #280000;
}

.sec14_wrap img {
    display: block;
}

.sec14_wrap .title img {
    margin: auto;
}

.sec14_wrap .step img {
    margin: 70px auto 0;
}

.sec14_wrap img.only_m {
    display: none;
}





/* sec15 */
.sec15_wrap {
    position: relative;
    background-image: url(../img/sec15_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 250px 0 150px;
}

.sec15_wrap .flex_box {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 150px;
}

.sec15_wrap .flex_box .jal {
    font-size: 54px;
    line-height: 65px;
    letter-spacing: 0.02em;
    color: #FFE8CE;
    text-shadow: 0px 0px 25px rgba(44, 0, 0, 0.65);
    margin-bottom: 30px;
}

.sec15_wrap .flex_box span {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #FFE8CE;
    text-shadow: 0px 0px 25px rgba(44, 0, 0, 0.65);

}

.sec15_wrap .flex_box .right {
    width: 50%;
}

.sec15_wrap .modal_wrap {
    width: 27%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: none;
    transition: opacity 0.3s;
    z-index: 99999;
}

.sec15_wrap .modal_wrap img {
    width: 100%;
}

.contact_form_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    border-radius: 12px;
}


.contact_form label {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.contact_form input[type="text"],
.contact_form textarea {
    width: 100%;
    background-color: rgba(255, 232, 206, 0.55);
    /* 원하는 색상으로 */
    color: #222;
    /* 글자색 */
    border: 2px solid #e5d3b3;
    border-radius: 6px;
    padding: 12px;
    font-size: 18px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.contact_form textarea {
    resize: none;
    min-height: 235px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #FFE8CE;
    /* 불투명한 색상 유지 */
}

.input[type="text"]:focus,
textarea:focus {
    background-color: rgba(255, 232, 206, 0.85);
    /* 포커스 시에도 같은 색상 */
    outline: none;
}

.privacy_box {
    height: 235px;
    background-color: rgba(255, 232, 206, 0.55);
    /* 배경색만 반투명하게 변경 */
    color: #FFE8CE;
    border-radius: 8px;
    padding: 16px;
    margin: 18px 0 8px 0;
    font-size: 15px;
    line-height: 1.6;
    overflow-y: auto;
    /* 스크롤바 숨기기 */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE, Edge */
}

.privacy_box::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.privacy_agree {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 18px;
    color: #fff;
    font-size: 16px;
}

.privacy_agree input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
}

.privacy_agree label {
    font-weight: 400;
}

.privacy_agree a {
    color: #fff;
    text-decoration: underline;
    margin-left: 6px;
    font-size: 15px;
}

.sec15_wrap .btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    margin-top: 150px;
}



.dropdown-menu {
    display: none;
    position: absolute;
    top: 90px;
    /* 햄버거 아래로 */
    right: 15px;
    left: auto;
    min-width: 220px;
    background: #240404;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 8px 0;
    z-index: 9999;
    opacity: 0.9;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s;
}

.dropdown-menu.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    color: #fff;
    font-size: 17px;
    padding: 14px 12px;
    border-bottom: 1px solid #7B4A3A;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-menu li a {
    text-decoration: none;
    color: inherit;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li:hover {
    background: #6B3A2A;
}

#footer {
    background-color: #0c0c0c;
    width: 100%;
    height: 280px;
}

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

#footer .footer img {
    display: block;
    margin: auto;
}

#footer .footer p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.24px;
    color: #FFFFFF;
    text-align: center;
    margin: 20px 0 10px;
}

#footer .footer span {
    display: block;
    font-size: 11px;
    line-height: 22px;
    letter-spacing: 0.22px;
    color: #737373;
    text-align: center;
}

#footer .footer p span {
    display: inline-block;
}

.only_pc {
    display: block;
}

.only_m {
    display: none;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
    }

    #main {
        overflow: hidden;
    }

    .only_pc {
        display: none;
    }

    .only_m {
        display: block;
    }

    .sec {
        width: 85%;
        min-width: 350px;
    }

    img {
        display: block;
        width: 100%;
    }

    .btn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 16px 8px;
        gap: 8px;
        width: 138px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border: 2.6644px solid #FFFFFF;
        box-shadow: 0px 0px 17.7626px rgba(16, 0, 0, 0.4);
        border-radius: 30px;
    }

    .btn p {
        font-family: 'Pretendard';
        font-size: 16px;
        line-height: 19px;
        color: #FFFFFF;
    }

    #header,
    #header.active {
        background-color: #0c0c0c;
    }

    #header .header {
        position: relative;
        height: 60px;
    }

    #header img {
        width: 36px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #header .ham {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 8px;
    }

    #header .ham span {
        background-color: #FFE8CE;
    }




    /* sec01 */
    .sec01_wrap {
        background-image: url(../img/mobile/sec01_bg.png);
        height: 100vh;
    }

    .sec01_wrap .sec01 {
        gap: 30px;
    }

    .sec01_wrap img {
        width: 95%;
        margin: auto;
    }

    .sec01_wrap .sec01 .title {
        align-items: center;
        gap: 8px;
    }

    .sec01_wrap .sec01 .title p {
        font-weight: 400;
        font-size: 14px;
    }

    .sec01_wrap .sec01 .title .line {
        max-width: 56px;
    }


    /* sec02 */
    .sec02_wrap {
        height: 672px;
    }


    .sec02_wrap .m_youtube {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        min-width: 350px;
        min-height: 432px;
        border: 3px solid #EAC397;
        box-shadow: 10px 0px 0px #EAC397, 10px 10px 0px #EAC397, 0px 10px 0px #EAC397;
        border-radius: 10px;
        background-color: #fff;

    }

    .sec02_wrap .m_youtube>div {
        width: 100%;
    }

    .sec02_wrap .m_youtube img {
        width: 70%;
        margin: auto;
    }

    .sec02_wrap .m_youtube img:nth-of-type(2) {
        width: 60%;
    }

    .sec02_wrap .m_youtube iframe {
        width: 100% !important;
        margin: 20px 0;
    }



    /* sec03 */
    .sec03_wrap {
        background-image: url(../img/mobile/sec03_bg.png);
        background-attachment: unset;
        height: auto;
        min-height: 1455px;
        padding: 0;
    }

    .sec03_wrap .me {
        gap: 10px;
        padding: 50px 0;
    }

    .sec03_wrap .me .inner_box {
        opacity: 1;

        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: unset;
        width: 100%;
        height: auto;
        transform: unset;
    }

    .sec03_wrap .me img {
        width: 65%;
        margin: auto;
    }

    .scroll_animation {
        position: relative;
        transform: none;
        opacity: 1;
        top: unset;
        left: unset;
    }

    .scroll_animation span {
        filter: unset;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0.02em;
        color: #935611;
        margin-bottom: 8px;

    }


    /* sec04 */
    .sec04_wrap {
        aspect-ratio: unset;
        height: 36 00px;
        background-image: unset;
    }

    .sec04_wrap .point .tit p {
        font-weight: 400;
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.02em;
        color: #FFEEDA;
    }

    .sec04_wrap .point {
        min-height: 1050px;
        position: relative;
        top: unset;
        left: unset;
        opacity: 1;
        margin-bottom: 50px;
    }

    .sec04_wrap .point .imgbox {
        position: relative;
        top: unset;
        left: unset;
    }

    .sec04_wrap .point .tit p::before {
        left: -20px;
    }

    .sec04_wrap .point .textbox .tit {
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .sec04_wrap .point .sub_tit p {
        font-weight: 600;
        font-size: 14px;
        line-height: 24px;
        /* or 171% */
        letter-spacing: -0.01em;

        color: #D7BFA3;
    }

    .t_back_01::after {
        content: url(../img/marker01-01_m.png);
    }

    .t_back_02::after {
        content: url(../img/marker01-02_m.png);
    }

    .t_back_03::after {
        content: url(../img/marker01-03_m.png);
    }



    #sec04 .t_back_01.m_01::after{
        content: url(../img/marker02-01_m.png);
    }
    #sec04 .t_back_02.m_01::after{
        content: url(../img/marker02-02_m.png);
    }
    #sec04 .t_back_03.m_01::after{
        content: url(../img/marker02-03_m.png);
    }
    #sec04 .t_back_01.m_02::after{
        content: url(../img/marker03-01_m.png);
    }
    #sec04 .t_back_02.m_02::after{
        content: url(../img/marker03-02_m.png);
    }
    




    /* miss */
    .sticky_box{
        position: relative; /* 반드시 relative! */
        height: 180vh;
        overflow: visible;
    }
    .miss_wrap {
        position: sticky;
        top: 0;
        height: 100vh;
        min-height: unset;
        overflow: visible;
        background-color: #2B0000;
        z-index: 1;
    }

    .miss {
        height: 80vh;
        background: url(../img/miss_bg_m.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        align-items: center;
    }

  
    .miss_wrap .circle {
        clip-path: circle(0% at 50% 50%);
    }
    .miss .flex_box {
        min-width: unset;
        margin: unset;
    }

    .miss .flex_box img {
        width: 50%;
    }

    .miss .flex_box.reverse {
        justify-content: end;
        align-items: end;
    }











    /* sec05 */
    .sec05_wrap.wrap {
        padding: 30px 0;
    }

    .sec05 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px 0;
    }

    .sec05 .sticky {
        position: unset;
        top: unset;
        padding: 0px;
        align-self: flex-start;
        padding-top: 0px;
        font-size: 32px;
    }

    .sec05 .sticky p {
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.02em;
        color: #2B0000;


    }

    .sec05 .imgbox {
        padding-top: 50px;
        gap: 10px;
        padding-left: 0px;
    }


    /* sec06 */
    .sec06_wrap {
        aspect-ratio: unset;
        height: auto;
        min-height: 600px;
        max-height: unset;
        max-width: 1920px;
        background: #2B0000;
        padding-bottom: 0;
        padding-top: 0;
    }

    .sec06_wrap .sec06 {
        position: unset;
        justify-content: start;
    }

    .sec06_wrap .inner {
        position: unset;
        top: 0;
        max-width: 1720px;
        transform: unset;
        opacity: 1;
        flex-direction: column-reverse;
        align-items: start;
    }

    .sec06_wrap .inner.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 2;
    }

    .sec06_wrap .left,
    .sec06_wrap .right {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

    .sec06_wrap .sec06 .inner .left {
        color: #FFE8CE;
        padding-top: 30px;
        padding-left: 0px;
        position: relative;
        margin: 120px 15px 30px;
    }

    .sec06_wrap .sec06 .inner .left::before {
        font-family: 'Acumin Pro';
        content: "1.";
        font-size: 100px;
        position: absolute;
        left: 0;
        top: -35px;
    }

    .sec06_wrap .sec06 .inner.in_02 .left::before {
        font-family: 'Acumin Pro';
        content: "2.";
        left: 0px;
    }

    .sec06_wrap .sec06 .inner.in_03 .left::before {
        font-family: 'Acumin Pro';
        content: "3.";
        left: 0px;
    }

    .sec06_wrap .sec06 .inner .left p {
        margin-bottom: 10px;
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.02em;
        color: #FFE8CE;


    }

    .sec06_wrap .sec06 .inner .left span {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: -0.01em;
        color: #FFE8CE;


    }









    /* sec07 */

    .sec07_wrap {
        width: 100%;
        height: 800px;
        background: url(../img/mobile/sec07_bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .sec07_wrap .sec07 p {
        font-size: 32px;
        font-weight: 400;
        line-height: 44px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #2B0000;


    }

    /* sec08 */
    .sec08_wrap {
        width: 100%;
        position: relative;
        height: 100%;
        padding-bottom: 150px;
        position: relative;
    }

    .sec08_wrap .bg_box {
        background-image: url(../img/review/r_bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        /* 배경 고정 */
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .sec08 {
        padding: 80px 0;
    }

    .sec08 p {
        font-weight: 400;
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 42px;
    }

    .sec08_wrap .sec08>img {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 8;
        width: 100%;
        height: 100%;
    }

    .sec08_wrap .under>p {
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        line-height: 42px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #B1B1B1;
        margin-bottom: 50px;
    }

    .sec08_wrap .under {
        margin-top: 160px;
    }

    .sec08_wrap .m_review {
        position: absolute;
        bottom: -100px;
        z-index: 99;
    }

    .sec08_wrap .m_review img {
        margin: auto;
        display: block;
    }

    .sec08_wrap .m_review img:nth-child(2) {
        margin-top: -40px;
    }

    .infinite_slider {
        position: relative;
        z-index: 9;
        width: 100%;
        overflow: hidden;
        /* Hide anything outside the slider */
        padding: 20px 0 100px;
    }

    .infinite_slider .one,
    .infinite_slider .two {
        display: flex;
        white-space: nowrap;
        /* Prevent images from wrapping */
        animation: none !important;
        /* Adjust duration as needed */
        gap: 6px;
        /* Space between images */
    }

    .infinite_slider .one,
    .infinite_slider .two {
        animation-direction: normal;
        /* Move left to right */
    }

    .infinite_slider .two {
        margin-top: 6px;
        /* Space between two rows of sliders */
    }



    .sec08_wrap .grid_box {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .sec08_wrap .grid_box .grid_inner {
        height: 236px;
    }

    .sec08_wrap .grid_box .grid_inner .jal {
        font-weight: 400;
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0.02em;
        color: #FFFFFF;
    }




    /* sec09 */
    .sec09_wrap {
        height: 880px;
        padding: 70px 0;
        background-image: url(../img/sec09/sec09_bg.png);
    }

    .sec09 .title {
        padding-left: 0px;
        width: 99%;
    }

    .sec09 .title .jal {
        font-size: 7.69vw;
        line-height: 42px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #C6BEB3;
        font-weight: 400;
    }

    .sec09 .title .jal:nth-child(2) {
        margin-top: 0px;
        margin-bottom: 20px;
        font-size: 7.4vw;
        line-height: 42px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFF8F0;
    }

    .marquee-container {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .marquee-container.two {
        margin-top: 6px;
    }

    .marquee-track {
        display: flex;
        width: fit-content;
        animation: scroll-right 30s linear infinite;
    }

    .marquee-group {
        display: flex;
    }

    .marquee-track img {
        margin-right: 6px;
        width: 370px;
        height: auto;
    }





    /* sec10 */
    .sec10_wrap {
        background-image: url(../img/sec10/sec10_bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 40px 0;
    }

    .sec10 {
        padding: 0;
        padding-bottom: 30px;
        text-align: center;
        margin: 0 20px;
    }

    .sec10 .title {
        margin-bottom: 40px;
    }

    .sec10 .title img {
        height: auto;
        margin-left: 0px;
        margin: auto;
    }

    .sec10 .title img:nth-child(1) {
        width: 70%;
    }


    .sec10 .flex_box {
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
    }

    .sec10 .flex_box img {
        width: 100%;
    }

    .sec10 .flex_box .l_img {
        width: 100%;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .sec10 .flex_box .l_img img {
        width: 100%;
        height: 102vw;
    }

    .sec10 .grid_box {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }

    .sec10 .grid_box img {
        width: 100%;
        height: 102vw;
        max-width: unset;
        max-height: unset;
    }


    .hover_black:hover {
        filter: brightness(0.3);
    }

    .tr {
        border-top-right-radius: 0cm;
    }

    .br,
    .br img {
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .swiper.mySwiper {
        margin-top: 40px;
    }

    .arrow_box {
        margin: 30px auto 0;
    }

    .swiper-gradient-left,
    .swiper-gradient-right {
        display: none;
    }






    /* sec11 */
    .sec11_wrap {
        background-color: #2B0000;
    }

    .sec11_wrap .sec11 {
        align-items: center;
    }


    .sec11_wrap .sec11 .coulmn_box .flex_box {
        width: 100%;
        flex-direction: column;
        gap: 60px;
    }

    .sec11_wrap .sec11 .coulmn_box .flex_box img {
        display: block;
        width: 100%;
        opacity: 0.25;
    }

    .sec11_wrap .sec11 .coulmn_box {
        padding: 50px 0;
    }

    .sec11_wrap .textbox p.jal {
        position: relative;
        text-align: center;
        font-weight: 400;
        font-size: 30px;
        line-height: 42px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFE8CE;
    }

    .sec11_wrap .textbox p span {
        font-weight: 800;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        letter-spacing: -0.01em;
        color: #2B0000;
    }

    .sec11_wrap .textbox p.jal::before {
        content: "\";
        position: absolute;
        top: 0;
        left: 40px;
    }

    .sec11_wrap .coulmn_box:nth-child(2) .textbox p.jal::before {
        left: 1px;
    }
    .sec11_wrap .coulmn_box:nth-child(3) .textbox p.jal{padding-left: 20px;}
    .sec11_wrap .coulmn_box:nth-child(3) .textbox p.jal::before {
        left: 10px;
    }

    .sec11_wrap .textbox .sub_tit {
        z-index: 2;
        margin-top: 30px;
        opacity: 0;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        letter-spacing: -0.01em;
        color: #FFE8CE;
        text-align: center;
    }

    .sec11_wrap .coulmn_box.active .flex_box img {
        transition: all 0.3s;
        transition-delay: 0.2s;
        opacity: 1 !important;
    }

    .sec11_wrap .coulmn_box.active .textbox p.jal {
        transition: all 0.3s;
        transition-delay: 0.5s;
        opacity: 1 !important;
    }

    .sec11_wrap .coulmn_box.active .textbox .sub_tit {
        transition: all 0.3s;
        transition-delay: 1s;
        opacity: 1 !important;
    }

    .t_back_01.t_01::after {
        content: url(../img/sec11/marker01-01_m.png);
    }

    .t_back_02.t_01::after {
        content: url(../img/sec11/marker01-02_m.png);
    }

    .t_back_01.t_02::after {
        content: url(../img/sec11/marker02-01_m.png);
    }

    .t_back_02.t_02::after {
        content: url(../img/sec11/marker02-02_m.png);
    }

    .t_back_03.t_02::after {
        content: url(../img/sec11/marker02-03_m.png);
    }

    .t_back_01.t_03::after {
        content: url(../img/sec11/marker03-01_m.png);
        left: -35px;
    }

    .t_back_02.t_03::after {
        content: url(../img/sec11/marker03-02_m.png);
    }


    /* sec12 */
    .sec12_wrap {
        background-color: #280000;
        padding-bottom: 0;
    }
    .sec12{
        padding: 100px 0;
    }
    .sec12 .jal {
        font-size: 30px;
        line-height: 42px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFE8CE;
        /* 벽돌곱창은 이런 분과 함께하고 싶습니다. */

        font-weight: 400;
    }

   
    .sec12 .line {
       display: none;
    }

    .sec12 .st_box .flex_box {
        margin-top: 15px;
        flex-direction: column;
        gap: 20px;
    }

    .sec12 .st_box .flex_box img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }



    .sec12_wrap .cash {
        padding-top: 0;
    }

    .sec12_wrap .cash p {
        font-size: 30px;
        font-weight: 400;
        line-height: 42px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFE8CE;
    }

    .sec12_wrap .cash span {
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        letter-spacing: -0.01em;
        color: #D7BFA3;

    }



    .sec12_wrap .cash .textbox {
        margin-bottom: 65px;
    }

    .sec12_wrap .cash .flex_box {
        flex-direction: column;
        gap: 30px;
    }

    .sec12_wrap .cash .flex_box .coulmn_box {
        gap: 15px;
    }



    /* sec13 */
    .sec13_wrap {
        padding-top: 50px;
    }

    .sec13 {
        border-bottom: 1px solid #382D1F;
    }

    .sec13_wrap .sec13 .title img:nth-child(1) {
        display: none;
    }

    .sec13_wrap .sec13 .title .map {
        margin-top: -100px;
        border-bottom: 1px solid #382D1F;
    }

    .sec13_wrap .grid_box {
        padding-top: 30px;
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }

    .sec13_wrap .grid_box.sec {
        height: 800px;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE, Edge */
    }
    .sec13_wrap .sec13 .title img.only_m{
        display: block;
    }
    .sec13_wrap .grid_box.sec::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }


    /* sec14 */
    .sec14_wrap {
        background-color: #280000;
    }

    .sec14_wrap img {}

    .sec14_wrap .title img {
        width: 80%;
        margin: auto;
    }

    .sec14_wrap .step {
        margin: 0 15px;
    }

    .sec14_wrap .step img {
        margin: 30px auto 0;
    }

    .sec14_wrap img.only_pc {
        display: none;
    }

    .sec14_wrap img.only_m {
        display: block;
    }

    /* sec15 */
    .sec15_wrap .flex_box {
        flex-direction: column;
    }

    .sec15_wrap {
        padding: 250px 0 150px;
    }

    .sec15_wrap .flex_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 30px;
    }

    .sec15_wrap .flex_box .jal {
        font-size: 30px;
        font-weight: 400;
        line-height: 36px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFE8CE;
        display: block;
        margin-bottom: 30px;
    }

    .sec15_wrap .flex_box span {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        letter-spacing: -0.01em;
        color: #FFE8CE;
        display: block;
        margin-bottom: 20px;
    }

    .sec15_wrap .flex_box .right {
        width: 100%;
    }

    .contact_form_wrap {
        padding: 0;
        border-radius: 12px;
    }

    .contact_form label {
        font-size: 16px;
        margin: 8px 0;
    }

    .contact_form input[type="text"],
    .contact_form textarea {
        width: 100%;
        background-color: rgba(255, 232, 206, 0.55);
        /* 배경색만 반투명하게 변경 */
        border: 2px solid #e5d3b3;
        border-radius: 6px;
        padding: 12px;
        font-size: 18px;
        color: #222;
        margin-bottom: 8px;
        box-sizing: border-box;
    }

    .contact_form textarea {
        resize: none;
        min-height: 235px;
    }

    .privacy_box {
        margin-top: 0;
    }

    .privacy_box::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .privacy_agree {
        display: flex;
        align-items: start;
        justify-content: space-between;
        margin-top: 10px;
        color: #fff;
        font-size: 16px;
    }

    .privacy_agree input[type="checkbox"] {
        margin-right: 8px;
        width: 18px;
        height: 18px;
        margin-bottom: 10px;
    }

    .privacy_agree label {
        font-weight: 400;
        display: flex;
        align-items: start;
        text-align: end;
        line-height: 130%;
    }

    .privacy_agree a {
        color: #fff;
        text-decoration: underline;
        margin-left: 15px;
        font-size: 15px;
    }

    .sec15_wrap .btn {
        font-size: 16px;
        line-height: 24px;
        margin-top: 50px;
    }



    /* footer */

    #footer .footer img {
        width: 46px;
    }

    #footer .footer p span.only_pc {
        display: none;
    }


    .dropdown-menu {
        position: fixed;
        top: 90px;
        /* 햄버거 아래로 */
        left: 0;
        right: 0;
        width: 100%;
        min-width: unset;
        padding: 0;
    }

    .dropdown-menu li {
        color: #fff;
        font-size: 17px;
        padding: 20px 12px;
        border-bottom: 1px solid #7B4A3A;
        cursor: pointer;
        transition: background 0.2s;
    }

    .wrapwrap {
        overflow: visible !important;
    }
}




.popup_wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .popup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 0;
    margin: 0 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
  }
  .popup img {
    max-width: 90vw;
    max-height: 60vh;
    border-radius: 16px 16px 0 0;
    display: block;
  }
  .popup_btns {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 0 0 16px 16px;
    gap: 12px;
  }
  .popup_btns button {
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .popup_btns .no24 {
font-family: 'Pretendard';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 19px;
color: #8C8C8C;
  }
  .popup_btns .close {
font-family: 'Pretendard';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 19px;
color: #000000;
  }
  
  .popup_01{
   z-index: 6;
  }
  .popup_02{
    z-index: 5;
  }
  @media (max-width: 768px) {
    .popup img { max-width: 98vw; max-height: 103vw; }
    .popup_btns { padding: 2.05vw 1vw; font-size: 14px; }
  
    .popup_btns button{
        padding: 1vw;
    }
    .popup_01{
        transform: none;
        position: absolute;
        top: 100px;
      left: 15px;
    }
    .popup_02{
        transform: none;
        position: absolute;
        top: 100px;
      left: 15px;
    }
  }