@charset "UTF-8";
/*-----------------------ご相談・お問合せ*/
.section_mv #contact.mv_inner {
	background-image: url("../img/contact/main_v.jpg");
}
.contact {
	overflow: hidden;
}
.contact a {
	color: #007560;
}
.contact .intro {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.contact .form_wrap {
	max-width: 1000px;
	margin: 60px auto 0;
}
.contact .dl_form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	letter-spacing: 0.05em;
	border-bottom: 1px dashed #dddddd;
}
.contact .dl_form dt {
	width: 300px;
	font-weight: 600;
	text-align: left;
	position: relative;
}
.contact .dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	font-size: 1.2rem;
	background-color: #f9e632;
	color: #007850;
	margin-left: 10px;
}
.contact .dl_form dd {
	width: calc(100% - 300px);
}
.contact .dl_form dd .form-control {
	display: block;
	width: 100%;
	height: 40px;
	padding: 6px 12px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.8em;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0);
}
.contact .dl_form dd .form-control.short {
	max-width: 300px;
	margin: 0 10px 10px 0;
}
.contact .dl_form dd textarea.form-control {
	height: auto;
}
.contact .submit_area {
	margin: 30px auto 0;
	text-align: center;
}
.contact .submit_area input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	max-width: 200px;
	height: 50px;
	padding: 6px 12px;
	margin: 0 auto;
	color: #ffffff;
	background-color: #007850;
	border: 1px solid #007850;
	transition: .2s;
}
.contact input[type=submit]:hover {
	color: #007850;
	background-color: #ffffff;
	cursor: pointer;
}
.contact .btn_link {
	margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
	.contact .dl_form {
		flex-direction: column;
	}
	.contact .dl_form dt {
		width: 100%;
		padding-left: 0;
		margin-bottom: 10px;
	}
	.contact .dl_form dt span {
		position: static;
		margin-right: 10px;
	}
	.contact .dl_form dd {
		width: 100%;
	}
}

