@charset "utf-8";

/* #### css reset #### */

* {
   margin: 0;
   border: 0px solid #00f; 
   padding: 0;
   background-color: transparent;
   color: black;
   /* font-size: x-medium; */
   font-weight: normal;
   font-style: normal;
   font-family: "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Osaka", "sans-serif", verdana;
   text-decoration: none;   
}

/* #### css reset for IE (IE6等で次の要素にユニバーサルセレクタが適用されないため、ユニバーサルセレクタと同一指定) */
th, td, form
{
   margin: 0;
   border: 0px solid #00f; 
   padding: 0;
   background-color: transparent;
   color: black;
   /* font-size: x-medium; */
   font-weight: normal;
   font-style: normal;
   font-family: "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Osaka", "sans-serif", verdana;
   text-decoration: none;   
}

/* #### basic elements #### */

html
{
}

body
{
   text-align: center;	/* css hack */
   background: white;
}

img, object 
{
   border: 0;
   vertical-align: text-bottom;
}

h1, h2, h3, h4, h5, h6 {
   font-size: 100%;
   font-weight: normal;
}

input, textarea
{
   border: 1px solid black;
}

/* #### anchor #### */
a:link
{
   text-decoration: none;
   color: #000080;
}

a:visited
{
   text-decoration: none;
   color: #000080;
}

a:hover
{
   text-decoration: none;
   color: #800000;
}

a:active
{
   text-decoration: none;
   color: #800000;
}

.clear
{
   clear: both;
}

/* #### div #### */
/* container */
div#container
{
   margin-left: auto;
   margin-right: auto;
   margin-top: 5px;	/* px */
   margin-bottom: 0;
   border: 0;
   padding: 0;
   width: 800px;
   text-align: left;
/* background: #0ff;  */
}

/* banner */
div#banner
{
   margin-bottom: 0mm;
   border: 0px solid red;   
   width: 100%;
/*   height:300px;
   background-position: 0px 0px;
   background-image:url(./images/banner.gif);
   background-repeat:no-repeat; */
/* background: #ffb; */
}

#banner h1
{
   margin: -27px 0 0 650px;
   border: 0px solid blue;
   padding: 0 0 15px 0;
   font-size: 11px;
   letter-spacing: 0px;
   color: rgb(80,80,40)
}

#banner h2	/* ADD 2nd version:2007/12/23 */
{
   margin: -285px 0 0 30px;
   padding: 0 0 274px 0;
   font-size: 11px;
   font-weight: bold;
   letter-spacing: 0px;
   color: #000
}

/* calendar */
div#calendar-line
{
   margin: 0;
/*   border: 1px solid black; */
   width: 100%;
   text-align: center;
}

#calendar-line img
{
   vertical-align: middle;
}

#calendar-line span.yearmonth
{
   font-size: 78%;
}

#calendar-line span.date
{
   margin-left: 1mm;
   font-size: 78%;
}

#calendar-line span.date a
{
   text-decoration: underline;
   font-weight: bold;
   color: rgb(128,23,23);
}

#calendar-line span.date a:hover
{
   font-weight: bold;
   color: black;
}

/* navi */
p.content-nav
{
   margin: 1mm 0 0 0;
/*   border: 1px solid red; */
   padding: 0;
   font-size: 70%;
   text-align: center;
}

p.content-nav-inner
{
   margin: 1mm 0 0 0;
   padding: 0;
   font-size: 70%;
   text-align: center;
}

p.content-nav-inner a
{
   font-size: 90%;
}

span.nav_mark
{
   font-weight: bold;
   color: rgb(112,121,47);
}

/* footer */
div#footer
{
   margin-top: 3mm;
   margin-bottom: 5mm;
   width: 100%;
   float: left;
   text-align: center;
   font-size: 70%;
   color: #888;
   /* background: #aa0; */
}

