@charset "UTF-8";
@media all{

/*------------------------------------------------------------
align・・・文字の横位置
-------------------------------------------------------------*/

.al-c{ text-align: center; }/*中央寄せ*/
.al-r{ text-align: right; }/*右寄せ*/
.al-l{ text-align: left; }/*左寄せ*/


/*------------------------------------------------------------
valign・・・文字の縦位置
-------------------------------------------------------------*/

.vl-t{ vertical-align: top; }/*上寄せ*/
.vl-m{ vertical-align: middle; }/*中央寄せ*/
.vl-b{ vertical-align: bottom; }/*下寄せ*/


/*------------------------------------------------------------
float・・・ブロックの左右の回り込み＆clearfix
-------------------------------------------------------------*/

.fl-r{ float:right; margin-left: 20px; }/*右寄せ*/
.fl-l{ float:left; margin-right: 20px; }/*左寄せ*/
.fl-c{
	clear: both;
	margin-top: 20px;/*上に20pxのマージンをとる*/
}


/*「clearfix」でfloatを使った際のエリアが重なるバグを解除*/
.clearfix:after{
	visibility: hidden;
	display: block;
	content: ".";
	height: 0;
	clear: both;
}
.clearfix{ display: inline-block; }

* html .clearfix{ height: 1%; }
.clearfix{
	display: block;
}


/*------------------------------------------------------------
margin・・・周りのブロックからの距離
-------------------------------------------------------------*/

.m0{ margin: 0!important; }/*周りからのmarginを0にする*/
.m0-t{ margin-top: 0!important; }/*上からのmarginが0px*/
.m0-r{ margin-right: 0!important; }/*右からのmarginが0px*/
.m0-b{ margin-bottom: 0!important; }/*下からのmarginが0px*/
.m0-l{ margin-left: 0!important; }/*左からのmarginが0px*/

.m5{ margin: 5px!important; }/*周りからのmarginを5に*/
.m5-t{ margin-top: 5px!important; }/*上からのmarginを5pxに*/
.m5-r{ margin-right: 5px!important; }/*右からのmarginを5pxに*/
.m5-b{ margin-bottom: 5px!important; }/*下からのmarginを5pxに*/
.m5-l{ margin-left: 5px!important; }/*左からのmarginを5pxに*/

.m10{ margin: 10px!important; }
.m10-t{ margin-top: 10px!important; }
.m10-r{ margin-right: 10px!important; }
.m10-b{ margin-bottom: 10px!important; }
.m10-l{ margin-left: 10px!important; }

.m15{ margin: 15px!important; }
.m15-t{ margin-top: 15px!important; }
.m15-r{ margin-right: 15px!important; }
.m15-b{ margin-bottom: 15px!important; }
.m15-l{ margin-left: 15px!important; }

.m20{ margin: 20px!important; }
.m20-t{ margin-top: 20px!important; }
.m20-r{ margin-right: 20px!important; }
.m20-b{ margin-bottom: 20px!important; }
.m20-l{ margin-left: 20px!important; }

.m30{ margin: 30px!important; }
.m30-t{ margin-top: 30px!important; }
.m30-r{ margin-right: 30px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m30-l{ margin-left: 30px!important; }

.m40{ margin: 40px!important; }
.m40-t{ margin-top: 40px!important; }
.m40-r{ margin-right: 40px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m40-l{ margin-left: 40px!important; }

.m50{ margin: 50px!important; }
.m50-t{ margin-top: 50px!important; }
.m50-r{ margin-right: 50px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m50-l{ margin-left: 50px!important; }

.m60{ margin: 60px!important; }
.m60-t{ margin-top: 60px!important; }
.m60-r{ margin-right: 60px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m60-l{ margin-left: 60px!important; }


/*------------------------------------------------------------
padding・・・周りのブロックからの距離（padding）
-------------------------------------------------------------*/

.p0{ padding: 0!important; }
.p0-t{ padding-top: 0!important; }
.p0-r{ padding-right: 0!important; }
.p0-b{ padding-bottom: 0!important; }
.p0-l{ padding-left: 0!important; }

.p5{ padding: 5px!important; }
.p5-t{ padding-top: 5px!important; }
.p5-r{ padding-right: 5px!important; }
.p5-b{ padding-bottom: 5px!important; }
.p5-l{ padding-left: 5px!important; }

.p10{ padding: 10px!important; }
.p10-t{ padding-top: 10px!important; }
.p10-r{ padding-right: 10px!important; }
.p10-b{ padding-bottom: 10px!important; }
.p10-l{ padding-left: 10px!important; }

.p15{ padding: 15px!important; }
.p15-t{ padding-top: 15px!important; }
.p15-r{ padding-right: 15px!important; }
.p15-b{ padding-bottom: 15px!important; }
.p15-l{ padding-left: 15px!important; }

.p20{ padding: 20px!important; }
.p20-t{ padding-top: 20px!important; }
.p20-r{ padding-right: 20px!important; }
.p20-b{ padding-bottom: 20px!important; }
.p20-l{ padding-left: 20px!important; }

.p30{ padding: 30px!important; }
.p30-t{ padding-top: 30px!important; }
.p30-r{ padding-right: 30px!important; }
.p30-b{ padding-bottom: 30px!important; }
.p30-l{ padding-left: 30px!important; }

.p40{ padding: 40px!important; }
.p40-t{ padding-top: 40px!important; }
.p40-r{ padding-right: 40px!important; }
.p40-b{ padding-bottom: 40px!important; }
.p40-l{ padding-left: 40px!important; }

.p50{ padding: 50px!important; }
.p50-t{ padding-top: 50px!important; }
.p50-r{ padding-right: 50px!important; }
.p50-b{ padding-bottom: 50px!important; }
.p50-l{ padding-left: 50px!important; }

.p60{ padding: 60px!important; }
.p60-t{ padding-top: 60px!important; }
.p60-r{ padding-right: 60px!important; }
.p60-b{ padding-bottom: 60px!important; }
.p60-l{ padding-left: 60px!important; }


/*------------------------------------------------------------
font-size・・・フォントサイズの設定
※「em」は文字サイズ可変に対応。「pt」は文字サイズ固定
-------------------------------------------------------------*/

.b{ font-weight: bold!important; }
.normal{ font-weight: normal!important; }

.big{ font-size: 120%!important; }
.big2{ font-size: 150%!important; }
.big3{ font-size: 180%!important; }
.small{ font-size: 80%!important; }

.f08em{ font-size: 0.8em; }
.f09em{ font-size: 0.9em; }
.f10em{ font-size: 1.0em; }
.f11em{ font-size: 1.1em; }
.f12em{ font-size: 1.2em; }
.f13em{ font-size: 1.3em; }
.f14em{ font-size: 1.4em; }
.f15em{ font-size: 1.5em; }
.f16em{ font-size: 1.6em; }
.f17em{ font-size: 1.7em; }
.f18em{ font-size: 1.8em; }
.f19em{ font-size: 1.9em; }
.f20em{ font-size: 2.0em; }
.f21em{ font-size: 2.1em; }
.f22em{ font-size: 2.2em; }
.f23em{ font-size: 2.3em; }
.f24em{ font-size: 2.4em; }

.f8pt{ font-size: 8.5pt!important; }
.f9pt{ font-size: 9.0pt!important; }
.f10pt{ font-size: 10pt!important; }
.f11pt{ font-size: 11pt!important; }
.f12pt{ font-size: 12pt!important; }
.f13pt{ font-size: 13pt!important; }
.f14pt{ font-size: 14pt!important; }
.f15pt{ font-size: 15pt!important; }
.f16pt{ font-size: 16pt!important; }
.f17pt{ font-size: 17pt!important; }
.f18pt{ font-size: 18pt!important; }
.f19pt{ font-size: 19pt!important; }
.f20pt{ font-size: 20pt!important; }
.f21pt{ font-size: 21pt!important; }
.f22pt{ font-size: 22pt!important; }
.f23pt{ font-size: 23pt!important; }
.f24pt{ font-size: 24pt!important; }


/*------------------------------------------------------------
color・・・フォントカラーの設定
-------------------------------------------------------------*/

.red{ color: #ff0000!important; }/*赤*/
.blue{ color: #0000dd!important; }/*青*/
.green{ color: #008000!important; }/*緑*/
.yellow{ color: #ffff00!important; }/*黄*/
.navy{ color: #1F26A9!important; }/*紺*/
.orange{ color: #ff6600!important; }/*橙*/
.pink{ color: #cc6699!important; }/*ピンク*/
.purple{ color: #660099!important; }/*紫*/
.olive{ color: #808000!important; }/*黄土色*/
.lime{ color: #00ff00!important; }/*黄緑*/
.aqua{ color: #167FA6!important; }/*水色*/
.black{ color: #000!important; }/*黒*/
.gray{ color: #ccc!important; }/*灰*/
.white{ color: #fff!important; }/*白*/


/*------------------------------------------------------------
line-height・・・行間の設定
-------------------------------------------------------------*/

.lh10{ line-height: 1.0em!important; }
.lh11{ line-height: 1.1em!important; }
.lh12{ line-height: 1.2em!important; }
.lh13{ line-height: 1.3em!important; }
.lh14{ line-height: 1.4em!important; }
.lh15{ line-height: 1.5em!important; }
.lh16{ line-height: 1.6em!important; }
.lh17{ line-height: 1.7em!important; }
.lh18{ line-height: 1.8em!important; }
.lh19{ line-height: 1.9em!important; }
.lh20{ line-height: 2.0em!important; }



/*------------------------------------------------------------
ブラウザ固有のCSSをリセット
-------------------------------------------------------------*/

body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,p,blockquote,table,th,td{
	margin: 0;
	padding: 0;}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

address,caption,cite,code,dfn,h1,h2,h3,h4,th,var{
	font-style: normal;
	font-weight: normal;
}

fieldset,img,abbr{ border: 0; }
caption,th{ text-align: left; }
q:before,q:after{ content: ''; }
a{ text-decoration: none; }
img{
	border: none;
	vertical-align: bottom;
}



/*Firefox対策*/
html{ overflow-y: scroll; }
body,x:-moz-broken { margin-left:-1px; }


/*------------------------------------------------------------
2chねる用編集（PC用CSS）
-------------------------------------------------------------*/

.rr {font-size: 1.0em; font-weight: bold; color: #000000;} 
.r1 {font-size: 1.5em; font-weight: bold; color: #ff0000;}
.r2 {font-size: 1.0em; font-weight: bold; color: #0000ff;}
.r3 {font-size: 1.0em; font-weight: bold; color: #ff0000;}
.r4 {font-size: 1.2em; font-weight: bold; color: #0000ff;}
.aa {font-size: 12px; word-break: break-all; line-height: 1.1em; font-family: "ＭＳ Ｐゴシック","ＭＳ Ｐゴシック"}


/*------------------------------------------------------------
コメント返信機能
-------------------------------------------------------------*/
span.reply{
color: orange;
text-decoration: underline;
margin-left: 10px;
cursor:pointer;
}


/*------------------------------------------------------------
続きを読む
-------------------------------------------------------------*/

.readmore {
	text-align:center;
	margin: 5px; 
	font-weight:bold; 
	font-size:20pt;
	padding:9px 9px;
	line-height:1.5em;
	background-color: #fafafa;
	border:1px solid #999;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.readmore a {
	display:block;
}
.readmore:hover {
	text-decoration:none;
	padding:9px 9px;
	background:#FFFFCC;
	border:1px solid #DDD;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}



/*------------------------------------------------------------
設定開始
-------------------------------------------------------------*/



/*背景画像設定*/
body{
	margin: 0;
	background: url(http://www.news30over.com/css-images/back.jpg) #efefef center top repeat-x fixed;
	text-align: center;
}



/*文字設定*/
body,pre{
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 90%;
	line-height: 1.4em;
	color: #000000;
}


pre{
	font-size: 100%;
	white-space: pre-wrap;
	word-wrap: break-word;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	white-space: -moz-pre-wrap;
}


/*リンク色*/
a{ text-decoration: underline; }
a:link{ color: #0000FF; }
a:visited{ color: #0066ff; }
a:hover{ color: #0000FF; }


/*--------------------------------------------------------
2、hタグ
--------------------------------------------------------*/


h2,h2.p1{
	clear: both;
	padding: 0.2em 14px;
	border: 1px solid #333333;
	background-color: #ffcc66;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.4em;
	color: #000000;
}


h2 a,h2.p1 a{ text-decoration: underline; }
h2 a:link,h2.p1 a:link{ color: #0000FF; }
h2 a:visited,h2.p1 a:visited{ color: #0066ff; }
h2 a:hover,h2.p1 a:hover{ color: #0000FF; }


/*h2のパターン2*/
h2.p2{
	padding: 0.6em 40px;
	background-color: #ffcc66;
	font-size: 1.4em;
	color: #333;
}

/*h2のパターン3*/
h2.p3{
	background-color: #ffcc66;
}

/*h2のパターン4*/
h2.p4{
	border: 0;
	background-color: #ffcc66;
	color: #333;
}


h3{
	clear: both;
	border-left: 5px solid #ffd0a2;/*左枠線の色*/
	border-right: 5px solid #ffd0a2;/*左枠線の色*/
	background-color: #efefef;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5em;
	text-align: left;
	color: #333;
}


h4{
	clear: both;
	margin: 20px 5px 2.0em 5px; /*（上右下左）*/
	background-color: #efefef;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.0em;
	text-align: left;
	color: #333;
}



/*TOPページ記事タイトル*/
h5{
	clear: both;
	border-left: 5px solid #ffd0a2;/*左枠線の色*/
	margin: 20px 5px 2.0em 5px; /*（上右下左）*/
	padding: 10px;
	background-color: #efefef;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5em;
	text-align: left;
	color: #333;
}


/*個別記事コメント一覧*/
h6{
	clear: both;
	border-left: 5px solid #ffd0a2;/*左枠線の色*/
	margin: 20px 5px 2.0em 5px; /*（上右下左）*/
	padding: 10px;
	background-color: #efefef;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5em;
	text-align: left;
	color: #333;
}


#comment
{
	background-color:#f8fef0;
	margin:2px auto 5px;
	padding:2px 10px 10px 10px; 
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}



/*--------------------------------------------------------
3、サイト全体の配置＆横幅
--------------------------------------------------------*/

/*サイト全体をセンタリング*/
div#container{
	margin: 0 auto;
	text-align: left;
}

/*左右の枠線*/
div#header,
div#header-logo,
div#navi,
div#main{
	border-left: 1px solid #333;
	border-right: 1px solid #333;
}


/*■サイト全体の横幅*/
div#container,
div#header,
div#header-logo,
div#navi,
div#main{
	width: 980px;
	_width: 982px;/*IE6用（「全体」+「2px」）*/
}

/*■トップメニュー帯の横幅（「全体」-「16px」）*/
div#header #top-menu{ width: 964px; }


/*■サイドバーの横幅*/
div#sidebar{ width: 230px; }

div#sidebar .menu,
div#sidebar .contents{
	width: 208px;/*「サイドバー」-「22px」*/
	_width: 210px;/*IE6用（「サイドバー」-「20px」）*/
}

/*■本文の横幅*/
div#main-contents{
	width: 730px;/*「全体」-「サイドバー」-「20px」*/
	_width: 752px;/*IE6用（「全体」-「サイドバー」）*/
}



/*--------------------------------------------------------
4-1、エリアの設定「最上部ヘッダー帯」
--------------------------------------------------------*/

div#header{
	height: 30px;
}


div#header #top-menu{
	position: absolute;
	top: 5px;
	text-align: right;
}

div#header #top-menu li{
	display: inline;
	font-size: 8.5pt;
	line-height: 14pt;
}


/*リンク色*/
div#header #top-menu li{ color: #0000FF; }
div#header #top-menu li a:link{ color: #0000FF; }
div#header #top-menu li a:visited{ color: #0066ff; }
div#header #top-menu li a:hover{ color: #0000FF; }




/*--------------------------------------------------------
4-2、エリアの設定「ヘッダーロゴ」
--------------------------------------------------------*/

div#header-logo{
	z-index: 1;
	position: absolute;
	top: 50px;
	height: 150px;/*■ロゴの高さ*/
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
background-image: url(http://www.news30over.com/css-images/back.jpg);  

	text-align: left;
}


/*ロゴテキスト*/
p#logo-text{
	position: absolute;
	top: 40px;/*■縦位置*/
	left: 18px;
	font-size: 25pt;
	font-weight: bold;
	line-height: 1.1em;
	letter-spacing: -0.5pt;
}

/*サブテキスト*/
p#sub-text{
	position: absolute;
	top: 100px;/*■縦位置*/
	left: 18px;
	font-size: 10pt;
	font-weight: bold;
	line-height: 12pt;
	letter-spacing: -0.5pt;
}

/*ロゴテキスト＆サブテキストの文字色＆リンク文字色*/
p#logo-text,
p#sub-text{ color: #333; }
p#logo-text a{ text-decoration: none; }
p#logo-text a:link{ color: #0000FF; }
p#logo-text a:visited{ color: #0066ff; }
p#logo-text a:hover{ color: #0000FF; }



/*ヘッダー右側文章*/
div#header-text{
	position: absolute;
	top: 2px;/*■縦位置*/
	right: 10px;
	width: 450px;
	font-size: 12pt;
	line-height: 16pt;
	text-align: center;
	color: #fff;
}


div#header-text li{
	float: left;
	display: block;
	list-style-type: none;
	padding: 5px;
	width: 100px;
	_width: 108px;
	font-size: 10pt;
	font-weight: bold;
}

div#header-text li a{
	display: block;
	text-decoration: none;
	width: 100px;
}


/*グローバルメニュー*/
div#header-text{ background: #ffcc66; }

/*グローバルメニュー　ハイライト*/
div#header-text li a:hover{ background: #fff5ee; }

/*グローバルメニュー*/
div#header-text li{
	border-left: 1px solid #666;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	border-top: 1px solid #666;
}

/*グローバルメニュー*/
div#header-text li a{ color: #000; }
div#header-text li a:link{ color: #000; }
div#header-text li a:visited{ color: #000; }
div#header-text li a:hover{ color: #0066ff; }









/*--------------------------------------------------------
■グローバルメニューの設定
--------------------------------------------------------*/

/*サイズ設定　その4*/
div#global-menu{
	float: left;
	position: absolute;
	top: 203px;
	padding: 0;
	width: 982px;
	text-align: center;
}


div#global-menu li{
	float: left;
	display: block;
	list-style-type: none;
	padding: 5px;
	width: 110px;
	_width: 118px;
	font-size: 10pt;
	font-weight: bold;
}

div#global-menu li a{
	display: block;
	text-decoration: none;
	width: 110px;
}


/*グローバルメニュー*/
div#global-menu{ background: #ffcc66; }

/*グローバルメニュー　ハイライト*/
div#global-menu li a:hover{ background: #fff5ee; }



/*グローバルメニュー*/
div#global-menu li{
	border-left: 1px solid #666;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	border-top: 1px solid #666;
}

/*グローバルメニュー*/
div#global-menu li a{ color: #000; }
div#global-menu li a:link{ color: #000; }
div#global-menu li a:visited{ color: #000; }
div#global-menu li a:hover{ color: #0066ff; }






/*--------------------------------------------------------
4-3、エリアの設定「パン屑ナビ」
--------------------------------------------------------*/

div#navi{
	position: absolute;
	top: 235px;/*■縦位置*/
	height: 34px;
	background: #efefef;
}

div#navi p{
	margin: 9px 0 0 16px;
	font-size: 8.5pt;
	line-height: 14pt;
}


/*--------------------------------------------------------
4-4、エリアの設定「コンテンツ全体」
--------------------------------------------------------*/

div#main{
	position: absolute;
	top: 268px;/*■縦位置*/
	overflow: hidden;
	background: #efefef;
	text-align: left;
}



/*--------------------------------------------------------
4-5、エリアの設定「サイドバー」
--------------------------------------------------------*/

div#sidebar{
	display: inline;
	float: left;
	overflow: hidden;
}


/*サイドバー内のPタグ*/
div#sidebar p{
	margin: 5px;
	font-size: 12px;
}


/*サイドバーの枠線＆マージン*/
div#sidebar .menu,
div#sidebar .contents{
	margin: 0 0 5px 5px;
	border: 1px solid #333333;
	background-color: #efefef;
}


/*サイドバーのタイトル帯の背景色*/
div#sidebar .title{
	background-color: #ffcc66;
}

/*サイドバーのタイトル帯の文字色*/
div#sidebar .title p{
	margin: 0 10px;
	padding: 5px 0;
	font-weight: bold;
	color: #fff;
}

div#sidebar .title p a{ text-decoration: none; }
div#sidebar .title p a:link{ color: #fff; }
div#sidebar .title p a:visited{ color: #fff; }
div#sidebar .title p a:hover{ color: #990000; }

div#sidebar .title p img{
	vertical-align: middle!important;
}


/*親メニューリスト*/
div#sidebar ul{ margin: 5px 15px; }
div#sidebar li{
	list-style-type: none;
	list-style-position: outside;
	margin: 15px 0;
	padding-left: 16px;
	background: url(http://www.news30over.com/css-images/icon.gif) 0 3px no-repeat;
	font-size: 80%;
	font-weight: bold;
}

/*子メニューリスト*/
div#sidebar ul.sub{ margin: 10px 0 20px 0; }
div#sidebar ul.sub li{
	margin: 10px 0;
	background: url(http://www.news30over.com/css-images/icon.gif) 0 3px no-repeat;
	font-size: 90%;
	font-weight: normal;
}




/**********************************
*** Side   ライブドアプラグイン用            ***
**********************************/
/*//   CmnSide   //*/
div.sidetitlebody{}
div.sidetitlebody div.sidetitle{
	color:#000000;
	border-top:6px solid #ffd0a2;
	padding:7px 5px 0;
	line-height:100%;
	text-align:left;
	font-size:12px;
	font-weight:bold;
}
div.sidetitlebody div.sidetitle a{
	color:#0000FF;
}
div.sidetop{}
div.side{
	margin-bottom:25px;
	padding:10px 0 0;
	text-align:center;
	line-height:135%;
	font-size:12px;
}
div.side a:visited{
	color:#0066ff;
}


div.sidebody{
	background:url(http://www.news30over.com/css-images/icon.gif) 0 3px no-repeat;
	line-height:18px;
	margin: 15px 10px;
	padding-left: 16px;
	text-align:left;
}
div.sidebottom{}




/*--------------------------------------------------------
4-6、エリア設定「本文」
--------------------------------------------------------*/

div#main-contents{
	display: inline;
	float: right;
	overflow: hidden;
	padding: 0 10px;
}



div#main-contents pre{
	padding: 0 5px;
	font-size: 10pt;
	line-height: 10pt;
	background: #aaaaaa;
}


/*本文内のPタグ*/
div#main-contents p{
	margin-bottom: 1.2em;
	padding: 0;
}


/*本文内の線*/
div#main-contents hr{
clear: both;
margin: 0.5em 0 0.5em;
_margin: 0 0 0.5em;
padding: 0px;
color: #ffcc66;
height: 1px; /* 線の太さ */
border: 1px; /* 枠の太さ */
border-style: dashed; /* 枠の種類 */
}



*:first-child+html div#main-contents hr{ margin: 0 0 1.2em; }


/*コンテンツエリア*/
div#main-contents .contents{
	clear: both;
	overflow: auto;
	margin: 0;
	padding: 0px 20px 1.4em 20px;
}


/*コンテンツエリア2（インデント10px）*/
div#main-contents .contents2{
	clear: both;
	overflow: auto;
	margin: 0;
	padding: 0px 30px 1.4em 30px;
}




