@charset "utf-8";

/******* 基本設定 *******/

body{
	margin: 0px; /* 前後左右の隙間 */
	padding: 0px; /* 中の前後左右の隙間 */
	font-family: Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka",sans-serif;
	line-height: 1.166; /* 全体の行間 */
	color: #333333; /* 全体のテキストカラー */
	background-color: #CAD7CA; /* 全体の背景色、このサンプルでは淡いグレーの背景色 */
}

a, a:link, a:visited{ /* リンク関係の設定 */
/*
	color: #939E03;
	text-decoration: none;
*/
}

a:hover { /* リンク関係・ポインタを乗せたときの設定 */
/*
	color: #ED8036;
	text-decoration: underline;
*/
}

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	margin: 0px;
	padding: 0px;
}

h1{
	font-size: 125%;
	color: #334d55;
}

h2{
	font-size: 120%;
	color: #006699;
}

h3{
	font-size: 120%;
	color: #334d55;
}

h4{
	font-size: 114%;
	color: #333333;
}

h5{
	font-size: 105%;
	color: #334d55;
}

h6{
	font-size: 100%;
	color: #333333;
}

ul{
	list-style-type: square;
}

ul ul{
	list-style-type: disc;
}

ul ul ul{
	list-style-type: none;
}

dt{
	margin-top: 1em;
	margin-left: 2em;
	font-weight: bold;
}
dd{
	margin-left: 5em;
}

textarea{
	width: 500px;
	font-family: Courier New, Courier, "ＭＳ ゴシック", "Osaka－等幅", monospace;
	font-size: 100%;
}

label{
	font: bold 100% Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	color: #334d55;
}

a img{ /* 画像のリンク枠を消す */
	border: none;
}


/******* フォーマットのレイアウト *******/

body{
	text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#container{
	margin: 0 auto; /* Internet Explorer 5.5以外 */
	text-align: left; /* Internet Explorer 5.5以前への対応 */
	width: 850px; /* 左右に余白を入れる場合は、ここを編集 */
	background-color: #fff; /* このサンプルでは白のコンテンツ枠 */
}

#top-banner{
	margin: 0;
	padding: 15px 0 0 670px;
	width: 180px;
	height: 45px;
	font-size: 14px;
	font-weight: bold;
	color: #5A715A;
	line-height: 1.2em;
	background: #fff url('../images/tel-banner.gif') no-repeat;
}

#top-banner a{
	color: #5A715A;
}

#top-banner a:visited{
	color: #ED8036;
}

#top-banner a:hover{
	text-decoration: underline;
}

#header{
	margin: 0; /* 外の隙間 ピッチリ合わせている */
	padding: 10px 10px 40px 10px;
	width: 830px; /* containerにいっぱいいっぱい表示 */
	min-height: 110px; /* サイトロゴの高さ */
	background-color: #618161;
	color: #fff;
	background-image: url(../images/header-bg.gif); /* 背景画像 */
	background-position: right bottom; /* 背景画像の表示のさせ方 右・上に合わせている */
	background-repeat: repeat-x; /* 背景画像の表示のさせ方 繰り返しなし */
}

#block{
	clear: both;
}


#sidebar{ /* ２カラムのサイトバー */
	float: left;
	padding: 0px 10px 10px 10px;
	/*position: absolute*/
	/*top: 120px; /* ヘッダのサイトロゴの高さを差し引いている */
	/*left: 2%;*/
	width: 190px; /* サイドバーの幅 */
}

#sidebar-left{ /* ３カラムの左サイドバー */
	float: left;
	position: absolute;
	top: 120px; /* ヘッダのサイトロゴの高さを差し引いている */
	left: 2%; /* 上記containerの左の隙間に合わせている */
	width: 190px;
	margin: 0px;
	padding: 0px 10px 10px 10px;
}

