* {
	margin: 0;
	padding: 0;
}

ul {
	list-style-type: none;
}

html, body {
	width: 100%;
	height: 100%;
}


header {
	width: 100%;
	position: fixed;
	z-index: 9;
}

#TITLE {
	font-size: 20px;
	position: fixed;
	top: 9px;
	left: 60px;
}

#TITLE a {
	text-decoration: none;
	color: #ffffff;
}


#nav-drawer {
	position: relative;
	height: 50px;
	overflow: hidden;
}

.nav-unshown {
	display:none;
}


#nav-open,
#nav-open span {
	display: inline-block;
	box-sizing: border-box;
}
#nav-open {
	position: fixed;
	top: 13px;
	left: 13px;
	width: 32px;
	height: 24px;
	cursor: pointer;
}
#nav-open span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #ffffff;
	border-radius: 4px;
	transition: all .4s;
}
#nav-open span:nth-of-type(1) {
	top: 0;
}
#nav-open span:nth-of-type(2) {
	top: 10px;
}
#nav-open span:nth-of-type(3) {
	bottom: 0;
}


#nav-close {
	display: none;
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

#nav-content {
	overflow: auto;
	position: fixed;
	top: 50px;
	left: 0;
	z-index: 999;
	width: 90%;
	max-width: 300px;
	height: 100%;
	background-color: #e6e8f6;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	box-sizing: border-box;
}

#nav-input:checked ~ #nav-close {
	display: block;
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-input:checked ~ #nav-open span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
#nav-input:checked ~ #nav-open span:nth-of-type(2) {
	opacity: 0;
}
#nav-input:checked ~ #nav-open span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}


#nav-content .menu li a {
	display: block;
	padding: 25px 10px;
	text-align: center;
	font-size: 14px;
	background-color: #fafafa;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #c0c0c0;
	box-sizing: border-box;
	text-decoration: none;
	color: #606060;
	text-shadow: 1px 1px 1px #d0d0d0;
	cursor: pointer;
}




.menu-close {
	padding: 10px;
	border-radius: 0 0 10px 10px;
	background-color: #808080;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
}



#article_list {
	position: relative;
	top: 50px;
}

#article_list li {
	border-bottom: 1px solid #e0e0e0;
position: relative;
}

#article_list li.odd {
	background-color: #ffffff;
}


#article_list li i {
	display: inline-block;
	position: absolute;
	font-size: 32px;
	bottom: 8px;
	right: 10px;
	cursor: pointer;
}

#article_list li a {
	display: block;
	text-decoration: none;
	font-size: 90%;
	padding: 20px 0;
	padding-left: 60px;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: 15px center;
	color: #000000;
	overflow-wrap: break-word;
}

#article_list li a:hover,
#article_list li a:active {
	background-color: #ffffc0;
}

#article_list div.search_limit {
	padding-top: 30px;
	font-size: 110%;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
}



#CONTENTS-BOX {
	position: relative;
	top: 50px;
	padding: 30px;
}

#CONTENTS-BOX div.message {
	margin-top: 2em;
	font-size: 90%;
}

#CONTENTS-BOX div.error {
	color: #ff0000;
	font-weight: bold;
}


form.simple .form_midashi {
	font-size: 20px;
	font-weight: bold;
	padding: 5px 10px;
	margin-top: 30px;
}

form.simple dl dt {
	margin-top: 15px;
}
form.simple dl dt:first-child {
	margin-top: 0;
}

form.simple input[type='text'],
form.simple input[type='password'] {
	font-size: 14px;
	padding: 5px;
}

form.simple .button {
	margin-top: 15px;
}

form.simple button {
	font-size: 100%;
	padding: 5px 10px;
}

form.simple select {
	font-size: 100%;
	padding: 5px 10px;
}

form.simple span.require {
	margin-left: 10px;
	font-size: 80%;
	color: #ff6845;
}

form.simple span.ondemand {
	margin-left: 10px;
	font-size: 80%;
	color: #66cc33;
}

form.simple .sep {
	margin-top: 30px;
	padding: 10px;
	background-color: lightyellow;
	font-size: 80%;
	color: dimgray;
	border-top: 1px solid gainsboro;
	border-bottom: 1px solid gainsboro;
}

