/*ALL CSS-----------------------------------------------------*/
*{
    position: relative;
    line-height: 1.8;
    font-weight: 300;
/*    text-overflow: ellipsis;*/
/*    white-space: nowrap;*/
    letter-spacing: -2px;
}

.br_t{
    display: none;
}
.br_m{
    display: none;
}

.font_Montserrat{
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0!important;
}

.j_white{
    color: #fff!important;
}
.j_indigo{
    color: #113385!important;
}
.j_dark_gray{
    color: #707070!important;
}

.j_bold{
    font-weight: bold;
}
.j_thin{
    font-weight: 100;
}
.j_fz30{
    font-size: 1.875rem;
}
.j_fz22{
    font-size: 1.375rem;
}
.j_fz20{
    font-size: 1.25rem;
}
.j_fz18{
    font-size: 1.125rem;
}
.j_fz15{
    font-size: 0.9375rem;
}

.j_section_title{
    font-size: 1.5625rem;
    margin-bottom: 80px;
    line-height: 1;
}
.j_main_title{
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: -3px;
}
.j_sub_title{
    margin-top: 60px;
    font-size: 1.0625rem;
}


.j_section_con{
    padding: 150px 0;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}
.j_center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.j_background_con{
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center;
}
.j_float::after{
    content: "";
    display: block;
    clear: both;
}
.j_left_con{
    float: left;
}
.j_right_con{
    float: right;
}


.j_more_btn a{
    padding-left: 20px;
    vertical-align: middle;
}
.j_more_btn a *{
    z-index: 1;
}
.j_more_btn a::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #113385;
    background-color: #bfd6ff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
	-webkit-transition: all 0.5s ;
	-ms-transition : all 0.5s;
    -o-transition : all 0.5s ;
    transition: all 0.5s;

}
.j_more_btn a:hover::after{
    /*left: calc(100% - 20px);*/
	transform: translate(460%, -50%);
}

.j_more_btn img{
    margin-left: 15px;
    width: 70px;
}


