@charset "shift_jis";


body {
	color: #FFFFFF;
	background-color: #000000;
	margin: 0px;
	padding: 0px;
	text-align: left;
	font: 75%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

ul{
	list-style-type: none;
}

img {
	border: none;
}



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFFFFF;			/*リンクの文字色*/
}

a:hover {
	color: #FFFF00;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}



/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	text-align: left;
	width: 1180px;	/*ブロックの幅*/
	margin-right: auto;
	margin-left: 0;
}



/*ヘッダー（ロゴが入っているHP上部ブロック）
---------------------------------------------------------------------------*/
#header {
	height: 222px;	/*ヘッダーの高さ*/
	width: 100%;	/*ヘッダーの幅*/
	position: absolute;
	background-image: url(img/header_img.jpg);	/*ヘッダー背景画像*/
	background-repeat : repeat-x;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から0pxの位置に配置*/
}

/*ロゴ画像設定*/
#header #logo {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から0pxの位置に配置*/
}


/*コンテンツ（メインコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: 1180px;	/*メインコンテンツ幅*/
	clear: left;	/*無効*/
	background-color: #000000;	/*背景色*/
	padding-top: 280px;			/*背景画像分、上に余白をとる。*/
}


/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
	background-color: #000000;	/*背景色*/
	float: right;	/*右側にフロート*/
	width: 850px;	/*メインコンテンツ幅*/
}


/*サブコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側にフロート*/
	width: 320px;	/*サブコンテンツ幅*/
	padding-left: 5px;	/*左からの余白*/
}


/*サブメニュー
---------------------------------------------------------------------------*/
ul.submenu {
	margin-bottom: 1em;	/*下のマージン*/
	list-style-type: disc;	/*リストの先頭に表示するマーカー文字*/
}

ul.submenu li a {
	width: 200px;	/*メニューブロックの幅*/
	display: block;	/*メニューブロックの幅を表示*/
	padding: 5px 10px;	/*左から、上下・左右への余白*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
	background-color: #000000;		/*背景色*/
	color: #FFFFFF;		/*文字色*/
}

ul.submenu li a:hover {
	background-color: #000000;	/*カーソルオーバー時の背景色*/
	color: #FFFF00;	/*文字色*/
}


/*フッター
---------------------------------------------------------------------------*/
#footer {
	font-size: 12px;	/*文字サイズ*/
	clear: both;	/*無効*/
	width: 100%;	/*フッターの幅*/
	text-align: center;	/*文字をセンタリング*/
	padding-top: 40px;	/*上からの余白*/
	padding-bottom: 10px;	/*下の余白*/
}



/*その他
---------------------------------------------------------------------------*/

.clear {
	clear: both;	/*無効*/
}


