@charset "utf-8";

body{background-color: #000;}

/* ******************  메인 비주얼 ********************** */
#mainVisual{overflow:hidden; width:100%; height:100vh; position:relative;}	/* 비주얼높이값 이미지에맞게 수정 */
#mainVisual .mainVisualWrap, 
#mainVisual .mainVisualCon, 
#mainVisual .slick-list,  
#mainVisual .slick-track, 
.item{
	height:100%;
}

.mainVisualWrap {position:relative; z-index:2;}

/* 메인 비주얼 ::이미지 */
.item {position:relative;}
.item .pc_img{
	width:100%;
	height:100%;
	background-size:cover !important;
	-ms-transform:scale(1.1,1.1);
    -o-transform:scale(1.1,1.1); 
    -moz-transform:scale(1.1,1.1); 
    -webkit-transform:scale(1.1,1.1); 
     transform:scale(1.1,1.1);
	-webkit-transition:transform 5000ms  ease-in-out ;
	-moz-transition:transform 5000ms ease-in-out ;
	-o-transition:transform 5000ms ease-in-out ;
	-ms-transition:transform 5000ms ease-in-out ;
    transition:transform 5000ms ease-in-out ;	
}
.item .m_img{display:none;}

/* 메인 비주얼 ::텍스트 */
.item .text_box {position:absolute; width:1400px; top:50%; left:calc(50% - 700px); margin-top:-168px;}
.item .text_box h3.title,
.item .text_box p,
.item .text_box .main-visual-more-btn{
	opacity:0;filter:Alpha(opacity=0);
	-ms-transform:translateX(-50px); 
    -o-transform:translateX(-50px); 
    -moz-transform:translateX(-50px);
    -webkit-transform:translateX(-50px); 
     transform:translateX(-50px);
	-webkit-transition:opacity 1.0s, transform 1.0s;
	-moz-transition:opacity 1.0s, transform 1.0s;
	-o-transition:opacity 1.0s, transform 1.0s;
	-ms-transition:opacity 1.0s, transform 1.0s;
	transition:opacity 1.0s, transform 1.0s;
}
.item .text_box h3.title {display:block;font-size:95px; font-weight:600; line-height:120%; color:#fff; text-shadow:5px 11px 15px rgb(0 0 0 / 35%);}
.item .text_box h3.title em {font-style:normal; font-size:40px; font-weight:500; display:block; letter-spacing:0.5px; margin-left:5px; line-height:100%;}
.item .text_box p{margin-top:15px; font-weight:400; font-size:24px; color:#fff; line-height:120%; -webkit-transition-delay:0.3s;-moz-transition-delay:0.3s;-o-transition-delay:0.3s;-ms-transition-delay:0.3s;transition-delay:0.3s;}
.item .text_box .main-visual-more-btn {display:inline-block; letter-spacing:0.05em; font-size:16px; font-weight:400; margin-top:60px; color:#fff; text-transform:uppercase; width:180px; line-height:48px; height:50px; border:1px solid rgba(256,256,256,0.3); text-align:center; padding-left:20px; -webkit-transition-delay:0.5s;-moz-transition-delay:0.5s;-o-transition-delay:0.5s;-ms-transition-delay:0.5s;transition-delay:0.5s;}
.item .text_box .main-visual-more-btn span.bul {display:block;position:absolute;top:calc(50% - 4px);left:25px;background:#fff;transition:all .5s;width:2px;height:8px;margin:0;}
.item .text_box .main-visual-more-btn span.bul:after {content:"";display:block;position:absolute;top:0;width:8px;height:2px;margin:3px 0 0 -3px;background:#fff;}
/* 메인 비주얼 ::active효과 */
.item.active-item .pc_img{
	-ms-transform:scale(1.0,1.0) rotate(0.0001deg);
    -o-transform:scale(1.0,1.0) rotate(0.0001deg);
    -moz-transform:scale(1.0,1.0) rotate(0.0001deg);
    -webkit-transform:scale(1.0,1.0) rotate(0.0001deg);
     transform:scale(1.0,1.0) rotate(0.0001deg);
}
.item.active-item h3.title,
.item.active-item p,
.item.active-item .main-visual-more-btn{
	opacity:1.0;filter:Alpha(opacity=100);
	-ms-transform:translateX(0px); 
    -o-transform:translateX(0px); 
    -moz-transform:translateX(0px);
    -webkit-transform:translateX(0px); 
     transform:translateX(0px);
}

	@media screen and (max-width:1429px){
		.item .text_box {width:100%; left:auto; padding:0 5%;}
	}

	@media screen and (max-width:1024px){
		.item .text_box {top:55%;}
		.item .text_box h3.title {font-size:260%;}
		.item .text_box p {font-size:110%;}
		.item .text_box .main-visual-more-btn {font-size:100%; width:180px;}
	}

	@media screen and (max-width:999px){
		.item .text_box {top:55%;}
		.item .text_box h3.title {font-size:260%;}
		.item .text_box p {font-size:110%;}
		.item .text_box .main-visual-more-btn {font-size:100%; width:180px;}
	}

	@media screen and (max-width:799px){
		.item .text_box {top:65%;}
		.item .text_box h3.title {font-size:200%;}
		.item .text_box p {font-size:90%;}
		.item .text_box .main-visual-more-btn {margin-top:30px; font-size:80%; width:150px;}
	}


	@media screen and (max-width:599px){
		.item .pc_img {display:none;}
		.item .m_img{
			display:block;
			width:100%;
			height:100%;
			background-size:cover !important;
			-ms-transform:scale(1.1,1.1);
			-o-transform:scale(1.1,1.1); 
			-moz-transform:scale(1.1,1.1); 
			-webkit-transform:scale(1.1,1.1); 
			 transform:scale(1.1,1.1);
			-webkit-transition:transform 5000ms  ease-in-out ;
			-moz-transition:transform 5000ms ease-in-out ;
			-o-transition:transform 5000ms ease-in-out ;
			-ms-transition:transform 5000ms ease-in-out ;
			transition:transform 5000ms ease-in-out ;	
		}

		/* 메인 비주얼 ::active효과 */
		.item.active-item .m_img{
			-ms-transform:scale(1.0,1.0) rotate(0.0001deg);
			-o-transform:scale(1.0,1.0) rotate(0.0001deg);
			-moz-transform:scale(1.0,1.0) rotate(0.0001deg);
			-webkit-transform:scale(1.0,1.0) rotate(0.0001deg);
			 transform:scale(1.0,1.0) rotate(0.0001deg);
		}

		.item .text_box {top:45vh;}
		.item .text_box h3.title {font-size:160%;}
		.item .text_box p {font-size:90%;}
		.item .text_box .main-visual-more-btn {margin-top:30px; font-size:80%; width:120px; line-height:34px; height:34px;}
	}

	@media screen and (max-width:499px){
		.item .text_box {top:45vh;}
	}


#mainVisual .slick-arrow {position:absolute; bottom:155px; width:70px; height:70px; background-color:inherit; background-repeat:no-repeat; background-position:50% 50%; margin-top:-35px; cursor:pointer; border:0; cursor:pointer; z-index:9999; font-size:0; border:1px solid rgba(255,255,255,0.3); -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}

#mainVisual .slick-arrow.slick-prev {left:calc(50% - 700px); background-image:url('../img/main/prevBtn.png');}
#mainVisual .slick-arrow.slick-next {left:calc(50% - 631px); background-image:url('../img/main/nextBtn.png'); border-left:0;}
#mainVisual .slick-dots {position:absolute; left:calc(50% - 600px); top:29%; z-index:1099;}
#mainVisual .slick-dots li {display:inline-block; margin:0 1px; width:30px; height:2px; overflow:hidden; font-size:0;}
#mainVisual .slick-dots li button {width:100%;}

#mainVisual .slick-counter {position:absolute; width:1400px; top:50%; left:calc(50% - 694px); margin-top:-210px; font-size:20px; color:#fff; z-index:1009;}
#mainVisual .slick-counter .active {font-size:24px; color:#fff;}
#mainVisual .slick-counter .total {font-size:24px; color:#fff;}

/*scroll icon */
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform:translateY(0);}
	40% {-webkit-transform:translateY(-30px);}
	60% {-webkit-transform:translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform:translateY(0);}
	40% {transform:translateY(-30px);}
	60% {transform:translateY(-15px);}
}
.scrollDown{position:absolute; bottom:3%; width:100%; text-align:center; z-index:999;}
.scrollDown.bounce {display:block; animation:bounce 2.5s infinite;}


	@media screen and (max-width:999px){
		#mainVisual {height:70vh;}
	}

	@media screen and (max-width:799px){
		#mainVisual {height:60vh;}
	}

	@media screen and (max-width:599px){
		#mainVisual {height:74vh;}
	}

	@media screen and (max-width:499px){
		#mainVisual {height:80vh;}
	}


#mainContents {padding:100px 0;}
#mainContents h4 {font-size:40px; text-align:center; margin-bottom:30px; }
#mainContents .contentBox {background:#eee; line-height:700px; text-align:center;}

.sec-footer {margin-top:0 !important;}


div.fp-section{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#section0{background-image: url(../img/main/mainVisual.jpg);}
#section1{background-image: url(../img/main/bg01.jpg);}
#section2{background-image: url(../img/main/bg02.jpg);}
#section4{background-image: url(../img/main/bg03.jpg);}


#section0 .fp-tableCell,
#section1 .fp-tableCell{
	display: flex;
	align-items: center;
	padding-left: 13.5%;
}
#section2 .fp-tableCell{
	display: flex;
	align-items: center;
	justify-content: center;
}



#section0 .sec_wrap img{
	display: block;
	width: 100%;
	max-width: 1200px;
	height: 333px;
}
#section0 .sec_wrap h1{
	color: #fff;
	font-size: 100px;
	font-weight: 800;
	line-height: 105px;
}
#section0 .scroll{
	display: block;
	width: auto;
	height: auto;
	position: absolute;
	bottom:50px;
	left:50px;

	animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce{
	0%, 20%, 50%, 80%, 100% {
	  transform: translateY(0);
	}
	40% {
	  transform: translateY(-20px);
	}
	60% {
	  transform: translateY(-10px);
	}
  }



#section1 .fp-tableCell{
	position: relative;
}
#section1 .fp-tableCell::before{
	display: block;
	content: '';
	width: 601px;
	height: 578px;
	position: absolute;
	right: -50px;
	bottom: -50px;
	
	background-image: url(../img/main/bg_logo.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

#section1 .fp-scrollable{
	display: flex;
	align-items: center;
}

