@charset "Shift_JIS";

/*============================================
全般的なスタイル
============================================*/
* {
	margin:0; padding:0;     	/*全要素のマージン・パディングをリセット*/
	line-height:1.5;	        /*全要素の行の高さを1.5倍にする*/
	color:#333333;		        /*文字色*/

} 
body {
	background-color:#999999;	/*ページ全体の背景色*/
	text-align:center;		/*IE6以下でセンタリングするための対策*/
}
div#pagebody {
	width:800px; margin:0 auto;	/*内容全体をセンタリング*/
	text-align:left;                /*テキストの配置を左揃えにする*/
	background-image:url("im/welcome.gif");	/*内容全体の背景*/
	background-repeat:repeat-y;		/*背景画像を縦方向に繰り返す*/
	background-color:#ffffff;		/*内容全体の背景色*/
}

/*============================================
ｓ-ｖａｌｕｅ表示
============================================*/
div#header {
	height:42px;	                /*背景画像のサイズに合わせてボックスの高さを指定*/
	background-image:url("im/welcome.gif");	/*ヘッダ部分の背景画像*/
	background-repeat:no-repeat;		/*背景画像を繰り返さない*/
	background-color:#cccccc;		/*ヘッダ部分の背景色*/
}
h1 {
        padding:0px 0px 0px 27px;		/*見出し内容の位置調整*/
	font-family:Arial, Helvetica, sans-serif;	/*フォントの種類*/
}
h1 a {text-decoration:none;}                    /*リンクの下線を無くす*/

/*============================================
リンクメニュー
============================================*/
ul#hpmenu {
	height:25px; background-color:#eeeeee; font-weight:bold;
}
li#hpmenu1,li#hpmenu2,li#hpmenu3,li#hpmenu4,li#hpmenu5 {
	float:left;			/*リスト項目を横に並べる*/
	display:inline;			/*リスト項目をインライン表示にする*/
	list-style-type:none;		/*リストマーカー無しにする*/
	background-repeat:no-repeat; 	/*背景画像を繰り返さない*/	
}

/*ボタン01〜05にはそれぞれ異なる背景画像を指定する*/
li#hpmenu1 {
	width:160px; height:42px;	/*背景画像に合わせたサイズ指定*/
	background-image:url("images/bg_menu01.jpg");	/*背景画像*/
}
li#hpmenu2 {
	width:160px; height:42px;
	background-image:url("images/bg_menu02.jpg");
}
li#hpmenu3 {
	width:160px; height:42px;
	background-image:url("images/bg_menu03.jpg");
}
li#hpmenu4 {
	width:160px; height:42px;
	background-image:url("images/bg_menu04.jpg");
}
li#hpmenu5 {
	width:160px; height:42px;
	background-image:url("images/bg_menu05.jpg");
}
ul#hpmenu a {
	display:block;				        /*リンクをブロック表示にする*/
	height:10px; padding-top:2px; text-align:center;
	text-decoration:none; 		                /*リンクの下線を無くす*/
	font-family:Arial, Helvetica, sans-serif;	/*フォントの種類*/
}

/*============================================
フッタ
============================================*/
div#footer {
	height:35px; text-align:center;
	clear:both;				         /*回り込みを解除する*/
	background-image:url("images/bg_footer.jpg");	 /*フッタ部分の背景画像*/
	background-repeat:no-repeat;		         /*背景画像を繰り返さない*/
	background-color:#cccccc;                        /*フッタ部分の背景色*/
        margin-top:+48px ; 　　　　　　　　　　　　　　　/*フッタ開始部分のTop調整*/		         
}
address {
	font-style:normal;		        	 /*フォントスタイルを標準にする*/
	font-size:small;		        	 /*フォントサイズを小さくする*/
	padding:8px 0px 5px 0px;	        	 /*要素内容の位置調整*/
}