/* ボディ */
body {
	background-color: #ffffff;		/* 背景色を白に */
	background-image: url("pc_background.jpg");		/* 背景画像 */
	background-position: center center;		/* 背景画像のセンタリング */
	background-repeat: no-repeat;			/* 背景画像の繰り返し無し */
	background-attachment: fixed;			/* 背景画像の固定・スクロールしない */
	background-size: cover;					/* 背景画像の縦横比維持でウィンドウ最大に拡大 */
	text-align: center;				/* IE6以下でセンタリングするための対策 */
}

#msg {
	width: 600px;
	padding: 8px;
	text-align: center;
	font-size: 18px;
	background-color: rgba(255, 255, 255, 0.5);
	line-height: 1.25;
	box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.5);
}
