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

/* 全ページのレイアウト */


* {
	padding:0;
	margin-top:0;
	list-style:none;
	text-decoration:none;
}
body {
	background-image:url(../img/index01.png);
	background-repeat:repeat;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:12px;
	
	/* ヘッダーとフッターがページ固定で浮いた状態になってるので、
	　 下に潜り込まないようにヘッダーとフッターの高さ分bodyの表示領域をpaddingで調整 */
	padding-top:60px;
	padding-bottom:40px;

}
h1 {
	border-bottom-style:double;
	font-size:36px;
	margin-left:120px;
	margin-right:120px;
	text-align:center;
}
li {
	float:left;
}
.clear {
	clear:both;
}
.clear_02 {
	clear:both;
	padding-top:100px;
}
img {
	border:0;
}

/* header内のレイアウト */

.header {
	background-color:#ffffff;
	padding-top:20px;
	height:40px;
	font-size:14px;
	font-weight:bold;
	width:100%;
	
	/* ページ上部に固定 */
	position:fixed;/* absoluteは「絶対位置」、fixedは「絶対位置+スクロール固定」(IE6は対応してない)*/
	top:0;
	z-index:100;
}
.sub p {
	float:left;
	margin-left:120px;
	text-decoration:none;
}
.maru {
	float:right;
	margin-right:120px;
}
.maru li a{
	background-repeat:no-repeat;
	background-position:center;
	width:32px;
	height:32px;
	display:block;
	text-indent:-9999px;
	cursor:pointer;
}
.icon_top{
	background-image:url(../img/index02.png);
}
.icon_mail{
	background-image:url(../img/icon01.png);
}
.icon_map{
	background-image:url(../img/icon02.png);
}

/* footer内のレイアウト */

.footer {
	background-color:#ffffff;
	text-align:center;
	clear:both;
	width:100%;
	height:40px;
	line-height:40px;
	
	/* ページ下部に固定 */
	position:fixed;/* absoluteは「絶対位置」、fixedは「絶対位置+スクロール固定」(IE6は対応してない)*/
	bottom:0;
	z-index:100;
}
