/*================= main-mo =================*/
/* =================== 1024px =================== */
@keyframes moopc{
        0% {
            top: calc(50% - 70px);
            opacity: 0;
        }

        100%{
            top: calc(50% - 54px);
            opacity: 1;
        }
    }

@media (max-width: 1024px){
    #main-mo{
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
        margin-bottom: 30px;
    }
    #main-mo #moopc{
        width: 100%;
        height: auto;
        position: absolute;
        z-index: 50;
        top: calc(50% - 54px);
        z-index: 100;
        text-align: center;

    }

    #moopc.visible{
        animation: moopc 1s;
        transform-origin: 50% 50%;
    }

    #main-mo h2{  
        font-size: 58px;
        color: #fff; 
        font-weight: 400; 
    }

    #main-mo p.top{
        font-size: 26px;
        color: #fff;
        letter-spacing: 30px;
    }

    #main-mo p.bottom{
        font-size: 14px;
        color: #fff;
        font-weight: bold
    }

    #main-mo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #main-mo a.scroll{
        display: block;
        position: absolute;
        bottom: 0;
        left:0;right: 0;
        margin: 0 auto;
        text-align: center;
        z-index: 10;
        cursor: pointer;
    }
    
    #main-mo .scroll p{
        color: #fff;
        font-size: 12px;
    }
    
    #main-mo .scroll i{
        color: #fff;
        font-size: 30px;
        position: relative;
        top: -5px;
    }
    

}

@media (max-width:540px) {
    #main-mo h2{  
        font-size: 38px;
        color: #fff; 
        font-weight: 400;
    }

    #main-mo p.top{
        font-size: 20px;
        color: #fff;
        letter-spacing: 20px;
    }

    #main-mo p.bottom{
        font-size: 14px;
        color: #fff;
        font-weight: bold
    }

}

/* 20221208 추가 */
/* ================= cutmovie ================= */
#cutmovie{position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding-top: 10px;}
#cutmovie > div{ background-color: #F6F6F6; width: 50%; /*height: 28.13vw;*/height:auto;aspect-ratio: 16/9; margin-bottom: 10px;}
#cutmovie .movie{ overflow: hidden;}
#cutmovie .movie iframe{ width: 100%; height: 100%; position: relative; top: 0; left: 0; }
#cutmovie .text{ display: table;}
#cutmovie .v-middle{ display: table-cell; vertical-align: middle; height: 100%;}
#cutmovie .text.top{ text-align: left; }
#cutmovie .text.btm{ text-align: right; }
#cutmovie .text.top .v-middle{ padding-left: 100px;}
#cutmovie .text.btm .v-middle{ padding-right: 100px;}
#cutmovie .text h3{ font-size: 36px; padding-bottom: 5px;}
#cutmovie .text p{font-size: 15px;}

@media (max-width: 1024px){
    #cutmovie .text.top .v-middle{ padding-left: 30px;}
    #cutmovie .text.btm .v-middle{ padding-right: 30px;}
    #cutmovie .text h3{ font-size: 18px; padding-bottom: 5px;}
    #cutmovie .text p{font-size: 14px;}

}

/* ================= content01 ================= */

#content01{ 
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

#content01 .con01left{
    width: 50%;
    padding-right: 30px;
    box-sizing: border-box;
}





#content01 .con01left img{
    max-width: 570px;
    height: auto;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
}

#content01 p.top{
    padding-top: 50px;
    font-size: 15px;
    color: #4559b3;
}

#content01 h3{
    font-size: 70px;
}

#content01 h3 .yellow{
    color: #fcd380;
}

#content01 h3 .green{
    color: #8dc8ae;
}

#content01 p{
    font-size: 16px;
    color: #666;
    line-height: 30px;
}

#content01 a{
    display: block;
    width: 180px;
    height: 50px;
    border-radius: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #46c9f3;
    color: #fff;
    font-size: 15px;
    transition: .3s;
}

#content01 a i{
    color: #fff;
    padding-right: 5px;
}

#content01 a:hover{
    background-color: #fc6c93; 
}

/* =================== 1024px =================== */
@media (max-width: 1024px){
    #content01 .con01left img{
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 100%;
        box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
        position: relative;
        left: 0; right: 0; margin: 0 auto;
    }
    
    #content01 .con01left{
        float: none!important;
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        box-sizing: border-box;
    }
    
    #content01 .con01right{
        width: 100%;
        text-align: center;
        
    }
    
    #content01 a{
        display: block;
        width: 200px;
        height: 50px;
        border-radius: 50px;
        line-height: 50px;
        text-align: center;
        background-color: #46c9f3;
        color: #fff;
        font-size: 15px;
        transition: .3s;
        position: relative;
        left: 0; right: 0;
        margin: 0 auto;
    }
    
}