/* contents */
div#contents
{
   margin-top: 10mm;
   border: 0px solid red;
   width: 100%;
/*   background-image:url(./images/back.gif); */	/* テスト環境 */
   background-image:url(http://www.tyutyutrain.com/images/back.gif); 	/* 実行環境 */
   background-repeat: repeat-y;
/* background-color: green; */
}

/* main_right(double float) */
div#main_right
{
   width: 638px;	/* 402 + 236 */
   float: right;
}

/* main */
div#main
{
   width: 402px;
   float: left;
   background-position: 0px 0px;
/*   background: green; */
}

/* sub_right */
div#sub_right
{
   width: 236px;
   float: left;
/*   background: #fff; */
}

/* sub_left */
div#sub_left
{
   margin-top: 16px;
   width: 162px;
   float: left;
/*   background: white; */
}

/* #### 記事メイン #### */
div.article
{
   margin: 0 0 5mm 0;
   border: 0px solid green;
   padding: 0 5px 0 10px;
   width: 387px;	/* div#main.width - this.padding-left - this.padding-right */
}

.article img.title
{
   margin: 0 0 0 0;		/* margin-left == div.article.margin-left */
/* border: 1px solid orange; */
}

.article h2
{
   margin: -26px 0 0 90px;
   font-size: 14px;
   font-weight: normal;
}

.article h3
{
   margin: 4px 0 0 100px;
   font-size: 12px;
   font-weight: normal;
   color: rgb(80,23,23);
}

.article a
{
   font-weight: bold;
}

.article a.title
{
   font-size: 14px;
   font-weight: normal;
   color: black;
}

.article a.title:hover
{
   color: rgb(80,23,23);
}

.article p
{
   margin-bottom: 3mm;
   font-size: 78%;
   line-height: 150%;
}


/* 写真エリア(大)。最大幅385px。 */
div.photo
{
   width: 100%;
   text-align: center;
}

.photo img	/* 大サイズ写真 */
{
   margin-top: 1mm;
   margin-bottom: 3mm;
/* border: 1px solid black; */
}

/* 写真エリア(小)。最大幅385px。 */
div.photo-small
{
   margin-top: 4mm;
   width: 100%;
   text-align: left;
}

.photo-small img	/* 小サイズ写真左側。２枚合計幅最大385px */
{
   margin: 0mm 2mm 0 0;
   float: left;
/* border: 1px solid black; */
}

.photo-small img.right	/* 小サイズ写真右側 */
{
   float: right;
}

/* 写真説明 */
/*
div.photo-explain
{
   margin: 2mm 0 1mm 0;
   border: 1px dashed rgb(207,206,173);
   padding: 1mm 1mm 1mm 2mm;
   clear: both;
}

.photo-explain p
{
   margin-bottom: 0;
   font-size: 68%;
}
*/
.photo-small p
{
   margin: 0 0 0 0;
   border-top: 1px dashed rgb(207,206,173);
   border-bottom: 1px dashed rgb(207,206,173);
   padding: 1mm 0 1mm 0;
   font-size: 68%;
}

/* タグ */
p.entry-tags
{
   margin-bottom: 0;
   text-align: right;
   font-size: 60%;
}

p.entry-tags a
{
   font-weight: normal;
}

/* 記事フッタ */
p.entry-footer
{
   margin-top: 0;
   margin-bottom: 0;
   text-align: right;
   font-size: 60%;
}

p.entry-footer a
{
   font-weight: normal;
}

div.footer_navi
{
   font-size: 70%;
   text-align: center;
   color: rgb(112,121,47);
}

/* #### 左サブメニュー #### */
div.sub_ad
{
   margin-top: 0mm;
   margin-left: 0mm;
   margin-bottom: 4mm;
   border: 0px solid green;   
   text-align: center;
}

/* #### 右サブメニュー #### */
div.sub_fld
{
   margin-top: 0mm;
   margin-left: 0mm;
   margin-bottom: 4mm;
border: 0px solid green;   
}

.sub_fld img.title
{
   margin: 12px 0 0 3mm;
}

.sub_fld h3
{
   margin: -17px 0 1mm 0;
   padding: 0 0 7px 60px;
   font-size: 10px;
   font-weight: bold;
   letter-spacing: 3px;
   color: black;
}

p.profile
{
   margin: 0mm 4mm 0mm 8mm;
   font-size: 75%;
   line-height: 130%;
}

p.profile a
{
   font-weight: bold;
}

.sub_fld ul
{
   padding-left: 10mm;
   font-size: 75%;
}

input.search
{
   margin-top: 4mm;
   margin-left: 8mm;
   padding: 0.5mm;
   font-size: 70%;
}

input.submit
{
   padding: 0;
   font-size: 70%;
   background-color: #ddd;
}

.last_ping p.ping_link_title
{
   font-size: 90%;
}

.last_ping span.ping_src
{
   font-size: 85%;
}

.last_ping p.ping_excerption
{
   margin-left: 0mm;
   font-size: 70%;
}

.last_ping li
{
   margin-bottom: 2mm;
}

/* #### アーカイブ画面 #### */
.article h4
{
   margin-top: 7mm;
   margin-bottom: 1mm;
   font-size: 85%;
   font-weight: bold;
   color: olive;
}

h4.trackbacks-header
{
   margin-top: 5mm;
}

div#trackbacks-info
{
   margin: 1mm 0 0 0;
   border: 1px solid rgb(179,217,64);
   padding: 0;
   text-align: center;
}

#trackbacks-info p
{
   margin: 1mm 0 1mm 0;
}

.trackbacks-content ul
{
   margin: 0 0 0 4mm;
   border: 0px solid black;
   list-style-type: disc;
   font-size: 70%;
}

.trackbacks-content li
{
   margin-bottom: 1mm;
   line-height: 120%;
}

div.comments-open-content
{
   font-size: 85%;
}

textarea#comment-text
{
   padding: 0.5mm 0 0.5mm 1mm;
   font-size: 100%;
   line-height: 130%;
}

#comments-open-data input
{
   padding: 0.5mm 0 0.5mm 1mm;
}

#comments-open-footer input
{
   font-size: 90%;
   background-color: #ddd;
}

div.each-comment
{
   margin: 0 0 0 2mm;
   border-bottom: 1px dotted black;
   font-size: 85%;
}

p.comment-body
{
   margin: 3mm 0 0 0;
}

p.comment-inf
{
   margin: 0 0 1mm 0;
   text-align: right;
   font-size: 80%;
}

.last_comment a.comment_org
{
   font-size: 90%;
}

.last_comment span.comment_author
{
   font-size: 75%;
}

.last_comment li
{
   margin-bottom: 1mm;
}

/* #### アーカイブ #### */
h2#archive-title
{
   margin-top: 2mm;
   text-align: center;
   font-weight: bold;
}

/* #### 検索 #### */
div.search_result		/* div.article と左右同一スペック */
{
   margin: 0 0 6mm 0;
/* border: 1px solid green; */
   padding: 0 5px 0 10px;
}

h3.search-results-header
{
   font-weight: bold;
   font-size: 80%;
}

h3.search-results-header2
{
   margin: 0 0 3mm 10px;	/* 10px == div.search_result-padding */
   font-weight: bold;
   font-size: 80%;
/*   color: green; */
}

.search_result input.search
{
   margin-top: 2mm;
   margin-left: 0;
   padding: 0.5mm;
   font-size: 90%;
}

.search_result input.submit
{
   padding: 0;
   font-size: 90%;
   background-color: #ddd;
}

.search_result p
{
   margin-left: 2mm;
   margin-bottom: 2mm;
   font-size: 78%;
}

div.photo_excerpt
{
   margin: 2mm 0 0 0;
}

img.excerpt
{
   margin: 0 0 0 0;
   width: 190px;
   float: left;
}

/* #### コメントcgi #### */
h3.comment_title
{
   margin: 0 0 0 0;
   font-weight: bold;
   font-size: 80%;
}

h3.comment_title_mod
{
   margin: 3mm 0 0 0;
   font-weight: bold;
   font-size: 80%;
}

div.comment-content
{
   margin: 0 1mm 0 0;
   border: 1px solid black;
   padding: 0.5mm 0 0.5mm 1mm;
   font-size: 78%;
}

p.comment-footer
{
   margin: 0 1mm 0 0;
   text-align: right;
   font-size: 70%;
}

div.comment_pending
{
   margin: 1mm 1mm 0 2mm;
}

.comment_pending h3
{
   margin: 0 0 2mm 0;
   font-weight: bold;
   font-size: 80%;
}

.comment_pending p
{
   margin: 0 0 1mm 0;
   font-size: 90%;
}

p.comment_return
{
   text-align: right;
}
.comment_pending a
{
   font-size: 80%;
}

.comment_pending blockquote
{
   margin: 2mm 1mm 1mm 1mm;
   border: 1px solid black;
   padding: 1mm 1mm 1mm 1mm;
   font-size: 90%;
   color: #800;
}

/* #### 人気ブログランキング #### */
/* 記事毎 */
div#blogranking
{
   margin: 6mm 0 0 5mm;
}

div#blogranking_left
{
   margin: 0 0 0 0;
   width: 200px;
   float: left;
}

div#blogranking_left p
{
   font-size: 60%;
}

div#blogranking_right
{
   float: left;
}

div#blogranking_right img
{
   margin: 0 0 0 0;
}
div#blogranking_right h4
{
   margin: -30px 0 0 40px;
   color: #666;
   font-size: 10px;
   letter-spacing: 0px;
}

/* 右サブ */
div#sub_blogranking
{
   margin: 0mm 15mm 10mm 4mm;
   border-top: 1px solid black;
   padding: 2mm 0mm 0px 3mm;
}

div#sub_blogranking a
{
   margin: 0 0 0 0;
   font-size: 65%;
   line-height: 100%;
}

div#sub_blogranking img
{
   margin: 5px 0 0px 0;
}

div#sub_blogranking h3
{
   margin: -20px 0 0 35px;
   padding: 0 0 0 0;
   font-size: 12px;
   color: rgb(249,230,17)
}

div.sub_fld div.blog_parts	/* ブログパーツ用:2007/09/08:N.Morita */
{
   margin: 0 0 0 7mm;
}

strong
{
   font-weight: bold;
   font-size: 100%;
}

em
{
   font-style: italic;
   font-size: 100%;
}

/* cast */
div.sub_fld p.cast
{
   margin-left: 8mm;
   margin-bottom: 3mm;
   font-size: 70%;
}

div.sub_fld p.cast img
{
   padding-bottom: 2mm;
}

div.sub_fld div#separator-h4
{
   height: 10px;
}

div.sub_fld h4
{
   margin-left: 6mm;
   font-size:80%;
   /* font-weight: bold; */
}

div#access_ana
{
   margin-top: 0px;
   margin-bottom: 4px;
   text-align: center;
}

