@charset "UTF-8";
/* CSS Document */

html{
	width: 100vw;
	min-height: 100vh;
	font-size: 62.5%; /* 通常文字サイズが16pxになってしまうので、このあと使いやすいように10pxに変換。16px×0.625=10px */
}

body {
	width: 100vw;
	min-height: 100vh;
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /* 一応ここにも入れておくといいと思う */
	font-size: 1.6rem; /* 基本文字サイズ設定。0.1em＝1pxになるよう計算してあるので、ここでは16px */
	line-height: 2em; /* 基本行間空き設定。文字サイズの何倍かで計算。ここでは×2なので、36px行間が空く */
	background-color: none; /* 背景色 */
	color: black; /* 文字色 */
	}

/*////////////////中身の設定/////////////////*/

#wrap{
	width: 41.666em;
	max-width: 100vw;
}

.s-site{
	text-align: center;
	margin: 0 auto;
}
