*{
    margin:0;
    padding:0;
}


a{
    text-decoration: none;
    color:#030A13;
}

li{
    list-style: none;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

body{
    width:100%;
    font-family: 'Pretendard';
    color:#030A13;
    scroll-behavior: smooth;
    overflow-x: hidden;
}



body::-webkit-scrollbar{
    display: none;
}


section{
    position: relative;
    width:100%;
    margin-top:10%;
}



section > div{
    width:80%;
    margin:0 auto;
}


section h1{
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 800;
}


section p{
    font-size: 1.5rem;
    line-height: 2rem;
}


header{
    display: none;
}



/* ---------visual scroll----------- */


.scroll_ani{
    position: fixed;
    width:100%;
    height: 90px;
    bottom:8%;
    color:#fff;
    z-index: 999;
}

.scroll_ani p{
    position: absolute;
    left:50%;
    transform: translateX(-50%);
}


.scroll_ani span{
    content:"";
    position: absolute;
    display: block;
    width:25px;
    height:25px;
    left: 50%;
    transform: translateX(-50%);
}


.scroll_ani_up::after{
    content:"";
    position: absolute;
    display: inline-block;
    width:19px;
    height:2px;
    rotate: 45deg;
    transform-origin: top left;
    background: #fff;
}

.scroll_ani_up::before{
    content:"";
    position: absolute;
    display: inline-block;
    right:0;
    width:19px;
    height:2px;
    rotate: -45deg;
    transform-origin: top right;
    background: #fff;
}






.scroll_ani_up{
    animation: scroll_ani_up 1s infinite linear;
}



@keyframes scroll_ani_up{
    0%{
        opacity: 1;
        bottom:20%;
    }

    100%{
        opacity: 0;
        bottom:10%;
    }
}










/* ---------visual----------- */



.visual_display{
    display: none;
}


.visual_wrap {
    margin-top:0;
    position: relative;
    height:400vh;
    background: #030A13;
}

.visual_main{
    position: sticky;
    width:100%;
    top:50%;
    transform: translateY(-50%);
    display: flex;
}



.visual_left{
    width:50%;
}


.visual_main h1{
    font-size: 3.5rem;
    line-height: 4.5rem;
    margin-left:15%;
    color:#fff;
}




.visual_right{
    width:50%;
}


.visual_line{
    position: relative;
    top:50%;
    width:100%;
    height:2px;
    overflow: hidden;
}

.visual_line span{
    display: block;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    width:100%;
    height:2px;
    background: #fff;
}



.visual_circle{
    position: absolute;
    width:50px;
    height:50px;
    top:50%;
    left:95%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 50%;
}





/* ---------banner----------- */



.banner_wrap {
    position: sticky;
    width: 95%;
    top: 0;
    height: 100vh;
    padding: 2%;
    opacity: 0;
}

.banner_wrap_ani_fadein {
    animation: banner_wrap_ani_fadein 0.3s ease-in-out forwards; /* forwards 추가 */
    opacity: 1; /* 애니메이션이 끝난 후에도 유지 */
}

@keyframes banner_wrap_ani_fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}








.banner{
    position: relative;
    width:100%;
    height:90%;
    margin:0 auto;
}

.banner_img_wrap{
    width:100%;
    height:100%;   
}

.banner_img, .slick-list, .draggable{
    height:100%;
    border-radius: 50px;
}


.banner_img_wrap img{
    width: 100%;
    height:100%;
}





