/* 全ディバイスに適用する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;
}

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

.index
{
    width: 600px ;
	margin: 10px auto 0;
	padding: 0 ;		/* 余白 */
	text-align: left;
}

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

.content
{
    padding: 0;
    margin: 0;
    width: 100%;
}

.content li 
{
	padding-left:2px;
    margin:0;
    float: left;
    width: 50%;
	height: auto;
    box-sizing:border-box;
    display: block;
    text-align: center;
}

.picture
{
	width: 100% ;
    height: auto ;		
}

.closing
{
    padding: 10px 0;
	text-align: center;
	width: 100% ;
	clear:both ;
}

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

@media screen and ( max-width:600px )
{
	body
	{
		font-size: 13px ;	/* 文字サイズ */
	}
	
	.main
	{
		width: 100% ;
		padding: 0 10px ;		/* 左右の余白 */
	}

.index
{
    width: 100% ;
}

.index-logo
{
    width: 150px ;
}

.content li 
{
	   padding: 0;
	   width: 100%;
}

.picture
{
	width: 300px ;
    height: 225px ;		
}

}