/*

.k_motion{
	transform: translateY(100px) !important;
	opacity: 0 !important;
	transition: transform 0.8s, opacity 0.2s !important;
}
.k_motion.active{
	transform: translateY(0) !important;
	opacity: 1 !important;
}
*/
.j_left_motion{
    transform: translateX(-100px);
    opacity: 0;
	-webkit-transition: transform 0.8s, opacity 0.5s;
	-ms-transition : transform 0.8s, opacity 0.5s;
    -o-transition : transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.j_left_motion.motion{
    transform: translateX(0);
    opacity: 1;
}
.j_right_motion{
    transform: translateX(100px);
    opacity: 0;
	-webkit-transition: transform 0.8s, opacity 0.5s;
	-ms-transition : transform 0.8s, opacity 0.5s;
    -o-transition : transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.j_right_motion.motion{
    transform: translateX(0);
    opacity: 1;
}

.j_top_motion{
    transform: translateY(100px);
    opacity: 0;
	-webkit-transition: transform 0.8s, opacity 0.5s;
	-ms-transition :transform 0.8s, opacity 0.5s;
    -o-transition : transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.j_top_motion.motion{
    transform: translateY(0);
    opacity: 1;
}

.j_height_motion{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
	-webkit-transition: max-height 1.4s, opacity 0.5s;
	-ms-transition :max-height 1.4s, opacity 0.5s;
    -o-transition : max-height 1.4s, opacity 0.5s;
    transition: max-height 1.4s, opacity 0.5s;
}
.j_height_motion.motion{
    max-height: 1000px;
    opacity: 1;
}

.j_width_motion{
    transform: scaleX(0.6);
    opacity: 0;
	-webkit-transition: transform 0.8s, opacity 0.5s;
	-ms-transition :transform 0.8s, opacity 0.5s;
    -o-transition : transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.j_width_motion.motion{
    transform: scaleX(1);
    opacity: 1;
}

@media screen and (max-width: 1280px){
    .br_p{
        display: none;
    }
    .br_t{
        display: block;
    }
    
    .j_section_con{
        padding: 90px 0;
    }
    
    
    
    .j_section_title{
        margin-bottom: 30px;
    }
    .j_sub_title{
        margin-top: 30px;
    }


	.j_more_btn a:hover::after{
		transform: translate(430%, -50%);
	}


    
}

@media screen and (max-width: 760px){
    .br_t{
        display: none;
    }
    .br_m{
        display: block;
    }
    
    .j_section_con{
        padding: 60px 0;
    }

    
    .j_section_title{
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    .j_main_title{
        font-size: 2.25rem;
        line-height: 1.4;
    }
    .j_sub_title{
        margin-top: 15px;
        font-size: 1rem;
    }
    
    
    .j_more_btn a{
        padding-left: 15px;
    }
    .j_more_btn a::after{
        content: "";
        width: 30px;
        height: 30px;
    }
    .j_more_btn a:hover::after{
        /*left: calc(100% - 15px);*/
		transform: translate(450%, -50%);
    }
    .j_more_btn img{
        margin-left: 10px;
        width: 50px;
    }
    
    
}




/*header CSS-----------------------------------------------------*/

#j_header{
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
#j_header::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
/*    transform: translateY(-100%);*/
    opacity: 0;
    z-index: -1;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
#j_header.fixed::before{
/*    transform: translateY(0);*/
    opacity: 1;
}
#j_header *{
    line-height: 100px;
}
.j_hd_con{
/*    width: 90%;*/
    width: 100%;
    height: 100%;
/*    margin: 0 auto;*/
    
}
.j_hd_con .j_logo{
    margin-left: 5%;
    overflow: hidden;
}
.j_hd_con .j_logo a{
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.j_hd_con .j_logo a img{
/*    height: 100%;*/
}
.j_hd_con .j_gnb_con > ul > li > a{
    display: block;
    height: 100%;
    padding: 0 40px;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_hd_con .j_gnb_con > ul > li > a::after{
    content: "";
    width: 100%;
    width: 0;
    height: 3px;
    background-color: #113385;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
	-webkit-transition: width 0.2s;
	-ms-transition : width 0.2s;
    -o-transition : width 0.2s;
    transition: width 0.2s;
}
.j_hd_con .j_gnb_con > ul > li > a:hover{
    color: #113385;
}
.j_hd_con .j_gnb_con > ul > li > a.active::after{
    width: 100%;
}

.j_hd_con .j_right_con{
    height: 100%;
}
.j_hd_con .j_language li a{
    color: #9a9a9a;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_hd_con .j_language li:not(:last-child){
    margin-right: 35px;
}
.j_hd_con .j_language li:not(:last-child)::after{
    content: "";
    width: 1px;
    height: 13px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: -17.5px;
    transform: translateY(-50%);
}
.j_hd_con .j_language li a:hover{
    color: #fff;
}
.j_hd_con .j_language li.active a{
    color: #fff;
}





.j_hd_con .j_gnb_con > ul > li>ul{
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    width: 100%;
    display: none;
}
/*
.j_hd_con .j_gnb_con > ul > li>ul::after{
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #113385;
}
*/
.j_hd_con .j_gnb_con > ul > li>ul>li>a{
    display: block;
    width: 100%;
    padding: 15px 0;
    line-height: 1.5!important;
    text-align: center;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}

.j_hd_con .j_gnb_con > ul > li>ul>li:hover a{
/*    background-color: #5392CE;*/
    font-weight: bold;
}




.j_mobile_btn{
    height: 100%;
    width: 100px;
    margin-left: 60px;
    background-color: #113385;
}

.j_mobile_btn span{
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
    position: absolute;
    top: 49px;
    left: 38.5px;
}
.j_mobile_btn span:nth-child(1){
    transform: translateY(-8px);
}
.j_mobile_btn span:nth-child(3){
    transform: translateY(8px);
}
.j_mobile_btn:hover span{
    transform: translateY(0);
}





@media screen and (max-width: 1280px){
    
    #j_header{
        height: 80px;
    }
    #j_header *{
        line-height: 80px;
    }
    .j_hd_con .j_logo a img{
        width: 140px;
    }

    .j_hd_con .j_gnb_con{
        display: none;
    }
    .j_mobile_btn{
        width: 80px;
        margin-left: 40px;
    }
    .j_mobile_btn span{
        top: 39px;
        left: 28.5px;
    }

}

@media screen and (max-width: 760px){
    #j_header{
        height: 50px;
    }
    #j_header *{
        line-height: 50px;
    }
    .j_hd_con .j_logo a{
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
    .j_hd_con .j_logo a img{
        width: 100px;
    }
    .j_mobile_btn{
        width: 50px;
        margin-left: 20px;
    }
    .j_mobile_btn span{
        top: 24px;
        width: 20px;
        left: 15px;
    }
    .j_mobile_btn span:nth-child(1){
        transform: translateY(-6px);
    }
    .j_mobile_btn span:nth-child(3){
        transform: translateY(6px);
    }
    

}





/*m_nav CSS-----------------------------------------------------*/



#j_m_menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: none;
    z-index: 99999;
}
.j_m_btn_con{
    height: 100px;
    background-color: #000;
    
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}
.j_m_close{
/*    float: right;*/
    width: 100px;
    height: 100%;
    position: relative;
    background-color: #113385;
}
.j_m_close span{
    position: absolute;
    top: 50px;
    left: 35px;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: #FFF;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_m_close span:nth-child(1){
    transform: rotate(45deg);
}
.j_m_close span:nth-child(2){
    transform: rotate(-45deg);
}
.j_m_close:hover span{
    transform: rotate(0);

}


.j_m_menu, .j_m_menu > ul{
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.j_m_menu > ul > li{
/*    width: calc(100% / 4);*/
/*    height: 100%;*/
    text-align: center;
/*    padding-top: 15%;*/
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    align-content: center;
    
    justify-content: center;
    
}

.j_m_menu > ul > li:hover{
    background-color: #113385;
}
.j_m_menu > ul > li:not(:last-child)::before{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.3;
    z-index: -1;
}
.j_m_menu > ul > li > a{
    font-size: 2.5rem;
}
.j_m_menu > ul > li > ul{
    margin-top: 30px;
    height: 200px;
/*    display: none;*/
}
.j_m_menu > ul > li > ul li{
    padding: 10px 0;
}
.j_m_menu > ul > li > ul li a{
    font-size: 1.375rem;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_m_menu > ul > li > ul li a::after{
    content: "";
    width: 0%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: width 0.2s;
}
.j_m_menu > ul > li > ul li a:hover{
    font-weight: 500;
}
.j_m_menu > ul > li > ul li a:hover::after{
    width: 110%;
}

/*
.j_m_inner{
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    max-width: 350px;
    height: 100%;
    background-color: #FFF;
    transition: all 0.2s;
}

.j_m_inner.active{
    width: 60%;
}
.j_m_inner .j_m_menu{
    opacity: 1;
    transition: all 0.1s;
    transition-delay: 0.2s;
}
.j_m_menu.active{
    opacity: 0;
}
.j_m_menu>ul>li{
    width: 100%;
    font-weight: normal;
    padding: 15px 20px 0;
}
.j_m_menu>ul>li>a{
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: 1.15em;
    font-weight: 500;
    transition: color 0.2s;
    color: #555;
    position: relative;
}

.j_m_menu>ul>li:hover>a{
    color: #113385;
}


.j_m_menu>ul>li>ul{
    background-color: #f5f5f5;
    border-top: 2px solid #113385;
    display: none;
}

.j_m_menu>ul>li>ul>li>a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    color: #000!important;
    transition: all 0.2s;
}
.j_m_menu>ul>li>ul>li>a:hover{
   font-weight: 400;
}
*/






@media screen and (max-width: 1280px){
   .j_m_btn_con{
        height: 80px;
    }
    .j_m_close{
        width: 80px;
        height: 80px;
    }
    .j_m_close span{
        top: 39px;
        left: 25px;
    }
    .j_m_menu > ul > li > a{
        font-size: 2rem;
    }
    .j_m_menu > ul > li ul{
        margin-top: 20px;
    }
    
    .j_m_menu > ul > li ul li{
        padding: 5px 0;
    }
    .j_m_menu > ul > li ul li a{
        font-size: 1.25rem;
    }
    
    
}

@media screen and (max-width: 760px){
    .j_m_btn_con{
        height: 50px;
    }
    .j_m_close{
        width: 50px;
        height: 50px;
    }
    .j_m_close span{
        top: 24px;
        left: 10px;
    }
    
     .j_m_menu > ul{
        display: block;
    }
    .j_m_menu > ul > li{
        text-align: left;
        width: 100%;
        height: calc(100%/4);
        padding-left: 10%;
    }
    .j_m_menu > ul > li a{
        font-size: 1.5625rem;
    }
    .j_m_menu > ul > li:not(:last-child)::before{
        content: "";
        width: 100%;
        height: 1px;
        bottom: 0;
    }
    .j_m_menu > ul > li ul{
        margin-top: 5px;
        height: auto;
    }
    
    .j_m_menu > ul > li ul::after{
        content: "";
        display: block;
        clear: both;
    }
    .j_m_menu > ul > li ul li{
        float: left;
        padding: 0;
        margin-right: 5%;
    }
    .j_m_menu > ul > li ul li a{
        font-size: 1.125rem;
    }
}






/*main CSS-----------------------------------------------------*/

.j_main{
    width: 100%;
    height: 900px;
    background-color: #ddd;
    cursor: grab;
}
.j_main .swiper-container, .j_main .swiper-wrapper,
.j_main .swiper-slide, .j_main .j_section_con{
    height: 100%;
}
.j_main .j_center{
    width: 100%;
}
/*
.j_main .swiper-container .swiper-slide .j_center p:nth-child(1){
    font-size: 1.5625rem;
}
*/
.j_main .swiper-container .swiper-slide .j_center p.j_main_title,
.j_main .swiper-container .swiper-slide .j_center p.j_main_title span{
    font-size: 3.625rem;
    line-height: 1.3;
    margin: 0 0 40px;
}
.j_main .swiper-container .swiper-slide .j_center .j_more_btn{
    margin-top: 75px;
}

.j_main .swiper-container .swiper-slide .j_center .j_more_btn a::after{
    background-color: #113385;
}
.j_main .swiper-container .swiper-slide1 .swiper-slide-cover{
    background-image: url(../img/main_slide/j_main_slide01.jpg);
}
.j_main .swiper-container .swiper-slide2 .swiper-slide-cover{
    background-image: url(../img/main_slide/j_main_slide02.jpg);
}
.j_main .swiper-container .swiper-slide3 .swiper-slide-cover{
    background-image: url(../img/main_slide/j_main_slide03.jpg);
}

.swiper-container .swiper-slide{
    overflow: hidden;
}
.swiper-container .swiper-slide > .swiper-slide-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	-webkit-transition: all 8s ease-out;
    -o-transition : all 8s ease-out;
    transition: transform 8s ease-out;
    transform: scale(1.2);
}
.swiper-container .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1);
}