#section1 .sec_wrap{
	display: flex;
    flex-direction: row;
    align-items: flex-start;
	padding-top: 100px;
}
#section1 .sec_wrap img{
	margin-right: 100px;
}
#section1 .sec_wrap > div{
	color: #fff;
}
#section1 .sec_wrap > div h4{
	font-size: 42px;
	margin-bottom: 40px;
	font-weight: 700;
	display: inline-block;
	position: relative;
}
#section1 .sec_wrap > div h4 p{
	position: relative;
	z-index: 1;
	display: inline-block;
	padding:0 5px;
}
#section1 .sec_wrap > div h4 p em{
	background-color: #0076CF;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	display: block;
	content: '';
	height: 100%;
	z-index: -1;
}

#section1 .sec_wrap > div > p{
	font-size: 20px;
	margin-bottom: 25px;
}
#section1 .sec_wrap > div > p:last-child{
	margin-bottom: 0;
}
#section1 .sec_wrap > div ul{
	display: flex;
	margin-top: 60px;
}
#section1 .sec_wrap > div ul li{
	width: 180px;
	height: 180px;
	border:1px solid #fff;
	border-radius: 100%;
	margin-left: -20px;
	
	display: flex;
    justify-content: center;
	align-items: center;
}
#section1 .sec_wrap > div ul li:first-child{
	margin-left: 0;
}
#section1 .sec_wrap > div ul li em{
	font-size: 24px;
}


