#fullpage{
    width: 100vw;
}
/* Section0 */
.section{
    overflow: hidden;
}
.sec1 .rel_wrap{
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.main_visual_wrap{
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: calc(100% - var(--header_height));
    bottom: 0;
    left: 0;
    transition: all .6s ease-in-out;
    animation: visual_bg_ani 1s ease-in-out 3s forwards;
    opacity: 0%;
    z-index: -1;
}
.sec2 .rel_wrap{
    background-color: transparent;
}
.fp-viewing-sec1 .main_visual_wrap{
    width: calc(var(--rel_padding) + 40% + 240px);
    left: 0;
}
.main_visual_wrap:after{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-size: cover;
    bottom: 0;
    left: 0;
    /* background-image: url(../img/main_visual_bg.jpg); */
    background-image: url(../img/main_visual_bg_wide2.jpg);
    clip-path: inset(0 0 0 100%);
    animation: visual_bg_ani 1s ease-in-out 3s forwards;
    transition: all 1s ease-in-out;
    background-position: bottom right;
}
@keyframes visual_bg_ani{
    to{
        clip-path: inset(0 0 0 0);
        opacity: 100%;
    }
}
.main_visual_txt_wrap{
    position: absolute;
    right: var(--rel_padding);
    width: 310px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0%;
    transition: all .1s;
}
.sec1.active .main_visual_txt_wrap{
    opacity: 100%;
}
.visual_sub_title{
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);    
    animation: visual_txt_ani 1s ease-in-out 1s forwards;
    opacity: 0%;
    background-color: var(--m_color);
    border-radius: 16px 0 16px 0;
    padding: 9px 30px;
}
.visual_sub_title img{
    max-width: 100%;
}
.visual_sub_title span{
    letter-spacing: 0;
}
.visual_title{
    max-width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(20px);    
    animation: visual_txt_ani 1s ease-in-out forwards;
    opacity: 0%;
}
.visual_title img:nth-child(1){
    max-width: 100%;
}
.visual_title img:nth-child(2){
    margin-top: -5px;
    max-width: 100%;
}
.visual_sub_txt{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6px 0;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    text-align: center;
    animation: visual_txt_ani 1s ease-in-out 2s forwards;
    opacity: 0%;
    border-top: 1px solid var(--m_color);
    border-bottom: 1px solid var(--m_color);
}
.visual_sub_txt b{
    font-weight: 700;
    color: #000;

}@keyframes visual_txt_ani{
    to{
        transform: translateY(0);
        opacity: 100%;
    }
}
.sec1{
    opacity: 0%;
    transition: opacity 0.4s;
}
.main_visual_customer_btn{
    position: absolute;
    bottom: 40px;
    right: var(--rel_padding);
    opacity: 0%;
    animation: op100 1s ease-in-out 3s forwards;
}
@keyframes op100{
    to{
        opacity: 100%;
    }
}
.main_visual_customer_btn a{
    position: relative;
    width: 106px;
    height: 106px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all .6s ease-in-out;
}
.main_visual_customer_btn a::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-image: url(../img/customer_line.png);
    background-size: cover;
    width: 130px;
    height: 139px;
    animation: customer_btn 10s infinite linear;
    transition: all .2s ease-in-out .4s;
    pointer-events: none;
}
.main_visual_customer_btn a::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--m_color);
    border-radius: calc(1px / 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all .6s ease-in-out;
}
.main_visual_customer_btn a:hover::before{
    width: 140%;
    height: 140%;
}
.main_visual_customer_btn a:hover::after{
    filter: brightness(10);
}
@keyframes customer_btn{
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.main_visual_customer_btn a img{
    width: 32px;
    height: 30px;
}

.main_visual_customer_btn a span{
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    margin-top: 5px;
}
.main_visual_mouse_down_wrap{
    position: absolute;
    left: calc(var(--rel_padding) / 2);
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0%;
    animation: op100 1s ease-in-out 3s forwards;
}
.mouse_down_icon{
    width: 12px;
    height: 22px;
    border: 1px solid #000;
    border-radius: calc(1px / 0);
    position: relative;
}
.mouse_down_icon::after{
    content: "";
    background-color: #000;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    position: absolute;
    border-radius: calc(1px / 0);
}
.mouse_down{
    margin-top: 10px;
    height: 100px;
    width: 1px;
    background-color: #ccc;
    transform: translateX(4.5px);
    position: relative;
}
.mouse_down:after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: calc(1px / 0);
    background-color: var(--m_color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse_down_ani 4s infinite;
}
@keyframes mouse_down_ani{
    0%{
        top: 0;
        opacity: 100%;
    }
    75%{
        top: 100px;
        opacity: 100%;
    }
    100%{
        opacity: 0%;
        top: 100px;
    }
}
.sec1.active{
    opacity: 100%;
}
body.fp-viewing-sec3{
    background-color: #fff;
}
.fp-viewing-sec2 .main_visual_wrap,
.fp-viewing-sec3 .main_visual_wrap{
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.main_visual_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0%;
    transition: all 1s ease-in-out;
}
.fp-viewing-sec2 .main_visual_wrap img,
.fp-viewing-sec3 .main_visual_wrap img{
    opacity: 100%;
}
.fp-viewing-sec2 .main_visual_wrap::after,
.fp-viewing-sec3 .main_visual_wrap::after{
    filter :opacity(0%);
}
.fp-viewing-sec1 .header,
.fp-viewing-sec2 .header,
.fp-viewing-sec3 .header{
    background-color: #fff;
}
.sec2 .rel_wrap{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.sec2 .visual_flex_wrap{
    display: flex;
    gap: 60px;
    align-items: flex-end;
}
.sec02_visual_txt{
    font-size: 30px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    opacity: 0%;
    transition: all .6s ease-in-out;
    transform: translateY(-20px);
}
.sec02_visual_txt strong{
    color: var(--m_color);
    font-weight: 700;
}
.sec02_logo_wrap{
    width: 80px;
}
.sec02_logo_wrap img{
    max-width: 100%;
}
.fp-viewing-sec3 .sec02_visual_txt{
    transform: translateY(-20px);
}
.fp-viewing-sec2 .sec02_visual_txt,
.fp-viewing-sec3 .sec02_visual_txt{
    opacity: 100%;
    transform: translateY(20px);
}
.sec02_visual_txt span{
    color: #000;
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
    font-weight: 400;
}
.sec02_visual_txt span strong{
    color: var(--m_color);
}
.visu02_txtbox{
    margin-top: 10px;
    display: flex;
    align-items: center;
    border-radius: calc(1px / 0);
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 15px;
    transform: translateY(20px);
    opacity: 0%;
    transition: all .6s ease-in-out;
}
.fp-viewing-sec3 .visu02_txtbox{
    transform: translateY(-20px);
}
.fp-viewing-sec2 .visu02_txtbox{
    opacity: 100%;
    transform: translateY(20px);
}
.sec3 .rel_wrap{
    height: 300px;
    background-color: #fff;
    padding: 50px var(--rel_padding) 0;
}
.fp-viewing-sec3 .main_visual_wrap{
    transform: translateY(-300px);
}
body:not(.fp-viewing-sec1,.fp-viewing-sec2,.fp-viewing-sec3) .main_visual_wrap{
    transform: translateY(-100vh);
}
.sec_sub_title{
    font-size: 18px;
    font-weight: 800;
    color: var(--m_color);
    letter-spacing: 5px;
}
.sec3_overview{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec3_overview dl{
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sec3_overview_txt{
    font-size: 26px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}
.sec3_overview_sub_txt{
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 20px;
}
.sec3_overview dd{
    font-size: 14px;
    font-weight: 700;
    color: var(--m_color);
}
.sec3_overview img{
    max-width: 260px;
    height: 100%;
}
.sec5 .swiper-slide{
    opacity: 0% !important;
}

.sec4_img_wrap{
    position: absolute;
    bottom : 0;
    height: 40%;
    max-height: 500px;
    background-image: url(../img/sec4_bg_img.jpg);
    background-size: cover;
    background-position: bottom;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - calc(var(--rel_padding) * 2));
}
.sec4_img_txt{
    position: absolute;
    height: 207px;
    top: -123px;
    left: 50%;
    transform: translateX(-50%);
}
.sec4 .sec_title_wrap{
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(40% + 300px);
}
.sec4 .sec_title{
    position: relative;
}
.sec4 .sec_title::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -130px;
    background-color: #777;
    height: 60px;
    width: 1px;
    transform: translateX(-50%);
}
.sec4 .sec_sub_title{
    transform: translateY(20px);
    opacity: 0%;
    transition: all 1s ease-in-out;
    transition-delay: 1s;
}
.sec4 .sec_title{
    transform: translateY(20px);
    opacity: 0%;
    transition: all 1s ease-in-out;
    transition-delay: 2s;
}
.sec4 .sec_title::after{
    opacity: 0%;
    transition: all .4s ease-in-out;
    transition-delay: 3s;
}
.sec4_img_wrap{
    clip-path: inset(100% 0 0 0);
    transition: all 1s linear .6s;
    transition-delay: 4s;
}
.sec4_img_txt{
    opacity: 0%;
    transition: all .4s ease-in-out .6s;
    transition-delay: 5s;
}
.fp-viewing-sec4 .sec4 .sec_sub_title{
    transform: translateY(0);
    opacity: 100%;
}
.fp-viewing-sec4 .sec4 .sec_title{
    transform: translateY(0);
    opacity: 100%;
}

.fp-viewing-sec4 .sec4 .sec_title::after{
    opacity: 100%;
}
.fp-viewing-sec4 .sec4_img_wrap{
    clip-path: inset(-200px 0 0 0);
}
.fp-viewing-sec4 .sec4_img_txt{
    opacity: 100%;
}
.sec5 .swiper-slide.swiper-slide-active{
    opacity: 100% !important;
}
.sec5 .sec_title_wrap{
    margin-top: 180px;
}
.sec_title{
    font-size: 32px;
    line-height: 1.3;
}
.sec_title b{
    font-weight: 700;
}
.sec_title_sub_txt{
    font-size: 15px;
    line-height: 1.5;
    color: #888;
}
.sec5 .sec_title_sub_txt{
    font-size: 18px;
    color: #000;
}
.sec_sub_title ~ .sec_title{
    margin-top: 20px;
}
.sec_title ~ .sec_title_sub_txt{
    margin-top: 20px;
}
.sec5 .slide_img_wrap{
    position: absolute;
    bottom: 0;
    right: var(--rel_padding);
    display: flex;
    gap: 30px;
}
.sec5 .slide_img_wrap img{
    width: 290px;
    height: 600px;
    clip-path: inset(100% 0 0 0);
    transition: all .6s ease-in-out .6s;
}
.sec5 .slide_img_wrap img:nth-child(2){
    clip-path: inset(0 0 100% 0);
}
.sec5 .swiper-slide-active .slide_img_wrap img{
    clip-path: inset(0 0 0 0);
}
.sec5 .slide_img_wrap img:nth-child(1){
    transform: translateY(-100px);
}
.sec5 .slide_img_wrap img:nth-child(2){
    transform: translateY(-200px);
}
.slide_img_bg_txt{
    position: absolute;
    bottom: 110px;
    right: calc(var(--rel_padding) + 840px);
    z-index: 2;
}
.sec6_flex_wrap{
    display: flex;
    align-items: center;
    height: 100%;
}
.sec6_flex_wrap > *{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.sec6_flex_wrap > *::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all .3s ease-in-out;
}
.sec6_flex_wrap > *:hover::before{
    opacity: 1;
}
.sec6_flex_wrap > div:nth-child(1)::after, .sec6_flex_wrap > *:nth-child(3)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 0%;
    background-color: #fff;
    transition: all .6s ease-in-out;
    transition-delay: 1s;
}
.sec6_flex_wrap > div:nth-child(2)::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0%;
    background-color: #fff;
    transition: all .6s ease-in-out;
    transition-delay: 1s;
}
.fp-viewing-sec6 .sec6_flex_wrap > div::after{
    height: 100%;
}
.sec6_inner > *:not(.sec6_title_top){
    opacity: 0%;
    display: none;
}
.sec6_inner:hover > *:not(.sec6_title_top){
    display: block;
    animation: sec6_ani .6s ease-in-out forwards;
}
@keyframes sec6_ani{
    to{
        opacity: 100%;
    }
}
.sec6_title_top,
.sec6_title_bottom{
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.sec6_title_top{
    margin-top: 10px;
    opacity: 0%;
    transition: all .6s ease-in-out;
    transition-delay: 1s;
}
.fp-viewing-sec6 .sec6_title_top{
    opacity: 100%;
}
.sec6_title_bottom{
    margin-bottom: 40px;
}
.sec6_detail{
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.sec6_inner > img{
    width: 52px;
}
.sec6_bg_wrap{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(.8);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .6s ease-in-out;
    background-position: center;
    transition-delay: .2s;
}
.sec7 .rel_wrap{
    height: calc(100% - var(--header_height));
    margin-top: var(--header_height);
    display: flex;
    align-items: center;
}
.sec7 .map_wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.sec7 .map_wrap .sec_title{
    font-weight: 700;
}
.map_btn_wrap{
    margin-top: 30px;

}
.map_btn_wrap{
    display: flex;
    gap: 10px;
}

.sec_txt_map_address span {
    font-size: 20px;
}

.sec_txt_map_address {
    margin-top: 35px;
}
.sec5 .swiper-container{
    height: 100vh;
}
.m_map_wrap {
    display: none;
}

/* 반응형 */
@media (max-width: 1600px) {
    .fp-viewing-sec1 .main_visual_wrap{
        width: 50%;
    }
    .main_visual_wrap:after{
        background-position-y: center;
    }
    .main_visual_txt_wrap{
        width: calc(50% - var(--rel_padding));
        display: flex;
    }
    .main_visual_txt_wrap > *{
        max-width: 310px;
    }
    .main_visual_wrap img{
        object-position: right;
    }
    .footer_bottom{
        gap: 20px;
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 1400px) {
    .sec5 .slide_img_wrap img:nth-child(1){
        display: none;
    }
    .slide_img_bg_txt{
        display: none;
    }
    .sec4 .sec_title_wrap{
        width: 100%;
    }
    .sec6_flex_wrap{
        flex-wrap: wrap;
    }
    .sec6_flex_wrap > *{
        flex: 1 1 50%;
        height: 50%;
    }
    .sec6_flex_wrap > *:nth-child(3)::after{
        left: 0;
        top: 0;
        right: unset;
        bottom: unset;
        width: 0%;
    }
    .fp-viewing-sec6 .sec6_flex_wrap > *:nth-child(3)::after{
        height: 1px;
        width: 100%;
    }
    .sec6_flex_wrap > div:nth-child(2)::after{
        left: 0;
        bottom: -1px;
        right: unset;
        top: unset;
        width: 0%;
    }
    .fp-viewing-sec6 .sec6_flex_wrap > *:nth-child(2)::after{
        height: 1px;
        width: 100%;
    }
    .sec6_flex_wrap > *:nth-child(4)::after{
        content: "";
        position: absolute;
        left: -1px;
        top: 0;
        width: 1px;
        height: 0%;
        background-color: #fff;
        transition: all .6s ease-in-out;
        transition-delay: 1s;
    }
    .fp-viewing-sec6 .sec6_flex_wrap > *:nth-child(4)::after{
        width: 1px;
        height: 100%;
    }
    .map_wrap dt::after{
        content: unset;
    }
    .map_wrap dt{
        padding-left: unset;
    }
}
@media (max-width: 1200px) {
    .fp-viewing-sec1 .main_visual_wrap{
        width: 100%;
        height: 50%;
    }
    .main_visual_txt_wrap{
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .main_visual_wrap:after{
        background-position-y: calc(100% + 100px);
    }
    .sec5 .sec_title_wrap{
        margin-top: calc(var(--header_height) + 50px);
    }
    .sec5 .slide_img_wrap img:nth-child(1) {
        display: none;
    }
    .slide_img_bg_txt{
        display: none;
    }
    .sec7 .map_wrap{
        flex-direction: column;
    }
    .sec7 .map_wrap .sec_title{
        margin-bottom: 20px;
    }
    .map_btn_wrap{
        margin-top: 10px;
        margin-bottom: 10px;
        flex-direction: row;
    }
    .map_img_wrap{
        width: 100%;
    }
}
@media (max-width: 800px) {
    .main_visual_txt_wrap{
        width: 100%;
    }
    .sec2 .visual_flex_wrap{
        gap: 40px;
        align-items: flex-start;
        flex-direction: column;
    }
    .sec3_overview{
        flex-wrap: wrap;
        gap: 60px 20px;
    }
    .sec3_overview dl{
        flex-direction: row;
        width: calc(50% - 10px);
    }
    .sec3_overview dl{
        height: auto;
        align-items: center;
    }
    .sec3_overview_sub_txt{
        display: none;
    }
    .sec3_overview img{
        display: none;
    }
    .sec3_overview dt{
        display: flex;
        gap: 20px;
    }
    .sec5 .slide_img_wrap{
        justify-content: flex-end;
    }
    .sec5 .slide_img_wrap img{
        width: calc(50% - 15px - calc(var(--rel_padding) / 2));
        height: auto;
    }
    .sec5 .slide_img_wrap img:nth-child(2){
        transform: translateY(0);
    }
    .sec5 .slide_img_wrap img:nth-child(3){
        transform: translateY(-50px);
    }
    .sec4 .sec_title::after{
        bottom: -80px;
    }
    .sec4 .sec_title_wrap{ 
        bottom: calc(40% + 200px);
    }
    .sec_title{
        font-size: 22px;
    }
    .mo_only{
        display: block;
    }
    .sec5 .slide_img_wrap{
        gap: 10px;
        bottom: 20px;
    }
    .sec5 .slide_img_wrap img{
        width: calc(50% - 5px - calc(var(--rel_padding) / 2));
    }
    .sec6_inner > img{
        width: 40px;
    }
    .sec6_title_top, .sec6_title_bottom{
        font-size: 20px;
    }
    .sec6_detail{
        font-size: 15px;
    }
    .main_visual_txt_wrap > *{
        max-width: 260px;
    }
    .sec02_visual_txt{
        font-size: 24px;
    }
    .sec2 .visual_flex_wrap{
        gap: 0px;
    }
    .sec3_overview_txt{
        font-size: 18px;
    }
    .sec4_img_wrap{
        height: 150px;
    }
}
@media (max-width: 768px) {
    .main_visual_wrap:after{
        background-position-y: 100%;
    }
    
    /* 모바일에서 터치 스크롤 개선 */
    body, html {
        touch-action: manipulation;
    }
    
    #fullpage {
        touch-action: pan-y;
    }
    
    .section {
        touch-action: pan-y;
        overflow-y: auto;
    }
    
    /* 스와이퍼 섹션 모바일 최적화 */
    .sec5 {
        touch-action: pan-y;
        overflow: hidden;
        position: relative;
    }
    
    .sec5 .swiper-container {
        touch-action: pan-y;
        overflow: hidden;
        height: 100vh;
    }
    
    .sec5 .swiper-wrapper {
        touch-action: pan-y;
    }
    
    .sec5 .swiper-slide {
        touch-action: pan-y;
        height: 100%;
    }

    .map_img_wrap {
        display: none;
    }
    .m_map_wrap {
        display: block;
    }
    .m_map_wrap img {
        display: flex;
        margin: 0 auto;
        max-width: 75%;
    }
    .sec_title_wrap {
        text-align: center;
    }
    .map_wrap dt{
        font-size: 18px;
    }

    .sec_txt_map_address {
        margin-top: 5px;
    }
    .sec_txt_map_address{
        display: flex;
        gap: 10px;
        align-items: flex-start;
        white-space: nowrap;
        justify-content: center;
    }
    .map_wrap dd{
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.5;
    }
    .map_wrap dt{
        font-size: 14px;
    }
    .sec_txt_map_address span{
        font-size: 13px;
    }
    .map_btn_wrap{
        margin-top: 5px;
    }
    .map_btn_wrap{
        display: none;
    }
}