@charset "utf-8";
/* CSS Document */
/* ▼Base(共有できる)モバイルファースト */
* {
	margin:0;
	padding:0;
}
html {
	font-size:62.5%	/* 文字の大きさ基準値を1rem=10pxに設定 */
}
body {
	font-size: 16px ;		/* 文字サイズ(未対応ブラウザ用) */
	font-size: 1.6rem ;		/* 文字サイズ */
	line-height: 170% ;	/* 行の高さ */
	text-align:center;
	-webkit-text-size-adjust: 100%;	/* スマホの自動調整制御用	*/
	-webkit-print-color-adjust: exact; /* クローム用印刷指定 */
	font-family:Meiryo;
}
* + html body {
	font-family: "メイリオ","Meiryo";
}
h1,h2,h3,h4,h5,h6 {
	font-size: 2rem ;		/* 文字サイズ統一 */
}
a {
	outline: none;
	text-decoration: none;
}
a:link { color:#666666; text-decoration:none }
a:visited { color:#666666; text-decoration:none }
a:hover { color:#666666; text-decoration:none }
a:active { color:#666666; text-decoration:none }
img {
	border: 0;
}

ul {
	list-style:none;
}
/* △Base(共有できる) */

#body-frame {
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
}
#main {
	margin-top: 100px;
	max-width: 90%;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	#main {
		max-width: 100%;
	}
}