#section2 .fp-scrollable{
	width: 100%;
}

#section2 .sec_wrap{
	padding:250px 0;
}

.sec02_top{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.sec02_top img{
	display: block;
	width: auto;
	height: auto;
}
.sec02_top p{
	font-weight: 900;
	font-size: 40px;
	margin:20px auto 30px;
	color: #fff;
}
.sec02_top p span{
	font-weight: normal;
}
.sec02_top ul{
	display: flex;
    align-items: center;
	max-width: 900px;
	flex-wrap: wrap;
    justify-content: center;
	margin-bottom: 100px;
}
.sec02_top ul li{
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 25px;
	padding:12px 30px;
	margin:0 15px 20px 0;
}
.sec02_top ul li:nth-of-type(5){
	margin-right: 0;
}
.sec02_top ul li:nth-child(n+6):nth-child(-n+9){
	margin-bottom: 0;
}

#section2 .sec_wrap > div:not(.sec02_top){
	width: 100%;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
	min-width: 1420px;
	color: #fff;
}
#section2 .sec_wrap > div:not(.sec02_top) h4{
	font-size: 60px;
	font-weight: 600;
}
#section2 .sec_wrap > div:not(.sec02_top) p{
	margin:20px 0 50px;
	font-size: 20px;
	font-weight: 300;
}
#section2 .sec_wrap > div:not(.sec02_top) ul{
	display: flex;
	justify-content: center;
	flex-direction: column;

	width: 378px;
	height: 160px;
	border-radius: 0 30px 0 30px;
	background-color: rgba(255,255,255,0.2);
}
#section2 .sec_wrap > div:not(.sec02_top) ul li{
	font-size: 28px;
	line-height: 35px;
	font-weight: 300;
	text-align: right;
	padding:0 35px;
	font-style: italic;
}
.sec02_mid{
	margin-bottom: 80px;
	padding-bottom: 80px;
	border-bottom: rgba(255,255,255,0.5) dashed 1px;
}
.sec02_mid > div{
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.sec02_mid > div p{
	text-align: right;
}
.sec02_bot ul li{
	text-align: left !important;
}
#section2 .sec_wrap > div:not(.sec02_top) ul li b{
	font-weight: 600;
}



#section3{background-color: #fff;}
#section3 .sec03_slide_wrap:not(.active),
#section3 .sec03_slide_btn:not(.active){
	display: none;
}

#section3 .sec_wrap{
	position: relative;
}

.sec03_tit h4{
	font-size: 60px;
	font-weight: 600;
}
.sec03_tit p{
    font-size: 20px;
    font-weight: 200;
	letter-spacing: -0.15px;
	margin:20px 0 50px;
}

.sec03_dept{
	display: flex;
	margin-bottom: 25px;
}
.sec03_dept li{
	margin-right: 30px;
	font-size: 24px;
	font-weight: 700;
	color:#ddd;
	position: relative;
	cursor: pointer;
}
.sec03_dept li.active::before,
.sec03_dept li:hover::before{
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #0076CF;
	position: absolute;
	left:0;
	bottom:-3px;
}
.sec03_dept li.active,
.sec03_dept li:hover{
	color:#0076CF;
}

