@charset "UTF-8";
/* ====================================================
 *     ブラウザのデフォルトのスタイルをリセット
 * ==================================================== */
/* 構造要素とブロックレベル要素 */
html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
	margin: 0;
	padding: 0;
	font-size:100%;
}
/* 文字の自動調整の無効化 */
body {
	-webkit-text-side-adjust:none;
}
/* HTML5の新要素をプロックレベルへ。 */
section, nav, article, aside, hgroup, header, footer, figure, figcaption, summary {
	display: block;
	margin: 0;
	padding: 0;
	font-size:100%;
}
/* テーブルセルのボーダーの設定 */
table {
	border-collapse: collapse;
	border-spacing: 0;
	border-padding: 0;
	empty-cells:show;
}
/* 画像のリンクボーダーを非表示に */ 
img {
	border: 0;
}
/* リストスタイルの無効化 */
ul, ol {
	list-style: none;
}
/* 画像とフォームパーツの上下位置をテキストの真ん中に */
img, input, select, textarea {
	vertical-align: middle;
}
/* ====================================================
 *     共通設定(全css基本設定)
 * ==================================================== */
/* 共通 フォントサイズ*/
.font_8 {
	font-size:8px;
}
.font_10 {
	font-size:10px;
}
.font_12 {
	font-size:12px;
}
.font_14 {
	font-size:14px;
}
.font_16 {
	font-size:16px;
}
.font_18 {
	font-size:18px;
}
.font_20 {
	font-size:20px;
}
.font_24 {
	font-size:24px;
}
.font_26 {
	font-size:26px;
}
/* 共通マージン*/
.margin_2 {
	margin:2px;
}
.margin_top2 {
	margin-top:2px;
}
.margin_bottom2 {
	margin-bottom:2px;
}
.margin_right2 {
	margin-right:2px;
}
.margin_left2 {
	margin-left:2px;
}
.margin_5 {
	margin:5px;
}
.margin_top5 {
	margin-top:5px;
}
.margin_bottom5 {
	margin-bottom:5px;
}
.margin_right5 {
	margin-right:5px;
}
.margin_left5 {
	margin-left:5px;
}
.margin_10 {
	margin:10px;
}
.margin_top10 {
	margin-top:10px;
}
.margin_bottom10 {
	margin-bottom:10px;
}
.margin_right10 {
	margin-right:10px;
}
.margin_left10 {
	margin-left:10px;
}
.margin_15 {
	margin:15px;
}
.margin_40 {
	margin:40px;
}
.margin_top15 {
	margin-top:15px;
}
.margin_bottom15 {
	margin-bottom:15px;
}
.margin_right15 {
	margin-right:15px;
}
.margin_left15 {
	margin-left:15px;
}
.padding2 {
	padding:2px;
}
.padding_top2 {
	padding-top:2px;
}
.padding_bottom2 {
	padding-bottom:2px;
}
.padding_right2 {
	padding-right:2px;
}
.padding_left2 {
	padding-left:2px;
}
.padding5 {
	padding:5px;
}
.padding_top5 {
	padding-top:5px;
}
.padding_bottom5 {
	padding-bottom:5px;
}
.padding_right5 {
	padding-right:5px;
}
.padding_left5 {
	padding-left:5px;
}
.padding10 {
	padding:10px;
}
.padding_top10 {
	padding-top:10px;
}
.padding_bottom10 {
	padding-bottom:10px;
}
.padding_right10 {
	padding-right:10px;
}
.padding_left10 {
	padding-left:10px;
}
.padding15 {
	padding:15px;
}
.padding_top15 {
	padding-top:15px;
}
.padding_bottom15 {
	padding-bottom:15px;
}
.padding_right15 {
	padding-right:15px;
}
.padding_left15 {
	padding-left:15px;
}
/* 上寄せ*/
.v-top {
	vertical-align:top;
}
/* 中心*/
.v-center {
	vertical-align:center;
}
/* ｾﾝﾀﾘﾝｸﾞ*/
.h-center {
	text-align:center;
}
/* 左*/
.h-left {
	text-align:left;
}
/* 右*/
.h-right {
	text-align:right;
}
/* 回り込み左*/
.float_left{	
	float:left;
}
.float_right{	
	float:left;
}