.banner_text_Wrap{
    position: absolute;
    width:72%;
    left:0%;
    bottom:0%;
    background: url('../img/main/banner_text_bg.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.banner_text_main{
    padding:10% 5% 5% 4%;
}

.banner_text_Wrap p{
    font-size: 2rem;
    margin-bottom:3%;
}

.banner_text_Wrap h1{
    font-size: 3rem;
    font-weight: 900;
    line-height: 4rem;
}






.banner_wrap_ani_box{
    position: absolute;
    bottom:0;
    height:60vh;
}







/* ---------visual white----------- */



.franchise_wrap{
    margin-top: 0;
    height:100vh;
    background: #f1f1f1;
}


.franchise{
    padding-top:6%;
}


.franchise ul{
    display: flex;
    height:600px;
    margin-top:4%;
    text-align: center;
    justify-content: space-around;
}

.franchise ul li{
    position: relative;
    width:24%;
    height:100%;
    border-radius: 30px;
    background: #030A13;
}



.franchise_img_wrap{
    width:100%;
    height:100%;
    position: absolute;
}



.franchise ul li img{
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius: 30px;
    cursor: pointer;
}



.franchise_text_wrap{
    position: absolute;
    width:100%;
    bottom:7%;
    left:50%;
    transform: translateX(-50%);
    color:#fff;
    display: none;
}


.franchise_text_wrap h2{
    font-size: 2rem;
    line-height: 4rem;
}


.franchise_text_wrap span{
    display: block;
    content: "";
    margin:0 auto;
    width:20%;
    height:1px;
    margin-bottom:3%;
    background: #fff;
}





.franchise ul li:hover img{
    opacity: 0.4;
}





/* ---------solution----------- */




.solution_main_wrap{    
    display: flex;
    width:100%;
    align-items: center;
}


.solution_text_wrap{
    width:40%;
}


section .solution_text_wrap p{
    padding-top:2%;
    color:#aaa;
}



.solution_right{
    position: relative;
    width:60%;
    text-align: center;
}



.solution_main_content{
    width:30%;
    padding:2%;
}

.solution_main_content > img{
    width:100%;
}



.solution_main_content_text h2{
    font-size: 2rem;
    margin-bottom:5%;
}



.solution_main_content_text a{
    position: relative;
    display: flex;
    margin:0 auto;
    width:200px;
    height:50px;
    border-radius: 100px;
    border:1px solid #030A13;
    font-size: 1.5rem;
}

.solution_main_content_text a p{
    position: absolute;
    width:180px;
    line-height: 50px;
}



.solution_main_content_text img{
    position: absolute;
    width:8%;
    right:15%;
    top:50%;
    transform: translateY(-50%);
}




.solution_main_indicaotr{
    position: absolute;
    display: flex;
    width:100%;
    top:40%;
    transform: translateY(-50%);
}


.solution_main_indicaotr span{
    position: absolute;
    cursor: pointer;
}


.solution_main_indicaotr span:first-child{
    left:-4%;
}


.solution_main_indicaotr span:last-child{
    right:-4%;
}






.solution_right{
    background: url('../img/main/section03_right_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}




/* ---------partner----------- */





.partner_logo_wrap{
    padding-top:2%;
}

.partner_logo_wrap ul{
    width: 100%;
    overflow: hidden;
}


.partner_logo_wrap ul li div{
    display: flex;
    animation: 20s section02_partner infinite linear;
}

.partner_logo_wrap ul li div img{
    width:20%;
}


.partner_logo_wrap ul li:nth-child(2) div{
    animation: 20s section02_partner02 infinite linear;
}



.partner_logo_wrap ul li:hover div{
    animation-play-state: paused;
}




@keyframes section02_partner{
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-100%);
    }
}



@keyframes section02_partner02{
    0%{
        transform: translateX(-100%);
    }

    100%{
        transform: translateX(100);
    }
}








/* ---------partner----------- */


.count_wrap{
    padding-top:10%;
    padding-bottom:10%;
    background: url('../img/main/section05.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    animation: count_wrap_blur 5s;
}


@keyframes count_wrap_blur{
    0%{
        filter: blur(5px);
    }

    100%{
        filter: none;
    }
}


.count_main_wrap{
    color:#fff;
    text-align: center;
}

.count_main{
    display: flex;
    width:100%;
    padding-top:3%;
}


.count{
    width:25%;
    padding:3%;
    margin:0.3%;
    background: rgb(0, 0, 0,0.7);
    border:2px solid #000;
    border-radius: 30px;
}


.count p{
    line-height: 3rem;
    font-size: 2rem;
}


.count h2{
    line-height: 5rem;
    font-size: 3rem;
    font-weight: 800;
}





/* ---------connect----------- */

.contact_wrap{
    width:100%;
    height:70vh;
    margin-top: 0;
    overflow: hidden;
    background: radial-gradient(#fff 20%, #EBEEFC);
}


.contact_main_wrap{
    position: relative;
    width:100%;
    height:100%;
}

.contact_main_wrap div{
    position: absolute;
    width:100%;
}




.contact_wrap_bg_text{
    display: flex;
}

.contact_wrap_bg_text ul{
    width:50%;
}


.contact_wrap_bg_text ul:first-child{
    animation: contact_wrap_rolling_left 50s linear infinite;
}



.contact_wrap_bg_text ul:last-child{
    justify-items: end;
    animation: contact_wrap_rolling_right 50s linear infinite;
}


@keyframes contact_wrap_rolling_left {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
    
}


@keyframes contact_wrap_rolling_right {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
    
}





.contact_main{
    top:50%;
    transform: translateY(-50%);
    text-align: center;
}


.contact_main p{
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    margin:0 auto;
    margin-top:3%;
    width:400px;
    height:100px;
    border:1px solid #030A13;
    border-radius: 100px;
    font-size: 2rem;
    line-height: 100px;
}




.contact_main p:hover {
    background: #0220D8;
    border:none;
}


.contact_main p:hover{
    color:#fff;
}






/* ---------------mb--------------- */


@media (max-width:600px){

    .pc{
        display: none;
    }

    .mb{
        display: block;
    }

    
    
    section{
        margin-top:12%;
    }

    section > div{
        width:90%;
        margin:0 auto;
    }


    section h1{
        font-size: 1.4rem;
        line-height: 2rem;
    }

    section p{
        font-size: 1.1rem;
        line-height: 1.4rem;
    }



    .visual_wrap{
        height:400vh;
    }


    .visual_left{
        width:60%;
    }

    .visual_right{
        position: relative;
        width:40%;
    }


    .visual_main h1{
        font-size: 1.4rem;
        line-height: 2rem;
        margin-left: 5%;
    }


    .visual_circle{
        width:20px;
        height:20px;
    }


    .banner_wrap_ani_box{
        height:70vh;
    }


    /* 배너 */



    .banner{
        top:50%;
        transform: translateY(-50%);
    }

    .banner_text_Wrap{
        width:100%;
    }


    .banner_text_main{
        padding: 10% 35% 5% 3%;
    }

    .banner_text_Wrap h1{
        font-size: 1.4rem;
        line-height: 2rem;
    }


    /* 스크롤애니 */


    .scroll_ani{
        height:70px;
        bottom:17%;
    }  


    .scroll_ani span{
        width:20px;
        height:20px;
    }


    .scroll_ani_up::after{
        width:16px;
    }


    .scroll_ani_up::before{
        width:16px;
    }


    @keyframes scroll_ani_up{

        0% {
            opacity: 1;
            bottom: 28%;
        }
        100% {
            opacity: 0;
            bottom: 17%;
        }
        
    }


    /* 프랜차이즈 */


    .franchise{
        padding-top: 12%;
        padding-bottom: 12%;
    }

    .franchise_wrap{
        height:auto;
    }


    .franchise ul{
        height:30vh;
    }



    .franchise_text_wrap h2{
        font-size: 1.2rem;
        line-height: 2rem;
    }


    .franchise_text_wrap{
        width:85%;
    }

    
    


    /* 솔루션 */


    .solution_main_wrap{
        display: block;
        text-align: center;
    }

    .solution_text_wrap{
        width:100%;
    }


    .solution_right{
        width:100%;
    }


    .solution_main_content_text h2{
        font-size: 1.2rem;
    }

    .solution_main_content_text a{
        width:120px;
        height:40px;
        font-size: 1rem;
    }

    .solution_main_content_text a p{
        width:110px;
        line-height: 40px;
    }

    
    .solution_main_content img{
        width:80%;
        margin:0 auto;
    }



    .solution_main_content_text img{
        right:10%;
        width:8%;
    }




    .solution_main_indicaotr{
        top:30%;
    }

    .solution_main_indicaotr img{
        width:70%;
    }

    .solution_main_indicaotr span:first-child{
        left:0;
    }

    .solution_main_indicaotr span:last-child{
        right:0;
    }


    .solution_main_content{
        padding:0;
    }



    /* 솔루션 */


    .partner_logo_wrap ul li div img{
        width:40%;
    }



    /* 카운트 */


    .count_main{
        display: block;
    }

    .count_wrap {
        background-attachment: scroll; /* fixed → scroll 변경 */
    }
    

    .count{
        width:100%;
        padding:0;
        padding-top:8%;
        padding-bottom: 8%;
        margin:auto;
        margin-top:3%;
        border-radius: 20px;
    }

    .count p{
        font-size: 1.2rem;
        line-height: 1.5rem;
    }


    .count h2{
        font-size: 2rem;
        line-height: 3rem;
    }



    /* 컨택트 */

    .contact_wrap{
        height:40vh;
    }


    .contact_main{
        width:85% !important;
        left:50%;
        transform: translate(-50%,-50%);
    }

    .contact_main p{
        width:100%;
        height:60px;
        margin-top:8%;
        font-size: 1.2rem;
        line-height: 60px;
    }


    .contact_wrap_bg_text ul{
        width:10%;
    }

    .contact_wrap_bg_text ul:last-child{
        position: absolute;
        right:0;
    }

    .contact_wrap_bg_text li img{
        width:100%;
    }



}