@charset "utf-8";

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

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

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

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

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: #334d55;
}

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

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

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: 400px;
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: center; /* Internet Explorer 5.5以前への対応 */
}

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

#header{
margin: 0; /* 外の隙間 ピッチリ合わせている */
width: 100%; /* containerにいっぱいいっぱい表示 */
height: 80px; /* サイトロゴの高さ */
background-color: #006600; /* 背景画像 */
}

#block{
clear: both;
}


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

#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:right;
margin: 0px 0px 0px 165px; /* 左サイトバー用の空き */
padding: 15px;
width: 745px; /* サイドバーの幅 */
}

#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: 5px;
padding: 5px 30px 10px 30px;
background-color: #006600;
height: 36px;
}


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

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

#header h2{ /* サイト名 */
margin: -45px 0px 0px 0px; /* サイトトピックの上に表示 */
padding: 2px 0px 10px 250px;
text-align: left;
font-size: 90%;
z-index: 10; /* サイトロゴの上に被って表示 */
color: #ffffd9;
}

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

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

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

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


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

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

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

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

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

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

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


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

#entrybody{
padding: 10px 0px 20px 10px;
font-size: 80%;
}

	#entrybody a:link{color: #006699; text-decoration: none; background: none;}
	#entrybody a:visited{color: #006699; text-decoration: none; background: none;}
	#entrybody a:active,
	#entrybody a:hover {color: #006699; text-decoration: underline; background : none;}

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

#entrybody h4{
font-size: 160%;
font-weight: bold;
margin-top: 5px;
margin-right: 0px;
margin-left: 5px;
/* 背景画像を入れたい時
padding: 14px 0px 14px 48px;
background-image: url(http://www.chikuhouseicha.com/images/～.gif);
background-position: left middle;
background-repeat:no-repeat;
*/
}

#entrybody h5{
font-size: 120%;
margin-top: 0px;
margin-right: 00px;
margin-left: 5px;
/* 背景画像を入れたい時
padding: 10px 0px 10px 40px;
background-image: url(http://www.chikuhouseicha.com/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(http://www.chikuhouseicha.com/images/～.gif);
background-position: left middle;
background-repeat:no-repeat;
*/
}

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

#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;
}

