@charset "UTF-8";

/* 基本設定： ページ全体 */
body {
	margin: 0;
	padding: 0;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: メイリオ, Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
	font-style: normal;
	font-weight: thin;
	background-image: url(img/space01.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	background-size:cover;
	position: relative;
	color: #ffffff;
	-webkit-text-size-adjust: 100%; /* iOSランドスケープモード対策 */
}


@media only screen and (max-width:769px) {
body {
	 background:none;  /* 一旦、PC用の背景画像を消す。 */
	}
body::before {
	background:url(img/space01.png)
	repeat center center;
	background-size: cover;
	display: block;
	position: fixed;  /* ★スマホ用にコレで代替。 */
	top: 0;
	left: 0;
	width: 100vw;  /* ★サイズ指定。 */
 	height: 110vh;  /* ★サイズ指定。 */
	content: "\A";  /* ★大事 */
	z-index: -1;  /* ★大事 */
	}
}
