@charset "shift_jis";

/*
---------------------------------------------------------------------------
---------------------------------------------------------------------------*/

body {
	color: #eeeeee;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 80%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #000000;	/*背景色、背景画像の読み込み*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #ffff00;
}
a:hover {
	color: #ffff00;			/*マウスオン時の文字色（全体）*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	text-align: left;
	width: 1000px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（ロゴが入った最上部ブロック）
---------------------------------------------------------------------------*/
#header {
	text-align: left;
	height: 100px;	/*ヘッダーの高さ*/
	width: 100%;	/*ヘッダーの幅*/
	position: relative;
}
/*ロゴ画像設定*/
#header h1 {
	font-size: 200%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color: red;					/*文字色*/
	line-height: 30px;
	height: 50px;
	overflow: hidden;
	width: 100%;
	clear: both;
}

/*h2タグ設定*/
#header h2 {
	text-align: left;
	font-size: 160%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color: #eeeeee;					/*文字色*/
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	clear: both;
}
/*右上address設定*/
ul#address {
	position: absolute;
	left: 700px;	/*ヘッダーブロックに対して左からの位置に配置*/
	top: 5px;	/*ヘッダーブロックに対して上からの位置に配置*/
}
ul#address li {
	float: left;
	padding: 5px;				/*余白*/
	color: #eeeeee;
	background-color: #333333;	/*背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
#main {
	width: 960px;	/*メインコンテンツ幅*/
	padding-top: 10px;
	padding-bottom: 30px;
	margin-right: auto;
	margin-left: auto;
}
/*h2タグ設定*/
#main h2 {
	text-align: center;
	font-size: 160%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color: #eeeeee;					/*文字色*/
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	clear: both;
}
/*段落タグの余白設定*/
#main p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}


/*フッター
---------------------------------------------------------------------------*/
#footer {
	text-align: center;	/*センタリング*/
	width: 100%;	/*フッターの幅*/
	padding-top: 10px;
	padding-bottom: 10px;
}
/*フッター内にリンク設定した場合用*/
#footer a {
	text-decoration: none;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 880px;	/*テーブル幅*/
	margin-right: auto;
	margin-left: auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #000000;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内*/
.ta1 td{
	width: 25%;
	padding: 5px;
	vertical-align: top;
	text-align: center;	
	background: #000000;	/*背景色*/
}
.ta1 p {
	font-size: 12px;	/*文字サイズ*/
	padding: 0px;		/*余白のリセット*/
	text-align: left;	/*文字を左*/
	color: #bbbbbb;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.clear {
	clear: both;
}

