@charset "UTF-8";

.slideWrap {
	overflow: hidden;
}
.topSlide li {
	overflow: hidden;
	opacity: 0;
	z-index: 0;
	animation: imageAnimation 10s linear infinite 0s;
}
.topSlide li:nth-child(1) {
	background: url("../images/top/top_slide01.jpg") center center / auto 100% no-repeat; background-size: cover;
}
.topSlide li:nth-child(2) {
	background: url("../images/top/top_slide02.jpg") center center / auto 100% no-repeat; background-size: cover;
	animation-delay: 5s;
}

@keyframes imageAnimation {
	5% { opacity: 1; }
	45% { opacity: 1; }
	60% { opacity: 0; }
}

/* Show at least something when animations not supported */
.no-cssanimations .topSlide li span {
	opacity: 1;
}