.album {
	margin: auto;
	background-color: white;
	position: relative;
	z-index: -1;
	height: 592px;
	margin: 110px 0px 0px 0px;
	overflow:hidden;
}

.album span {
	width: 100%;
	animation-name: album;
	-webkit-animation-name: album;
	animation-duration: 15s; /* 画像の枚数に応じて「切替秒数×画像枚数」の数値を記載 */
	-webkit-animation-duration: 15s; /* 画像の枚数に応じて「切替秒数×画像枚数」の数値を記載 */
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
	position:relative;
}
.album span::before{
	content: "";
	width:614px;
	height:115px;
	left:0px;
	right:0px;
	top:230px;
	margin:auto;
	background-image:url(/img/index/main_img.png);
	position:absolute;
}
.album span:nth-child(3)::before{
	background:none;
}
.album span img{
	width:100%;
}
.album .img1 {
	display: block;
	margin: 0 auto;
}

.album .img2 {
	animation-delay:5s; /* 2枚目の画像が何秒後に表示されるか記載 */
	-webkit-animation-delay:5s; /* 2枚目の画像が何秒後に表示されるか記載 */
	position: absolute;
	top: 0;
	left: 0;
}

.album .img3 {
	animation-delay:10s; /* 3枚目の画像が何秒後に表示されるか記載 */
	-webkit-animation-delay:10s; /* 3枚目の画像が何秒後に表示されるか記載 */
	position: absolute;
	top: 0;
	left: 0;
}

@keyframes album {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-webkit-keyframes album {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}