/*本文内のリストタグ--------------------------*/



/*アマゾン--------------------------*/

table.amazon_rank{
    width:700px;
    text-align: center;
    font-size:12px;
    line-height:1.3em;
}

table.amazon_rank tr{
    vertical-align : top;
    text-align: center;
}

.amazon_rank_title{
    background-color: #B3D999;
    border-bottom: 2px solid #8CB3C0;
    color: #4C6B73;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    padding: 5px 5px 2px;
}

.amazon_rank_title_1{
    width:150px;
}
.amazon_rank_title_2{

}
.amazon_rank_title_3{
    width:150px;
}
.amazon_rank_title_4{
    width:150px;
}

tr.amazon_rank_category{
    background-color: #BDD7DE;
    border-bottom: 2px solid #8CB3C0;
    color: #4C6B73;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    padding: 5px 5px 2px;
}

.amazon_img{
    max-width: 150px;
    max-height: 180px;
    width:expression(document.body.clientWidth < 150? "150px" : "auto");
}

td.adjustment {
    height: 230px;
    vertical-align: middle;
}

table.amazon_rank a{
    text-decoration:none;
    color:#d2691e;
}

table.amazon_rank a:hover{
    background-color: #dcf0c2;
}

/*アマゾン--------------------------*/



/*最新情報のリストタグ--------------------------*/
div#main-contents ul.topics{
	list-style-type: none;
	list-style-position: outside;
	padding: 15px 15px 0 15px;
	border: 1px solid #999;
}

