@charset "utf-8";
.form p{
	text-align: left;
}
.form table,
.form table tbody,
.form table thead,
.form table tr,
.form table th,
.form table td{
	display: block;
	box-sizing: border-box;
}
.form table{
	margin-bottom: 30px;
}
.form table tr{
	border-bottom: solid  1px #FFF;
}
.form table tr:last-child{
	border-bottom: 0;
}

.form table th{
	text-align: center;
	background-color: #DDD;
	font-weight: normal;
	padding: 10px;
	box-sizing: border-box;
}
.form table th span{
	font-size: 10px;
	color: #FF0000;
}

.form table td{
	background-color: #EEE;
	font-weight: normal;
	text-align: center;
	padding: 10px;
	empty-cells: show;
}
.form table tr:first-child th{
	border-radius: 10px 10px 0 0;
}

.form table tr:last-child td{
	border-radius: 0 0 10px 10px;
	text-align: left;
}
.form{
	margin-top: 20px;
	margin-bottom: 100px;
}
.form input[type="email"],
.form input[type="tel"],
.form input[type="text"]{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-size: 16px;
	border-radius: 10px;
	border: solid 1px #DDD;
	box-sizing: border-box;
	text-align: center;
}

.form textarea{
	font-size: 16px;
	padding: 10px;
	border-radius: 10px;
	padding: 10px;
	width: 100%;
	height: 150px;
	box-sizing: border-box;
	border: solid 1px #DDD;
}
.douiRequired{
	margin: 0 auto;
	border: dotted 1px #FF0000;
	padding: 10px;
	box-sizing: border-box;
	background-color: #FFFEEE;
}
.privacy h3{
	font-size: 18px;
	margin: 0;
}

.privacy p{
	margin: 5px 0;
}

.form .submit{
	opacity: 1;
	background-color: #6FB92C;
	width: 200px;
	height: 40px;
	border-radius: 10px;
	color: #FFF;
	font-weight: 500;
	border: 0;
	font-size: 16px;
	cursor: pointer;
}
.form .submit:hover{
	background-color: #92D256;
}

.backbutton{
	text-align: center;
	margin: 20px auto;
}
.backbutton a{
	display: inline-block;
	opacity: 1;
	background-color: #6FB92C;
	width: 250px;
	padding: 10px 0;
	text-decoration: none;
	border-radius: 10px;
	color: #FFF;
	font-weight: 500;
	border: 0;
	font-size: 20px;
	cursor: pointer;
}
.form p.thanks{
	text-align: center;
	margin: 150px auto;
}

/**/
.scroll{
	margin: 20px auto;
	height: 200px;
	padding: 10px;
	text-align: left;
	overflow-y: scroll;
	border: solid 1px #AAA;
	box-sizing: border-box;
}