.sec_wrap .sec03_nav{
	position: absolute;
	right:0;
	top:100px;
	width: 90px;
	height: 14px;
}



.swiper-container,
.sec03_nav{display: none;}
.swiper-container.active,
.sec03_nav.active{display: block;}



.swiper-button-next, .swiper-button-prev{
	width: 36px;
	height: 14px;
	top:0;
	margin:0;
}
.swiper-button-next{
	right: 0;
}
.swiper-button-prev{
	left: 0;
}
.custom-prev::after {
	content: url('../img/main/icon_l.png');
	width: 36px;
	height: 14px;
	display: block;
	font-size: 0;
}
.custom-next::after {
	content: url('../img/main/icon_r.png');
	width: 36px;
	height: 14px;
	display: block;
	font-size: 0;
}
  


.sec03_slide_btn{
	position: absolute;
	top:90px;
	right: 0;
	width: 90px;
	height: 14px;
    display: flex;
    justify-content: space-between;
}
.sec03_slide_btn button {
	background: transparent;
	border: none;
	cursor: pointer;
	width: 35px;
	height: 14px;
  }
  

#section3 .container{
	width: 100vw;
	padding-top: 100px;
}
.sec03_tit{
	width: 100%;
	max-width: 1420px;
	margin:0 auto;
	position: relative;
}


#section3 .sec03_slide_wrap.active .slick-list{padding:0 !important;}
#section3 .sec03_slide_wrap .slick-list .slick-track{left: 13.5%; position: relative;}
#section3 .sec03_slide_wrap.active .slick-list .slick-track{}

/*
#section3 .sec03_slide_wrap .slick-list .slick-track .slick-slide{
	margin-right: 40px;
	opacity: 0.5;
}
#section3 .sec03_slide_wrap .slick-list .slick-track .slick-slide:not(.slick-slide.slick-active){
	padding-top: 100px;
}
#section3 .sec03_slide_wrap .slick-list .slick-track .slick-slide.slick-active{
	opacity: 1;
}

#section3 .sec03_slide_wrap .slick-slide a.prod_box{
	background-color: #F5F5F5;
	width: 600px;
	height: 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#section3 .sec03_slide_wrap .slick-active a.prod_box{
	position: relative;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	height: 100%;
}

#section3 .sec03_slide_wrap a.prod_box span.prod_more{
	display: none;
}
#section3 .sec03_slide_wrap .slick-active a.prod_box span.prod_more::before,
#section3 .sec03_slide_wrap .slick-active a.prod_box span.prod_more::after{
	display: block;
	content: '';
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 2px;
	background-color: #fff;
}
#section3 .sec03_slide_wrap .slick-active a.prod_box span.prod_more::after{
	width: 2px;
	height: 32px;
}
#section3 .sec03_slide_wrap .slick-active a.prod_box span.prod_more{
	display: block;
	content: '';
	position: absolute;
	right:-1px;
	bottom:-2px;
	width: 80px;
	height: 80px;
	background-color: #0076CF;
}

#section3 .sec03_slide_wrap .slick-active a.prod_box:hover span.prod_more::before,
#section3 .sec03_slide_wrap .slick-active a.prod_box:hover span.prod_more::after{
	transform: translate(-50%, -50%) rotate(180deg);
	transition-duration: 0.25s;
}

#section3 .sec03_slide_wrap .slick-slide img{
	display: block;
	width: auto;
	height: 300px;
}
#section3 .sec03_slide_wrap .slick-active img{
	height: 400px;
}
*/

/*
#section3 .sec03_slide_wrap .slick-active::before{
	display: block;
	content: '';
	width: 80px;
	height: 80px;
	background-color: #0076CF;
	position: absolute;
	bottom:0;
	right: 0;
	z-index: 1;
}
#section3 .sec03_slide_wrap .slick-active::after{
	display: block;
	content: '┼';
	color: #fff;
	font-size: 40px;
	position: absolute;
	bottom:16px;
	right: 16px;
	z-index: 2;
	cursor: pointer;
}
*/
#section3 .sec03_slide_wrap .slick-active a.prod_box{
	width: 760px !important;
	height: 450px !important;
	border: 6px solid #0076CF;
	position: relative;
	/*
	padding:25px 65px;
	background-color: #f5f5f5;
	*/
}

#section3 .sec03_slide_wrap .sec03_slide_tit{
	display: none;
}
#section3 .sec03_slide_wrap .slick-active .sec03_slide_tit{
	display: block;
}
#section3 .sec03_slide_wrap .slick-active .sec03_slide_tit{
	position: absolute;
	top:40px;
	left: 40px;
}
.sec03_slide_tit h6{
	font-size: 32px;
	font-weight: 700;
}
.sec03_slide_tit p{
	font-size: 18px;
	color:#999;
}