#sidebar-right{
	float: right;
	position: absolute;
	top: 120px; /* ヘッダのサイトロゴの高さを差し引いている */
	right: 2%; /* 上記containerの右の隙間に合わせている */
	width: 190px; /* サイドバーの幅 */
	padding: 0px 10px 10px 10px;
	/* サイドバーに枠線を入れたい時
	border: 1px solid #cccccc;
	*/
}

#content{ /* ２カラムのコンテンツ枠 */
	float: left;
	margin: 0 0 0 0px; /* 左サイトバー用の空き */
	padding: 0px;
	background-color: #DDE1DD;
	background-image: url(../images/content-bg.gif);
	background-repeat: repeat-y;
}

#content:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

#content-3col{ /* ３カラムのコンテンツ枠 */
	margin: 0 190px 0 190px; /* 左サイトバー・右サイドバー用の空き */
	padding: 15px;

}

#content #entrybody{ /* Firefox用 ２カラム版コンテンツパーツ表示の調整 */
/*
	min-height: px;
*/
}
#content-3col #entrybody{ /* Firefox用 ２カラム版コンテンツパーツ表示の調整 */
/*
	min-height: px;
*/
}

#footer{
	clear: both;
	margin-top: 0;
	padding: 5px 10px;
	background-color: #6D916D;
	height: 40px;
}


/******* ヘッダ *******/

#header h1{ /* ページタイトル */
	margin: 0;
	padding: 0 10px 12px 200px;
	text-align: center;
	font-size: 90%;
	color: #fff;
	z-index: 9; /* サイトロゴの上に被って表示 */
}

#header h2{ /* サイト名 */
	margin-top: -75px; /* サイトトピックの上に表示 */
	margin-left: 200px;
	padding: 0;
	width: 620px;
	text-align: center;
	font-size: 114%;
	position: absolute; /* ヘッダの左上に表示する仕掛け */
	z-index: 10; /* サイトロゴの上に被って表示 */
}

#header h2 a, #header h2 a:visited, #header h2 a:hover{ /* サイト名 */
	color: #fff;
}

#header p{ /* ページトピック */
	margin: 45px 0px 0 0px; /* サイト名の下に表示 */
	padding: 0px 20px 0 200px;
	text-align: center;
	font-size: 80%;
	z-index: 5; /* サイトロゴの上に被って表示 */
}

#header img{ /* サイトロゴ */
	float: left; /* ヘッダの左に動かす */
	position: absolute; /* ヘッダの左上に表示する仕掛け */
	top: 70px; /* ヘッダの左上に表示する仕掛け */
	/*left: 2%; /* ヘッダの左上に表示する仕掛け */
	z-index: 1; /* サイトロゴをテキストの後ろに表示 */
}

div#namelogo {
	margin: 0;
	paddong: 0;
	width: 830px;
	height: auto;
	position: absolute;
	top: 70px;
}

/******* パンくずリスト*******/

#breadCrumb{
	font-size: 80%;
	padding: 10px 0px 5px 10px;
}


/******* エントリー・ナビゲーション（Movable Type用） *******/

#entryNav{
	margin: 0px 10px 0px 10px;
	text-align: center;
}

#entryNavBottom{
	margin: 0px;
	padding: 0px;
	text-align: center;
}


/******* エントリー（実際にコンテンツを書く場所） *******/

#entrybody{
	float: right;
	margin-left: 0px;
	padding: 5px 0px 5px 0px;
	font-size: 80%;
	width: 640px;
	height: auto;
}

#entrybody h3{
	font-size: 140%;
	border-bottom: 2px solid #666666; /* 見出しの下線 */
	/* 背景画像を入れたい時
	padding: 18px 0px 18px 58px;
	background-image: url(../images/～.gif);
	background-position: left middle;
	background-repeat: no-repeat;
	*/
}

#entrybody h4{
	font-size: 135%;
border-bottom: 1px solid #666666; /* 見出しの下線 */
	margin-top: 20px;
	/* 背景画像を入れたい時
	padding: 14px 0px 14px 48px;
	background-image: url(../images/～.gif);
	background-position: left middle;
	background-repeat: no-repeat;
	*/
}

