@charset "shift_jis";


/*全体の設定
-------------------------------------------------------------------------------------
■文字サイズは75%部分で変更できます。%指定でなく、pxなどでもOK。
■文字色（白）は#FFFFFF部分で変更できます。
-------------------------------------------------------------------------------------*/
body {
	font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 75%;
	line-height: 140%;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-color: #2e2e2e;
	background-image: url(images/bg.gif);
	background-repeat: repeat-x;
	background-position: top;
	color: #333333;
}



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

h1,h2,h3,p,ul,li{
	margin: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
	vertical-align: bottom;
}

.look {
	color: #FF0000;
	background: #000000;
}

.look2 {
	color: #FFFFFF;
	background: #333333;
}

.redbox {
	color: #A90310;
}

dt
      {
         font-weight: bold;
         border-bottom: solid 1px #cccccc;
         color: #999999;
         margin-top: 1em;
      }
      
      dd
      {
         border: solid 1px #cccccc;
         padding: 1em;
         margin-left: 0em;
         margin-top: 0.5em;
      }


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



a:hover {
	color: #CC0000;
	background-color: #FFFFFF;
}



/*コンテナー（特に変更する必要はありません）
-------------------------------------------------------------------------------------*/
#container {
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 4px;
	padding-left: 4px;
	width: 880px;
	background-color: #CCCCCC;
	background-image: url(images/contents_bg.gif);
	background-repeat: no-repeat;
	background-position: left;
}



/*ヘッダー
-------------------------------------------------------------------------------------*/
#header {
	position: relative;
	background: url(images/header_bg.gif) repeat-x;
}
#header h1 {
	font-size: 11px;
	font-weight: normal;
	line-height: 13px;
	position: absolute;
	left: 10px;
	top: 15px;
	color: #FFFFFF;
	padding-left: 12px;
	width: 330px;
}
#header #logo {
	vertical-align: top;
	padding-top: 40px;
	padding-bottom: 20px;
	padding-left: 20px;
	background-color: #000000;
}
#header #logo a {
	color: #0000FF;
}
#header #logo a:hover {
	color: #FFFFFF;
	background-color: #000000;
}





/*右上のナビメニュー
-------------------------------------------------------------------------------------*/
#nav {
	position: absolute;
	top: 7px;
	right: 10px;
	line-height: 1.2;
	background: url(images/nav_bg.gif) no-repeat left top;
	padding-left: 30px;
	height: 22px;
	font-size: 11px;
	width: 290px;
}
#nav li {
	float: left; /*IE7のメイリオフォントだと6em（6文字）分にしか表示されないので注意*/
;
}
.navili1{
	float: left; /*IE7のメイリオフォントだと6em（6文字）分にしか表示されないので注意*/
	width: 8em;
}
.navili2{
	float: left; /*IE7のメイリオフォントだと6em（6文字）分にしか表示されないので注意*/
	width: 12em;
}
.navili3{
	float: left; /*IE7のメイリオフォントだと6em（6文字）分にしか表示されないので注意*/
	width: 6em;
}

#nav li a {
	background: url(images/arrow1.gif) no-repeat left center;
	padding-left: 20px;
	color: #FFFFFF;
}
#rightside {
	border: 1px solid #CCCCCC;
	padding: 5px;
	width: 180px;
}
#rightside h3{
	font-size: 100%;
	border: 1px solid #CCCCCC;
	text-align: center;
	background-color: #FFFFFF;
	background-image: url(images/042.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #333333;
	margin-bottom: 5px;
	padding-top: 4px;
	padding-bottom: 4px;
	
}




/*メインメニュー
-------------------------------------------------------------------------------------
■メニューの背景部分は#menu部分で行います。
■メニュー同士の境界線は「#menu li」のbackgroundで入れています。
■メニューのリンク設定が「#menu li a」部分。文字色を#000000(黒)で文字サイズを13pxで固定。
最大文字数(8文字)というのは「width: 8em;」部分で決めています。自分が使うメニューの文字数の
最大文字数に合わせて変更するといいでしょう。最大文字数が5文字だったら5emとするわけです。
■カーソルオーバー時は「#menu li a:hover」で設定。ここでは背景画像と文字色を変えています。
-------------------------------------------------------------------------------------*/
#menu {
	height: 40px;
	background-image: url(images/menu_bg.gif);
	background-repeat: no-repeat;
}

#menu li {
	background: url(images/menu_bg_line.gif) no-repeat right;
	float: left;
	height: 35px;
}

#menu li a {
	color: #000000;
	text-decoration: none;
	font-size: 13px;
	display: block;
	width: 6em;
	text-align: center;
	padding-right: 5px;
	padding-left: 5px;
	line-height: 40px;
}

