.slideshow {
	position: relative;
	overflow: hidden;
}

/* :::::: slideContents :::::: */
.slideshow-content {
	position: relative;
	background: #ffffff;
	text-align: center;
	-webkit-user-select: none;
	user-select: none;
}
.slideshow-content section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.slideshow-content section img {
    width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	vertical-align: middle;
}

/* :::::: mechanism :::::: */
.slideshow-content #img1 {
	position: relative;
}
.slideshow-content section {
	animation: autoplay 49s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes autoplay {
	0% { transform: none; }
    8.286% {transform: none; }
	14.286% { transform: translateX(-100%); }
    14.287% { transform: translateX(100%); }
	94% { transform: translateX(100%); }
    100% { transform: none; }
}
.slideshow-content #img1 { animation-delay: 0s; }
.slideshow-content #img2 { animation-delay: -42s; }
.slideshow-content #img3 { animation-delay: -35s; }
.slideshow-content #img4 { animation-delay: -28s; }
.slideshow-content #img5 { animation-delay: -21s; }
.slideshow-content #img6 { animation-delay: -14s; }
.slideshow-content #img7 { animation-delay: -7s; }