.style3 {color: #FF0000; font-weight: bold; }


.partition{
clear: both;
margin: 10px 0px 5px 0px;
padding: 3px 0px 3px 20px;
background-color: #000000;
font-size: 130%;
font-weight:bold;
color: #ffffff;
text-align: left;
width: 715px;
}

.blogbody{
clear: both;
margin: 0px 0px 0px 0px;
background-color: #004000;
font-size: 150%;
color: #ffffff;
text-align: center;
width: 695px;
}

#blogbody1{
clear: both;
margin: 20px 5px 0px 5px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 635px;
height: 20px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody1 h4{
font-size: 100%;
color: #ffffff;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
/* 背景画像を入れたい時
padding: 14px 0px 14px 48px;
background-image: url(http://www.chikuhouseicha.com/images/～.gif);
background-position: left middle;
background-repeat:no-repeat;
*/
}

#blogbody2{
clear: both;
margin: 20px 5px 0px 5px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 635px;
height: 20px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody2 h4{
font-size: 100%;
color: #ffffff;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
/* 背景画像を入れたい時
padding: 14px 0px 14px 48px;
background-image: url(http://www.chikuhouseicha.com/images/～.gif);
background-position: left middle;
background-repeat:no-repeat;
*/
}

#blogbody3{
clear: both;
margin: 20px 5px 0px 5px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 635px;
height: 20px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody3 h4{
font-size: 100%;
color: #ffffff;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
/* 背景画像を入れたい時
padding: 14px 0px 14px 48px;
background-image: url(http://www.chikuhouseicha.com/images/～.gif);
background-position: left middle;
background-repeat:no-repeat;
*/
}

#blogbody4{
clear: both;
margin: 10px 10px 0px 0px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 665px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody5{
position: absolute;
clear: both;
padding: 20px 0px 0px 500px;
font-size: 80%;
text-align: center;
}

#blogbody6{
clear: both;
margin: 10px 10px 0px 0px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 665px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody7{
clear: both;
margin: 10px 10px 0px 0px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 665px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody8{
clear: both;
margin: 10px 10px 0px 0px;
background-color: #000000;
font-size: 90%;
color: #ffffcc;
width: 665px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody9{
clear: both;
margin: 10px 0px 0px 0px;
padding : 5px 0px 5px 0px;
background-color: #aa0000;
font-size: 90%;
color: #ffffff;
width: 700px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody10{
clear: both;
margin: 0px 0px 0px 0px;
background-color: #004000;
font-size: 150%;
color: #ffffff;
text-align: center;
width: 735px;
}

.blogbody10{
clear: both;
margin: 10px 0px 5px 0px;
background-color: #004000;
font-size: 150%;
color: #ffffff;
text-align: center;
width: 735px;
}

#blogbody11{
clear: both;
margin: 10px 0px 0px 0px;
background-color: #000000;
font-size: 90%;
color: #ffffdd;
width: 700px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody16{
clear: both;
margin: 10px 0px 0px 0px;
background-color: #000000;
font-size: 90%;
color: #ffffdd;
width: 700px;
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody17{
clear: both;
margin: 0px 0px 3px 0px;
background-color: #006000;
font-size: 130%;
color: #ffffff;
text-align: center;
width: 710px;
}

#blogbody18{
clear: both;
margin: 0px 0px 0px 0px;
background-color: #004000;
font-size: 150%;
color: #ffffff;
text-align: center;
width: 735px;
}

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

#footer img{
padding: 5px 4px 10px 4px; /* サイトバナーの位置 */
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: #ffffd9;
}

#footer p{
float: right; /* サイトコピーライトをフッタの右に */
margin: 10px 0px 0px 0px; /* サイト名の下に表示 */
padding: 2px 20px 6px 250px;
font-family: Verdana, Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
font-size: 80%;
font-weight: normal;
color: #ffffd9;
z-index: 10; /* サイトロゴの上に被って表示 */
}

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


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

#sidebar ul a:link, #sidebar ul a:visited, #sidebar a:hover{
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: 15px 0px 0px 0px;
padding: 1px 0px 1px 0px;
font-size: 90%;
color: #000000; /* 文字色 */
border: 1px solid #000000; /* 枠線 */
border-width: 0px 2px 2px 1px; /* さらに枠線の上右下左を上書き */
background-color: #f2f2f2; /* 背景色 */
}

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

#categoryMenu a:link{ /* リンク関係の設定 */
padding: 2px 0px 2px 10px;
border-top: 2px solid #e0e0e0;
width: 100%;
color: #ffffff; /* リンクページ文字色 */
voice-family: "\"}\""; 
voice-family:inherit;
width: auto;
background-color: #009900; /* 背景色 */
}

#categoryMenu a:visited{ /* リンク関係の設定 */
padding: 2px 0px 2px 10px;
color: #ffffff; /* リンク後文字色 */
border-top: 2px solid #e0e0e0;
background-color: #009900; /* 背景色 */
}

#categoryMenu a:hover{ /* リンク関係・ポインタを乗せたときの設定 */
padding: 2px 0px 2px 10px;
color: #006699; /* 文字色 */
background-color: #86ff86; /* 背景色 */
}


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

.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: #006699 !important;
border-top: none !important;
}
.archiveMenu a:visited{ /* リンク関係の設定 */
padding: 2px 0px 2px 10px;
color: #006699 !important;
border-top: none !important;
}
.archiveMenu a:hover{ /* リンク関係・ポインタを乗せたときの設定 */
padding: 0px;
border-top: none !important;
color: #006699 !important;
background-color: #e0ffff !important;
}


/******* 新着情報 *******/

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

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

#news p{
margin: 0px;
padding: 3px;
font-size: 90%;
color: #000000;
}

#news img{
	display: block;
	margin: 0px 0px 10px 0px;
	position: left;
	width: 140px;
}


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

#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: 0px;
padding: 0px;
font-size: 80%;
color: #000000;
}

#headlines img{
	display: block;
	margin: 0px;
	position: relative;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 140px;
}


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

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

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

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

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


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

/* テーブルの設定 */
table{
margin: 00px 00px 00px 00px;
border-collapse: collapse;
font-size: 100%;
border: none; /* 枠線 */
}
caption{
padding: 2em 0.4em 0em 0.4em;
white-space: nowrap;
font-weight: bold;
}
td{
padding: 0.2em 0.4em;
border: 1px solid;
empty-cells: show;
}
th{
padding: 0.2em 0.4em;
border: 1px solid;
empty-cells: show;
font-weight: bold;
line-height: 1.5em;
text-align: center;
/*
background-color: #CCFF99;
*/
}
thead, tfoot{
padding: 0.4em;
font-weight: bold;
/*
background-color: #CCFF99;
text-align: center !important;
*/
}


/******* 終 了 *******/