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

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: 50px auto 0;	/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0;		/* 上下左右の余白を0にしておく */
	text-align: center;

}

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

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

h1
{
   	color:#FF0099; 
    padding-bottom:20px;
}

h2
{
   	color:#FF0099; 
    padding-bottom:10px;
}

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

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