#menu li a:hover {
	background: url(images/menu_bg_over.gif);
	color: #FFFFFF;
}



/*コンテンツ枠
-------------------------------------------------------------------------------------*/
#contents {
	background-color: #FFFFFF;
}



/*メインコンテンツ（文章が入っているブロック）
-------------------------------------------------------------------------------------
■見出しの設定は「#main h2」で行います。ここでは文字サイズを13pxに固定し、背景の画像を
入れています。
-------------------------------------------------------------------------------------*/
#main {
	float: left;
	width: 430px;
	display: inline;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 12px;
	background-color: #FFFFFF;
	margin-right: 10px;
	padding-bottom: 50px;
}
#main3 {
	float: left;
	width: 440px;
	display: inline;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 12px;
	background-color: #FFFFFF;
	margin-right: 10px;
	padding-bottom: 50px;
}
#main3 h3 {
	font-size: 100%;
	border: 1px solid #999999;
	text-align: center;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #333333;
	background-color: #FFFFFF;
	background-image: url(images/043.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#main3 h4 {
	font-size: 100%;
	text-align: center;
	padding: 5px;
	border: 1px solid #CCCCCC;

}

#main h2 {
	font-size: 13px;
	line-height: 31px;
	background: #000000 url(images/midashi_bg.gif) no-repeat;
	height: 33px;
	padding-left: 15px;
}

#main p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	margin-left: 0px;
}
#main h3 {
	font-size: 100%;
	border: 1px solid #999999;
	text-align: center;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #333333;
	background-color: #FFFFFF;
	background-image: url(images/043.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#main h4 {
	font-size: 100%;
	text-align: center;
	padding: 5px;
	border: 1px solid #CCCCCC;

}

#main2 {
	float: left;
	width: 640px;
	display: inline;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 16px;
	background-color: #FFFFFF;
	margin-right: 10px;
	padding-bottom: 50px;
}

#main2 h2 {
	font-size: 13px;
	line-height: 31px;
	height: 33px;
	padding-left: 15px;
	background-color: #000000;
	background-image: url(images/044.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}

#main2 p {
	margin: 0.5em 10px 1em;
}
#main2 h3 {
	font-size: 100%;
	border: 1px solid #999999;
	text-align: center;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #333333;
	background-color: #FFFFFF;
	background-image: url(images/044.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}






/*サブコンテンツ（右側のブロック）
-------------------------------------------------------------------------------------
■サブコンテンツの見出しは「#sub h3」で行います。背景色が「#151515」で線の設定が
「border: 1px solid #353535;」部分。1pxの直線(solid)を#353535の色で入れているという事になります。
■サブコンテンツのメニューパーツは「.sub-menu a」で行います。左の矢印をbackgroundで設定。
「display: block」にしておくと、文字の上にカーソルがのらなくてもブロック内でリンクの
反応をするようになるので来訪者に親切です。「.sub-menu a:hover」でカーソルオーバー時の
背景色変更と矢印の位置調整しています。
-------------------------------------------------------------------------------------*/
#sub {
	float: right;
	width: 184px;
	margin-top: 20px;
	margin-bottom: 50px;
	display: inline;
	margin-right: 8px;
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	padding-right: 5px;
}
.sub2 {
	border: 1px solid #CCCCCC;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 5px;
	padding-left: 5px;
}


#sub p {
	margin-top: 0.5em;
	margin-bottom: 1em;
}

#sub h3 {
	font-size: 100%;
	border: 1px solid #999999;
	text-align: center;
	padding-top: 4px;
	padding-bottom: 4px;
	background-color: #FFFFFF;
	background-image: url(images/042.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #333333;
	width: 180px;
}
.sub-menu a {
	padding-left: 30px;
	text-decoration: none;
	display: block;
	padding-right: 0px;
	width: 150px;
	color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	background-image: url(images/121.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 12px;
}

.sub-menu a:hover {
	color: #000000;
	background-color: #CCCCCC;
	background-image: url(images/120.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
}



/*フッター
-------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	background: url(images/footer_bg.gif) no-repeat center;
	height: 80px;
	padding-top: 20px;
	font-size: 11px;
	width: 880px;
	margin-right: auto;
	margin-left: auto;
	color: #FFFFFF;
}



/*clearfix（変更しない）
-------------------------------------------------------------------------------------*/
#contents:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

#contents { display: inline-block; }

/* Hides from IE-mac \*/
*html #contents { height: 1%; }
#contents { display: block; }
/* End hide from IE-mac */
#leftside {
	float: left;
	width: 184px;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 8px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	color: #333333;
	margin-right: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}
#leftside h3 {
	font-size: 100%;
	font-size: 100%;
	border: 1px solid #CCCCCC;
	text-align: center;
	background-color: #FFFFFF;
	background-image: url(images/042.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #333333;
	margin-bottom: 5px;
	margin-top: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
}
#thum {
	border: 1px solid #CCCCCC;
	margin-bottom: 5px;
	padding: 5px;
	width: 180px;
}
.thum1 {
	float: left;
	padding-right: 3px;
}
.drop {
	font-size: 44px;
}
.orange{
	color:#FF6600;
}
			#main   ul{
				list-style-position:inside;
				margin:10px 0px 0px 10px;
			}
			#main  ul li{
	border-bottom:1px #CCCCCC dashed;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
			}
