/* 1カラムの基本制約とセリフ体 */
body {
	background-color: #ffffff;
	color: #000000;
	font-family: serif;
	line-height: 1.5;
	max-width: 800px;
	margin: 10px auto;
	padding: 0 20px;
}
/* リンク設定：初期状態は下線なし、マウスオーバーで下線あり */
	a { text-decoration: none; }
	a:hover { text-decoration: underline; }
	a:link { color: #0000ee; }
	a:visited { color: #551a8b; }
	a:active { color: #ff0000; }
/* 見出し（Apacheのエラーページ風の飾り気のないスタイル） */
h1 {
	font-size: 2em;
	margin-bottom: 5px;
}
h2 {
	font-size: 1.5em;
	margin-top: 40px;
	border-bottom: 1px solid #000000; /* セクションの区切りを明確に */
	padding-bottom: 3px;
}
h3 {
	font-size: 1.2em;
	margin-top: 40px;
	border-bottom: 1px dotted #000000; /* セクションの区切りを明確に */
	padding-bottom: 3px;
}
/* パンくずリスト */
nav p {
	font-size: 0.9em;
	margin-top: 5px;
	margin-bottom: 20px;
}
/* シンプルな表（table）のスタイル設定 */
table {
	border-collapse: collapse;
	margin-top: 15px;
	margin-bottom: 15px;
}
th, td {
	border: 1px solid #000000;
	padding: 5px 10px;
	text-align: left;
}
/* ヘッダーのみ僅かに着色 */
th { background-color: #eeeeee; }
/* 画像のレイアウト設定 */
img {
	display: block;
	margin: 15px 0;
	max-width: 100%;
	height: auto;
}
/* 区切り線 */
hr {
	border: 0;
	border-top: 1px dashed #666666;
	margin: 30px 0 10px 0;
}
/* 各セクションのフッター */
footer {
	font-size: 0.9em;
	margin-top: 15px;
}