.album {
	margin: auto;
	background-color: white;
	position: fixed;
	z-index: -1;
	width: 100vw;
}
.album img {
	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;
	height: 715px;
	object-fit: cover;
}
.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;
		transform: scale(1);
	}
	12.5% {
		opacity: 1;
	}
	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		transform: scale(1.2);
	}
}
@-webkit-keyframes album {
	0% {
		opacity: 0;
	}
	12.5% {
		opacity: 1;
	}
	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}