@charset "UTF-8";
/* CSS Document */
.h2title{
	font-size: 200%;
	text-align: center;
	margin: 50px 0;
}
.h2title:after{
	content:"";
	display: block;
	background: #0068b7;
	width: 60px;
	height: 3px;
	margin: 0 auto;
}
.text{
	text-align: center;
}
.red{
	background: #c00;
	color: #fff;
	font-size: 70%;
	padding:0 5px;
	border-radius: 5px;
	vertical-align: middle;
	margin-left: 5px;
	margin-bottom: 5px;
	display: inline-block;
}
.formbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1000px;
	margin: 40px auto;
	align-items: center;
}
.formbox input,
.formbox textarea{
	width:80%;
	padding: 8px 10px;
	border:1px solid #999;
	background: #fff;
	border-radius: 8px;
}
.formbox textarea{
	height: 200px;
}
input[type="submit"],
input[type="button"]{
	padding:10px;
	border-radius: 5px;
	width:300px;
	display: block;
	margin: 40px auto 0;
	transition: 0.3s all;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: 0.4em;
}
input[type="submit"]{
	background: #0068b7;
	color:#fff;
	border:2px solid #0068b7;
}
input[type="button"] {
	background: #333;
	color:#fff;
	border:2px solid #333;
}
input[type="submit"]:hover {
	background: #fff;
	color:#0068b7;
	border:2px solid #0068b7;
}
input[type="button"]:hover {
	background: #fff;
	color:#333;
	border:2px solid #333;
}
.check{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	max-width:1000px;
	margin: 0 auto;
}
main table{
	width:100%;
	border-top:1px solid #333;
}
main table tr{
	width:100%;
	border-bottom:1px solid #333;
}
main table th{
	width:20%;
	background:#ddd;
	padding: 10px;
}
main table td{
	width:80%;
	padding: 10px;
	background:#fff;
}
.finish{
	max-width: 1000px;
	margin: 40px auto;
}
.finishbox{
	max-width: 1000px;
	margin: 40px auto;
	padding: 30px;
	background: #eee;
	border-radius: 10px;
}
.back{
	text-align: center;
	margin: 50px auto 0;
}
.back a{
	font-weight: 500;
	color:#0068b7;
	border:2px solid #0068b7;
	padding: 10px 60px;
	display: inline-block;
	background: #fff;
	border-radius: 100px;
	margin-top: 10px;
	transition: 0.3s all ease;
	position: relative;
}
.back a:after{
	content:"";
	position: absolute;
	border-left: 2px solid #0068b7;
	border-top: 2px solid #0068b7;
	transform: rotate(135deg);
	width: 10px;
	height: 10px;
	right:22px;
	bottom: 40%;
	transition: 0.3s all ease;
}
.back a:hover{
	color:#fff;
	background: #0068b7;
}
.back a:hover:after{
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	right:15px;
}
@media only screen and (max-width: 767.98px) {
	.h2title{
		font-size: 130%;
		margin: 40px 0;
	}
	.h2title:after{
		width: 20px;
	}
	.formbox{
		margin: 20px auto;
	}
	.formbox input,
	.formbox textarea{
		width:100%;
	}
	.check{
		width:100%;
		margin: 0 auto;
	}
	main table th{
		width:100%;
		padding: 10px 10px 0 10px;
	}
	main table td{
		width:100%;
		padding: 5px 10px 10px 10px;
	}
	.back{
		text-align: center;
		margin: 50px auto 0;
	}
}