@media (max-width:540px) {
    #content01 p.top{
        padding-top: 20px;
        line-height: 20px;
    }
    
    #content01 h3{
        font-size: 44px;
    }
    
    #content01 p{
        font-size: 14px;
        line-height: 24px;
    }
    
    

}










/* ====================== content02 ====================== */
#content02{ 
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: #f6f6f6;
}

#content02 ul{
    position: relative;
    left: 15px;
}

#content02 li{
    padding-right: 30px;
    box-sizing: border-box;
}

#content02 li figure{
    width: 100%;
    height: 250px;
    display: table;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

#content02 li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .3s;
}

#content02 .txt{
    display: table-cell;
    vertical-align: middle;
    height: 250px;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

#content02 .txt i{
    font-size: 40px;
    transition: .3s;
}

#content02 .txt h4{
    font-size: 36px;
    color: #333;
    transition: .3s;
}

#content02 .txt p.pb20{
    font-size: 15px;
    line-height: 15px;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

#content02 .txt p{
    font-size: 15px;
    color: #666;
    line-height: 20px;
    transition: .3s;
}


#content02 li a:hover img{
    opacity: 1;
}

#content02 a:hover .txt h4{
    color: #fff;
}

#content02 a:hover .txt p.pb20{
    color: #fff;
}

#content02 a:hover .txt p{
    color: #fff;
}

#content02 a:hover .txt i{
    color: #fff!important;
}



@media (max-width:540px) {
    #content02 li figure{
        height: 150px;
    }
    
    #content02 .txt{
        padding: 0 30px;
        height: 170px;
        position: relative;
        z-index: 1;
    }
    
    #content02 .txt i{
        font-size: 30px;
    }

    #content02 .txt h4{
        font-size: 26px;
    }

    #content02 .txt p.pb20{
        font-size: 13px;
        line-height: 15px;
    }

    #content02 .txt p{
        font-size: 13px;
    }

}






/* ============= content03 ============= */
#content03{ 
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-top: 120px;
}

#content03 .contitle{
    text-align: center;
    opacity: 1;
}

#content03 li figure{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

#content03 li figure img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

#content03 li figure .blackbg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34,34,34,0.4);
    opacity: 0;
    text-align: center;
    transition: .3s;
}

#content03 li figure .blackbg p{
    position: relative;
    top: calc(50% - 15px);
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: .3s;
}

#content03 li a:hover figure .blackbg{
    opacity: 1;
}

#content03 li a:hover figure .blackbg p{
    opacity: 1;
}


@media (max-width:540px) {
    #content03{ 
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
        padding-top: 60px;
    }
    #content03 li figure .blackbg p{
        font-size: 24px;
        top: calc(50% - 10px);
    }
}

/* ============= content04 ============= */
#content04{ 
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}


#content04 .contitle p.hee{
    padding-top: 50px;
}

#content04 .fl p.pb40{
    font-size: 16px;
    color: #666;
    line-height: 18px;
}

#content04 .fl{
    width: 45%;
    text-align: left;
}

#content04 .fr{
    width: 55%;
    height: 100%;
}

#content04 .fl a{
    display: block;
    width: 180px;
    height: 50px;
    border-radius: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #46c9f3;
    color: #fff;
    font-size: 15px;
    transition: .3s;
}

#content04 .fl a i{
    color: #fff;
    padding-right: 5px;
}

#content04 .fl a:hover{
    background-color: #fc6c93;
}

#content04 .img{
    width: 100%;
    height: auto;
}

#content04 .img figure{
    width: 100%;
    height: auto;
    overflow: hidden;
}

#content04 .img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1);
    transition: .3s;
}

#content04 a:hover img{
    transform: scale(1.1);
}

#content04 .fr .text{
    position: relative;
    left: 0; right: 0;
    margin: 0 auto;
    bottom: 50px;
    width: 50%;
    height: 110px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

#content04 .fr .text h4{
    font-size: 36px;
    color: #333;
    padding-bottom: 5px;
}

#content04 .fr .text p{
    font-size: 13px;
    color: #666;
}

#content04 .fr .text .bold{
    font-size: 15px;
    color: #333;
    font-weight: 600;
}


/* =================== 1024px =================== */
@media (max-width: 1024px){
    #content04 .fl{
        width: 100%;
        text-align: center;
    }
    
    #content04 .contitle p.hee{
        padding-top: 0;
    }
    
    #content04 .fr{
        width: 100%;
        height: 100%;
    }
    
    #content04 .fr .text{
        width: 80%;
    }
}


