/*index.html用*/
/*基本設定*/

body, textarea { font-family: "メイリオ", "ＭＳ Ｐゴシック", sans-serif; }  

input, select { font-family: Arial, "ＭＳ Ｐゴシック", sans-serif; }
 
br { letter-spacing : normal; } /*IE改行バグ対策*/

body{
	margin: 0px; /*マージン　上右下左*/
	padding: 0;

	background-color:#ccff99; /*背景の緑色 デフォルト値：#ccff99*/
	text-align:center;/*コンテンツ中央IE用*/

	width: 100%;
	height:100%;

}

div#container{
	text-align:left; /*テキスト左寄せ*/
	background-color:#ffffff; /*背景の白*/
	width: 850px; /*コンテンツの幅*/
	border-left:solid 10px #669900; /*濃緑色の線（左）デフォルト値：#669933*/
	border-right:solid 10px #669900; /*濃緑色の線（右）デフォルト値：#669933*/
	margin:0 auto; /*コンテンツ中央*/
	padding:15px 0 0 0; /*余白　上右下左*/
	position:relative; /*ポジション表記*/
	min-height: 100%;
}

img{
	border:0px; /*画像のまわりの線*/
}

a{ /*リンクされた文字*/
	color:#333333;
	font-style:normal;
	text-decoration:underline;
}
a:link { /*未訪問のリンク*/
	color:#333333;
	font-style:normal;
	text-decoration:underline;
}
a:visited { /*訪問後のリンク*/
	color:#666666;
	text-decoration:underline;
}
a:hover { /*マウスをのせたとき*/
	color:#333333;
	font-style:normal;
	background-color:#ccffcc;
	text-decoration:none;
}
a:active { /*クリック中*/
	text-decoration:none;
}

div.main01{ /*タイトル画像〜フッター直前*/
	margin: 10px 0 80px 0; /*マージン　上右下左*/
	padding: 0;
}

div.mainleft{ /*左側の列全部*/
	position:static; /*ポジション表記*/
	float:left; /*回り込み（左）*/
	width:500px; /*幅*/
	margin: 0; /*マージン　上右下左*/
	padding:0 0 0 20px; /*余白　上右下左*/
}
div.mainright{ /*右側の列全部*/
	position:static; /*ポジション表記*/
	float:left; /*回り込み（左）*/
	width:310px; /*幅*/
	margin:20px 0 0 0; /*マージン　上右下左*/
	padding:0 10px 0 0;/*余白　上右下左*/
}

p.menu{ /*メニュー（アイコン）*/
	text-align:right; /*右寄せ(！アイコンの幅が違うため！)*/
	margin-right:60px; /*マージン右*/
}

a.none:hover{/*リンクマウスオーバーで変化させない部分*/
	background-color:#fff;
}



/*新着情報*/

.line{ /*新着情報のタイトル部分*/
	display:block;
	margin:0;
	padding:3px 10px;
	color:#fff;
	font-size:18px;
	background-color:#669900;　/*背景色　デフォルト値：#669933*/
}

div.kousin{ /*新着情報内容部分*/
	padding: 10px 20px; /*余白　上下・左右*/
	height:300px; /*高さ*/
	font-size:14px; /*フォントサイズ*/
	color:#666; /*文字色*/
	background-color: #fff; /*背景色*/
	border: solid 1px #669900; /*ボーダー色　デフォルト値：#669933*/
	overflow:scroll; /*はみ出し部分の処理：スクロールバー*/
}

p.subete{ /*新着情報「すべて見る」の部分*/
	display:block; /*ブロック化*/
	margin:0; /*マージン*/
	padding:0; /*余白*/
	text-align:right; /*テキスト右寄せ*/
	font-size:14px; /*フォントサイズ*/
	background-color:#fff; /*背景色*/
}


/*フッター*/

#footer01{/*フッター茶色部分*/
	clear:left; /*回り込み(２段構成)の解除*/
	margin: 0; /*マージン　上右下左*/
	position:static; /*ポジション表記*/
	height:20px; /*高さ*/
	width:100%; /*幅*/
	background:#663300; /*背景色*/
	text-align:center; /*テキストセンター寄せ*/
	font-size:13px; /*フォントサイズ*/
}

a.footer01{/*リンクされた文字footer01*/
	padding:0px 15px; /*余白　上下・左右*/
	color:#ffffff; /*文字色*/
	font-style:normal;
	text-decoration:underline; /*装飾（アンダーライン）*/
}
a.footer01:link {/*未訪問のリンクfooter01*/
	color:#ffffff;
	font-style:normal;
	text-decoration:underline;
}
a.footer01:visited {/*訪問後のリンクfooter01*/
	color:#999999;
	text-decoration:underline;
}
a.footer01:hover {/*マウスをのせたときfooter01*/
	color:#333333;
	font-style:normal;
	background-color:#ccffcc;
	text-decoration:none;
}


#footer02{/*フッター住所部分*/
	position:static;
	width:100%;
	color:#663300;
	text-align:center;
	font-size:12px;
}



