@charset "shift_jis";


/*全般設定
------------------------------------------------------------------------------------------
■文字色は「color: #999999;」部分で変更できます。サイズは「75%」で変更可。%指定でなく「12px」とかでも可。
■壁紙は「images/bg.gif」で指定しています。imagesフォルダに入っているbg.gifを指定しています。
　変更もできますが、コンテナーの枠に影を入れてるので、白っぽい壁紙でないと枠が目立ってしまうので注意。
------------------------------------------------------------------------------------------*/
body {
	color: #999999;
	margin: 0px;
	padding: 0px;
	text-align: center;
	font: 75%/2 "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	background: #FFFFFF url(images/bg.gif);
}

h1,h2,h3,p,ul,li{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
}

#main p, #sub p {
	margin: 0.5em 1em 1em;
	line-height: 120%;
}


/*コンテナー
------------------------------------------------------------------------------------------*/
#container {
	text-align: left;
	margin: 0px auto;
	width: 840px;
	padding-right: 4px;
	padding-left: 4px;
	background: url(images/container_bg.gif) repeat-y center;
}


/*ヘッダー
------------------------------------------------------------------------------------------
■HP最上段に入っているh1タグは「#header h1」で指定しています。サイズ変更は「font-size: 10px;」で行います。
　色は「color: #ffffff;」で変更可能。現在は白で入ってます。
　ちなみに、h1タグの背景は「#header」項目内で指定している「header_bg.gif」に入れています。
------------------------------------------------------------------------------------------*/
#header {
	background: url(images/header_bg.gif) no-repeat;
	height: 103px;
	position: relative;
}

#header h1 {
	font-size: 10px;
	font-weight: normal;
	line-height: 10px;
	padding-top: 8px;
	padding-left: 20px;
	padding-bottom: 20px;
	color: #ffffff;
}


/*メインメニュー（特に変更の必要なし）
------------------------------------------------------------------------------------------*/
#menu {
	border-bottom: 6px solid #EEEEEE;
}

#menu li {
	display: inline;
}


/*ナビメニュー（メインメニューの右上に入っている小さなナビゲーションメニューの事）
------------------------------------------------------------------------------------------
■左の赤い矢印は「#nav li」項目内の「images/arrow1.gif」です。
■リンクカラーは「#nav a」でグレーに指定。下線も消しています。
■カーソルオーバー時の文字色は「#nav a:hover」で指定しています。
------------------------------------------------------------------------------------------*/
#nav {
	background: url(images/nav_bg.gif) no-repeat left bottom;
	height: 13px;
	position: absolute;
	right: 0px;
	bottom: 5px;
	padding-left: 50px;
	font-size: 11px;
	padding-top: 8px;
	line-height: 11px;
}

#nav li {
	display: inline;
	padding-right: 15px;
	background: url(images/arrow1.gif) no-repeat left center;
	padding-left: 15px;
}

#nav a {
	text-decoration: none;
	color: #999999;
}

#nav a:hover {
	color: #BB000F;
}


/*メインコンテンツ（特に変更の必要なし）
------------------------------------------------------------------------------------------*/
#main {
	float: left;
	width: 546px;
	display: inline;
	margin-left: 15px;
	margin-top: 15px;
	padding-bottom: 40px;
	background: #FFFFFF;
}


/*サブコンテンツ
------------------------------------------------------------------------------------------
■右側コンテンツの見出しは「#sub h3」で設定します。背景色は「background: #EEEEEE;」で指定。
　上下のラインは「border-top」と「border-bottom」で設定。
「letter-spacing」というのは文字間隔の事で、文字同士の隙間を0.2文字ずつ空けて表示させています。
------------------------------------------------------------------------------------------*/
#sub {
	float: right;
	width: 264px;
	margin-top: 15px;
	padding-bottom: 40px;
	background: #FFFFFF;
}

#sub h3 {
	font-size: 110%;
	background: #EEEEEE;
	letter-spacing: 0.2em;
	text-align: center;
	border-top: 1px dotted #d6d6d6;
	border-bottom: 1px dotted #d6d6d6;
}


/*フッター（特に変更の必要なし）
------------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	width: 840px;
	background: url(images/footer_bg.gif) no-repeat center top;
	line-height: 1.5em;
	text-align: center;
	font-size: 11px;
	padding: 20px 4px;
	margin-right: auto;
	margin-left: auto;
}


/*clearfix（変更しない）
------------------------------------------------------------------------------------------*/
#container:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#container { display: inline-block; }

/* Hides from IE-mac \*/
*html #container { height: 1%; }
#container { display: block; }
/* End hide from IE-mac */