.j_num_section_con{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}
.j_main .j_slide_num{
    position: absolute;
    right: 0;
    bottom: 100px;
}
.j_slide_num_swiper{
    height: 40px;
    overflow: hidden;
}


.j_slide_num_swiper .swiper-wrapper .swiper-slide p{
    font-size: 2.5rem;
    line-height: 1;
    text-align: right;
}
.j_slide_num .j_slide_total_num p{
    margin-left: 15px;
    margin-top: 40px;
    font-size: 1.5625rem;
    font-weight: 500;
    line-height: 1;
    opacity: 0.7;
}
.j_slide_num .j_slide_total_num::before{
    content: "";
    width: 4px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 7.5px;
    opacity: 0.7;
    transform: rotate(20deg);
}




@media screen and (max-width: 1280px){
   
}

@media screen and (max-width: 760px){
    .j_main{
        height: 600px;
    }
	/*
    .j_main .swiper-container .swiper-slide .j_center p:nth-child(1){
        font-size: 1.25rem;
    }
	*/
	.j_main .swiper-container .swiper-slide2 .swiper-slide-cover{
		background-image: url(../img/main_slide/j_m_main_slide02.jpg);
	}
	.j_main .swiper-container .swiper-slide3 .swiper-slide-cover{
		background-image: url(../img/main_slide/j_m_main_slide03.jpg);
	}

    .j_main .swiper-container .swiper-slide .j_center p.j_main_title,
    .j_main .swiper-container .swiper-slide .j_center p.j_main_title span{
        font-size: 2.8rem;
        line-height: 1.3;
        margin: 5px 0 20px;
    }
    .j_main .swiper-container .swiper-slide .j_center .j_more_btn{
        margin-top: 40px;
    }
    

    .j_main .j_slide_num{
        bottom: 60px;
    }
    .j_slide_num_swiper{
        height: 30px;
        overflow: hidden;
    }

    .j_slide_num_swiper .swiper-wrapper .swiper-slide p{
        font-size: 2.2rem;
        line-height: 1;
        text-align: right;
    }
    .j_slide_num .j_slide_total_num p{
        margin-top: 30px;
        font-size: 1.25rem;
    }
    .j_slide_num .j_slide_total_num::before{
        content: "";
        width: 3px;
    }
    
}






