@charset "utf-8";


/*全体の設定
-------------------------------------------------------------------------------------
■文字サイズは75%部分で変更できます。%指定でなく、pxなどでもOK。
■文字色（白）は#FFFFFF部分で変更できます。
-------------------------------------------------------------------------------------*/
body {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	background-image: url(../../images/base_back.gif);
	line-height: 160%;
	color: #000;
	letter-spacing: 1px;
	background-repeat: repeat-x;
}


a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}


/*細々の設定（あまり変更する部分はありません）
-------------------------------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6,h7,h8,p,ul,li,dl,dt,dd{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
	vertical-align: bottom;
}
.left {
	float: left;
}
.right {
	float: right;
}



/*リンクカラー設定
-------------------------------------------------------------------------------------
■aの部分がリンクですよ～という部分の設定。下線を外したいなら、「text-decoration: none;」を
1行追加すればOK。
■a:hoverはカーソルが乗った時の設定。ここでは文字色を赤にして背景を黒にしています。
-------------------------------------------------------------------------------------*/
a {
	color: #669900;
	text-decoration: underline!important;
}

a:hover {
	color: #ad0a17;
}


/*基本設定（あまり変更する部分はありません）
-------------------------------------------------------------------------------------
■コンテンツの枠の設定
-------------------------------------------------------------------------------------*/


/*コンテンツ設定
-------------------------------------------------------------------------------------*/
#wrapper {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
}
/*メインメニュー設定
-------------------------------------------------------------------------------------*/
#navibox {
	float: left;
	width: 900px;
	margin-top: 20px;
	margin-bottom: 20px;
}
#navibox .pankuzu {
	float: left;
	width: 900px;
	margin-top: 20px;
	font-size: 12px;
}

/*内容部分の上位
-------------------------------------------------------------------------------------*/
#container {
	float: left;
	width: 900px;
	margin-bottom: 20px;
}
/*内容部分のサイド
-------------------------------------------------------------------------------------*/
#container #sidemenu {
	float: right;
	width: 210px;
}
/*内容部分のメイン
-------------------------------------------------------------------------------------*/
#container #contents {
	float: left;
	width: 680px;
}
/*サブタイトル設定（説明タイトル）
-------------------------------------------------------------------------------------*/
#sidemenu .subtitle01 {
	font-weight: bold;
	background-image:url(../../images/subtitle.gif);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
	height: 25px;
	width: 170px;
	padding-top: 9px;
	padding-left: 40px;
	margin-bottom: 8px;
	font-size: 12px;
	color: #5E9AB8;
}


/*汎用クラス設定（内容部分のメイン情報用ボックス設定)
-------------------------------------------------------------------------------------*/
#contents .box01 {
	float: left;
	width: 690px;
}

.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}


.mr10 {
	margin-right: 10px;
}
.mr15 {
	margin-right: 15px;
}
.mr16 {
	margin-right: 16px;
}
.mr20 {
	margin-right: 20px;
}

.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}


.mb08 {
	margin-bottom: 8px;
}
.mt15 {
	margin-top: 15px;
}


/*その他
-------------------------------------------------------------------------------------*/

.font_16 {
	float: left;
	font-size: 16px;
	color: #5E9AB8;
}