.prod_box_cell{
	display: block;
	position: absolute;
	bottom:0;
	right:0;
}



.swiper-container2{display: none;}

#section3 .swiper-container{
	left:-400px;
	overflow: visible;
	position: relative;
}
#section3 .swiper-container .swiper-slide-active{
	width: 760px !important;
	height: 450px !important;
	border: 6px solid #0076CF;
	position: relative;
}

#section3 .swiper-container .swiper-slide{
	opacity: 0.5;
}

#section3 .swiper-container .swiper-slide:not(.swiper-slide-active){
	margin-top: 100px;
}
#section3 .swiper-container .swiper-slide-active{
	opacity: 1;
}
#section3 .swiper-container .swiper-slide-active a{
	display: flex;
	position: relative;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	height: 100%;
}

#section3 .swiper-container .swiper-slide{
	background-color: #F5F5F5;
	width: 600px;
	height: 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#section3 .swiper-container .swiper-slide a.prod_box span.prod_more{
	display: none;
}
#section3 .swiper-container .swiper-slide a.prod_box span.prod_more::before,
#section3 .swiper-container .swiper-slide a.prod_box span.prod_more::after{
	display: block;
	content: '';
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 2px;
	background-color: #fff;
}
#section3 .swiper-container .swiper-slide-active a.prod_box span.prod_more::after{
	width: 2px;
	height: 32px;
}
#section3 .swiper-container .swiper-slide-active a.prod_box span.prod_more{
	display: block;
	content: '';
	position: absolute;
	right:-1px;
	bottom:-2px;
	width: 80px;
	height: 80px;
	background-color: #0076CF;
}

#section3 .swiper-container .swiper-slide-active a.prod_box:hover span.prod_more::before,
#section3 .swiper-container .swiper-slide-active a.prod_box:hover span.prod_more::after{
	transform: translate(-50%, -50%) rotate(180deg);
	transition-duration: 0.25s;
}

#section3 .swiper-container .sec03_slide_tit{
	display: none;
}
#section3 .swiper-container .swiper-slide-active .sec03_slide_tit{
	display: block;
	position: absolute;
	top:40px;
	left: 40px;
}

#section3 .swiper-container .swiper-slide img{
	display: block;
	width: auto;
	height: 300px;
}
#section3 .swiper-container .swiper-slide-active img{
	height: 400px;
}






#section4 .fp-tableCell{
	display: flex;
	justify-content: center;
    align-items: center;
	height: 100%;
}
#section4 .fp-scrollable{
	display: flex;
    align-items: center;
}
.sec4_wrap{
	width: 100%;
	max-width: 1420px;
	height: 810px;
	padding-top: 100px;
	display: flex;
	align-items: flex-start;
}

.sec04_tit{
	position: absolute;
	left:0;
	top:0;
}
.sec04_tit h4{
	font-size: 60px;
	font-weight: 700;
	width: max-content;
	color: #fff;
}
.sec04_tit p{
	font-size: 20px;
	color: rgba(255,255,255,0.8);
	margin:30px 0 50px 0;
}
.sec04_tit a{
	display: block;
	width: fit-content;
	height: fit-content;
	padding:15px 35px;
	border-radius: 25px;
	background-color: rgba(255,255,255,0.15);
	color:#fff;
	font-size: 16px;
	font-weight: 300;
}
.sec04_tit a:hover{
	background-color: rgba(255,255,255,0.35);
	transition-duration: 0.5s;
}

.sub_glo_box1{
	position: relative;
	width: fit-content;
	height: 710px;
}
.sub_glo_box1 img{
	display: block;
	width: 944px;
	height: auto;
}

.sub_glo_box1 p{
	opacity: 0;
}
.fp-viewing-4 .sub_glo_box1 p{
	position: absolute;
	display: block;
	content: '';
	width: fit-content;
	height: fit-content;
	border-radius: 20px;
	background-color: #000;
	background-image: url(../img/sub/icon11.png);
	background-position: left 15px center;
	background-repeat: no-repeat;
	background-size: auto;
	z-index: 1;
	cursor: pointer;

	animation: appearGlobal 1s 1 forwards;
}

.fp-viewing-4 .sub_glo_box1 p:nth-of-type(5),
.fp-viewing-4 .sub_glo_box1 p:nth-of-type(6){
	animation-name: appearGlobal2;
}
.sub_glo_box1 p:nth-of-type(1){left:58px; bottom:113px; animation-delay: 2.25s;}
.sub_glo_box1 p:nth-of-type(2){left:193px; bottom:137px; animation-delay: 1.5s;}
.sub_glo_box1 p:nth-of-type(3){left:48px; bottom:240px; animation-delay: 2.75s;}
.sub_glo_box1 p:nth-of-type(4){left:105px; bottom:289px; animation-delay: 2s;}
.sub_glo_box1 p:nth-of-type(5){right:197px; top:218px; animation-delay: 1.75s;}
.sub_glo_box1 p:nth-of-type(6){right:243px; top:296px; animation-delay: 2.5s;}


