@charset "utf-8";
/* CSS Document */
/*ＤＱ二次創作小説一覧専用スタイルシート*/
/*残すもの　壁紙リネン　小説フロート*/
body{
	background-image: url("../../images/wallpapers/linen_white.jpg");
}
/*★ジャンル分けをしている1pxの薄いグレーの線は、そのジャンルの入るsectionに.atogakiというクラスをつけて、baseにある.atogakiで上に線をつけている。
一番上のsectionだけはnavの上下にある線と重なるので、.atogakiをつけていない。*/
	
/*PC用の設定*/
@media only screen and (min-width:900px){
.left{
	width:48%;
	float:left;
}
.right{	
	width:48%;
	float:right;
}
.clearfloat{
	clear:both;
	text-align:right;
}
#concert{
	width:100%;
}
}

/*tablet用の設定*/
@media only screen and (min-width:600px) and (max-width:899px){
.left{
	width:50%;
	float:left;
}
.right{	
	width:50%;
	float:right;
}
.clearfloat{
	clear:both;
	text-align:right;
}
#concert{
	width:100%;
}
}

/*smartphone用の設定*/
@media only screen and (max-width:599px){	
.right_top{
	border-top:dotted 1px steelblue;
}
article{
	text-indent:2em;
	}
}