#entrybody h5{
	font-size: 120%;
	margin-top: 20px;
	margin-right: 30px;
	margin-left: 5px;
	border-bottom: 2px dotted #666666; /* 見出しの下線 */
	/* 背景画像を入れたい時
	padding: 10px 0px 10px 40px;
	background-image: url(../images/～.gif);
	background-position: left middle;
	background-repeat: no-repeat;
	*/
}

#entrybody h6{
	font-size: 110%;
	margin-top: 20px;
	margin-right: 35px;
	margin-left: 10px;
	border-bottom: 1px dashed #666666; /* 見出しの下線 */
	/* 背景画像を入れたい時
	padding: 6px 0px 6px 30px;
	background-image: url(../images/～.gif);
	background-position: left middle;
	background-repeat: no-repeat;
	*/
}

#entrybody p{
	font-family: Verdana, Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	margin: 0;
	padding: 15px 10px 15px 15px;
	line-height: 1.5em;
}

#entrybody p a,
dt a {
	color: #939E03;
	text-decoration: none;
}

#entrybody p a:hover,
dt a:hover {
	text-decoration: underline;
}

#entrybody p a:hover,
#entrybody p a:visited,
dt a:hover,
dt a:visited
 {
	color: #ED8036;
}

#entrybody p.date{ /* ブログ用 */
	color: #666666;
	font-family: Verdana, Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	font-size: 80%;
	text-align: left;
	font-weight: bold;
	margin-bottom: 10px;
}

#entrybody p.posted{ /* ブログ用 */
	font-family: Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	font-size: 80%;
	color: #999999;
	border-top: 3px double #999999;
	text-align: right;
	margin-top: 35px;
	margin-bottom: 0px;
	line-height: normal;
	padding: 5px 5px 0px 0px;
}

#entrybody-2col {
	width: 100%;
	height: auto;
}

#entrybody-2col:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

#entrybody-2col .leftside {
	width: 437px;
	height: auto;
	float: left;	
}

#entrybody-2col .rightside {
	width: 203px;
	height: auto;
	float: left;	
}

#entrybody-2col .rightside img.top {
	border: 0;
	vertical-align: bottom;
}

/* エントリー内コンテンツ部分 */

.contents-top,
.contents-bottom {
	clear: both;
	width: 100%;
	line-height: 0;
}

.contents-top:after,
.contents-bottom:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

.contents-top .left,
.contents-bottom .left,
.contents-top .right,
.contents-bottom .right {
	width: 15px;
	line-height: 0;
	float: left;
}

.contents-top .middle-long,
.contents-bottom .middle-long {
	width: 610px;
	line-height: 0;
	float: left;
}

.contents-top .middle-short,
.contents-bottom .middle-short {
	width: 407px;
	line-height: 0;
	float: left;
}

.contents-top .middle-long,
.contents-top .middle-short {
	background: url("../images/white-bg-tm.gif") repeat-x;
}

.contents-bottom .middle-long,
.contents-bottom .middle-short {
	background: url("../images/white-bg-bm.gif") repeat-x;
}

.contents-top,
.contents-top .left,
.contents-top .middle,
.contents-top .right {
	height: 10px;
}

.contents-botttom,
.contents-botttom .left,
.contents-botttom .middle,
.contents-botttom .right {
	height: 15px;
}

.contents-box {
	margin-left: 6px;
	padding: 0 15px;
	background: #fff url("../images/white-bg-right.gif") repeat-y right top;
}

.rightside-box {
	margin-left: 6px;
	padding: 0 10px 0 4px;
	width: 183px;
	min-height: 183px;
	text-align: center;
	background: #fff url("../images/white-bg-right.gif") repeat-y right top;
}

.contents-box dl {
	margin: 30px 0;
	border: 1px solid #aaa;
}

.contents-box dt {
	margin:  0 0 2px 0;
	padding: 5px;
	background-color: #ddd;
}

