@charset "UTF-8";

/* -------------------------- */
/* pageHeader */
/* -------------------------- */

#pageHeader {
	background: url(../images/industory/bg_header.jpg) no-repeat;
	background-size: 100% auto;
	background-position: center center;
	background-color: #000;
}

.mainCopyTxt {
	padding-bottom: 35px;
}

.industoryBox {
	margin-top: 65px;
	overflow: hidden;
}

.industoryList h4 {
	margin: 50px 0 30px;
}
.industoryBox .pic_slide figure {
	position: relative;
}
.industoryBox .pic_slide figure img{
	position: relative;
	animation-name: slid;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	opacity: 0;
}
.industoryBox .pic_slide figure .pic_01{
	display: block;
}
.industoryBox .pic_slide figure .pic_02{
	position: absolute;
	top: 0;
	left: 0;
	animation-delay: 3s;
}
@keyframes slid {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 0;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
}

@-webkit-keyframes slid {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 0;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
}