/*company CSS-----------------------------------------------------*/
.j_company_t{
    display: none;
}
.j_company_p{
	overflow : hidden;
}
.j_company_p .j_section_con{
	padding-top : 30px;
}
.j_company_p > .j_title_con{
padding-top : 150px;
	padding-bottom : 0;
}
.j_company_p .j_section_con .j_title_con{
	opacity : 0;
}

.j_company .j_left_con, .j_company .j_right_con{
    width: calc((100% - 100px) / 2);
}

.j_company .j_title_con .j_more_btn{
    margin-top: 65px;
	   
}
.j_company_p .j_title_con .j_more_btn{
	position: absolute;
    bottom: 0;
    right: 0;
}

.j_company .j_company_con{
    padding: 70px 0;
}
.j_company .j_company_con3{
    padding-bottom: 0!important;
}
.j_company .j_company_con .j_company_img{
    width: 100%;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.13);
    font-size: 0;
}
.j_company .j_company_con .j_company_img img{
    width: 100%;
}
.j_company .j_company_con .j_company_con_title{
    margin: 50px 0 35px;
    line-height: 1;
}
.j_company .j_company_con .j_company_con_title span{
    line-height: 1;
}

.j_company .j_company_con1{
    margin-top: 0;
}
.j_company_p .j_company_con1 .j_company_img::after{
    content: "";
    width: 250px;
    height: 250px;
    background-color: #f9f9f9;
    position: absolute;
    bottom: -125px;
/*    right: -125px;*/
	left : -125px;
    z-index: -1;
}

.j_company .j_company_con2 .j_company_img::after{
    content: "";
    width: calc(200% + 280px);
    height: 530px;
    background-color: #113385;
    position: absolute;
    bottom: -100px;
/*    left: -200%;*/
/*	left: -190%;*/
	right : -135%;
    z-index: -1;
    background: url(../img/company/j_company02_bg.jpg) no-repeat;
    background-size: cover;
}

.j_company_p .j_company_con3 .j_company_img::before{
    content: "";
    width: 55px;
    height: 55px;
    background-color: #2f3951;
    position: absolute;
/*    left: -155px;*/
	right : -155px;
    bottom: 50px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.13);
    z-index: -1;
}
.j_company_p .j_company_con3 .j_company_img::after{
    content: "";
    width: 150px;
    height: 150px;
    background-color: #f2f2f2;
    position: absolute;
/*    left: -100px;*/
	right : -100px;
    bottom: -100px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.13);
    z-index: -1;
}


.j_company .j_bg_cube01{
    position: absolute;
    bottom: -7%;
/*    left: 5%;*/
	right : 5%;
}
.j_company .j_bg_text{
    position: absolute;
    bottom: 15%;
/*    left: 2.5%;*/
	right : 2.5%;
}