.contents-box dd {
	margin: 0 0 4px 0;
	padding: 5px;
	background-color: #efefef;
}

.contents-box div.images {
	margin: 10px 0;
}

.contents-box table.autonomic_nerve {
	margin: 10px 0 0 0;
	padding: 0;
	border-top: 1px solid #aaa;
	border-left: 1px solid #aaa;
}

.contents-box table.autonomic_nerve caption {
	padding: 5px;
	font-weight: bold;
	text-align: left;
}

.contents-box table.autonomic_nerve th {
	padding: 2px;
	font-weight: normal;
	text-align: center;
	background-color: #ddd;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
}

.contents-box table.autonomic_nerve td {
	padding: 2px;
	text-align: center;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
}

/******* 患者さんの声 *******/
#voice {
	margin: 0;
	padding: 0 30px 0 5px;
}

#voice h4 {
	margin: 30px 0 20px 0;
	padding: 0;
	font-size: 140%;
	color: #334d55;
}

#voice p {
	margin: 0 0 15px 0;
	padding: 0;
}

#voice p.name {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 125% !important;
	font-weight: bold;
}

#voice p.fv {
	margin: 0;
	padding: 0;
}

#voice p.case {
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
	border-bottom: 1px dotted #444;
}

#voice .word {
	margin: 20px 0 20px 0;
	padding: 5px;
	background-color: #ddd;
	border: 1px dotted #999;
}

#voice .pagetop {
	margin: 0 0 10px 0;
	padding: 5px;
	text-align: right;
}

#voice .pagetop a,
#voice .pagetop a:visited {
	padding-right: 17px;
	color: #709D2F;
	background: #fff url("../images/pagetop.gif") no-repeat right center;
}

#voice .pagetop a:hover {
	color: #ED8036;
}

#voice hr {
	margin-bottom: 50px;
	background-color: #999;
	border-color: #999;
}

/******* ボトムボタン *******/
#bot-button {
	clear: both;
	margin: 5px 50px 5px 270px;
	width: 520px;
	height: auto;
}

#bot-button p {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 145%;
}

#bot-button p a {
	color: #939E03;
	text-decoration: none;
}

#bot-button p a:visited,
#bot-button p a:hover {
	color: #ED8036;
}

#bot-button p a:hover {
	text-decoration: underline;
}


/******* フッタ *******/

#footer img{
	padding: 0; /* サイトバナーの位置 */
	float: left; /* サイトバナーをフッタの左に */
}

#footer h3{
	float: right; /* サイトコピーライトをフッタの右に */
	padding-top: 10px; /* サイトコピーライトの上からの位置 */
	font-family: Verdana, Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	font-size: 80%;
	font-weight: normal;
	color: #fff;
}

#footer a, #footer a:link, #footer a:visited{ /* サイトコピーライトの文字色 */
	color: #fff;
	text-decoration: none;
}


/******* サイドバー *******/

#sidebar ul a:link, #sidebar ul a:visited{
	display: block;
}

#sidebar ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidebar li{
	border-bottom: 1px solid #eeeeee;
}

html>body #sidebar li {border-bottom: none;}

/******* サイドバー・左 *******/

#sidebar-left ul a:link, #sidebar-left ul a:visited{
	display: block;
}

#sidebar-left ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidebar-left li{
	border-bottom: 1px solid #eeeeee;
}

html>body #sidebar-left li {border-bottom: none;}

/******* サイドバー・右 *******/

#sidebar-right ul a:link, #sidebar-right ul a:visited{
	display: block;
}

#sidebar-right ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidebar-right li{
	border-bottom: 1px solid #eeeeee;
}

html>body #sidebar-right li {border-bottom: none;}


/******* 検索窓（Movable Type用） *******/

#searchbox{
	margin: 15px 0px 0px 0px;
	padding: 5px 0px 0px 0px;
	border: 1px solid #262626; /* 枠線 */
	font-size: 90%;
	background-color: #fafafa;
}

