body{
	display: none;
}
#top_content{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 1.5rem;
	margin: 0 auto;
	max-width: 800px;
}
#top_content img{
	width: 100%;
	max-width: 500px;
}

#home_content{
	display: none;
}
#home_content h2.pagetitle{
	margin-top: 0;
	padding-top: 0 0.5rem;
}
#home_content span.no_list{
	margin-left: 40px;
}
#home_content .clickable{
	cursor: pointer;
}

#info_list li._system:before{
	content: 'system';
	color: #fff;
	background: #f59;
	font-size: 8pt;
	vertical-align: middle;
	padding: 1px;
}

.box fieldset{
	display: flex;
	margin: 0;
	padding: 0.5rem 0;
	border: none;
	line-height: 1.5;
}
.box fieldset:not(:last-child){
	border-bottom:1px solid #aaa;
}
.box fieldset label{
	width: 6rem;
}
.box fieldset span{
	width: calc(100% - 6rem);
}

.modal{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #aaaa;
}
.modal_content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
	width: 80%;
	max-width: 800px;
	max-height: 70%;
}

#modal_title{
	margin: 0;
}
#modal_body{
	overflow: auto;
}