@media screen and (max-width: 1280px){
    
    
    .j_company .j_left_con, .j_company .j_right_con{
        width: calc((100% - 60px) / 2);
    }
    
    .j_company .j_company_con1 .j_company_img::after,
    .j_company .j_company_con3 .j_company_img::after{
        display: none;
    }
    
    
    
    
    
    
   
}

@media screen and (max-width: 1080px){
    .j_company_p{
        display: none;
    }
    .j_company_t{
        display: block;
    }

	.j_company .j_bg_cube01,
	.j_company .j_bg_text{
		display : none;
	}


    
    .j_company .j_left_con .j_more_btn{
        margin-top: 40px;
    }
    .j_company .j_company_con{
        padding: 30px 0;
    }
    .j_company .j_company_con1{
        padding-top: 90px;
    }
    .j_company .j_company_con .j_company_con_title{
        margin: 30px 0 25px;
    }
    .j_company .j_company_con2 .j_company_img::after{
        bottom: -70px;
		right : auto;
		left : -190%;
    }

    .j_company .j_left_con, .j_company .j_right_con{
        float: none;
        width: 100%;
    }
    
/*
    
    .j_company .j_company_con .j_company_con_title{
        color: #000!important;
    }
    .j_company .j_company_con::after{
        content: "";
        display: block;
        clear: both;
    }
    .j_company .j_company_con .j_company_img{
        float: left;
        width: calc((100% - 20px) / 2);
    }
    .j_company .j_company_con .j_text_con{
        float: right;
        width: calc((100% - 20px) / 2);
    }
*/
    
}

@media screen and (max-width: 760px){
    .j_company .j_left_con .j_more_btn{
        margin-top: 20px;
    }
    .j_company .j_company_con{
        padding: 20px 0;
    }
    .j_company .j_company_con1{
        padding-top: 60px;
    }
    .j_company .j_company_con .j_company_img::after{
        display: none;
    }
    .j_company .j_company_con .j_text_con p{
        font-size: 1rem;
    }
    .j_company .j_company_con .j_text_con .j_company_con_title {
        margin: 20px 0 10px;
        font-size: 1.8rem;
        color: #000!important;
    }
    
}






/*technology CSS-----------------------------------------------------*/

.j_technology{
    background-color: #ccc;
    text-align: center;
    background: url("../img/j_technoligy_bg.jpg") right fixed;
}
.j_technology .j_title_con{
    margin-bottom: 100px;
}
.j_technology .j_title_con .j_main_title{
    font-weight: 600;
}
.j_technology .j_title_con .j_sub_title{
    font-weight: 400;
}

.j_technology_con ul li{
    width: calc((100% - 40px) / 5);
}
.j_technology_con ul li:not((:last-child)){
    margin-right: 10px;
}
.j_technology_con ul li .j_technology_icon{
    width: 65px;
    margin: 0 auto;
    margin-bottom: 55px;
}
.j_technology_con ul li .j_technology_icon img{
    width: 100%;
}


@media screen and (max-width: 1280px){
   .j_technology .j_title_con{
        margin-bottom: 60px;
    }
    .j_technology_con ul li .j_technology_icon{
        margin-bottom: 20px;
    }
    .j_technology_con ul li p{
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 760px){
    .j_technology .j_title_con .j_sub_title span{
        line-height: 1.2;
    }
    .j_technology_con ul li{
        width: 80%;
        margin: 0 auto;
        float: none;
    }
    .j_technology_con ul li:not((:last-child)){
        margin-right: 0;
    }
    .j_technology_con ul li::after{
        content: "";
        display: block;
        clear: both;
    }
    .j_technology_con ul li .j_technology_icon{
        float: left;
        margin-right: 20%;
    }
    .j_technology_con ul li p{
        float: left;
        text-align: left;
        line-height: 65px;
    }
    
    
}







/*business CSS-----------------------------------------------------*/
.j_business .j_bg_cube02{
    position: absolute;
/*    right: 2.5%;*/
	left : 2.5%;
    /*top: -5%;*/
	bottom : -5%;
}


.j_business .j_title_con{
    margin-bottom: 70px;
}

.j_business_con ul li{
    width: calc((100% - 90px) / 4);
/*    height: 330px;*/
/*    background-color: #aaa;*/
}
.j_business_con ul li:nth-child(2){
    transition-delay: 0.2s;
}
.j_business_con ul li:nth-child(3){
    transition-delay: 0.4s;
}
.j_business_con ul li:nth-child(3) .j_business_btn{
	margin-top: 29px;
}
.j_business_con ul li:nth-child(4){
    transition-delay: 0.6s;
}
.j_business_con ul li::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 0.05;
    position: absolute;
    left: 0;
    bottom: 0;
}
.j_business_con ul li::after{
    content: "";
    width: 0%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
	-webkit-transition: width 0.5s;
	-ms-transition : all 0.2s;
    -o-transition : width 0.5s;
    transition: width 0.5s;
}
.j_business_con ul li:not(:last-child){
    margin-right: 30px;
}
.j_business_con ul li .j_business_img{
    width: 100%;
/*    height: 327px;*/
    font-size: 0;
    overflow: hidden;
}
.j_business_con ul li .j_business_img img{
    width: 100%;
	-webkit-transition: all 0.5s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.5s;
    transition: all 0.5s;
}
.j_business_con ul li .j_text_con{
    padding: 30px 0 40px;
}
.j_business_con ul li .j_text_con p{
    overflow: hidden;
}
.j_business_con ul li .j_text_con .j_sub_text{
    margin: 20px 0 30px;
	/*
    display: -webkit-box;
             -webkit-line-clamp: 2; 
             -webkit-box-orient: vertical;
			 */
}
.j_business_con ul li .j_text_con .j_business_btn{
	-webkit-transition: all 0.5s;
	-ms-transition : all 0.5s;
    -o-transition : all 0.5s;
    transition: all 0.5s;
}

