/* table */
table {
	clear: both;
	margin: auto;
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
table th {
	width: 20%;
	color: #1e1a66;
	font-weight: 500;
}
table th, table td {
	padding: 0.5em 1em;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
@media (max-width: 800px) {
	table th, table td {
		content: "";
		display: block;
		clear: both;
		width: 100%;
		box-sizing: border-box;
	}
	table th, table td {
		content: "";
		display: block;
		clear: both;
		width: 100%;
		box-sizing: border-box;
		border-top: none;
		border-bottom: none;
	}
	table th {
		padding: 1em 0 0 0;
	}
	table td {
		padding: 0 0 1em 0;
	}
}
/* 入力フォーム */
input, select, textarea {
	padding: 0.25em;
	font-size: 1em;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
	width: 100%;
	border: 1px solid #ccc;
}
input[type="checkbox"], input[type="radio"] {
	margin-right: 0.5em;
}
@media (max-width: 800px) {
	input, textarea {
		margin: 0;
	}
}
button.form_btn {
	margin: 1em;
	padding: 0.5em 2em;
	border: solid 2px #333;
	background-color: #333;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	font-size: large;
	border-radius: .5em;
	-moz-transition: -moz-box-shadow .4s ease-out; /* FF3.7+ */
	-o-transition: box-shadow .4s ease-out; /* Opera 10.5 */
	-webkit-transition: -webkit-box-shadow .4s ease-out; /* Saf3.2+, Chrome */
	transition: box-shadow .4s ease-out;
}
button.form_btn:hover {
	background-color: #FFF;
	color: #333;
	box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
.center {
	margin: auto;
	text-align: center;
}