@charset "UTF-8";
/* CSS Document */
.album {
	margin: auto;
	background-color: white;
	position: relative;
	margin-bottom: 60px;
}
.album img {
	animation-name: album;
	animation-duration: 96s; /*一周●秒 */
	animation-iteration-count: infinite;
	opacity: 0;
}

.album .img1 {
	display: block;
	margin: 0 auto;
}
.album .img2 {
	position: absolute;
	top: 0;
	animation-delay: 12s;/*12秒後にこちらをスタート */
}
.album .img3 {
	position: absolute;
	top: 0;
	animation-delay: 24s;/*24秒後にこちらをスタート */
}
.album .img4 {
	position: absolute;
	top: 0;
	animation-delay: 36s;/*36秒後にこちらをスタート */
}
.album .img5 {
	position: absolute;
	top: 0;
	animation-delay: 48s;/*48秒後にこちらをスタート */
}
.album .img6 {
	position: absolute;
	top: 0;
	animation-delay: 60s;
}
.album .img7 {
	position: absolute;
	top: 0;
	animation-delay: 72s;
}
.album .img8 {
	position: absolute;
	top: 0;
	animation-delay: 84s;
}
.album .img9 {
	position: absolute;
	top: 0;
	animation-delay: 96s;
}
.album .img10 {
	position: absolute;
	top: 0;
	animation-delay: 108s;
}
 @keyframes album {
 0% {
 opacity: 0;
}
 12.5% {
 opacity: 1;
}
 37.5% {
 opacity: 1;
}
 50% {
 opacity: 0;
}
 }