div#main-contents ul.topics li{
	margin-bottom: 1.2em;
	padding-bottom: 1.2em;
	border-bottom: 1px dotted #999;
	line-height: 1.4em!important;
}


/*チェックリスト用のリストタグ--------------------*/
div#main-contents ul.checklist{
	list-style-type: none;
	list-style-position: outside;
	padding: 15px;
	border: 1px solid #999;
}

div#main-contents ul.checklist li{
	padding-left: 24px;
	background: url(../images/icon/icon-check02-blue.gif) no-repeat 0 8px;
	line-height: 2.5em;
}


/*----------------
2ch用編集2
-------------------*/

div#main-contents dl{
	margin-bottom: 1.5em;
	padding: 0;
	border: 0px solid #777;
	border-top: none;
	background: #;
}

div#main-contents dt{
	margin: 0;
	padding: 0.2em;
	border-top: 0px solid #777;
	border-bottom: 0px solid #777;
	color: #;
}


/*-レス本文行間　文字幅-*/
div#main-contents dd{
	padding-top: 10px;
	line-height: 40px;
	background: #efefef;
}



/*引用エリア-----------------------------------*/
div#main-contents q,
div#main-contents blockquote{
	overflow: auto;
	margin: 0 10px 1.4em 10px;
	padding: 10px;
	border-top: 3px solid #ddd;
	border-bottom: 3px solid #ddd;
	background: #eee;
	color: #444;
}