/* 回り込みクリア*/
div.clear{
	clear:both;
	height:0px;
}

div.clear hr{
	visibility:hidden;
}
/* 色設定*/
.color_rd {
	color:#FF0033;/* 赤 */
}
.color_or {
	color:#F60;/* オレンジ */
}
.color_bk {
	color:#000;/* 黒 */
}
.color_w {
	color:#FFF;/* しろ */
}
.color_g{
	color:#009900;/* 緑 */
}
.color_bl{
	color:#0066FF;/* 青 */
}
/*角丸設定*/
.radius_top {
	border-radius: 5px 5px 0 0;
}
.radius_bottom {
	border-radius: 0 0 5px 5px;
}
.radius_all {
	border-radius: 5px;
}
.radius_all8 {
	border-radius: 8px;
}
.radius_all10 {
	border-radius: 20px;
}
.text-shadow1{
	text-shadow:0 1px 0 #ccc;
}
.text-shadow2{
	text-shadow:0 2px 0 #ccc;
}
/* ====================================================
 *     サイト全体の基本スタイル
 *	   背景色、文字色、リンク色はカラーセット設定で変化
 * ==================================================== */
 
 /* bodyの文字サイズ、インデント、カラー */
body {
	font-size:1em;
	line-height:1.4;
	font-weight:normal;
	font-family:sans-serif;
	color:#333;
	background-color:#FFF;
}

 /* リンクカラー自動出力(カラーセット) */
a{
	text-decoration: none;
	color:#0066FF;
}
a:hover{
	/*text-decoration: underline; 固定 */
	color:#0066FF;
}

.link_u a{
	text-decoration:underline;
}

/*----------------------------------*/
/*			ボタン枠の共通化		*/
/*----------------------------------*/
/*枠*/
a.block{
	display:block;	
}
.common_btn a{
	border-radius: 10px;
	border-top:3px solid #FFF;
	border-left:3px solid #FFF;
	border-bottom:3px solid #FFF;
	border-right:3px solid #FFF;
	box-shadow:1px 1px 3px #666;
	-webkit-box-shadow:1px 1px 3px #999;
}
.common_btn a:hover{
	-webkit-box-shadow:1px 1px 3px #999;	
}

