@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: #006699;
text-decoration: none;
}

a:hover { /* リンク関係・ポインタを乗せたときの設定 */
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: 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: 0 0 0 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: 100%;
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;
}


/******* エントリー・ナビゲーション（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 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: 135%;
margin-top: 20px;
margin-right: 25px;
border-bottom: 1px solid #666666; /* 見出しの下線 */
/* 背景画像を入れたい時
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: 20px;
margin-right: 30px;
margin-left: 5px;
border-bottom: 2px dotted #666666; /* 見出しの下線 */
/* 背景画像を入れたい時
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;
}

#apology{
background-color: #FF0000;
width: 695px;
font-size: 130%;
font-weight:bold;
color: #000000;
text-align: center;
margin: 0px 10px 10px 0px;
padding: 10px 0px 10px 0px;
/*
background-image: url(http://www.chikuhouseicha.com/css/images/apology.jpg);
background-position: left middle;
background-repeat:no-repeat;
*/
}

.blogbody-bar{
clear: both;
background-color: #669933;
font-size: 120%;
color: #000000;
font-weight:bold;
text-align: center;
width: 695px;
margin: 0px 0px 1px 9px;
}

.blogbody{
clear: both;
width: 695px;
margin: 0px 0px 10px 9px;
}

#blogbody-a{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody-a h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody-b{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 0px;
}

#blogbody-b h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

.style1 {font-size: 130%;
color:#FF0000}

.style-top {font-size: 180%;
color: #009900;
text-align: center;
}

#blogbody1{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody1 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody2{
clear: both;
background-color: #009900;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 10px;
}

#blogbody2 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody3{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 10px;
}

#blogbody3 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody4{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 8px 0px 0px 9px;
}

#blogbody4 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody5{
clear: both;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody5 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody6{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody6 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody7{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody7 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody8{
clear: both;
background-color: #ffccff;
font-size: 150%;
color: #330000;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody8 h3{
font-size: 90%;
color: #330000;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody9{
clear: both;
background-color: #ff66ff;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 7px;
}

#blogbody9 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody10{
clear: both;
background-color: #ffccff;
font-size: 150%;
color: #330000;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody10 h3{
font-size: 90%;
color: #330000;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody11{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody11 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody12{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody12 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

#blogbody13{
clear: both;
background-color: #004000;
font-size: 150%;
color: #ffffdd;
width: 695px;
margin: 0px 0px 0px 9px;
}

#blogbody13 h3{
font-size: 90%;
color: #ffffdd;
border-bottom: none; /* 見出しの下線 */
text-align: center; /* Internet Explorer 5.5以前への対応 */
}

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

#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: #e0e0e0;
z-index: 10; /* サイトロゴの上に被って表示 */
}

#footer a, #footer a:link, #footer a:visited{ /* サイトコピーライトの文字色 */
color: #ffffd9;
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: 15px 0px 0px 0px;
padding: 1px 0px 1px 0px;
font-size: 90%;

border: 1px solid #000000; /* 枠線 */
border-width: 0px 2px 2px 1px; /* さらに枠線の上右下左を上書き */
color: #000000; /* 文字色 */
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%;
voice-family: "\"}\""; 
voice-family:inherit;
width: auto;
background-color: #009900; /* 背景色 */
}

#categoryMenu a:visited{ /* リンク関係の設定 */
padding: 2px 0px 2px 10px;
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: 90%;
}

#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: left;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 140px;
}


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

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


/******* 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;
}


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

/* テーブルの設定 */
table{
margin: 0px 0px 0px 0px;
border-collapse: collapse;
font-size: 90%;
}
caption{
padding: 2em 0.4em 0em 0.4em;
white-space: nowrap;
font-weight: bold;
}
td{
padding: 0.2em 0.4em;
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;
*/
}


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