@charset "UTF-8";

.tel-box {
	max-width: 10em;
	margin: 0 auto;
	padding: 15px;
	background: #FFF;
	border: solid 3px #4CAF50;
	border-radius: 10px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

#mail .box {
	max-width: 750px;
	margin: 0 auto;
}

#mail p {
	text-align: center;
}

#mail .mail-address {
	font-size: 24px;
	font-weight: bold;
}

#mail table {
	width: 100%;
	border: none;
}

#mail 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;
}

#mail table td {
	padding: 15px 10px;
	border-left: none;
	border-bottom: dotted 1px #4caf50;
}

#mail table td .text,
#mail table td .content {
	width: 100%;
	padding: 5px;
	border: solid 2px #BBB;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
}

#mail #privacy-policy {
	margin: 30px 0 20px;
	padding: 10px 15px;
	height: 15em;
	overflow-y: scroll;
	border: solid 1px #AAA;
	font-size: 14px;
	text-align: left;
}

#mail #privacy-policy p {
	font-size: 14px;
	text-align: left;
}

#mail .acceptance-box {
	text-align: center;
}

#mail .submit {
	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;
}

#mail .submit:hover {
	opacity: 0.8;
	box-shadow: 0 2px 5px #888;
}

#mail .submit:active {
	box-shadow: none;
}

#mail .submit[disabled] {
	background: #BBB;
	box-shadow: none;
	cursor: auto;
}

#mail .submit[disabled]:hover {
	opacity: 1;
	box-shadow: none;
}

/* reCAPTCHA */
.grecaptcha-badge {
	visibility: visible;
}

@media screen and (max-width:767px) {
	#mail table tbody th {
		display: block;
		width: 100%;
		padding: 15px 0 5px;
		border-bottom: none;
		box-sizing: border-box;
	}
	
	#mail table tbody td {
		display: block;
		width: 100%;
		padding: 0 0 15px;
		box-sizing: border-box;
	}

}