#searchbox form{
	margin: 7px;
	padding: 0px;
}

#searchbox input{
	margin: 3px;
	padding: 0px;
}

#searchbox #search{
	width: 90%;
}

#searchbox label{
	display: block;
	margin: 3px;
	padding: 0px;
}


/******* カテゴリーメニュー（メイン） *******/

#categoryMenu{
	position: relative;
	margin: 5px 0px 0px 0px;
	padding: 1px 0px 1px 0px;
	font-size: 90%;

	border: 1px solid #000000; /* 枠線 */
	border-width: 0px 2px 2px 1px; /* さらに枠線の上右下左を上書き */
	color: #333333; /* 文字色 */
	background-color: #8DA98D; /* 背景色 */
}

#categoryMenu h3{
	padding: 10px 0px 2px 10px;
}

#categoryMenu a:link{ /* リンク関係の設定 */
	padding: 2px 0px 2px 5px;
	border-top: 2px solid #333333;
	width: 100%;
	color: #1E281E;
	voice-family: "\"}\""; 
	voice-family: inherit;
	width: auto;
}
#categoryMenu a:visited{
	padding: 2px 0px 2px 5px;
	border-top: 2px solid #333333;
	color: #1E281E;
}
#categoryMenu a:hover{ /* リンク関係・ポインタを乗せたときの設定 */
	padding: 2px 0px 2px 5px;
color: #ED8036; /* 文字色 */
background-color: #E0E7F1; /* 背景色 */
text-decoration: underline;
}


/******* アーカイブメニュー（サブ） *******/

.archiveMenu{
	margin: 0px 0px 0px 3px;
	padding: 0px 0px 0px 0px;
	font-size: 80%;
	border-top: 1px solid #333333; /* メインとの境目 */
	background-color: #ffffff; /* 背景色 */
}

.archiveMenu h4{
	padding: 0px 0px 2px 0px;
	font-size: 90%;
}

.archiveMenu li{
	border-top-color: #ffffff !important;
	border-bottom-color: #ffffff !important;
}
.archiveMenu a:link{ /* リンク関係の設定 */
	padding: 2px 0px 2px 10px;
	color: #939E03 !important;
	border-top: none !important;
}
.archiveMenu a:visited{ /* リンク関係の設定 */
	padding: 2px 0px 2px 10px;
	color: #939E03 !important;
	border-top: none !important;
}
.archiveMenu a:hover{ /* リンク関係・ポインタを乗せたときの設定 */
	padding: 0px;
	border-top: none !important;
	color: #ED8036 !important;
	background-color: #e0ffff !important;
	text-decoration: underline;
}

/********地図はこちら************/

#map{
	margin: 15px 0px 15px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#map h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#map p{
	margin: 5px 10px;
	padding: 0px;
	font-size: 95%;
}

#map img{
	display: block;
	margin: 3px;
	text-align: center;
}

/********患者さんの声************/

#vmenu{
	margin: 15px 0px 15px 0px;
	padding: 2px;
	height: 100px;
	font-size: 80%;
	background-color: #fff;
	border: 1px dashed #666; /* 枠線 */
}

#vmenu h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#vmenu p{
	margin: 5px 3px;
	padding: 0px;
	font-size: 110%;
	text-align: right;
	font-weight: bold;
}

#vmenu p span.here{
	padding-right: 48px;
	font-size: 130%;
	background: #fff url("../images/voice_01.gif") no-repeat right center;
}

#vmenu p a{
	color: #333;
}

#vmenu p a span.here{
	color: #5f8425;
}

#vmenu p a:hover,
#vmenu p a:visited,
#vmenu p a:hover span.here,
#vmenu p a:visited span.here{
	color: #ED8036;
	text-decoration: underline;
}

#vmenu img{
	float: left;
	margin: 0 5px 0 0;
	text-align: left;
}

/********医院紹介************/

#clinic{
	margin: 15px 0px 0px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#clinic h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#clinic p{
	margin: 5px 10px;
	padding: 0px;
	font-size: 95%;
}

