@charset "UTF-8";
/* CSS Document */

/* --- 全体の背景・テキスト --- */
body {
	margin: 0;
	padding: 0;
	background: #FFF;  /* 全体の背景（グラデーション） */
	color: #5E563F; /* 全体の文字色 */
	font-size: 100%; /* 全体の文字サイズ */
}

img {
	border:none;
	}

/* --- 全体のリンクテキスト --- */
a:link { color: #0000ff; }
a:visited { color: #800080; }
a:hover { color: #ff0000; }
a:active { color: #ff0000; }

/* --- コンテナ --- */
#container {
	width: 1200px; /* ページの幅 */
	margin: 0 auto; /* センタリング */
	background:#FFF;
}

/* --- ヘッダ --- */
#header {
	text-align:center;
	color:#FFF;
	font-family:"Arial Black", Gadget, sans-serif;

}



/* --- コンテンツ --- */
#content {
	background-color: #FFF; /* コンテンツの背景色 */

}

#content p {
	text-align:justify;
	font-family:"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		line-height: 150%;


}
#content h1{
		font-family:"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	margin: 0 0px 0px;  /* サイトタイトルのマージン（上、左右、下） */
	padding: 0px 0px; /* 見出しエリアのパディング（上下、左右） */
	font-size:220%;
	font-weight: bold;
	text-align:center;

	}
	
#content h2{
	border: 1px #452E17 solid; 
}

/* --- フッタ --- */
#footer {
	background-color: #E3D2B2; /* フッタの背景色 */
	text-align:center;
}

#footer h1{
	font-family:"Times New Roman", Times, serif;
	margin: 0 0px 0.5em; /* 段落のマージン（上、左右、下） */
	font-size:200%;
}




