@charset "UTF-8";

#form {
	margin: 20px 0;
}

#form table {
	width: 100%;
	border: none;
}

#form table th {
	width: 11em;
	padding: 15px 10px;
	background: #FFF;
	border-left: none;
	border-bottom: dotted 1px #4caf50;
	color: #4caf50;
	font-weight: bold;
	text-align: left;
}

#form table td {
	padding: 15px 10px;
	border-left: none;
	border-bottom: dotted 1px #4caf50;
}

#form table td .text,
#form table td .content,
#form table td .dropdown {
	width: 100%;
	margin: 5px 0;
	padding: 5px;
	border: solid 2px #BBB;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
}

#form table td #your-postcode-1 {
	width: 3em;
}

#form table td #your-postcode-2 {
	width: 4em;
}

#form #privacy-policy {
	margin: 30px 0 20px;
	padding: 10px 15px;
	height: 15em;
	overflow-y: scroll;
	border: solid 1px #AAA;
	font-size: 14px;
	text-align: left;
}

#form #privacy-policy p {
	font-size: 14px;
	text-align: left;
}

#form .acceptance-box {
	text-align: center;
}

#form .submit-box {
	text-align: center;
}

#form .submit {
	display: inline-block;
	margin-top: 20px;
	padding: 8px 50px;
	background: #4caf50;
	border: none;
	border-radius: 5px;
	box-shadow: 0 2px 5px #BBB;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

#form .submit:hover {
	opacity: 0.8;
	box-shadow: 0 2px 5px #888;
}

#form .submit:active {
	box-shadow: none;
}

#form .submit[disabled] {
	background: #BBB;
	box-shadow: none;
	cursor: auto;
}

#form .submit[disabled]:hover {
	opacity: 1;
	box-shadow: none;
}

/* reCAPTCHA */
.grecaptcha-badge {
	visibility: visible;
}

/* スマホ版 */
@media screen and (max-width:767px) {
	#form table tbody th {
		display: block;
		width: 100%;
		padding: 15px 0 5px;
		border-bottom: none;
		box-sizing: border-box;
	}

	#form table tbody td {
		display: block;
		width: 100%;
		padding: 0 0 15px;
		box-sizing: border-box;
	}

}