@charset "UTF-8" ;


/* ボディ */
body
   {margin: 0 ;		/* スペース */
	padding: 0 ;		/* 余白 */
	font-size: 100% ;	/* 文字サイズ */
	line-height: 1.5 ;	/* 行の高さ */
    font-family: "Helvetica Neue", Arial,"Hiragino Kaku Gothic ProN","Hragino Sans",Meiryo, sans-serif;
    }
    
a	{color: #333333;
         text-decoration: none;}
a:link    { color: #333333; 
           }
a:visited { color: #333333; }
a:hover  {color: #CD3333;}


p.font1 {font-size: 85%; 
         margin-top:0.5em;
         margin-bottom:0.3em;
             }
p.font2 {font-size: 1.1em;
         }
p.font3 {font-size: 1.2em;
        line-height: 1.5em; 
        padding: 0px;
        }

/* フッター */
.footer
  {font-size:80%;
	border-top: solid 1px #888888;		/* 枠線 */
	text-align: center ;			/* テキスト、画像の真ん中寄せ */
	margin-top: 0 auto;			/* 他のブロックとのスペース */
	padding: 0 ;			/* 上下の余白 */
	background: #ffffff ;
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.wrapper
{
	width: 752px ;
	margin: 0 auto ;		/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;			/* 上下左右の余白を0にしておく */
}

/* スマホだけに適用するCSS */
@media screen and (max-width:749px)
{
	.wrapper
	{
		width: auto ;
		padding: 0 ;
	}
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.main
{
	width: 752px ;
	padding: 0 ;					/* 上下左右に10pxの余白 */
	border: none;		/* 枠線 */
}

/* スマホだけに適用するCSS */
@media screen and (max-width:749px)
{
	.main
	{
		width: auto ;
		padding: 3px 3px 10px 3px ;		/* 余白 */
		border: none ;		/* 枠線 */
	}
}

/* 全体(デスクトップPCとスマホ)に適用するCSS */
.main
{
	float: center ;		/* 中央 */
}


/* スマホだけに適用するCSS */
@media screen and (max-width:749px)

.wrapper
{
	overflow: hidden ;
}

/* 画像の最大幅を指定する */
img
{
	max-width: 100% ;		/* 横幅の100% */
	height: auto ;			/* 縦幅を自動調整 */
}