@charset "shift_jis";


body {
	font: 75%/2 "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";	/*文字サイズは75%の部分になる。12pxとか自由に変更して下さい。*/
	color: #333333;	/*文字色をグレーに*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	/*background:url(images/bg.jpg);*/
	background-repeat:no-repeat;
	background-position:left top;
	background-color:#ffeeb2;
}
h1,h2,h3,p,ul,li,dl,dt,dd{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
.color1 {
	color: #976a95;
}
.look {
	background: #222222;
}



/*リンク設定
---------------------------------------------------------------------------*/
a {
	color: #333333;	/*リンク部分を通常テキストと同じグレーにする*/
}
a:hover {
	color: #938293;	/*カーソルオーバー時に薄い紫色にする*/
}



/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;	/*文字サイズを10pxに*/
	padding-left:10px;
	text-align: left;	/*左よせ。もし右よせがいいなら「left」を「right」、センタリングがいいなら「center」にする。*/
	color:#666666;
}

/*header h2タグ設定
---------------------------------------------------------------------------*/

#header {
   background:url(images/head_bg.jpg);
    font-size: 40px;
		width:895px;
		margin-left:auto;
		margin-right:auto;
		text-align:left;
		height:100px;
}
#header a {
		padding-left:40px;
    text-decoration: none;
    overflow: hidden;   
    color: #003366; 
}
#header a:hover {
		padding-left:40px;
    text-decoration: none;
    overflow: hidden;   
    color: #003366; 
}





/*コンテナー設定
---------------------------------------------------------------------------*/
#container {
	background: url(images/container_bg.png) repeat-y;
	width: 911px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
}



/*メインメニュー設定
---------------------------------------------------------------------------*/
#menu {
		width:895px;
		margin-left:auto;
		margin-right:auto;
}
ul#menu li {
		float: left;	/*ビルダー編集画面で崩れないようにフロート設定にしました*/
		width: 179px;
    line-height: 40px;
    font-size: 14px;
}

ul#menu a {
    color: #FFFFFF;     /*メニューの文字色*/
    text-decoration: none;
    display: block;
		width: 179px;
		height: 40px;
    text-align: center;
    background-image: url(images/menu_bg.gif);  /*メニューの背景画像*/
    background-repeat: no-repeat;
    background-position: top;   /*メニューの背景画像の上半分を表示させる設定*/
    overflow: hidden;   /*オーバーした文字を非表示にする設定*/
}

ul#menu a:hover {
    color: #ffffff;     /*メニューの文字色*/
    text-decoration: none;
    display: block;
		width: 179px;
		height: 40px;
		text-align: center;
    background-image: url(images/menu_over.gif);  /*メニューの背景画像*/
    background-repeat: no-repeat;
    background-position: top;   /*メニューの背景画像の上半分を表示させる設定*/
}


/*コンテンツ設定
---------------------------------------------------------------------------*/
#contents {
	clear: left;	/*上のメインメニューのフロート処理の解除*/
	width: 860px;
	margin-left:auto;
	margin-right:auto;
}



/*トップページのメイン画像設定
---------------------------------------------------------------------------*/
#mainimg {
	text-align: center;
}



/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	display: inline;
	float: left;
	width: 550px;	/*メインコンテンツ(左ブロック)の幅*/
	padding-top: 20px;
	padding-bottom: 100px;
}

/*メインコンテンツ内の見出し設定箇所*/
#main h2 {
	height:25px;
	width:550px;
	font-size: 100%;
	line-height: 25px;					/*見出しの高さ*/
	background: url(images/h2_bg.gif) no-repeat left center;	/*見出しに入っている梅の花画像設定*/
	padding-left: 10px;
	letter-spacing: 0.2em;
	color: #FFFFFF;		/*文字色を白に*/
}

/*メインコンテンツ内の段落設定箇所*/
#main p {
	padding: 0.5em 10px 1em;
}



/*サイドコンテンツ
---------------------------------------------------------------------------*/
#side {
	display: inline;
	float: right;
	width: 300px;	/*サイドコンテンツ(右ブロック)の幅*/
	padding-top: 20px;
	padding-bottom: 100px;
}

/*サイドコンテンツ内の見出し設定箇所*/
#side h3 {
	background: #333333;		/*見出し背景色*/
	letter-spacing: 0.2em;
	text-align: center;			/*文字のセンタリング。左よせでいいならこの1行を丸ごと削除。*/
	font-size: 100%;
	border: 1px solid #2A1C29;	/*見出しの枠線。1pxの直線(solid)を#2A1C29の色で設定。*/
	color: #FFFFFF;				/*文字色を白に*/
}

/*サイドコンテンツ内の段落設定箇所*/
#side p {
	padding-top: 0.5em;
	padding-bottom: 1em;
}



/*サイドコンテンツ内の「おしらせ」部分
---------------------------------------------------------------------------*/
#side dl {
	margin-top: 0.5em;
	margin-bottom: 1em;
}
#side dt {
	font-weight: bold;	/*日付を太字に。通常の太さがいいなら、この1行を丸ごと削除。*/
	color: #976a95;		/*日付の文字色を紫色（#976a95）に*/
}
#side dd {
	border-bottom: 1px dotted #2A1C29;	/*コメントの下に1pxの点線(dotted)を#2A1C29の色で入れる。*/
	padding-left: 1em;	/*コメントの左側に少しだけ空白を設ける。上の日付と同じくしたいなら、この1行を丸ごと削除。*/
}



/*フッター（copyright部分）
---------------------------------------------------------------------------*/
#footer {
	clear: both;
		width: 911px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	background: url(images/footer_bg.png) no-repeat center bottom;
	line-height: 1.4;
	height: 70px;
	padding-top: 30px;
}


