/* 全ディバイスに適用する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: 800px ;
	margin: 10px auto ;	/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;		/* 上下左右の余白を0にしておく */

}

/* ロゴヘッダー画像を囲む */
.logo-header
{
	margin: 0 ;			/* スペース */
	padding: 0 ;		/* 余白 */
	margin-bottom: 10px ;
}

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

/* 段落用 */
.content
{
	width: 100% ;		/* 横幅 */
	clear:both
}

/* メイン画像を囲む */
.image
{
    width: 300px ;
	margin: 0 auto ;		/* スペース */
	padding: 0 ;		/* 余白 */
	float: left ;
}

/* メイン画像 */
.item
{
　　width: 100% ;		/* 横幅 */
	height: auto ;		/* 高さ */
}

/* メイン設定 */
h1
{
    text-align: center;
}

h2
{
    font-size: 15px ;		/* 文字サイズ */ 
	text-align: center;
	font-weight: normal; 
}

.time
{
	text-align: right;
	width: 100% ;
}

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

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

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

h2
{
    font-size: 13px ;		/* 文字サイズ */ 

}

}