* {
	/*outline: 1px solid #ff0000;*/
}

:root {
	--header_height: 82px;
	--navi_width: 230px;
	--footer_height: 40px;
	--bg_color: #FFFDF9;
	--key_color: #5BB2AC
}

html * {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: #777777;
	font-family: sans-serif;
	/*outline: 1px solid #FF00FF;*/
}

/* ヘッダー */
header {
	position:fixed;
	top:0;
	left:0;
	width: 100%;
	height: var(--header_height);
	background-color: var(--key_color);
	/*outline: 1px solid #FF0000;*/
}
/* ヘッダー */
.header_title h1 {
	color: #FFFFFF;
	text-align: center;
	margin-top: 12px;
	margin-bottom: 0;
}
/* ヘッダー */
.header_update-date p {
	color: #FFFFFF;
	text-align: right;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
}

/* ナビ */
nav {
	visibility: visible;
	position: fixed;
	top: var(--header_height);
	width: var(--navi_width);
	height: calc(100% - var(--header_height));
	background-color: var(--bg_color);
	box-shadow: 0 0 10px -5px #555555;
	overflow-y: scroll;
	overscroll-behavior: none;
	/*outline: 1px solid #FFFF00;*/
	z-index: 2;
	summary {
		/*list-style: none;*/
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		margin-top: 4px;
		margin-left: 4px;
		border-top: 1px solid var(--key_color);
	}
	summary::marker {
		color: gray;
		/*color: var(--key_color);*/
	}
	ul {
		margin-top: 0;
		margin-bottom: 0;
		padding: 0 0 0 20px;
	}
	li {
		list-style: none;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;

		margin-top: 4px;
		border-top: 1px solid var(--key_color);
		/*border-top: 1px solid gray;*/
	}
}
/* ナビ */
.navi_nest {
	padding: 0 0 0 20px;
}

/* メインコンテンツ */
main {
	position: fixed;
	top: var(--header_height);
	margin-left: var(--navi_width);
	width: calc(100% - var(--navi_width));
	height: calc(100% - var(--header_height) - var(--footer_height));
	background: var(--bg_color);
	overflow-y: scroll;
	/*outline: 1px solid #0000FF;*/
	h1,h2,h3,h4 {
		color: #000000;
	}
	table {
		border-collapse: collapse;
	}
	th {
		border: 1px solid gray;
		padding: 6px;
	}
	td {
		border: 1px solid gray;
		padding: 6px;
	}
}
/* メインコンテンツ */
#main_content {
	margin-top: 0;
	padding-left:20px;
}

/* フッター */
footer {
	position: fixed;
	width: 100%;
	bottom: 0;
	height: var(--footer_height);
	background-color: var(--bg_color);
	text-align:center;
	/*outline: 1px solid #00DD00;*/
	border-top: 2px solid var(--key_color);
	z-index: 1;
	p {
		margin-top: 8px;
		margin-left: 230px;
	}
}