/*戻る＆進むリンク--------------------------*/
.link-back,
.link-next{
	margin-top: 1.2em;
	font-size: 120%;
	font-weight: bold;
}

.link-back{ text-align: left; }
.link-next{ text-align: right; }

.link-next a,
.link-back a{
	padding-left: 15px;
}

/*矢印画像*/
.link-next a{ background: url(../images/icon/icon-menu01-r-black.gif) 0 3px no-repeat; }
.link-back a{ background: url(../images/icon/icon-menu01-l-black.gif) 0 3px no-repeat; }



/*サイドバーのメニュー設定をメインでも使用--------------*/
div#main-contents .menu{
	margin: 0;
	border: 1px solid #7070ba;
}

div#main-contents .menu .title{ background: url(../images/bg-sub/bg-sub-blue.jpg) left center; }
div#main-contents .menu .title p{
	margin: 0 10px;
	padding: 5px 0;
	font-weight: bold;
	color: #fff;
}

div#main-contents .menu ul,
div#main-contents .menu ol{
	margin: 5px 10px;
}

div#main-contents .menu ol{ padding-left: 15px!important; }

div#main-contents .menu li{
	list-style-position: outside;
	margin: 15px!important;
	line-height: 1.2em;
}

/*ランキングリスト*/
div#main-contents ul.ranking li{
	list-style-type: none;
	margin-bottom: 10px!important;
	padding-bottom: 10px;
	border-bottom: 1px dotted #7070ba;
	background: none;
	font-weight: normal;
}

