/* 申請時に頂く個人情報の取扱い箇所 */
#block1{
	position: relative;
	width: 100%;
	height: 200px;
	margin: 2px;
	padding: 8px;
	border: solid 1px #808080;
	overflow: auto;
}

/* 虚偽の申請や不正利用等 */
#block2{
	position: relative;
	width: 100%;
	height: 100px;
	margin: 2px;
	padding: 8px;
	border: solid 1px #808080;
	overflow: auto;
}

/* UMIN IDはおひとりにつきおひとつです */
#block3{
	position: relative;
	width: 100%;
	height: 100px;
	margin: 2px;
	padding: 8px;
	border: solid 1px #808080;
	overflow: auto;
}

/** 個人情報取り扱いについて（利用者情報変更・削除申請画面） */
#block4{
	position: relative;
	width: 100%;
	height: 300px;
	margin: 2px;
	padding: 8px;
	border: solid 1px #808080;
	overflow: auto;
}

table.border_no{
	border: 0px;
	background-color: #FFFFFF;
}
.border_no td,.border_no th{
	border: 0px;
	padding: 0px;
	background-color: #FFFFFF;
}

/** 提出いただく個人情報で～の欄 */
table.block1{
	border: 3px double #FFA4A4;
}
.block1 td{
	border: 0;
	padding:2px;
	border-collapse: separate;
	border-spacing: 2px;
}

/** アクセス権限の欄 */
table.block2{
	border: 1px solid #0084DB;
	border-collapse: separate;
	border-spacing: 1px;
	padding: 2px;
}
.block2 th{
	border: 1px solid #0084DB;
	background-color: #D7f8FF;
	padding: 2px;
}
.block2 td{
	background-color: #FFFFFF;
	border: 1px solid #0084DB;
	padding: 2px;
}




section {
	max-width: 400px;
	height: 100px;
	margin: 0 auto;
	padding-top: 30px;
}
a.btn_form {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	background: #fff;
	position: relative;
	font-weight: bold;
}
a.btn_form span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background: #fff;
	box-sizing: border-box;
	color: #333;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-decoration: none;
	box-shadow: 0px 5px 12px #888, -6px -6px 12px #FFF;
	border-radius: 10px;
	position: absolute;
	top: -5px;
	left: 0;
	transition-duration: 0.2s;
}
a.btn_form:hover span {
	left: 0;
	top: 0;
	box-shadow: 0 0 4px #888, -2px -2px 4px #FFF;
}