.j_business_con ul li:hover .j_text_con .j_business_btn{
    color: #004ddd;
}
.j_business_con ul li:hover::after{
    width: 100%;
}
.j_business_con ul li:hover .j_business_img img{
    transform: scale(1.1);
}



@media screen and (max-width: 1280px){
    
    .j_business .j_title_con{
        margin-bottom: 40px;
    }
	.j_business .j_title_con .j_main_title{
		font-size : 2.25rem !important;
	}
	.j_business .j_bg_cube02{
		display : none;
	}

   .j_business_con ul li{
        width: calc((100% - 30px) / 2);
       margin-right: 0!important;
    }
    .j_business_con ul li:nth-child(odd){
        margin-right: 30px!important;
    }
    .j_business_con ul li:nth-child(1),
    .j_business_con ul li:nth-child(2){
        margin-bottom: 40px;
    }
	.j_business_con ul li:nth-child(3) .j_business_btn{
		margin-top: 25px;
	}
    .j_business_con ul li .j_text_con{
        padding: 20px 0 30px;
    }
    .j_business_con ul li .j_text_con .j_sub_text{
        margin: 10px 0 20px;
    }

    
}

@media screen and (max-width: 760px){
   .j_business .j_title_con{
        margin-bottom: 30px;
    }
	.j_business .j_title_con .j_main_title{
		font-size : 2rem !important;
	}
    .j_business_con ul li{
        width: 100%;
        margin-bottom: 30px;
    }
    .j_business_con ul li:nth-child(odd){
        margin-right: 0!important;
    }
    .j_business_con ul li:nth-child(1),
    .j_business_con ul li:nth-child(2){
        margin-bottom: 30px;
    }
	.j_business_con ul li:nth-child(3) .j_business_btn{
		margin-top: 0;
	}
    .j_business_con ul li .j_text_con{
        padding: 10px 0 15px;
    }
    .j_business_con ul li .j_text_con .j_sub_text{
        margin: 5px 0 10px;
    }

	

}
@media screen and (max-width: 400px){
	.j_business .j_title_con .j_main_title{
		font-size : 1.8rem !important;
	}
}





/*product CSS-----------------------------------------------------*/

.j_product .j_section_con{
    padding: 0;
}