@media (max-width:540px) {
    #content04 .fl p.pb40{
        font-size: 12px
    }
    
    #content04 .fr .text{
        bottom: 30px;
    }
}

/* ============= content05 ============= */
#content05{ 
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-image: url(../img/main/con05_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}


#content05 .contitle p.hee{
    color: #fc6c93!important;
}

#content05 .contitle p.pb50{
    color: #fff!important;
    line-height: 24px;
    font-size: 16px;
}


#content05 .contitle h3{
    color: #fff!important;
}


.swiper-container2 figure img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: scale(1);
    transition: .3s;
}

.swiper-container2 .swiper-slide:hover figure img{
    transform: scale(1.1);
}

#content05 figcaption{
    display: table;
    height: 150px;
    padding: 0 30px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

#content05 .textwrap{
    display: table-cell;
    vertical-align: middle;
    width: 100%!important;
    height: 150px;
}

#content05 figcaption h4{
    font-size: 34px;
    color: #333;
}

#content05 figcaption .bold{
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

#content05 figcaption p.ws{
    position: relative;
    left: 0; right: 0;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
    width: 300px;
    height: 30px;
    text-align: center;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

/* =================== 1024px =================== */
@media (max-width: 1024px){
    #content05 .swiper-container3{
        padding: 5px;
        box-sizing: border-box;
        max-height: 620px;
        position: relative;
        top: -35px;
    }
    #content05 figcaption{
        display: table;
        height: 130px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        background-color: #fff;
    }
    
    .swiper-pagination3{
        bottom: -22px;
    }
    
    #content05 .textwrap{
        display: table-cell;
        vertical-align: middle;
        width: 100%!important;
        height: 130px;
    }
    .swiper-button-next3,
    .swiper-button-prev3{
        top: calc(50% - 55px);
    }
    
    
    #content05 .wrap{
        
        
        padding: 0 50px!important;
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .swiper-container3 .swiper-slide:hover img{
        transform: scale(1.1);
    }
    
    #content05 figcaption p.ws{
    position: relative;
    left: 0; right: 0;
    margin: 0 auto;
    font-size: 13px;
    height: 27px;
    color: #666;
    width: 500px;
    text-align: center;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

}
@media (max-width:665px) {
    .swiper-container3{
        max-height: 470px;
    }
    
    #content05 figcaption p.ws{
        width: 400px;
    }
}

@media (max-width:540px) {
    #content05 .swiper-container3{
        max-height: 400px;
        top: -3px;
    }
    
    .swiper-button-next3,
    .swiper-button-prev3{
        top: calc(50% - 15px);
    }
    
    .swiper-button-next3{
        right: -30px;
    }
    .swiper-button-prev3{
        left: -30px;
    }
    
    #content05 figcaption p.ws{
        width: 280px;
    }
    
    
    #content05 .contitle p.pb50{
        font-size: 12px;
        line-height: 18px;
    }
    
    
    
    #content05 figcaption h4{
        font-size: 28px;
    }
    
    #content05 figcaption .bold{
        font-size: 14px;
    }
    
    #content05 figcaption p{
        font-size: 14px;
    }
}

@media (max-width:448px) {
    .swiper-container3{
        max-height: 320px;
    }
    
    #content05 figcaption p.ws{
        width: 230px;
    }
}

@media (max-width:392px) {
    .swiper-container3{
        max-height: 300px;
    }
    #content05 figcaption p.ws{
        width: 150px;
    }
}

@media (max-width:320px) {
    #content05 .swiper-container3{
        max-height: 250px;
        top: 0;
    }
    #content05 figcaption p.ws{
        width: 140px;
    }
    #content05 .swiper-container3 .swiper-slide img{
        width: 100%;
        height: 130px;
        object-fit: cover;
        transform: scale(1);
        transition: .3s;
    }
    
    .swiper-button-next3,
    .swiper-button-prev3{
        top: calc(50% - 25px);
    }
    
    
}

/* ============= content06 ============= */


#content06{ 
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    text-align: center;
}

#content06 li{
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

#content06 .circle_wrap{
    width: 230px;
    height: 230px;
    
    position: relative;
    left: 0; right: 0;
    margin: 0 auto;
}
#content06 .circle_area{
    width: 230px;
    height: 230px;
    border-radius:50%;
    border: 2px solid #fff;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
#content06 figure{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

#content06 figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #fff;
    box-sizing: border-box;
    border-radius:50%;
}

#content06 figure .blackbg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    border-radius: 100%;
    background-color: rgba(102,102,102,0.5);
    border: 3px solid #fff;
    box-sizing: border-box;
    opacity: 1;
    transition: .3s;
}

