body { 
	font-family: "ＭＳ ゴシック",sans-serif;
	font-size: 100%; 
	background-image: url(../image/zone.jpg);
	text-align: center;
}

/* タイトルで使用する。td含む　*/
.tl_top {
	table-layout: fixed;
	width: 300px;
	border: 1px solid red;
	background-color: black;
	text-align: center;
}
.tl_top td {
	border: 1px solid red;
}

/* メインコンテンツのテーブルタグで使用する。td含む　*/
.tl_main {
	table-layout: fixed;
	width: 550px;
	border: 1px solid yellow;
	background-color: white;
	text-align: center;
}
.tl_main td {
	border: 1px solid yellow;
}

/* 更新履歴で使用するテーブルタグ　*/
.tl_update {
	table-layout: fixed;
	width: 700px;
	border: 1px solid blue;
	background-color: white;
	text-align: center;
}
.tl_update td {
	border: 1px solid blue;
}

/* pタグを使用する場合は左から文章開始　*/
p {
	color: black;
	text-align: left;
}

/* 文章で使用する。　*/
.top_caption {
	color: white;
	font-size: 120%;
}
.top_caption_title {
	color: white;
	font-size: 180%;
}
.update_caption {
	color: black;
	font-size: 80%;
}
.main_caption {
	color: blue;
}
.main_contents {
	color: red;
}

