@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; /* サイドバーの幅 */
}


#content{ /* ２カラムのコンテンツ枠 */
float:right;
margin: 0px 0px 0px 165px; /* 左サイトバー用の空き */
padding: 15px;
width: 745px; /* サイドバーの幅 */
}


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

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

#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: 140%;
text-align: left;
}

.style1 {text-align: left;
font-size: 120%;
margin-left: -5px !important;
}

.style2 {font-size: 140%}

.style3 {font-size: 130%; 
text-align: right !important;
margin-right: 20px;
margin-bottom: 20px;
}
.style3L {font-size: 130%; 
text-align: left !important;
margin-left: 0px;
margin-bottom: 20px;
}

.cago { display: block;
text-align: right;
padding-right: 20px;
padding-top: 20px !important;
}

.cago-L { display: block;
text-align: left;
padding-left: 20px;
padding-top: 20px !important;
}

.style4 {font-size: 150% !important;
padding-top: 10px;
padding-left: 10px;
}
.style4L {font-size: 150% !important;
padding-top: 10px;
padding-right: 10px;
}

.style5 {font-size: 120%;
text-align:left;
line-height: 2.5em !important;
}
.style5L {font-size: 120%;
text-align:left;
line-height: 2.5em !important;
}

#entrybody h4{
font-size: 110%;
font-weight: bold;
margin-top: 5px;
margin-right: 0px;
margin-left: 5px;
border-bottom: 3px solid #006600;
}

#entrybody h5{
font-size: 120%;
margin-top: 0px;
margin-right: 00px;
margin-left: 5px;
}

#entrybody h6{
font-size: 110%;
margin-top: 20px;
margin-right: 35px;
margin-left: 10px;
border-bottom: 1px dashed #666666; /* 見出しの下線 */
}

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


.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: 5px 5px 5px 0px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 80px;
height: 20px;
text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#blogbody1 h4{
font-size: 100%;
color: #000000;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
border-bottom: 4px solid #009e50; /* 見出しの下線 */
}

#blogbody2{
clear: both;
margin: 10px 5px 10px 0px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 110px;
height: 20px;
text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#blogbody2 h4{
font-size: 120%;
color: #000000;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
border-bottom: 4px solid #009e50; /* 見出しの下線 */
}

#blogbody3{
clear: both;
margin: 10px 5px 10px 5px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 270px;
height: 20px;
text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#blogbody3 h4{
font-size: 120%;
color: #000000;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
border-bottom: 4px solid #009e50; /* 見出しの下線 */
}

#blogbody4{
clear: both;
margin: 10px 5px 10px 5px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 250px;
height: 20px;
text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#blogbody4 h4{
font-size: 120%;
color: #000000;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
border-bottom: 4px solid #009e50; /* 見出しの下線 */
}

#blogbody5{
clear: both;
margin: 10px 5px 10px 5px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 150px;
height: 20px;
text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#blogbody5 h4{
font-size: 120%;
color: #000000;
margin-top: 5px;
margin-right: 0px;
margin-left: 0px;
border-bottom: 4px solid #009e50; /* 見出しの下線 */
}

#blogbody6{
clear: both;
margin: 5px 5px 5px 0px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
width: 80px;
height: 20px;
text-align: left; /* Internet Explorer 5.5以前への対応 */
}

#blogbody6 h4{
font-size: 100%;
color: #000000;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
border-bottom: 4px solid #009e50; /* 見出しの下線 */
}

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

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



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

#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; /* 背景色 */
}

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

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


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

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


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