/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #dcdcd8;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}



/*トップページ（※home.html）の設定
---------------------------------------------------------------------------*/
body.home {
	background: url(../images/SchoolPhoto.JPG) no-repeat left center;	/*背景画像の設定（古いブラウザ用）*/
	background: url(../images/SchoolPhoto.JPG) no-repeat left center / cover;	/*背景画像の設定*/
}
/*ロゴ*/
body.home .logo {
	background: #000;	/*背景色*/
	text-align: center;	/*ロゴ画像の配置を左右の中央に*/
	padding: 10px;		/*ブロック内の余白*/
	position: relative;	/*下の配置場所を指定する為に必要なスタイル*/
	top: 43%;			/*上から43%の場所に配置*/
	animation-name: home-logo;	/*下のアニメーションで指定しているkeyframesの名前（@keyframes home-logo）*/
	animation-duration: 0.2S;	/*アニメーションの実行時間。0.2秒。*/
	animation-fill-mode: both;
	animation-delay: 1s;	/*１秒遅れてアニメーションをスタートさせる*/
}
body.home .logo img {
	width: 1000px;	/*ロゴ画像の幅*/
}
/*ロゴのアニメーション*/
@keyframes home-logo {
0% {opacity: 0;transform: scaleY(0);}
100% {opacity: 1;transform: scaleY(1)}
}