@keyframes appearGlobal{
    0%{
		bottom: 100%;
	}
    100%{
		opacity: 1;
	}
}
@keyframes appearGlobal2{
    0%{
		top: -100%;
	}
    100%{
		opacity: 1;
	}
}

.sub_glo_box1 p::before{
	display: block;
	content: '';
	width: 12px;
	height: 10px;
	position: absolute;
	left: 30px;
	bottom: -10px;
	background-image: url(../img/sub/icon12.png);
}
.sub_glo_box1 p.map_c::before{
	left:50%;
	transform: translate(-50%, 0);
}
.sub_glo_box1 p.map_r::before{
	left:unset;
	right: 30px;
}
.sub_glo_box1 p{
	display: block;
	color: #fff;
	padding:9px 20px 9px 33px;
}

.sub_glo_box1 p.on,
.sub_glo_box1 p:hover{
	background-color: #0076CF;
	background-image: url(../img/sub/icon10.png);
	transition-duration: 0.5s;
}
.sub_glo_box1 p.on::before,
.sub_glo_box1 p:hover::before{
	background-image: url(../img/sub/icon13.png);
	transition-duration: 0.75s;
}

.sub_glo_box1 p span{
	position: absolute;
	left: -20px;
	width: max-content;
	height: auto;
	transform: translate(-100%, -50%);
	display: none;
}
.sub_glo_box1 p:nth-of-type(2) span,
.sub_glo_box1 p:nth-of-type(3) span,
.sub_glo_box1 p:nth-of-type(4) span{
	left: unset;
	right: -20px;
	transform: translate(100%, -50%);
}
.sub_glo_box1 p.on span,
.sub_glo_box1 p:hover span{
	display: block;
	transition-duration: 0.25s;

	animation: appear 0.5s 1 forwards;
    animation-delay: 0s;
}
@keyframes appear{
    0%{
		opacity: 0;
		bottom: -100%;
	}
    100%{
		opacity: 1;
		bottom: 0;
	}
}





/* animate */
.fp-viewing-secondPage .highlight,
.sec03_dept li.active::before,
.sec03_dept li:hover::before{
	animation: highlight 1s 1 forwards;
    animation-delay: 0s;
}
.sec_wrap > div h4 p:nth-of-type(2) .highlight{
	animation-delay: 0.75s;
}
.sec_wrap > div h4 p:nth-of-type(3) .highlight{
	animation-delay: 1.5s;
}
@keyframes highlight{
    0%{
		opacity: 0;
		width: 0;
	}
    100%{
		opacity: 1;
		width: 100%;
	}
}



/* main_intro */
.intro{
	display: flex;
	width: 100vw;
	height: 100%;
	z-index: 9998;
	content: '';
	position: absolute;
	align-items: center;
    padding-left: 13.5%;
	top:0;
	left:0;

	animation: intro 1 forwards;
}
.intro::before, .intro::after{
	display: block;
	content: '';
	position: absolute;
	width: 50vw;
	height: 100%;
	top:0;
}
.intro::before{
	left: 0;
	background-color: #fff;
	
	animation: intro1 1 forwards;
}
.intro::after{
	right: 0;
	background-color: #fff;

	animation: intro2 1 forwards;
}

.intro > div{
	display: block;
	content: '';
    width: 100%;
	max-width: 1200px;
    height: 333px;
	z-index: 9999;
	
	background-image: url(../img/main/main_tit_bk.png);
	background-repeat: no-repeat;
	background-size: contain;

	animation: intro3 1 3s forwards;
	animation-delay: 0s;
}

.intro,
.intro::before,
.intro::after{
	animation-duration: 4s;
	animation-delay: 1s;
}

@keyframes intro{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		display: none;
	}
}
@keyframes intro1{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		width: 0;
	}
}
@keyframes intro2{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		width: 0;
	}
}
@keyframes intro3{
	0%{
		background-image: url(../img/main/main_tit_bk.png);
	}
	100%{
		background-image: url(../img/main/main_tit.png);
	}
}



/**/

@media (max-width: 1719px){

	.intro, .intro::before, .intro::after{display: none;}


	#section0 .fp-tableCell, #section1 .fp-tableCell{
		padding-left: 0;
		justify-content: center;
	}

	#section2 .sec_wrap > div:not(.sec02_top){
		padding-left: 5%;
		padding-right: 5%;
	}
	#section2 .sec_wrap > div:not(.sec02_top) img{
		max-width: 50%;
	}

	#section3 .swiper-container{
		left: -30%;
	}
	#section3 .swiper-container .swiper-slide-active{
		width: 650px !important;
		height: 400px !important;
	}
	#section3 .swiper-container .swiper-slide-active img{
		height: 300px;
	}
	#section3 .swiper-container .swiper-slide:not(.swiper-slide-active){
		margin-top: 50px;
	}

	.sec4_wrap{
		align-items: flex-start;
		justify-content: flex-end;
	}
	.sec4_wrap .container{
		width: fit-content;
		position: absolute;
		left:10%;
		top:15%;
	}

	#section1 .sec_wrap > div > p{
		word-break: keep-all;
	}

	.sec4_wrap{
		padding-left: 2.5%;
		padding-right: 2.5%;;
	}

}


