﻿*{
	margin:		0px;
	padding:	0px;
	border:		0px;
}

body {
	background: #FFFFFF;
	/* フォント設定（全体で共有） */
	font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', sans-serif;
	/* スクロールバー非表示 */
	overflow: hidden;
	/* 画像選択ドラッグ禁止 */
	user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-khtml-user-drag: none;
	-ms-user-select: none;
	/* サーフェスアクション無効 */
	-ms-touch-action: none; /* for IE */
	touch-action: none;
}

/* WebGL */
#id_webgl {
	/* ３Ｄの読み込みが終わるまで背景が表示されるので同じ画像を表示しておく */
	background-image: url("../data/model/background.png");
	background-size: 10% 100%;	/* 左右端がぼけるのでタイリングにして小さく表示 */
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

/* DIV親 */
#id_div {
	position: absolute;
}

#id_message {
	position: absolute;
	color: #FFFFFF;
	font-size: 44px;
	line-height: 70px;
	text-align: justify;
}
.cl_important {
	color: #80FF40;
}
.cl_nowrap {
	white-space: nowrap
}