#clinic img{
	display: block;
	margin: 3px;
	text-align: center;
}

#clinic a {
	color: #939E03;
	text-decoration: none;
}

#clinic a:hover {
	text-decoration: underline;
}

#clinic a:hover, 
#clinic a:visited {
	color: #ED8036;
}

/********診療時間************/

#hour{
	margin: 15px 0px 0px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#hour h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#hour p{
	margin: 5px;
	padding: 0px;
	font-size: 95%;
	text-align: center;
}

#hour img{
	display: block;
	margin: 3px;
	text-align: center;
}

/********所在地************/

#location{
	margin: 15px 0px 0px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#location h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#location p{
	margin: 5px 10px;
	padding: 0px;
	font-size: 95%;
}

#location img{
	display: block;
	margin: 3px;
	text-align: center;
}

/********QRコード************/

#qr-code{
	margin: 15px 0px 0px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#qr-code h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#qr-code p{
	margin: 5px 10px;
	padding: 0px;
	font-size: 95%;
}

#qr-code img{
	display: block;
	margin: 3px;
	text-align: center;
}

/********メディア掲載（左メニュー）************/

#media {
margin: 15px 0px 0px 0px;
padding: 2px;
font-size: 80%;
background-color: #ECF0EC;
border: 1px dashed #666; /* 枠線 */
}

#media h3{
margin: 0;
padding:2px;
font-size: 100%;
color: #fff;
background-color: #6D916D;
text-align: center;
}

#media .img {
	margin: 10px 0;
	text-align: center;
}

#media p{
margin: 5px 10px;
padding: 0px;
font-size: 95%;
}

/********来院リスト************/

#visit-list{
	margin: 15px 0px 0px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#visit-list h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#visit-list p{
	margin: 5px;
	padding: 0px;
	font-size: 95%;
}

#visit-list img{
	display: block;
	margin: 3px;
	text-align: center;
}

/******* ヘッドライン *******/

#headlines{
	margin: 15px 0px 0px 0px;
	padding: 10px 5px 10px 10px;
	font-size: 80%;
	border: 1px solid #262626; /* 枠線 */
}

#headlines h3{
	margin: 5px;
	font-size: 100%;
}

#headlines p{
	margin: 3px;
	padding: 0px;
	font-size: 95%;
}

#headlines img{
	display: block;
	margin: 3px;
}


/******* アドバタイズメント *******/

#advertisement{
	margin: 15px 0px 0px 0px;
	padding: 2px;
	font-size: 80%;
	background-color: #ECF0EC;
	border: 1px dashed #666; /* 枠線 */
}

#advertisement h3{
	margin: 0;
	padding: 2px;
	font-size: 100%;
	color: #fff;
	background-color: #6D916D;
	text-align: center;
}

#advertisement p{
	margin: 5px;
	padding: 0px;
	font-size: 95%;
	text-align: center;
}

#advertisement a, #advertisement a:visited, #advertisement a:hover{
	color: #0000ff;
	text-decoration: underline;
}

#advertisement img{
	display: block;
	margin: 3px;
	text-align: center;
}


/******* Movable Type用 *******/

.link-note{
	font-family: Verdana, Arial, sans-serif;
	font-size: 70%;
	margin: 10px 0px 0px 0px;
	padding: 10px;
}
.link-note img{
	vertical-align: middle;
}

#powered{
	margin: 10px 0px 0px 0px;
	padding: 10px 0px 10px 10px;
	font-family: Verdana, Arial, sans-serif;
	font-size: 70%;
	color: #666666;
	border: 1px solid #262626;
}

/******* コメントとトラックバック（Movable Type用） *******/

#comments{
	font-size: 130% !important;
	border-bottom: 1px solid #999999 !important;
}
h4.commentsSay{
	font-size: 115% !important;
	border-bottom: 1px dotted #999999 !important;
}
.trackbackBlock{
	margin-top: 3em;
}
#trackbacks{
	font-size: 130% !important;
	border-bottom: 1px solid #999999 !important;
}


