@charset "UTF-8";
/*-----------------------お問合せ*/
.section_mv #contact.mv_inner {
	background-image: url("../img/contact/bg_main.jpg");
	background-position: 50% 50%;
}
.contact {
	background-color: #efefef;
	background-image: url("../img/common/bg_pattern.png");
	background-size: 100px auto;
}
.contact .text {
	font-family: inherit;
	font-size: inherit;
	line-height: 2;
}
.form_wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.form_wrap .text {
	text-align: center;
	margin-bottom: 40px;
}
.dl_form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #dddddd;
}
.dl_form:first-child {
	border-top: 1px solid #dddddd;
}
.dl_form dt {
	width: 340px;
	text-align: left;
	line-height: 40px;
	font-weight: 600;
}
.dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	font-size: 0.687rem;
	line-height: 2;
	background-color: #333333;
	color: #ffffff;
	border-radius: 11px;
	margin-left: 15px;
}
.dl_form dd {
	width: calc(100% - 340px);
}
.dl_form dd .radio_item,
.dl_form dd .check_item {
	margin-bottom: 5px;
}
.dl_form dd .radio_item label,
.dl_form dd .check_item label {
	cursor: pointer;
}
.dl_form dd .form-control {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 20px;
	margin: 0 10px 0 0;
	line-height: 1.8;
	font-family: inherit;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 5px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0);
}
.dl_form dd .form-control.short {
	max-width: 300px;
	margin: 0 10px 10px 0;
}
.dl_form dd textarea.form-control {
	width: 100%;
	height: auto;
}
.submit_area {
	margin: 30px auto 0;
	text-align: center;
}
 .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: #000000;
	background-color: #ffffff;
	border: 0.8px solid #000000;
	border-radius: 25px;
	transition: 1s;
	cursor: pointer;
}
.contact input[type=submit]:hover {
	background-color: #e4e4e4;
}
.contact .btn_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 50px;
	padding: 0 15px;
	border-radius: 50vh;
	border: 0.8px solid #000000;
	transition: all 1s;
	margin: 90px auto;
}
.contact .btn_link:hover {
	background-color: #e4e4e4;
}
@media screen and (max-width: 768px) {
	.contact .text {
		text-align: left;
	}
	.dl_form {
		flex-direction: column;
		padding: 1em 0 1.3em;
	}
	.dl_form dt {
		width: 100%;
		padding-left: 0;
		margin-bottom: 10px;
	}
	.dl_form dt span {
		position: static;
		margin-right: 10px;
	}
	.dl_form dd {
		width: 100%;
	}
}

