#Outline {
	max-width: none;
}

a {
	color: #69C;
}

input {
	font-size: inherit;
	font-family: inherit;
	box-sizing: border-box;
}

input[type='text'],
input[type='password'],
textarea {
	font-size: 1em;
	color: inherit;
	background-color: rgba(102, 153, 204, 0.1);
}

input[type='checkbox']:first-child,
input[type='radio']:first-child {
	margin: 0 5px 0 0;
}
input[type='checkbox'],
input[type='radio'] {
	margin: 0 5px 0 10px;
}

#Header {
	position: fixed;
	top: auto; right: 5px; bottom: 5px; left: 5px;
	margin: 0 auto;
	border-radius: 3px;
	padding: 0;
	width: auto;
	max-width: 800px;
	height: 40px;
	line-height: 40px;
	z-index: 101;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
}
#Header div.button_area {
	position: absolute;
	top: 0; left: 0;
}
#Header div.button_area a.switch {
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../../../../../file/image/burger.png);
	background-size: cover;
	background-position: 0 0;
}
#Header div.button_area a.switch.open {
	background-position-y: -40px;
}
#Header div.head_area {
	margin: 0 auto;
	width: calc(100% - 80px);
	height: inherit;
}
#Header div.head_area a.logo {
	display: inline-block;
	font-size: 13pt;
	color: inherit;
}
#Header div.user {
	position: absolute;
	top: 0; right: 0;
}
#Header div.user a {
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../../../../../file/image/user.png);
	background-size: cover;
	background-position: 0 0;
}
#Header div.button_area a.switch.open,
#Header div.user.logined a {
	background-position-y: -40px;
}

#Nav {
	position: fixed;
	top: 0; bottom: 0; left: 0;
	padding: 0;
	width: 0;
	max-width: 100%;
	height: 100%;
	line-height: 30px;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 100;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
}
#Nav ul.menu {
	position: absolute;
	width: 100%;
	min-width: auto;
	overflow: hidden;
	box-sizing: border-box;
}
#Nav ul.link {
	position: absolute;
	bottom: 50px;
	width: 100%;
	min-width: auto;
	overflow: hidden;
	box-sizing: border-box;	
}
#Nav ul.menu li, #Nav ul.link li {
	position: relative;
	margin: 0 0 2px;
	padding: 0 30px 0 10px;
	width: 100%;
	height: 40px;
	font-size: 0.8rem;
	line-height: 40px;
	background-color: rgba(0, 0, 0, 0.8);
	word-break: keep-all;
}
#Nav ul li:empty {
	background: transparent;
	height: 20px;
}
#Nav ul.menu li a, #Nav ul.link li a {
	color: #FFF;
	position: absolute;
	left: 0; right: 0;
	padding: 0 30px 0 10px;
}
#Nav ul.menu li.current a {
	color: #D96972;
	font-weight: bold;
}
#Nav ul.menu li.category {
	margin: 0 10px 0 30px;
}

#Aside {
	display: none;
	position: fixed;
	float: none;
	top: 70px; right: 0; bottom: 0px;
	width: 300px;
	overflow-y: auto;
	z-index: 100;
}

#Contents {
	position: relative;
	margin: 0 0 0;
	padding: 0 10px 80px;
	overflow: hidden;
}
#Contents h1,
#Contents h2 {
	position: relative;
	margin: 10px 0 5px;
	font-size: 13pt;
	color: #666;
	text-align: center;
	box-sizing: border-box;
}
#Contents h2 {
	margin: 5px 0 10px;
	font-size: 12pt;
	color: #666;
}
#Contents p {
	font-size: 0.9rem;
}
#Contents ul.menu,
#Contents ul.list {
	margin: 0 5px 10px;
	overflow: hidden;
	list-style: none;
}
#Contents ul.menu li {
	float: left;
	margin: 0 20px 0 0;
}
#Contents ul.list li {
	float: left;
	margin: 0 10px 0 0;
	font-size: 0.8em;
	color: #9fa6be;
}
#Contents ul.list li:after {
	content: "/";
	margin-left: 10px;
}
#Contents ul.list li.back {
	margin-right: 10px;
}
#Contents ul.list li:last-child:after {
	content: "";
}
#Contents .button {
	display: block;
	position: relative;
	margin: 10px auto 0;
	padding: 2px 0 0;
	width: 100%;
	max-width: 300px;
	height: 40px;
	line-height: 38px;
	vertical-align: middle;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	box-sizing: border-box;
}
#Contents .button.note{
	margin-top: 5px;
	padding: 0;
	height: auto;
	line-height: 1.4em;
	color: #99c8cc;
}
#Contents div.button a {
	display: block;
	width: 100%;
	height: 100%;
	color: #FFF;
}

#Footer {
	margin: 20px 0 0;
	border-top: 1px solid #CCC;
	padding: 0 10px;
	height: 25px;
	line-height: 25px;
	text-align: right;
}

#Popup {
	display: none;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 100;
}
#Popup .dialog {
	position: relative;
	margin: 30% auto auto;
	border-radius: 3px;
	padding: 10px 10px;
	max-width: 500px;
	width: 100%;
	background-color: #FFF;
	box-sizing: border-box;
}
#Popup .dialog p {
	width: 100%;
	text-align: center;
	font-size: 1.1em;
}
#Popup .dialog form {
	overflow: hidden;
	text-align: center;
}
#Popup .dialog form div.inputs {
	min-height: 40px;
	text-align: left;
}
#Popup .dialog form>input[type=submit],
#Popup .dialog form>input[type=reset]{
	border-radius: 5px;
	border: none;
	font-size: 1.1em;
	font-weight: bold;
	color: #FFF;
	cursor: pointer;
	-webkit-appearance: none;
}

#Popup .dialog form>input[type=submit]{
	background-color: #F33;
}
#Popup .dialog form>input[type=reset]{
	background-color: #69C;
}
#Popup .dialog form div.inputs dd>textarea {
	width: 100%;
	height: 80px;
	box-sizing: border-box;
}
