/* 全体に背景色 */
body {
	background-color: ivory;
}

/* 大見出しに装飾各種 */
h1 {
	background-color: lightskyblue;
	text-align: center;	/* 文字列を左右中央揃え */

	/* 枠線 */
	border-top: none;
	border-right: solid 2px navy;
	border-bottom: solid 2px navy;
	border-left: none;
	border-radius: 10px;	/* 角丸 */
	padding: 10px;		/* 枠内余白 */
}

/* 表組を左右中央に配置 */
table {
	margin-left: auto;
	margin-right: auto;
}