div#main-contents ul.ranking li.end{ border: none; }
div#main-contents ul.ranking p{	margin: 10px 0; }


/*表のデザイン----------------------------------------------*/
table{
	margin: 10px 0;
	font-size: 90%;
}

th,td{
	padding: 0.8em;
	border: 1px solid #333;
	vertical-align: top;
}

th{
	width: 28%;
	font-weight: bold;
}


/*タグ----------------------------------------------*/
ul.tag li{
	display: inline;
	margin-right: 15px;
}



/*--------------------------------------------------------
4-7、エリア設定「フッター」
--------------------------------------------------------*/

div#footer{
	clear: both;
	width: 100%;
	background: #ffffcc;
	text-align: center;
}

div#footer hr{
	clear: both;
	margin: 0;
	padding: 0;
	color: #333;
}

div#footer .menu{ margin: 0.5em 0; }

div#footer .menu li{
	display: inline;
	margin: 0 1.0em;
	font-size: 15px;
line-height:2.0em;
}

div#footer #copyright{
	clear: both;
	width: 100%;
	margin-top: 1.0em;
	padding: 1.0em 0;
	font-size: 10pt;
	font-weight: bold;
	line-height: 14pt;
	color: #333333;
}

div#footer #copyright a{ text-decoration: none; }
div#footer #copyright a:link{ text-decoration: none; color: #0000FF; }
div#footer #copyright a:visited{ text-decoration: none; color: #0066ff; }
div#footer #copyright a:hover{ text-decoration: none; color: #0000FF; }