@media (max-width: 1419px){

	#fullpage > .fp-section{
		padding:0 2.5%;
		height: fit-content !important;
		overflow: hidden;
	}
	.fp-tableCell.div{
		height: 100% !important;
		padding-top:150px;
		padding-bottom: 150px;
	}

	#section0{
		min-height: 700px;
	}
	#section0 .scroll{
		left:2.5%;
	}
	#section0 .sec_wrap{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#section0 .sec_wrap img{
		max-width: 80%;
		height: auto;
	}




	#section1 .sec_wrap img{
		margin-right: 50px;
		width: 200px;
		height: auto;
	}
	#section1 .sec_wrap > div{
		width: calc(100% - 250px);
	}
	#section1 .sec_wrap > div br{
		display: none;
	}
	#section1 .sec_wrap > div h4{
		font-size: 2.0em;
		word-break: keep-all;
		line-height: 1.5;
		font-weight: 500;
	}
	#section1 .sec_wrap > div h4 p{
		display: initial;
		word-break: keep-all;
		font-weight: 800;
	}
	#section1 .sec_wrap > div > p{
		font-size: 1.2em;
		margin-bottom: 15px;
		padding:0;
	}
	#section1 .sec_wrap > div ul li{
		width: calc(100% / 5 + 10px);
	}
	#section1 .sec_wrap > div ul li em{
		font-size: 1.6em;
	}

	
	#section2 .sec_wrap > div:not(.sec02_top) p,
	.sec03_tit p,
	.sec04_tit p{
		font-size: 1.2em;
		font-weight: 400;
	}


	#section2 .fp-tableCell{
		height: 100% !important;
	}
	#section2 .sec_wrap{
		padding:100px 0;
	}
	#section2 .sec_wrap > div:not(.sec02_top){
		width: 100%;
		max-width: 100%;
		min-width: unset;
		justify-content: center;
		padding-left: 0;
		padding-right: 0;
	}
	#section2 .sec_wrap > div:not(.sec02_top) img{
		display: block;
		width: 50%;
		height: auto;
	}
	.sec02_top ul li{
		font-size: 1em;
	}

	#section2 .sec_wrap > div:not(.sec02_top) h4,
	.sec03_tit h4,
	.sec04_tit h4{
		font-size: 2.6em;
		font-weight: 700;
	}


	#section3{
		
	}
	#section3 .container{
		width: 96%;
	}

	.prod_box{
		width: 100%;
		padding:0 25px;
	}
	#section3 .swiper-container .swiper-slide img{
		width: 100%;
		height: auto;
	}
	#section3 .swiper-container .swiper-slide-active{
		width: 500px !important;
	}

	.sec4_wrap .container{
		left: 5%;
	}
	.sec4_wrap .container .sec04_tit{
		position: relative;
		z-index: 1;
	}

	.sub_glo_box1 p span{
		left:-15px;
	}
	.sub_glo_box1 p:nth-of-type(1) span,
	.sub_glo_box1 p:nth-of-type(2) span, .sub_glo_box1 p:nth-of-type(3) span, .sub_glo_box1 p:nth-of-type(4) span{
		left: unset;
		right: -15px;
		transform: translate(100%, -50%);
	}
	.sub_glo_box1 p:nth-of-type(1){
		bottom: 107px;
	}
	.sub_glo_box1 p:nth-of-type(2){
		bottom:142px;
	}
	.sub_glo_box1 p{
		font-size: 0.9em;
		padding: 7px 15px 7px 28px;
	}

}

@media (max-width: 1219px){

	
	#section0 .sec_wrap img{
		max-width: 75%;
	}

	.sec04_tit p{
		margin:20px 0 25px;
	}
	.sec04_tit a{
		padding:10px 20px;
		font-size: 0.9em;
	}

}

