@charset "utf-8";

form#mail_form * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

form#mail_form {
	width: 960px;
	margin: 50px auto;
	padding: 30px 0;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
	font-size: 95%;
	line-height: 1.8;
}

form#mail_form dl {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

form#mail_form dl dt {
	clear: both;
	width: 30%;
	float: left;
	border-top: 1px solid #cccccc;
	padding: 30px 0;
	font-weight: bold;
	justify-content: flex-start;
}

form#mail_form dl dd {
	width: 65%;
	float: right;
	border-top: 1px solid #cccccc;
	padding: 15px 0;
}

form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child + dd {
	border-top: none;
}

form#mail_form dl dt label {
	display: inline-block;
	max-width: 200px;
	text-align: center;
	vertical-align: middle;
	line-height: 1.4;
}

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	width: 54px;
	padding: 4px 0;
	margin-right: 18px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
}

form#mail_form dl dt span.required {
	color: #ffffff;
	background: #D90000;
	border: 1px solid #D90000;
}

form#mail_form dl dt span.optional {
	color: #2457ff;
	background: #ffffff;
	border: 1px solid #2457ff;
}

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"],
form#mail_form select {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	margin-top: 0;
}

form#mail_form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 200px;
	padding: 14px 20px;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 5px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form select:focus,
form#mail_form textarea:focus {
	box-shadow: 0 0 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
	outline: none;
}

form#mail_form select {
	background: #fafafa url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polyline points='4,7 10,13 16,7' fill='none' stroke='%23333' stroke-width='2'/></svg>") no-repeat right 15px center;
}
form#mail_form select:focus {
	background: #fafafa url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polyline points='4,7 10,13 16,7' fill='none' stroke='%23333' stroke-width='2'/></svg>") no-repeat right 15px center;
}

form#mail_form input#company,
form#mail_form input#phone,
form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm {
	width: 100%;
}

form#mail_form p#form_submit {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;
	border-top: 1px solid #cccccc;
}

form#mail_form input[type="button"] {
	display: block;
	margin: 0 auto;
	padding: 20px;
	width: 300px;
	border-radius: 50px;
	background: linear-gradient(90deg, #E46A2E 0%, #F2B233 100%);
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	border: none;
	outline: none;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);;
	cursor: pointer;
	transition: 0.3s;
}

form#mail_form input[type="button"]:hover {
	filter: brightness(0.95);
	transform: translateY(-2px);
}

form#mail_form .ptxt {
	display: block;
	width: 90%;
	margin: 0 auto 10px;
	padding: 15px;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 10px;
}

/* responsive */
@media screen and (max-width: 1000px) {

	form#mail_form {
		width: 95%;
		font-size: 100%;
	}

	form#mail_form dl {
		overflow: visible;
	}

	form#mail_form dl dt {
		width: auto;
		float: none;
		text-align: left;
		padding: 15px 0 8px;
	}

	form#mail_form dl dd {
		width: auto;
		float: none;
		border-top: none;
		padding: 0 0 20px 0;
	}

	form#mail_form dl dt label {
		width: auto;
		text-align: left;
	}

	form#mail_form dl dt span.required,
	form#mail_form dl dt span.optional {
		margin-right: 12px;
	}

	form#mail_form input[type="button"] {
		width: 100%;
		max-width: 320px;
	}
}

/* error message */
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match{
	color:#D90000;
	font-size:14px;
	margin-top:6px;
	display:block;
}