.j_product .j_title_con{
    height: 500px;
    width: calc(50% - 85px);
}
.j_product .j_more_btn{
    position: absolute;
    left: 0;
    bottom: 0;
}
.j_product .j_slide_btn_con{
    position: absolute;
    right: 0;
    bottom: 0;
}
.j_product .j_slide_btn{
    width: 55px;
    height: 55px;
    margin-left: 10px;
    border: 1px solid #e8e8e8;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_product .j_slide_btn img{
    height: 50%;
}
.j_product .j_slide_btn img.j_hover{
    opacity: 0;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_product .j_slide_btn:hover img.j_hover{
    opacity: 1;
}
.j_product .j_slide_btn:hover{
    border: 1px solid #022572;
    background-color: #022572;
}


.j_product .j_product_slide{
    width: 50%;
    height: 500px;
/*    background-color: #fcc;*/
    position: absolute;
    top: 0;
    left: 50%;
    overflow: hidden;
}
.j_product .j_product_slide .j_product_swiper{
    width: 100%;
    height: 100%;
}
/*
.j_product .j_product_slide .swiper-wrapper{
    width: calc(575px * 4);
    height: 100%;
}
*/
.j_product .j_product_slide .swiper-wrapper .swiper-slide{
    width: 500px;
    height: 500px;
    text-align: center;
    border: 1px solid #bbb;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
}
.j_product .j_product_slide .swiper-wrapper .swiper-slide a{
    width: 100%;
    height: 100%;
    display: block;
}
.j_product .j_product_slide .swiper-wrapper .swiper-slide img{
    width: 100%;
}
.j_product .j_product_slide .swiper-wrapper .swiper-slide .j_product_name{
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #022572;
    padding: 10px 0;
    width: 100%;
	-webkit-transition: all 0.2s;
    -o-transition : all 0.2s;
	-ms-transition : all 0.2s;
    transition: all 0.2s;
    transform: translateY(100%);
}

.j_product .j_product_slide .swiper-wrapper .swiper-slide:hover{
    border: 1px solid #022572;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.1);
}
.j_product .j_product_slide .swiper-wrapper .swiper-slide:hover .j_product_name{
    transform: translateY(0%);
}


@media screen and (max-width: 1280px){
   .j_product .j_title_con{
        height: auto;
        width: 100%;
    }
    .j_product .j_more_btn{
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 40px;
    }
    
    .j_product .j_slide_btn_con{
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .j_product .j_slide_btn {
        width: 45px;
        height: 45px;
    }
    .j_product .j_product_slide{
        width: 95%;
        height: 320px;
        position: relative;
        left: 5%;
        margin-top: 60px;
    }
    .j_product .j_product_slide .swiper-wrapper .swiper-slide{
        width: 320px;
        height: 320px;
    }
    
}

@media screen and (max-width: 760px){
     .j_product .j_slide_btn{
        width: 40px;
        height: 40px;
        margin-left: 5px;
    }
    .j_product .j_product_slide{
        width: 90%;
        height: 85vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 40px;
    }
    .j_product .j_product_slide .swiper-wrapper .swiper-slide{
        width: 100%;
        height: 100%;
    }
}






/*community CSS-----------------------------------------------------*/


.j_community .j_section_con > ul > li{
    width: calc((100% - 60px) / 4);
    height: 500px;
    background-color: #ddd;
    text-align: center;
	-webkit-transition: all 0.2s, transform 0.8s, opacity 0.5s;
	-ms-transition : all 0.2s, transform 0.8s, opacity 0.5s;
    -o-transition : all 0.2s, transform 0.8s, opacity 0.5s;
    transition: all 0.2s, transform 0.8s, opacity 0.5s;
	white-space: nowrap;
}
.j_community .j_section_con > ul > li:nth-child(odd){
    margin-top: 20px;
}
.j_community .j_section_con > ul > li:not(:last-child){
    margin-right: 20px;
}
.j_community .j_section_con > ul > li:nth-child(1){
    background-image: url(../img/community/j_community_bg01.jpg);
}
.j_community .j_section_con > ul > li:nth-child(2){
    background-image: url(../img/community/j_community_bg02.jpg);
    transition-delay: 0.2s;
}
.j_community .j_section_con > ul > li:nth-child(3){
    background-image: url(../img/community/j_community_bg03.jpg);
    transition-delay: 0.4s;
}
.j_community .j_section_con > ul > li:nth-child(4){
    background-image: url(../img/community/j_community_bg04.jpg);
    transition-delay: 0.6s;
}
.j_community .j_section_con > ul > li::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #113385;
    opacity: 0;
	-webkit-transition: all 0.5s;
	-ms-transition : all 0.5s;
    -o-transition : all 0.5s;
    transition: all 0.5s;
}
.j_community .j_section_con > ul > li.active::before{
    opacity: 1;
}
.j_community .j_section_con > ul > li > a{
	display: block;
	width : 100%;
	height : 100%;
}

.j_community .j_section_con > ul > li:nth-child(1) .j_center,
.j_community .j_section_con > ul > li:nth-child(2) .j_center{
    text-align: left;
}

.j_community .j_section_con > ul > li .j_center .j_community_icon{
    margin-bottom: 40px;
}
.j_community .j_section_con > ul > li .j_center p:nth-of-type(2){
    margin: 35px 0 40px;
    line-height: 1.4;
}
.j_community .j_section_con > ul > li:nth-child(1) .j_center p:nth-of-type(2){
    margin: 15px 0 40px;
}
.j_community .j_section_con > ul > li:nth-child(1) .j_center .j_tell_num{
    font-size: 2.5rem;
    letter-spacing: -2px!important;
}
.j_community .j_section_con > ul > li:nth-child(1) ul li:last-child p:last-child{
    margin-bottom: 0;
}
.j_community .j_section_con > ul > li .j_center img{
    text-align: center;
}
.j_community .j_section_con > ul > li:hover{
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}



@media screen and (max-width: 1280px){
   .j_community .j_section_con > ul > li{
        width: calc((100% - 30px) / 2);
       margin-right: 0!important;
       height: 420px;
    }
    
    .j_community .j_section_con > ul > li:nth-child(odd){
        margin-top: 30px;
        margin-right: 30px!important;
    }
    .j_community .j_section_con > ul > li .j_center .j_community_icon{
        margin-bottom: 30px;
    }
    .j_community .j_section_con > ul > li .j_center p:nth-of-type(2){
        margin: 25px 0 30px;
    }
    .j_community .j_section_con > ul > li:nth-child(1) .j_center p:nth-of-type(2){
        margin: 10px 0 30px;
    }
    
    
}

@media screen and (max-width: 760px){
  .j_community .j_section_con > ul > li{
        width: 100%;
      height: 320px;
    }
    .j_community .j_section_con > ul > li:nth-child(1) .j_center, .j_community .j_section_con > ul > li:nth-child(2) .j_center {
        text-align: center;
    }
    .j_community .j_section_con > ul > li:nth-child(odd){
        margin-top: 0;
        margin-right: 0!important;
    }
    .j_community .j_section_con > ul > li:not(:last-child){
        margin-bottom: 20px;
    }
    
    .j_community .j_section_con > ul > li .j_center .j_community_icon{
        margin-bottom: 20px;
    }
    .j_community .j_section_con > ul > li .j_center p:nth-of-type(2){
        margin: 10px 0 15px;
    }
    .j_community .j_section_con > ul > li:nth-child(1) .j_center p:nth-of-type(2){
        margin: 5px 0 20px;
    }
    
    
    
}







/*footer CSS-----------------------------------------------------*/
.j_footer{
    background-color: #171717;
}

.j_footer .j_section_con{
    padding: 60px 0;
}
.j_footer .j_top_con{
    margin-bottom: 55px;
}
.j_footer .j_top_con::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.2;
    position: absolute;
    bottom: -27px;
    left: 0;
    
}
.j_footer .j_top_con .j_sitemap li{
    color: #dadada;
/*    transition: all 0.2s;*/
}
.j_footer .j_top_con .j_sitemap li:not(:last-child){
    margin-right: 35px;
}
.j_footer .j_top_con .j_sitemap li::before{
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
	-webkit-transition: all 0.2s;
	-ms-transition :  all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_footer .j_top_con .j_sitemap li:hover::before{
    width: 100%;
}

.j_footer .j_top_con .j_right_con li button{
    color: #898989;
    font-weight: 500;
	-webkit-transition: all 0.2s;
	-ms-transition : all 0.2s;
    -o-transition : all 0.2s;
    transition: all 0.2s;
}
.j_footer .j_top_con .j_right_con li button:hover{
    color: #fff;
}
.j_footer .j_top_con .j_right_con li:not(:last-child){
    margin-right: 25px;
}

.j_footer .j_bottom_con .j_company_info .j_logo{
    height: 24px;
    margin-bottom: 30px;
}
.j_footer .j_bottom_con .j_company_info .j_logo img{
    height: 100%;
}
.j_footer .j_bottom_con .j_company_info p span{
    margin-left: 20px;
    margin-right: 10px;
	margin-right: 5px;
}
.j_footer .j_bottom_con .j_company_info p span:nth-of-type(1),
.j_footer .j_bottom_con .j_company_info p span:nth-of-type(3){
    margin-left: 0;
}

.j_footer .j_bottom_con .j_copyright{
    position: absolute;
    bottom: 0;
    right: 0;
	font-size: 0.9rem;
}


@media screen and (max-width: 1280px){
   .j_footer .j_section_con{
        padding: 40px 0;
    }
    .j_footer .j_top_con{
        margin-bottom: 40px;
    }
    .j_footer .j_top_con::before{
        bottom: -17px;
    }
    .j_footer .j_bottom_con .j_company_info .j_logo{
        height: 20px;
        margin-bottom: 20px;
    }
    .j_footer .j_bottom_con .j_company_info p span{
        margin-left: 15px;
        margin-right: 5px;
    }
    .j_footer .j_bottom_con .j_copyright{
        position: relative;
        margin-top: 10px;
    }
    
    
}

@media screen and (max-width: 760px){
    .j_footer .j_section_con{
        padding: 25px 0;
    }
    .j_footer .j_bottom_con .j_company_info .j_logo{
        height: 15px;
        margin-bottom: 15px;
    }
    .j_footer .j_top_con{
        margin-bottom: 30px;
    }
    .j_footer .j_top_con::before{
        bottom: -12px;
    }
    .j_footer .j_top_con .j_sitemap li:not(:last-child){
        margin-right: 15px;
    }
    .j_footer .j_top_con .j_sitemap,
    .j_footer .j_top_con .j_right_con{
        float: none;
    }
    .j_footer .j_top_con .j_right_con li:not(:last-child){
        margin-right: 10px;
    }
    .j_footer .j_bottom_con .j_company_info p span:nth-of-type(2),
    .j_footer .j_bottom_con .j_company_info p span:last-child{
        margin-left: 0;
    }
    
}






/*풋터 모달 !!!!!!*/


.j_footer_modal_frame{
    position: fixed;
    z-index: 99999;
    background-color: rgba(0,0,0,0.75);
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    overflow: hidden;
	display : none;
}



.j_footer_modal_frame.show{
    width: 100%;
    height: 100%;

}
.j_footer_modal_frame_inner{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 680px;
    background: #FFF;
/*    padding: 60px 60px;*/
	
}

.j_footer_modal_frame .j_iframe{
    
    width : 100%;
	height: 100%;
	max-height : 600px;
    background: #fff;
    border: 0;
    overflow: auto;
	overflow-x: hidden;
	overflow-y : auto;
}
.j_footer_modal_frame .j_iframe *{
	white-space : normal;
}


/*영문모바일 수정 CSS*/
@media screen and (max-width: 1380px){
	.j_hd_con .j_gnb_con > ul > li > a{padding: 0 30px;}
}