@charset "utf-8";
/* Top Slide CSS */
.slideshow {
	position: relative;
	overflow: hidden;
}
.slideContents {
	position: relative;
}
.slideContents section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.slideContents section img {
	max-width: 100%;
	margin: 10px 0px;
	box-sizing: border-box;
	vertical-align: middle;
}
.slideContents #slide1 {
	position: relative;
}
.slideContents section {
	animation: autoplay 18s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/*=== スライドのアニメーション ========= */
@keyframes autoplay {
	0%, 29%, 100% { transform: none; }
	33% { transform: translateX(-100%); }
	33.001%, 96% { transform: translateX(100%); }
}
.slideContents #slide1 { animation-delay: 0s; }
.slideContents #slide2 { animation-delay: -12s; }
.slideContents #slide3 { animation-delay: -6s; }
