/* スライドアニメーションの設定 */
@keyframes horizontal-animation {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
/* スライダーを表示する親コンテナ */
.slider-container2 {
	display: flex;
	position: relative;
	width: 400px;
	overflow: hidden;    
}
/* スライダー本体 */
.slider-wrapper2 {
	display: flex;
	animation: horizontal-animation 20s linear infinite;
}
/* スライドコンテンツ */
.slide2 {
	width: 400px;
	margin-right: 0px;
}
.slide2 img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
/* ホバー時の一時停止用 ※任意 */
@media (hover: hover) {
	.slider-container:hover .slider-wrapper {
		animation-play-state: paused;
	}
}