@charset "utf-8";
html{
	display:block;
	width:100%;
	height:100%;
	overflow:auto;
	margin:auto;
	font-size:14px;
	line-height:2;
}
body{
	display:block;
	width:100%;
	height:100%;
	overflow:auto;
	background-color:#5ca8db;
	position:relative;
}
#form{
	display:block;
	width:auto;
	height:auto;
	overflow:hidden;
	background-color:#fff;
	max-width:300px;
	max-height:250px;
	padding:20px;
	position:fixed;
	left:0px;
	right:0px;
	top:0;
	bottom:0;
	margin:auto;
	box-sizing:border-box;
}
#form_thead{
	border-bottom:1px solid #ddd;
	display:block;
	width:auto;
	height:auto;
	overflow:hidden;
	font-size:1.2rem;
	font-weight:bold;
}
#form_tbody{
	display:flex;
	display:-webkit-flex;
	flex-direction:column;
	row-gap:20px;
	margin-top:20px;
	margin-bottom:20px;
}
.form_item{
	grid-template-columns:60px auto;
}
.bt_save{cursor:pointer;width:auto;display:block;margin:auto;background-color:#5ca8db;}