#content06 li:hover figure .blackbg{
    opacity: 0;
}

#content06 figure .blackbg .txt{
    display: table-cell;
    vertical-align: middle;
}

#content06 figure .blackbg h5{
    font-size: 34px;
    color: #fff;
}

#content06 figure .blackbg p{
    font-size: 15px;
    color: #fff;
}

.circle_wrap .circle{
    width: 234px;
    height: 234px;
    border-radius: 100%;
    background-color: #fcd380;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

@media (max-width:540px) {
    #content06 li{
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    
    #content06 figure .blackbg h5{
        font-size: 20px;
    }
    
    #content06 figure .blackbg p{
        font-size: 14px;
    }
    
    #content06 .circle_wrap{
        width: 140px;
        height: 140px;
        position: relative;
        left: -7px;
    }
    #content06 .circle_area{
        width: 140px;
        height: 140px;
        border-radius:50%;
        border: 2px solid #fff;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }
    
    #content06 figure .blackbg{
        border: 2px solid #fff;
    }
    
    .circle_wrap .circle{
        width: 143px;
        height: 143px;
        border-radius: 100%;
        background-color: #fcd380;
        position: absolute;
        top: 2px;
        left: 2px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    }
}



#content07{ width: 100%; height: auto; /*padding-top: 56.25%;*/aspect-ratio: 16/9; position: relative; overflow: hidden;}
#content07 .videoWrap{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
#section01 .videoWrap .inner{ width: 100%; height: 100%;}
#content07 .videoWrap .inner{ width: 100%; height: 100%;}
#content07 .videoWrap iframe{ width: 100%; height: 100%;}



/* section01 */
#section01{ overflow: hidden; position: relative; width: 100%; height: auto;aspect-ratio: 16/9; top: 0; left: 0; background-color: rgba(0,0,0); margin-bottom: 10px; }
#section01 .videoWrap{position:absolute; width: 100%; height: auto;aspect-ratio: 16/9; top: 0; left: 0; margin:0; pointer-events: none; z-index: 0; }
#section06 .videoWrap {position:absolute; width: 100%; height:100%; top: 0; left: 0; margin:0; pointer-events: none;}
#section01 .videoWrap iframe, #section01 .videoWrap object, #section01 .videoWrap embed,
#section06 .videoWrap iframe, #section08 .videoWrap object, #section08 .videoWrap embed{ position:absolute; top:0; left:0; width:100%; height:100%; opacity: 1; /*transform: scale(1.2);*/ pointer-events: none; }
#section01 .control{ z-index: 1; font-size: 0; position: absolute; bottom: 140px; left: 0; right: 0; margin: 0 auto; width: 170px; text-align: center; z-index: 100;}
#section01 .control li{ display: inline-block; padding: 0 5px;}
#section01 .control li a{ display: block; font-size: 18px; color: #fff; width: 40px; height: 40px; line-height: 38px; border-radius: 50%; border: 2px solid #fff; text-align: center;}
#section01 .control li i{ color: #fff; position: relative; }
#section01 .play-pause a.hide{ display: none;}
#section01 .control .mute-onoff a.hide{ display: none;}
.vidbox .ratio iframe, .end-video .videoWrap iframe, #cutvideo1, #cutvideo2{pointer-events: none;}
.m-play{ display: none;}
#section01 #scrollDown{ z-index: 1; width: 190px; height: 100px; padding-top: 20px; background-color: rgba(34,34,34,.7); display: block; position: absolute; bottom: 0; left: 0; right: 0; margin: 0 auto; text-align: center; z-index: 100;  color: #fff; transition: .3s;}
#section01.scroll .videoWrap{ position: relative;}
.tween-opacity{ transition: .3s;}
/* =================== 1024px =================== */
@media (max-width: 1024px) {
    #section01 { width: 100%; height:auto; /*padding-top: 56.25%;*/ aspect-ratio:16/9; }
    #section01 .videoWrap{position:absolute; width: 100%; height:100%; top: 0; left: 0;  }
    #section01 .videoWrap, #section01 .videoWrap iframe, #section01 .videoWrap object, #section01 .videoWrap embed{ pointer-events: unset;}
    #section01 .videoWrap iframe, #section01 .videoWrap object, #section01 .videoWrap embed{ opacity: 1; }
    #section01 .fullSlogan { display: none;}
    #section01 .control{ bottom: 20px; }
    #section01 .control li:nth-child(2),#section01 .control li:nth-child(3){ display: none;}
    #section01 .control li a{ display: block; font-size: 10px; width: 20px; height: 20px; line-height: 17px; }
    #section01 #scrollDown{ display: none;}

    
}