/**************** テーブル *****************/

/*フォント*/

.font20-bold {
	margin: 0;
	padding: 5px;
	font-size: 20px;
	font-weight: bold;
	color: #444;
	line-height: 1.2em;
}

/******* 終 了 *******/
a {
	text-decoration: none;
}
#container #block #content #entrybody p {
	font-size: 12px;
}

/************** ブロックナビ *************/

div#blocknavi-box {
	clear: both;
	margin: 30px auto 0 auto;
	padding: 0;
	width: 609px;
	height: auto;
}

.box-row {
	clear: both;
	width: 100%;
	height: auto;
	background: url("../images/white-bg-top.gif") repeat-x left top;
}

.box-row:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

.blocknavi {
	margin-top: 13px;
	width: 203px;
	height: auto;
	position: relative;
	float: left;
}

.blocknavi p {
	margin: 0 !important;
	padding: 5px 10px !important;
	font-size: 12px !important;
	background: url("../images/white-bg-middle.gif");
}

.blocknavi h3 {
	margin: 0 !important;
	padding: 10px 0 0 75px !important;
	font-size: 16px !important;
	font-weight: borld !important;
	color: #444;
	line-height: 1.2em;
	border: none !important;
	height: 50px;
	background: url("../images/white-bg-middle.gif");
}

.blocknavi p.blocknavi-desc {
	margin-top: 85px !important;
	padding: 3px 20px !important;
	height: 36px
}

.blocknavi p.blocknavi-desc a, .blocknavi p.blocknavi-desc a:visited {
	color: #444 !important;
	text-decoration: none !important;
}

.blocknavi p.blocknavi-desc a:hover {
	color: #888 !important;	
	text-decoration: underline !important;
}

.blocknavi p.blocknavi-number {
	padding: 0 !important;
	position: absolute;
	top: 0;
	left: 10px;
	z-index: 1;
}

.blocknavi p.blocknavi-image {
	width: 183px;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 2;
	text-align: center;
}

/************** パンくずリスト *************/

#breadcrumb {
	margin-top: 10px;
	padding: 0 10px;
	font-size: 12px;
	color: #444;
	text-align: right;
}

#breadcrumb a {
	color: #939E03;
	text-decoration: none;
}

#breadcrumb a:hover {
	text-decoration: underline;
}

#breadcrumb a:hover, 
#breadcrumb a:visited {
	color: #ED8036;
}

/******* inquiry.html *******/

#inq-body {
	margin: 0;
	padding: 20px;
}

#inq-body a {
	color: #939E03;
	text-decoration: none;
}

#inq-body a:hover {
	text-decoration: underline;
}

#inq-body a:hover,
#inq-body a:visited
{
	color: #ED8036;
}

#inq-body h1 {
	margin: 0 0 30px 0;
	padding: 5px;
	color: #fff;
	font-size: 130%;
	background-color: #6D916D;
	border: 1px solid #aaa;
}

#inq-body h2 {
	margin: 0 0 10px 0;
	padding: 8px;
	width: 95%;
	font-size: 110%;
	color: #444;
	background-color: #EDEFED;
	border-left: 8px solid #6D916D;
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
}

#inq-body h4 {
	margin: 0 0 10px 0;
	padding: 8px;
	width: 95%;
	font-size: 100%;
	color: #444;
}

#inq-body .contarea {
	margin: 0 0 5px 0;
	padding: 5px;
	width: 95%;
}

#inq-body p {
	margin: 0 0 10px 0;
	padding: 5px;
	font-size: 90%;
	line-height: 1.5em;
}

#inq-footer {
	padding: 10px 0 0 0;
	border-top: 1px solid #444;
}

#inq-footer .menu {
	margin: 0 0 10px 0;
	padding: 5px;
	font-size: 90%;
}

#inq-footer .copy {
	padding: 5px;
	font-size: 90%;
	text-align: right;
}

