/* :::::: TOP画像のスライダー :::::: */
@charset "utf-8";

.slideshow1 {
	position: relative;
	overflow: hidden;
	text-align: center;
	margin:0 auto;
}
/* :::::: 画像5枚パターン :::::: */
/* :::::: slideContents1 :::::: */
.slideContents1 {
	position: relative;
	/*background: #00A0E9;*/
	text-align: center;
	margin:0 auto;
	-webkit-user-select: none;
	user-select: none;
}
.slideContents1 section {
	position: absolute;
	text-align: center;
	margin:0 auto;
	top: 0;
	left: 0;
	right: 0;
}
.slideContents1 section img {
	text-align: center;
	padding: 0 0%;
	margin:0 auto;
	box-sizing: border-box;
	vertical-align: center;
}

/* :::::: mechanism :::::: */
.slideContents1 #slide1 {
	position: relative;
}
.slideContents1 section {
	animation: autoplay 25s ease infinite;
}

@keyframes autoplay {
   0% { opacity: 0 }
   4% { opacity: 1; z-index:20;}
  21% { opacity: 1 }
  25% { opacity: 0 }
 100% { opacity: 0 }
}
.slideContents1 #slide1 { animation-delay: 0s; z-index:10;}
.slideContents1 #slide2 { animation-delay: 5s; }
.slideContents1 #slide3 { animation-delay: 10s; }
.slideContents1 #slide4 { animation-delay: 15s; }
.slideContents1 #slide5 { animation-delay: 20s; }

