/* 全ディバイスに適用するCSS */
/* ボディ */
body
{
	margin: 0 ;				/* スペース */
	padding: 0 ;			/* 余白 */
	font-size: 15px ;		/* 文字サイズ */
	line-height:140%;	/* 行の高さ */
}

a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #FF0000;
}
a:active {
	text-decoration: none;
}

.index
{
    width: 800px ;
	margin: 10px auto 0;
	padding: 0 ;		/* 余白 */
}

.index-logo
{
	width: 200px ;		/* 横幅 */
	height: auto ;		/* 高さ */
	text-align: left;
}

/* ロゴヘッダー画像を囲む */
.logo-header
{
	width: 800px ;
	margin: 0 auto ;			/* スペース */
	padding: 0 ;		/* 余白 */
	text-align: center;
}

/* ロゴ画像 */
.logo
{
	width: 100% ;
    height: auto ;		
}

/* メイン*/
.main
{
	width: 900px ;
	margin: 10px auto ;	/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;		/* 上下左右の余白を0にしておく */
    text-align:center;
}

/* 目次*/
ul.list-top
{
    display:table;
    table-layout:fixed;
	width: 300px ;
	margin: 0 auto ;		/* スペース */
	padding: 10px 0 20px;	/* 余白 */
}

/* 目次リスト*/
ul.list-top li
{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    border-left:1px solid white;
	background-image: url(../item/ippin-ber2.jpg);
}

/* 最新表題*/
.new
{
	width: 300px ;
	margin: 0 auto 10px;		/* スペース */
	padding: 0 ;		/* 余白 */
	color:#FF0000 ;
	font-weight: bold;
	text-align:center;
	background-image: url(../item/ippin-ber2.jpg);

}

/* 最新アイテム*/
.new-item
{
	width: 300px ;
	height: 74px ;
	margin: 0 auto ;		/* スペース */
	padding: 0 ;		/* 余白 */
	text-align:center;
	font-size: 12px ;
	background-image: url(../item/ippin-ber3.jpg);
}

/*リスト項目*/
.content
{
	width: 100% ;
	padding: 0 ;
	margin-bottom:10px;
	clear:both ;
	color:#FF0000 ;
	font-weight: bold;
	text-align:center;
	background-image: url(../item/ippin-ber2.jpg);
}

/*アイテム範囲*/
.item
{
    padding: 0;
    margin: 0;
    width: 100%;
}

/*アイテム設定*/
.item li {
    padding: 0;
    margin-bottom:10px;
    float: left;
    width: 33.33333%;
	height: 74px ;
    box-sizing:border-box;
    display: block;
    text-align: center;
	font-size: 12px ;
	background-image: url(../item/ippin-ber3.jpg);
}

/* メイン画像を囲む */
.image
{
    width: 100px ;
	float: left ;
}

.closing
{
    text-align: center;
	width: 100% ;
	clear:both ;
}

.ads
{
    width: 100% ;
	height: 90px;
	margin: 30px 0 ;
}

/* PC以外だけに適用するCSS */
@media screen and ( max-width:900px )
{
	/* ボディ */
	body
	{
		font-size: 13px ;	/* 文字サイズ */
	}
	
	.main
	{
		width: 100% ;
		padding: 0 10px ;		/* 左右の余白 */
	}
	
.item li 
{

	   width: 50%;
}
	
}

@media screen and ( max-width:800px )
{

.index
{
    width: 100% ;
}

.index-logo
{
    width: 150px ;
}
	
.logo-header
{
	width: 100% ;
}

}

@media screen and ( max-width:600px )
{
.item li 
{
	   width: 100%;
}
}