body{
	text-align: center;	
}

.message{
	width: 1200px;
	margin: 0px auto;
}
		
.message p{
	text-align: center;

	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	color: #999999;
	line-height: 1.8em;

	vertical-align: middle;
	position: absolute;  /*要素を浮かす*/
	/*relativeを指定した親要素を支点とした位置をすべて0に指定↓*/
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto; /*上下左右中央に*/
	width: 300px; /*widthの指定は必須*/
	height: 100px; /*heightの指定は必須*/
}