@media (max-width: 999px){
	
	#section0 .scroll{
		animation: scrollBounce 2s infinite !important;
	}
	#fullpage > .fp-section{
		padding: 0 5%;
	}

	#section1 .sec_wrap{
		flex-direction: column;
		align-items: center;
		padding:100px 0;
	}

	#section1 .sec_wrap img{
		margin-right: 0;
		margin-bottom: 30px;
		width: 150px;
	}
	#section1 .sec_wrap > div{
		width: 100%;
	}
	#section1 .sec_wrap > div h4,
	#section1 .sec_wrap > div > p{
		text-align: center;
	}
	#section1 .sec_wrap > div h4{
		line-height: 1.2;
	}
	#section1 .fp-tableCell::before{
		opacity: 0.3;
	}

	.sec02_top img{
		width: 150px;
	}
	.sec02_top ul{
		flex-direction: row;
	}
	.sec02_top ul li{
		margin:unset;
		margin:5px;
	}
	#section2 .sec_wrap > div:not(.sec02_top){
		flex-direction: column;
	}
	.sec02_mid{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
	.sec02_mid > div{
		align-items: center;
	}
	#section2 .sec_wrap > div.sec02_bot{
		flex-direction: column-reverse;
	}
	#section2 .sec_wrap > div:not(.sec02_top) h4,
	#section2 .sec_wrap > div:not(.sec02_top) p{
		text-align: center;
		word-break: keep-all;
	}
	#section2 .sec_wrap > div:not(.sec02_top) h4{
		margin:20px 0 0 0;
	}
	#section2 .sec_wrap > div:not(.sec02_top) p{
		margin:10px 0 25px;
	}
	#section2 .sec_wrap > div.sec02_bot > div{
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.sec_wrap .sec03_nav{
		position: relative;
		margin-bottom: 30px;
		top:0;
	}
	#section3 .swiper-container{
		left: 0;
	}

	#section4 .fp-tableCell{
		height: fit-content !important;
	}
	.sec4_wrap{
		height: auto;
		padding-top: 150px;
		padding-bottom: 150px;
	}

	.sec4_wrap .container{
		top:150px;
	}
	.sub_glo_box1{
		height: fit-content;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding-top: 100px;
	}
	.sub_glo_box1 img{
		max-width: 100%;
		margin-bottom: 30px;
	}
	.fp-viewing-4 .sub_glo_box1 p,
	.sub_glo_box1 p{
		position: initial;
		opacity: 1;
		margin:10px;
		
		display: block;
		content: '';
		width: fit-content;
		height: fit-content;
		border-radius: 20px;
		background-image: url(../img/sub/icon11.png);
		background-position: left 15px center;
		background-repeat: no-repeat;
		background-size: auto;
		z-index: 1;
		cursor: pointer;
	}
	.fp-viewing-4 .sub_glo_box1 p.on,
	.sub_glo_box1 p.on,
	.fp-viewing-4 .sub_glo_box1 p:hover,
	.sub_glo_box1 p:hover {
		background-color: #0076CF;
		background-image: url(../img/sub/icon10.png);
		transition-duration: 0.5s;
	}
	.sub_glo_box1 p.on span,
	.sub_glo_box1 p:hover span,
	.sub_glo_box1 p::before{
		display: none;
	}

}

@media (max-width: 799px){

	.fp-tableCell{
		height: 100% !important;
	}
	#section0 .sec_wrap img{
		max-width: 90%;
	}
	#section0 .scroll{
		left:5%;
	}

	#section1 .sec_wrap img,
	.sec02_top img{
		width: 100px;
	}

	#section1 .sec_wrap > div h4{
		font-size: 1.4em;
	}
	#section1 .sec_wrap > div > p{
		font-size: 1.0em;
	}

	#section1 .sec_wrap > div ul{
		display: flex;
		margin-top: 30px;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
	}
	#section1 .sec_wrap > div ul li:first-child{
		margin-left: 10px;
	}
	#section1 .sec_wrap > div ul li{
		margin-left: unset;
		width:calc(100% / 3 - 20px);
		margin:10px;
	}
	#section1 .sec_wrap > div ul li em{
		font-size: 1.0em;
	}

	.sec02_top ul li{
		padding:6px 20px;
		font-size: 0.9em;
	}
	#section2 .sec_wrap > div:not(.sec02_top) img{
		max-width: 100%;
		width: 100%;
	}
	.sec02_top p{
		font-size: 2em;
	}

	#section2 .sec_wrap > div:not(.sec02_top) h4{
		margin-top: 60px;
		font-size: 2em;
	}
	#section2 .sec_wrap > div:not(.sec02_top) p br{
		display: none;
	}
	#section2 .sec_wrap > div:not(.sec02_top) p{
		font-size: 1em;
		margin: 15px 0 30px;
	}
	#section2 .sec_wrap > div:not(.sec02_top) ul{
		width: 100%;
		height: fit-content;
		padding:25px 0;
	}
	#section2 .sec_wrap > div:not(.sec02_top) ul li,
	.sec02_bot ul li{
		text-align: center !important;
		font-size: 1.4em;
	}

	#section3 .container{
		padding:100px 0;
	}
	#section3 .swiper-container{
		left:-41%;
	}
	#section3 .swiper-container .swiper-slide-active{
		width: 100% !important;
	}
	#section3 .swiper-container .swiper-slide:not(.swiper-slide-active){
		opacity: 0;
	}

	#section2 .sec_wrap > div:not(.sec02_top) h4, .sec03_tit h4, .sec04_tit h4{
		font-size: 2.0em;
	}
	#section2 .sec_wrap > div:not(.sec02_top) p, .sec03_tit p, .sec04_tit p{
		font-size: 1.1em;
	}
	.sec03_dept li{
		font-size: 1.2em;
	}
	.sec03_slide_tit h6{
		font-size: 1.6em;
	}


	.sec4_wrap{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.sub_glo_box1{
		padding-top: 150px;
	}
	.fp-viewing-4 .sub_glo_box1 p, .sub_glo_box1 p{
		margin:5px;
		font-size: 1.0em;
		padding:10px 20px 10px 33px
	}

}