@charset "utf-8";

/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*スライドショー
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
	clear: left;
	text-indent: -9999px;
	position: fixed;
	top: 0px;left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
/*画像の共通設定*/
.slide0,.slide1,.slide2,.slide3 {width: 100%;height: 100%;}
.slide1,.slide2,.slide3 {
	animation-timing-function: linear;
	animation-duration: 20s;	/*実行する時間。「s」は秒の事。*/
	animation-iteration-count:infinite;		/*実行する回数。「infinite」は無限に繰り返す意味。*/
	position: absolute;left:0px;top:0px;width: 100%;height: 100%;
	animation-fill-mode: both;
}
/*土台画像*/
.slide0 {
	background: url(../images/0.jpg) no-repeat center center / cover;	/*土台画像（空）の読み込み*/
	position: relative;
}
/*１枚目*/
.slide1 {
	background: url(../images/1.jpg) no-repeat center bottom/cover;	/*１枚目画像（子供たち）の読み込み*/
	animation-name: slide1;		/*keyframes.cssで使う@keyframesの指定*/
}
/*２枚目*/
.slide2 {
	background: url(../images/2.jpg) no-repeat center center/cover;	/*２枚目画像（サッカー）の読み込み*/
	animation-name: slide2;		/*keyframes.cssで使う@keyframesの指定*/
}
/*３枚目*/
.slide3 {
	background: url(../images/3.jpg) no-repeat center top/cover;	/*３枚目画像（スイミング）の読み込み*/
	animation-name: slide3;		/*keyframes.cssで使う@keyframesの指定*/
}

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

}

@media screen and (orientation:portrait) and (max-width:800px){

}

}

@media screen and (max-width:700px){

}