#rightside ul {
	
}
#rightside li {
	line-height: 160%;
	background-image: url(images/121.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
}
#rightside li a{
color: #0000CC;

}
#rightside li a:hover {
	color: #ad0a17;
	background: #ffffff;
}
.company {
	font-size: 12px;
	font-weight: bolder;
}
#main h5 {
	font-size: 18px;
	padding-left: 8px;
	line-height: 140%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 3px;
}
#main2 h4 {
	font-size: 18px;
	padding-left: 8px;
	line-height: 140%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 3px;
}
#main2 .maintext img {
	float: left;
	padding-right: 10px;
}
#main2 h5 {
	font-weight: bold;
	color: #333333;
	background-color: #CCCCCC;
	text-align: center;
	padding-top: 4px;
	padding-bottom: 4px;
}

.maintext {
	line-height: 180%;
}
.maintext2 {
	line-height: 180%;
	font-size: 14px;
}
.gaiyo {
	background-image: url(../parts/grad.gif);
	background-repeat: repeat-y;
	background-position: left top;
	text-indent: 15px;
	margin-right: 15px;
	margin-left: 20px;
	color: #FFFFFF;
	padding-top: 5px;
	padding-bottom: 5px;
}
.r_f10 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	font-weight: normal;
	text-align: left;
	background-image: url(parts/1-1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 26px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FADFCF;
	border-right-color: #FADFCF;
	border-bottom-color: #FADFCF;
	border-left-color: #FADFCF;
}
.r_f11 {
	font-size: small;
	line-height: 160%;
	padding: 5px;
	margin-top: 7px;
	margin-right: 15px;
	margin-bottom: 12px;
	margin-left: 15px;
	color: #FF3300;
	font-weight: bold;
}
.r_f12 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	font-weight: normal;
	text-align: left;
	background-image: url(parts/2-1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 26px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FADFCF;
	border-right-color: #FADFCF;
	border-bottom-color: #FADFCF;
	border-left-color: #FADFCF;
	text-indent: 0px;
}
.r_f13 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	font-weight: normal;
	text-align: left;
	background-image: url(parts/3-1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 26px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FADFCF;
	border-right-color: #FADFCF;
	border-bottom-color: #FADFCF;
	border-left-color: #FADFCF;
	text-indent: 0px;
}
.r_f14 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	font-weight: normal;
	text-align: left;
	background-image: url(parts/4-1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 26px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FADFCF;
	border-right-color: #FADFCF;
	border-bottom-color: #FADFCF;
	border-left-color: #FADFCF;
	text-indent: 0px;
}
.r_f15 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	font-weight: normal;
	text-align: left;
	background-image: url(parts/5-1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 26px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FADFCF;
	border-right-color: #FADFCF;
	border-bottom-color: #FADFCF;
	border-left-color: #FADFCF;
	text-indent: 0px;
}
.r_f16 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	font-weight: normal;
	text-align: left;
	background-image: url(parts/6-1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 26px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FADFCF;
	border-right-color: #FADFCF;
	border-bottom-color: #FADFCF;
	border-left-color: #FADFCF;
	text-indent: 0px;
}
.r_f1 {
	font-size: small;
	line-height: 160%;
	padding: 5px;
	margin-top: 7px;
	margin-right: 15px;
	margin-bottom: 12px;
	margin-left: 15px;
}
.r_f2 {
	font-size: small;
	line-height: 160%;
	padding: 5px;
	margin-top: 7px;
	margin-right: 15px;
	margin-bottom: 12px;
	margin-left: 15px;
	color: #339966;
}
.r_f3 {
	font-size: small;
	line-height: 160%;
	padding: 2px;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 12px;
	margin-left: 5px;
	color: #666666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #163E4C;
	border-right-color: #163E4C;
	border-bottom-color: #163E4C;
	border-left-color: #163E4C;
	background-image: url(parts/1.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	text-indent: 26px;
}
.r_f32 {
	font-size: small;
	line-height: 160%;
	padding: 2px;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 12px;
	margin-left: 5px;
	color: #666666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #163E4C;
	border-right-color: #163E4C;
	border-bottom-color: #163E4C;
	border-left-color: #163E4C;
	background-image: url(parts/2.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	text-indent: 26px;
}
.r_f33 {
	font-size: small;
	line-height: 160%;
	padding: 2px;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 12px;
	margin-left: 5px;
	color: #666666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #163E4C;
	border-right-color: #163E4C;
	border-bottom-color: #163E4C;
	border-left-color: #163E4C;
	background-image: url(parts/3.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	text-indent: 26px;
}
.r_f34 {
	font-size: small;
	line-height: 160%;
padding: 2px;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 12px;
	margin-left: 5px;
	color: #666666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #163E4C;
	border-right-color: #163E4C;
	border-bottom-color: #163E4C;
	border-left-color: #163E4C;
	background-image: url(parts/4.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	text-indent: 26px;
}
.r_f35 {
	font-size: small;
	line-height: 160%;
padding: 2px;
	margin-top: 7px;
	margin-right: 5px;
	margin-bottom: 12px;
	margin-left: 5px;
	color: #666666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #163E4C;
	border-right-color: #163E4C;
	border-bottom-color: #163E4C;
	border-left-color: #163E4C;
	background-image: url(parts/5.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	text-indent: 26px;
}
.r_f4 {
	font-size: small;
	line-height: 160%;
	margin-top: 7px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #333333;
	text-align: left;
	text-indent: 0px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 28px;
}
.r_f5 {
	font-size: small;
	line-height: 160%;
	padding: 5px;
	margin-top: 7px;
	margin-right: 15px;
	margin-bottom: 12px;
	margin-left: 15px;
	color: #FF3300;
	font-weight: bold;
}
h6 {
	font-size: small;
	color: #333333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #305E71;
	text-align: left;
	background-image: url(parts/sankaku.gif);
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 7px;
	margin-left: 25px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 0px;
}
.m_bar {
	margin: 0px;
	padding: 5px;
	clear: both;
	background-color: #CEE3E8;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	width: 105px;
	text-align: left;
}
.for {
	border: 1px solid #DCDEDE;
	padding-left: 15px;
	padding-top: 8px;
	padding-right: 4px;
	padding-bottom: 8px;
}
.rightside{	border: 1px solid #CCCCCC;
	padding: 5px;
}

.rightside h3{
	font-size: 100%;
	border: 1px solid #CCCCCC;
	text-align: center;
	background-color: #FFFFFF;
	background-image: url(images/042.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #333333;
	margin-bottom: 5px;
	padding-top: 4px;
	padding-bottom: 4px;
	
}.pricetext {
	padding-left: 24px;
}
.kodawari {
	color: #333333;
	line-height: 180%;
}
p.kodawari img {
	float: left;
	padding-right: 10px;
	padding-bottom: 5px;
}
.privacy {
	font-size: 14px;
	font-weight: bold;
}
.priv2 {
	text-align: right;
	padding-right: 10px;
}
.tatebar {
	background-image: url(prof/img/tatebar.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.nextwheel {
}
.nextwheel a{
	background-color: #333333;
	color: #FFFFFF;
	padding: 3px;
	text-decoration: none;
	margin-left: 5px;
}
.nextwheel a:hover{
	text-align: right;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #999999;
}
.staff {
	padding: 8px;
	border: 1px solid #CCCCCC;
	clear: both;
	height: 190px;
}
.staffname {
	font-size: 12px;
	font-weight: bold;
	color: #003333;
	padding-bottom: 5px;
	line-height: 160%;
}

.staff img {
	float: left;
	padding-right: 10px;
	padding-bottom: 5px;

}
#main h5 {
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 3px;
	text-indent: 14px;
	font-size: 16px;
}
.gaiyo {
	background-color: #CCCCCC;
	padding: 3px;
	color: #333333;
}
.cleartitle {
	font-size: 12px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
dt
      {
	font-weight: bold;
	border-bottom: solid 1px #cccccc;
	color: #999999;
	margin-top: 1em;
	margin-bottom: 0.3em;
	padding-bottom: 0.3em;
      }

dd
      {
	padding: 0.3em;
	margin-left: 0em;
	margin-top: 0.5em;
      }
.staffblog {
	font-size: 13px;
	margin-top: 0px;
	float: right;
	margin-right: 7px;
}

.staffblog a{
	color: #0D4FE7;
}
.staffblog a:hover{
	color: #E88B27;
}
