#header th {
	text-align:			center;
}

#content table {
	margin-top:			100px;
	margin-left:		auto;
	margin-right:		auto;
	border-collapse:	collapse;
	border-style:		none;
}

/********************************** 処理中Loading画面 ************************************/

#loading {
	display: table;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	opacity: 0.8;
}

/* Spinner */
.spinner:before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100px;
	width: 100px;
	margin-top: -50px;
	margin-left: -50px;
	border-radius: 50%;
	border: 5px solid lightgrey;
	border-top-color: deepskyblue;
	animation: spinner 0.5s linear infinite;
	text-align: center;
	vertical-align: middle;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
