@charset "utf-8";


/*CSSスライドショー設定
---------------------------------------------------------------------------*/
/*１枚目*/
@keyframes slide1 {
	0% {opacity: 0;}
	5% {opacity: 1;}
	18% {opacity: 1;}
	23% {opacity: 0;}
	100% {opacity: 0;}
}
/*２枚目*/
@keyframes slide2 {
	0% {opacity: 0;}
	18% {opacity: 0;}
	23% {opacity: 1;}
	36% {opacity: 1;}
	41% {opacity: 0;}
	100% {opacity: 0;}
}
/*3枚目*/
@keyframes slide3 {
	0% {opacity: 0;}
	36% {opacity: 0;}
	41% {opacity: 1;}
	54% {opacity: 1;}
	59% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes slide4 {
	0% {opacity: 0;}
	54% {opacity: 0;}
	59% {opacity: 1;}
	73% {opacity: 1;}
	79% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes slide5 {
	0% {opacity: 0;}
	73% {opacity: 0;}
	79% {opacity: 1;}
	97% {opacity: 1;}
	100% {opacity: 0;}
}

/*mainimg
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
	text-indent: -9999px;
}
#mainimg img {
	width: 100%;
}
/*３枚画像の共通設定*/
.slide1,.slide2,.slide3,.slide4,.slide5 {
	animation-duration: 20s;	/*実行する時間。「s」は秒の事。*/
	animation-iteration-count:infinite;		/*実行する回数。「infinite」は無限に繰り返す意味。*/
	position: absolute;left:0px;bottom:2px;width: 100%;height: 100%;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-delay: 1s;
}
/*土台画像*/
.slide0 {
	text-indent: 0px;
	position: relative;
	width: 100%;
	height: 100%;
}
/*１枚目*/
.slide1 {
	background: url(../images/1.jpg) no-repeat center center/cover;
	animation-name: slide1;		/*上で設定しているキーフレーム（keyframes）の名前*/
}
/*２枚目*/
.slide2 {
	background: url(../images/2.jpg) no-repeat center center/cover;
	animation-name: slide2;		/*上で設定しているキーフレーム（keyframes）の名前*/
}
/*３枚目*/
.slide3 {
	background: url(../images/3.jpg) no-repeat center center/cover;
	animation-name: slide3;
}
.slide4 {
	background: url(../images/4.jpg) no-repeat center center/cover;
	animation-name: slide4;		/*上で設定しているキーフレーム（keyframes）の名前*/
}
.slide5 {
	background: url(../images/5.jpg) no-repeat center center/cover;
	animation-name: slide5;
}
