@charset 'utf-8'; /*文字コード指定*/
/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */
html {
　overflow-x: hidden;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}
body {
	font-size: 100%; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 1.5; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	background: #fff; /*背景指定*/
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	color: #333; /*文字色指定*/
}
ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}
a {
	color: #333; /*文字色指定*/
}
a:hover {
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
.notice {
	padding: 10px; /*ボックス内側の余白*/
	background: #fff; /*背景指定*/
}
.notice h2 {
	font-size: 4em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	line-height: 2; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
}
.notice h3 {
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	margin-bottom: 5px; /*ボックス外側下の余白*/
}
.notice li, p {
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	margin-left: 5px; /*ボックス外側左の余白*/
}