div#footer address{ margin: 15px 0; }



}

/** ---------- Google AdSense ---------- **/
.google-user-ad { margin:10px; } 
.google-user-ad-top { margin:0px -0px 15px -0px; } 
.ad-center { text-align:center; }
.ad-type-side { margin:10px 0; }

.ad-outer { margin:0 auto; padding:0; }
.ad-by { text-align:left; margin-bottom:4px; font-size:11px; }
.ad-box { text-align:left; }
.ad-box a{ display:block; margin:0 8px 0 0!important; padding:6px 8px!important; overflow:hidden; }
.ad-box a:hover { padding:4px 6px!important; }
.ad-box a span.ad-url { margin-left:10px; }
/* for IE6-7 */
* html .ad-outer .ad-box a{ height:1%; }
*+html .ad-outer .ad-box a{ height:1%; }

.ad-by a, .ad-by a:hover { color:#000000 !important; font-weight:bold !important; }
.ad-box a, .ad-box a:hover { text-decoration:none; }
.ad-box a span.ad-title { font-size:15px; color:#0000ff; font-weight:bold; text-decoration:underline; line-height:150%; }
.ad-box a:hover span.ad-title { text-decoration:none; }
.ad-box a span.ad-url,
.ad-box a:hover span.ad-url { font-size:11px; color:#008000; line-height:150%; }
.ad-box a span.ad-description,
.ad-box a:hover span.ad-description { display:block; font-size:12px; color:#000000; line-height:150%; }
.ad-box a:hover{
	background:#ffffbb;
	border:2px solid #ffffbb;
	-moz-border-radius:5px; /* for fx */
	-webkit-border-radius:5px; /* for safari */
}

/* link */
.ad-box-ncb {
	text-align:left;
	padding:6px 8px;
	display:block;
	line-height:1.5;
}
.ad-box-ncb:hover {
	padding:4px 6px;
	background:#ffffbb;
	border:2px solid #ffffbb;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
/* title */
.ad-box-ncb span.ad-title a { font-size:15px; color:#0000ff !important; font-weight:bold; text-decoration:underline; }
.ad-box-ncb span.ad-title a:hover { text-decoration:none; }
/* url */
.ad-box-ncb span.ad-url a { font-size:12px; color:#008000 !important; margin-left:10px; }
.ad-box-ncb span.ad-url a:hover  { text-decoration:underline; }
/* description */
.ad-box-ncb span.ad-description { font-size:13px; color:#000000 !important; display:block; }



/** ---------- BlogRoll特選 ---------- **/
div.blogroll {
	padding: 0 10px 10px;
	overflow: hidden;
	zoom: 1;
}
div.blogroll div.blograll-item {
	float: left;
	display: inline;
	width: 710px;
	margin: 0 1px;
}
h2.blogroll-title {
	border: 0;
	background-color: #ffcc66;
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 5px 0;
}
div.blogroll-channel {
	height: 200px;
	overflow: auto;
	padding: 3px 5px;
}

li.blogroll-list {
	font-size: 12px;
}
li.blogroll-list:before {
	font-size:10px;
	color:#00FA9A;
	content:"■";
}


/** ---------- BlogRoll 右左---------- **/
div.blogroll2 {
	padding: 0 10px 10px;
	overflow: hidden;
	zoom: 1;
}

div.topleft{
float: left;
width: 49.5%;
}

div.topright{
float: right;
width: 49.5%;
}


h2.blogroll-title2 {
	border: 0;
	background-color: #ffcc66;
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 5px 0;
}

div.blogroll-channel2 {
	height: 200px;
	overflow: auto;
	padding: 3px 5px;
}

li.blogroll-list2 {
	font-size: 12px;
}
li.blogroll-list:before2 {
	font-size:10px;
	color:#ffc;
	content:"■";
}




/** ---------- BlogRoll 芸能---------- **/
div.blogroll3 {
	padding: 0 10px 10px;
	overflow: hidden;
	zoom: 1;
}

div.blogroll3 div.blograll-item3 {
	float: left;
	display: inline;
	width: 700px;
	margin: 0 1px;


h2.blogroll-title3 {
	border: 0;
	background-color: #ffcc66;
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 5px 0;
}

div.blogroll-channel3 {
	height: 150px;
	overflow: auto;
	padding: 3px 5px;
}

li.blogroll-list3 {
	font-size: 12px;
}
li.blogroll-list:before3 {
	font-size:10px;
	color:#ffc;
	content:"■";
}