/*青*/
.blue_btn a{
	background: -webkit-gradient(linear,center top, center bottom, from(#0CF), to(#09C));
	color:#FFF;
}

.blue_btn a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#09C), to(#0CF));
	color:#FFF;
}
/*濃い青*/
.blue_btn2 a{
	background: -webkit-gradient(linear,center top, center bottom, from(#0CF), to(#03C));
	color:#FFF;
}

.blue_btn2 a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#03C), to(#0CF));
	color:#FFF;
}

/*やや濃い青*/
.bl_btn a{
	background: -webkit-gradient(linear, center top, center bottom, from(#9CF), to(#06F));
	color:#FFF;
}

.bl_btn a:hover{
	background: -webkit-gradient(linear, center top, center bottom, from(#06F), to(#9CF));
	color:#FFF;

}

/*灰色*/
.gray_btn a{
	background: -webkit-gradient(linear,center top, center bottom, from(#EFEFEF), to(#CCC));
	color:#333;
}

.gray_btn a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#CCC), to(#EFEFEF));
	color:#333;
}

/*薄黄色*/
.py_btn a{
	background: -webkit-gradient(linear,center top, center bottom, from(#FFC), to(#FF9));
	color:#333;
}

.py_btn a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#FFC), to(#FF9));
	color:#333;
}

/*オレンジ*/
.or_btn a{
	background: -webkit-gradient(linear,center top, center bottom, from(#FC0), color-stop(0.5, #F90), to(#F90));
	color:#FFF;
}
.or_btn a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#F90), color-stop(0.5, #FC0), to(#FC0));
	color:#FFF;
}

/*濃いオレンジ*/
.or_btn2 a{
	background: -webkit-gradient(linear,center top, center bottom, from(#FC0), to(#F60));
	color:#000;
}

.or_btn2 a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#FC0), to(#F60));
	color:#000;
}


/*緑*/
.green_btn a{
	background: -webkit-gradient(linear,center top, center bottom, from(#8EEE29), to(#3DCE04));
	color:#FFF;
}
.green_btn a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#3DCE04), to(#8EEE29));
	color:#FFF;
}

/*濃い緑*/
.green_btn2 a{
	background: -webkit-gradient(linear,center top, center bottom, from(#0F0), to(#339900));
	color:#FFF;
}
.green_btn2 a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#339900), to(#0F0));
	color:#FFF;
}



/*濃い赤*/
.rd_btn a{
	background: -webkit-gradient(linear, center top, center bottom, from(#F06877), to(#E2061E));
	color:#FFF;
}
.rd_btn a:hover{
	background: -webkit-gradient(linear, center top, center bottom, from(#E2061E), to(#F06877));
	color:#FFF;
}

/*ピンク赤*/
.rd_btn2 a{
	background: -webkit-gradient(linear, center top, center bottom, from(#FFB3BC), to(#FF3668));
	color:#FFF;
}
.rd_btn2 a:hover{
	background: -webkit-gradient(linear, center top, center bottom, from(#FF3668), to(#FFB3BC));
	color:#FFF;
}

/*ピンク*/
.pk_btn a{
	background: -webkit-gradient(linear, center top, center bottom, from(#FC92E8), to(#F01D9C));
	color:#FFF;
}

.pk_btn a:hover{
	background: -webkit-gradient(linear, center top, center bottom, from(#F01D9C), to(#FC92E8));
	color:#FFF;

}

/*2列ボタン赤*/
.rd_btn0 a{
	background: -webkit-gradient(linear,center top, center bottom, from(#FE6464), to(#A90404));
	color:#FFF;
}

.rd_btn0 a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#A90404), to(#FE6464));
}

.gry_btn0 a{
	background: -webkit-gradient(linear,center top, center bottom, from(#AAA), to(#888));
	color:#FFF;
}

.gry_btn0 a:hover{
		background: -webkit-gradient(linear,center top, center bottom, from(#888), to(#AAA));
}




/*ボタンサイズ*/
.c_btn5_10 a{
	padding:5px 10px;
}
.c_btn5_18 a{
	padding:5px 18px;
}
.c_btn5_40 a{
	padding:5px 40px;
}
.c_btn8_10 a{
	padding:8px 10px;
}
.c_btn8_15 a{
	padding:8px 15px;
}
.c_btn10_5 a{
	padding:10px 5px;
}

.c_btn10_18 a{
	padding:10px 18px;
}

/*ボールド*/
.w_b{
	font-weight:bold;
}

/*----------------------------------*/
/*			タイトル背景			*/
/*----------------------------------*/
.blue_title_back{
	border-top:2px solid #0380CE;
	border-bottom:2px solid #0380CE;
	margin:0px;
	padding:5px;
	/*background: -webkit-gradient(linear,center top, center bottom, from(#09D9DA), color-stop(0.5, #09D9DA), color-stop(0.51, #0380CE), to(#28CCED));*/
	background: -webkit-gradient(linear,center top, center bottom, from(#038DE0), to(#09D9DA));		
}

.green_title_back{
	border-bottom:2px solid #33B103;
	border-top:2px solid #119900;
	margin:0px;
	padding:5px;
	background: -webkit-gradient(linear,center top, center bottom, from(#33B103), to(#8EEE29));
}

.orange_title_back{
	border-bottom:2px solid #FF9900;
	border-top:2px solid #FF7700;
	margin:0px;
	padding:5px;
	background:-webkit-gradient(linear,left top,left bottom,from(#FF9700),to(#FFCC00));
}

.gray_title_back{
	border-bottom:2px solid #999;
	border-top:2px solid #999;
	margin:0px;
	padding:5px;
	background:-webkit-gradient(linear,left top,left bottom,from(#9E9E9E),to(#BEBEBE));
}

.gray_title_back2{
	border-top:2px solid #CCC;
	border-bottom:2px solid #CCC;
	margin:0px;
	padding:5px;
	color:#333;
	font-size:0.8em;
	background: -webkit-gradient(linear,center top, center bottom, from(#EEE), color-stop(0.5, #EFEFEF), color-stop(0.51, #CCC), to(#EFEFEF));		line-height:1;
}

.po_title_back{
	margin:0px;
	padding:10px 5px;
	background:-webkit-gradient(linear,left top,left bottom,from(#DFDFDF),to(#FFF));
	font-size:18px;
}

.ye_title_back{
	margin:0px;
	padding:10px 5px;
	background:-webkit-gradient(linear,left top,left bottom,from(#FC0),to(#FFF));
	font-size:16px;
}

/*ＭＹ本棚と検索タイトル部分*/
.my_shelf_box p,
.search_title_box p,
.other_title_box p,
.change_design p,
.point_note p,
.related_word_title p{
	line-height:1;
	color:#FFF;
	font-weight:bold;
	/*text-shadow:1px 1px 2px #0267A4;*/
}

.change_design p,
.my_shelf_box p,
.point_note p{
	color:#333;
}
/* ====================================================
 *     
 *	   ヘッダ
 *
 * ==================================================== */

#header{
	background: -webkit-gradient(linear,center top, center bottom, from(#FC0), color-stop(0.5, #FC0), color-stop(0.51, #F90), to(#FC0));	
}

#header .sitelogo{
	margin:3px;
	float:left;
}

#header .sitebt{
	position:relative;
}

#header .sitebt a{
	position:absolute;
	top:1px;
	width:53px;
	height:42px;
	background: -webkit-gradient(linear,center top, center bottom, from(#FFF),to(#FF9));
	border:1px solid #CCC;
	border-radius:5px;
	text-align:center;
}

#header .sitebt a.sitebt_shelf{
	right:2px;
}

#header .sitebt a.sitebt_pt{
	right:58px;
}
#header .sitebt a.sitebt_shelf img,
#header .sitebt a.sitebt_pt img{
	margin-top:4px;
}

#header .sitebt a:hover{
	background: -webkit-gradient(linear,center top, center bottom, from(#FF9),to(#FFF));

}

/*-----------------------------------------------
	ページTOP
-----------------------------------------------*/
/*TOPへ*/
.pagetop2{
	text-align:right;
	padding:5px 0px 15px 0px;
}

.pagetop2 a,
.pagetop2 a:hover{
	text-align:center;
	background-color:#333;
	border-radius:10px 0px 0px 10px;
	padding:5px 5px 5px 15px;
	font-size:0.8em;
	font-weight:bold;
	color:#FFF;
	margin:0px 0px 0px 10px;
}
/*-----------------------------------------------
	ranking
-----------------------------------------------*/
.ranking_box{
	margin: 23px 0 10px 0;
	text-align:center;
}

/*タブ部分*/
.ranking_box ul{
	padding:0;
	margin: 0 auto;
  	display: block;
}
.ranking_box li{
	display:inline;
	width:33%;
	text-align:center;
	font-weight:bold;
	line-height:2.0em;
	font-size:0.8em;
}

.ranking_box li:last-child {
	width:34%;
	
}

.ranking_box li a{
	background:-webkit-gradient(linear,left top,left bottom,from(#CCC),to(#999));
	color:#FFF;
	font-size:0.8em;
	border-radius: 8px 8px 0 0;
	border-top:2px solid #CCC;
	border-left:2px solid #CCC;
	border-right:2px solid #999;
	padding:15px 0 8px 0;
}

.ranking_box li a:hover{
	background:-webkit-gradient(linear,left top,left bottom,from(#999),to(#CCC));
	color:#FFF;
	font-size:0.8em;
	border-radius: 8px 8px 0 0;
	border-top:2px solid #CCC;
	border-left:2px solid #CCC;
	border-right:2px solid #999;
}

.ranking_box li img{
	margin-top:-13px;
}

.ranking_box li.tab_selected img{
	margin-top:-20px;
}

.ranking_box li.tab_selected a,
.ranking_box li.tab_selected a:hover{
	padding:23px 0 8px 0;
	background:-webkit-gradient(linear,left top,left bottom,from(#FF6800),to(#FF9700));
	border-top:2px solid #F90;
	border-left:2px solid #F90;
	border-right:2px solid #F90;
}

.ranking_box li.tab_selected a.tab_ranking_ladys,
.ranking_box li.tab_selected a:hover.tab_ranking_ladys{
	background: -webkit-gradient(linear, center top, center bottom, from(#F69), to(#FFA2D0));
	border-top:2px solid #F69;
	border-left:2px solid #F69;
	border-right:2px solid #F69;
}


.ranking_box li.tab_selected a.tab_ranking_boys,
.ranking_box li.tab_selected a:hover.tab_ranking_boys{
	background: -webkit-gradient(linear, center top, center bottom, from(#09F), to(#7BF));
	border-top:2px solid #09F;
	border-left:2px solid #09F;
	border-right:2px solid #09F;
}


/* 総合、女性、男性ランキングタイトル */
.ranking_comic_box { 
	text-align: center;
}
.ranking_comic,
.ranking_comic_w,
.ranking_comic_m{
	margin:0 0 10px 0;
	border-top:2px solid #CCC;
	border-bottom:2px solid #CCC;
	padding:10px 0;
	background: -webkit-gradient(linear, center top, center bottom, from(#FFFFCC), to(#FFFFCC));
}

.ranking_comic_w{
	background: -webkit-gradient(linear, center top, center bottom, from(#FCF), to(#FCF));
}

.ranking_comic_m{
	background: -webkit-gradient(linear, center top, center bottom, from(#9CF), to(#9CF));
}		

/* ランキング */
.ranking_comic_box div{
	width: 294px;
	margin: 0 auto;
	
}


.ranking_comic_box .rank_01,
.ranking_comic_box .rank_02,
.ranking_comic_box .rank_03,
.ranking_comic_box .rank_04,
.ranking_comic_box .rank_05,
.ranking_comic_box .rank_06 {
  width: 96px;
  height: 140px;
  margin: 0 1px 2px -96px;
  background-color:#FFFFFF;
  -webkit-box-shadow: 1px 1px 1px #999;
  float: left;
  overflow: hidden;
}

.ranking_comic_box .rank_01{
	background: -webkit-gradient(linear, center top, center bottom, from(#FFFFFF), to(#F7F0A6));
}
.ranking_comic_box .rank_02{
	  background: -webkit-gradient(linear, center top, center bottom, from(#FFFFFF), to(#DFDFDF));
}

.ranking_comic_box .rank_03{
	  background: -webkit-gradient(linear, center top, center bottom, from(#F7F7ED), to(#D4D49F));
}

/* 1～6位のボックスへのリンク */
.rank_01_a {
  width: 96px;
  height: 140px;
  display: block;
  margin: 0 1px 2px 0;
  float: left;	
}

.ranking_comic_box .rank_07,
.ranking_comic_box .rank_08,
.ranking_comic_box .rank_09,
.ranking_comic_box .rank_10 {
  width: 72px;
  height: 140px;
  margin: 0 0 0 -72px;
  background-color:#FFFFFF;
  -webkit-box-shadow: 1px 1px 1px #999;
  float: left;
  overflow: hidden;
}

.ranking_comic_w .rank_01,
.ranking_comic_w .rank_02,
.ranking_comic_w .rank_03,
.ranking_comic_w .rank_04,
.ranking_comic_w .rank_05,
.ranking_comic_w .rank_06,
.ranking_comic_w .rank_07,
.ranking_comic_w .rank_08,
.ranking_comic_w .rank_09,
.ranking_comic_w .rank_10{
  background-color:#FFEFDF;
}

.ranking_comic_m .rank_01,
.ranking_comic_m .rank_02,
.ranking_comic_m .rank_03,
.ranking_comic_m .rank_04,
.ranking_comic_m .rank_05,
.ranking_comic_m .rank_06,
.ranking_comic_m .rank_07,
.ranking_comic_m .rank_08,
.ranking_comic_m .rank_09,
.ranking_comic_m .rank_10{
  background-color:#D9FFFF;
}

/* 7～10位のボックスへのリンク */
.rank_07_a {
  width: 72px;
  height: 140px;
  display: block;
  margin: 0 1px 10px 0;
  float: left;
}

/* 画像とテキストのbox*/
.ranking_comic_box .bookImg_ranking,
.ranking_comic_box .bookImg_bottom{
  width: 66px;
  margin: 3px 0 2px 15px;
  padding: 3px 0;
  float: none;
  clear: none;
  background: #F90;
  -webkit-border-radius: 4px;
}

.ranking_comic_box .bookImg_bottom {
	margin: 5px 2px;
}

.ranking_comic_box img {
	width: 56px;
	border:1px solid #FFF;
}

img.rank {
	margin: 0;
	width: 96px;
	border:none;
}
img.rank_normal {
	margin: 0;
	width: 96px;
	border:none;
}
img.rank_bottom {
	margin: -4px 0 0 0;
	width: 72px;
	border:none;
}



.ranking_comic_box h5{
	text-align:left;
	height:26px;
	overflow:hidden;
	font-size:0.6em;
	margin-left:3px;
}

.ranking_comic_box .artist{
	text-align:left;
	height:16px;
	overflow:hidden;
	font-size:0.6em;
	margin-left:3px;
	color:#009900;
}

.ranking_top_btn{
	margin:0 50px;
	text-align:center;
}

.back_c_btn{
	margin:0 30px;
	text-align:center;
}



/* ====================================================
 *     
 *	   タイトル表示
 *
 * ==================================================== */


.titleIntroBox li{
	border-bottom:1px solid #AAA;
	background: -webkit-gradient(linear,center top, center bottom, from(#EEE), to(#FFF));
}

.titleIntroBox li .cl_boxleft{
	float:left;
	margin-right:5px;
	padding:5px 5px 5px 10px;
	width:90px;
}

.titleIntroBox li .cl_boxleft img{
	border:2px solid #FFF;
	border-radius:5px;
	-webkit-box-shadow:0px 2px 2px #666;
	width:80px;
}

.titleIntroBox li .cl_boxright{
	padding:10px 5px 5px 5px;
	line-height:1.2;
}

.titleIntroBox li .cl_buybt{
	clear:both;
	padding:5px 5px 5px 0px;
	text-align:right;
}

.titleIntroBox li .cl_title{
	font-size:1em;
	font-weight:bold;
}

.titleIntroBox li .cl_aut{
	font-size:0.8em;
	color:#009933;
}

.titleIntroBox li .cl_review{
	font-size:0.8em;
}

.titleIntroBox li .cl_info{
	font-size:0.8em;
}

.titleIntroBox li .cl_buybt{
	margin:5px 0px 10px 0px;
}

.titleIntroBox li .cl_buybt a.bt1{
	display:inline;
	padding:6px 15px;
	border-top:3px solid #FFF;
	border-left:3px solid #FFF;
	border-right:3px solid #FFF;
	border-bottom:3px solid #FFF;
	background: -webkit-gradient(linear,center top, center bottom, from(#FF7788),to(#FF3366));
	border-radius:8px;
	margin-right:5px;
	color:#FFF;
	font-weight:bold;
	-webkit-box-shadow:1px 1px 3px #666;
}

.titleIntroBox li .cl_buybt a:hover.bt1{
	background: -webkit-gradient(linear,center top, center bottom, from(#FF3366),to(#FF7788));
}

.titleIntroBox  li .cl_buybt a.bt2{
	display:inline;
	padding:6px 15px;
	border-top:3px solid #FFF;
	border-left:3px solid #FFF;
	border-right:3px solid #FFF;
	border-bottom:3px solid #FFF;
	background: -webkit-gradient(linear,center top, center bottom, from(#129FFF),to(#1284FF));
	border-radius:8px;
	margin-right:5px;
	color:#FFF;
	font-weight:bold;
	-webkit-box-shadow:1px 1px 3px #666;
}

.titleIntroBox  li .cl_buybt a:hover.bt2{
	background: -webkit-gradient(linear,center top, center bottom, from(#1284FF),to(#129FFF));
}

/* ====================================================
 *     
 *	   関連ジャンル、タイトル、作家
 *
 * ==================================================== */
.authorname_box{
	border-bottom:1px solid #CCC;
	margin-bottom:10px;
}

.infobox{
	margin:0px;
	border-top:1px solid #CCC;
}

.infobox li .ib_boxright{
	width:100%;
	float:right;
	margin-left:-75px;
	margin-right:5px;
	padding:5px 0;
	line-height:1.4;
}

.infobox li .ib_boxright>* {
	margin-left:75px;
}

.infobox li .ib_boxleft{
	margin:0px;
	width:70px;
	float:right;
}

.infobox li .ib_boxleft img{
	width:70px;
	margin:5px 0;
}

.infobox li .ib_boxright .ib_author a,
.infobox li .ib_boxright .ib_author a:hover{
	color:#090;
	margin:0px 10px 0px 0px;
	text-decoration:underline;
	font-size:16px;
}

.infobox li .ib_boxright .ib_magazine a,
.infobox li .ib_boxright .ib_magazine a:hover{
	color:#09C;
	margin:0px 10px 0px 0px;
	text-decoration:underline;
	font-size:16px;
}

.infobox li .ib_boxright .ib_genre a,
.infobox li .ib_boxright .ib_genre a:hover{
	color:#F60;
	margin:0px 10px 0px 0px;
	text-decoration:underline;
	font-size:16px;
}

.line_bottom2{
	border-bottom:2px solid #CCC;
}
.line_top2{
	border-top:2px solid #CCC;
}
.line_bottom1{
	border-bottom:1px solid #CCC;
}
.line_top1{
	border-top:1px solid #CCC;
}
.line_top_n{
	border-top:none;
}
.line_bottom_n{
	border-top:none;
}

.line_all1{
	border:1px solid #CCC;
}


/* ====================================================
 *     
 *	   SNS
 *
 * ==================================================== */
.related_sns{
	font-size:0.8em;
	margin:10px 0px 5px 0px;
	padding:5px;
	border:1px solid #CCC;
	background: -webkit-gradient(linear,center top, center bottom, from(#FFF), to(#EEE));
}

.snsbt2 ul{
	text-align:center;
	margin:5px 0px;
}

.snsbt2 li{
	display:inline-block;
	margin:0px 5px 0px 0px;
}

.snsbt2 li:last-child{
	margin:0px;
}

.snsbt2 li img{
	margin:5px 0px 0px 0px;
	border:1px solid #888;
	width:90px;
}


/* ====================================================
 *     
 *	   ログインボタン
 *
 * ==================================================== */

.login_bt{
	margin:10px 0px 25px 0px;
	text-align:center;
}

.login_bt li{
	margin:0px 10px 0px 0px;
}
.login_bt li:last-child{
	margin:0px;
}

.login_bt li.login_bt_ok a,
.login_bt li.login_bt_ok a:hover{
	display:block;
	text-align:center;
	padding:5px 5px 5px 5px;
	background: -webkit-gradient(linear,center top, center bottom, from(#FE6464), to(#A90404));
	border:3px solid #FFF;
	border-radius:10px;
	-webkit-box-shadow: 0px 1px 4px #777;
	margin:0px 10% 5px 10%;
	color:#FFF;
	font-weight:bold;
	font-size:14px;
}

.login_bt li.login_bt_regist_ok a,
.login_bt li.login_bt_regist_ok a:hover{
	display:block;
	text-align:center;
	padding:5px 5px 5px 5px;
	background: -webkit-gradient(linear,center top, center bottom, from(#0CF), to(#09C));
	border:3px solid #FFF;
	border-radius:10px;
	-webkit-box-shadow: 0px 1px 4px #777;
	margin:0px 10% 5px 10%;
	color:#FFF;
	font-weight:bold;
	font-size:14px;
}

.login_bt li.login_bt_migrate_ok a,
.login_bt li.login_bt_migrate_ok a:hover{
	display:block;
	text-align:center;
	padding:5px 5px 5px 5px;
	background: -webkit-gradient(linear,center top, center bottom, from(#8EEE29), to(#3DCE04));
	border:3px solid #FFF;
	border-radius:10px;
	-webkit-box-shadow: 0px 1px 4px #777;
	margin:0px 10% 5px 10%;
	color:#FFF;
	font-weight:bold;
	font-size:14px;
}


/* ====================================================
 *     
 *	   保有ポイント表示
 *
 * ==================================================== */
#point_box{
	border-bottom:2px solid #CCC;
}

#point_box_inner{
	border-top:1px solid #9C4100;
	border-bottom:1px solid #9C4100;
	padding: 5px 10px 5px 10px;
	background: -webkit-gradient(linear, center top, center bottom, from(#FFA826), to(#DB7500));
}
#point_box_sub_inner{
	border:2px solid #999901;
	background-color:#FFFFFF;
	border-radius:8px;
}

#point_box_sub_inner ul{
	display:box;
	display:-webkit-box;
	display:-moz-box;
	width:100%;	
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
#point_box_sub_inner li{
	display:block;
	box-flex:1;
	-webkit-box-flex:1;
	-moz-box-flex:1;
	font-size:16px;
	color:#333;
	text-shadow:0 -1px 0 #fff;
	text-align:center;
	font-weight:bold;
	line-height:2.0em;
}

.point_right_border{
	border-right:2px solid #999901;

}
#point_box1{
	width:34%;	
}
#point_box1 img{
	vertical-align:top;
	padding:5px 0px 0px 0px;
}
#point_box2{
	width:20%;
}
#point_box2 div{
	padding-left:5px;
	text-align:center;
}
#point_box3{
	background: -webkit-gradient(linear, center top, center bottom, from(#FFE789),color-stop(45%, #FFE789),  color-stop(65%, #FFCC00), to(#FFCC00));
	border-radius:0 6px 6px 0;
		
}
#point_box3 img{
	vertical-align:top;
	padding:3px 5px 0px 5px;
}

/*2つ並びボタン*/
.f_2btn{
	display:table;
	margin:0 auto;
	width:280px
}
.t_table{
	display:table;
}

.t_row{
	display:table-row;
}
.t_cells{
	display: table-cell;
}
.v_middle{
	vertical-align:middle
}
