@charset "utf-8";


/*CSSスライドショー設定
---------------------------------------------------------------------------*/

/*アニメーション*/


/*１枚目*/
@keyframes slide1 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}
}
/*２枚目*/
@keyframes slide2 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}

}
/*３枚目*/
@keyframes slide3 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}
}

/*４枚目*/
@keyframes slide4 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}
}

/*５枚目*/
@keyframes slide5 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}

}

/*６枚目*/
@keyframes slide6 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}
}

/*７枚目*/
@keyframes slide7 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}
}

/*８枚目*/
@keyframes slide8 {
	0% {opacity: 0; }
	8% {opacity: 1;}
	17% {opacity: 1;}
	25% {opacity: 0;transform: scale(1.2);}
100% {opacity: 0;}
}

/*mainimg
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
	clear: both;
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 0px;
	width: 100%;
	background: url(../capi_img/plus_top0.jpg) no-repeat center center cover;	/*最初の１枚目（土台画像）*/
	

}



/*６枚画像の共通設定*/
.slide1,.slide2,.slide3,.slide4,.slide5,.slide6,.slide7,.slide8 {
	animation-duration: 35s;	/*実行する時間。「s」は秒の事。*/
	animation-iteration-count:infinite;		/*実行する回数。「infinite」は無限に繰り返す意味。*/
	position: absolute;
	left:0px;
	top:0px;
	width: 100%;
	height: auto;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-play-state: running;
	
	/*
animation: 35s linear 0s normal both infinite running;
 */



}

/*１枚目*/
.slide1 {
	animation-name: slide1;	
	animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}
/*２枚目*/
.slide2 {
	animation-name: slide2;
	animation-delay: 7s;
    -webkit-animation-delay: 7s;		/*上で設定しているキーフレーム（keyframes）の名前*/
}
/*３枚目*/
.slide3 {
	animation-name: slide3;	
	animation-delay: 13s;
    -webkit-animation-delay: 13s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}

/*４枚目*/
.slide4 {
	animation-name: slide4;	
	animation-delay: 19s;
    -webkit-animation-delay: 19s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}

/*５枚目*/
.slide5 {
	animation-name: slide5;	
	animation-delay: 25s;
    -webkit-animation-delay: 25s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}

/*６枚目*/
.slide6 {
	animation-name: slide6;	
	animation-delay: 31s;
    -webkit-animation-delay: 31s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}


/*７枚目*/
.slide7 {
	animation-name: slide7;	
	animation-delay: 37s;
    -webkit-animation-delay: 37s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}


/*８枚目*/
.slide8 {
	animation-name: slide8;	
	animation-delay: 43s;
    -webkit-animation-delay: 43s;	/*上で設定しているキーフレーム（keyframes）の名前*/
}



/*スライドショー下の曲線グラデーション画像*/
#kazari {
	position: absolute;
	bottom: -1px;
	z-index: 3;
	width: 100%;
}

