﻿@charset "utf-8";
/* formatting style
-----------------------------------------*/
* {
	font-style: normal;
	margin: 0px;
	padding: 0px;
}
body {
	font-family: sans-serif;
	font-size: 90%;
	line-height: 1.6;
	color: #333333;
	background-color: #FEFEFE;
}
hr {
	display: none;
}
/* link styles
-----------------------------------------*/
a img {
	/*　画像の枠線を非表示に　*/
	border-style: none;
}
a:link {
	/*　未訪問リンクの下線有、色を濃いグレーに　*/
	color: #333333;
	text-decoration: underline;
}
a:visited {
	/*　訪問済リンクの下線有、色を薄いグレーに　*/
	color: #999999;
	text-decoration: underline;
}
a:hover {
	/*　マウスオンで下線無、色を黒に　*/
	color: #000000;
	text-decoration: none;
}
a:active {
	/*　リンククリックで位置を動かす　*/
	text-decoration: none;
	position: relative;
	left: +1px;
	top: +1px;
}

/* basic layout 
-----------------------------------------*/
#wrapper {
	/*　各ページのwrapperで指定した領域に適用するスタイル
	　　コンテンツ領域で背景白、幅５００、両端線色、位置　*/
	background-color: #FFFFFF;
	width: 500px;
	border-right: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	margin: 15px auto;
}
#main {
	/*　main領域 上にグレー線を設定　*/
	border-top: 3px solid #666666;
}
#footer {
	/*　上にグレー線を設定　*/
	font-size: 75%;
	line-height: 1.2;
	color: #333333;
	background-color: #FFFFFF;
	border-top: 3px solid #666666;
	padding: 15px;
}

/* header styles
-----------------------------------------*/
#header {
	/*　header領域の高さ・上にグレー線を設定、写真入れる　*/
	border-top: 3px solid #666666;
}

#header #logo {
	/*　headerのlogoの位置を絶対位置で指定　*/
	position: absolute;
	left: 15px;
	top: 15px;
}


/* main styles
-----------------------------------------*/
#main h2 {
	margin: 15px 30px 10px;
	font-size: 100%;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
#main p {
	margin: 15px 30px 10px;
	font-size: 90%;
	line-height: 1.6;
	margin-bottom: 1em;
}
#main ul li {
	margin: 15px 30px 10px 45px;
	font-size: 90%;
	line-height: 1.2;
	list-style-type: square;
}
#main dl#news dt {
	margin: 0px 0px 10px;
	clear: left;
	float: left;
	width: 5em;
	padding-left: 15px;
	background-image: url(images/bullet2.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-weight: bold;
}
#main dl#news dd {
	margin: 0px 0px 10px 6em;
}

/* footer styles
-----------------------------------------*/
#footer ul li a {
	color: #CCCCCC;
}
#footer ul li a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
#footer p a {
	color: #CCCCCC;
}
#footer p a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
#footer ul li {
	list-style: none;
	display: inline;
	margin-right: 15px;
}
#footer p {
	margin: 0px;
}
