@charset "UTF-8";
/*-------------------------------------お問合せ*/
.section_kv #contact.kv_inner {
	background-image: url("../img/contact/img_kv.jpg");
	background-position: left center;
}
.contact {
	overflow: hidden;
}
.contact a {
	transition: .2s;
}
.contact a:hover {
	color: #c79f62;
}
.contact .section_inner {
	max-width: 900px;
}
.contact .contact_title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	padding-bottom: 0.4em;
	margin-bottom: 1.4em;
	position: relative;
}
.contact .contact_title::after {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	background-color: #b41e00;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.contact .area_tel .tel {
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
	color: #b41e00;
}
.contact .area_tel .tel a {
	color: #b41e00;
}
.contact .area_tel .tel_time {
	text-align: center;
}

.contact .form_wrap {
	max-width: 1000px;
	margin: 80px auto 0;
}
.contact .form_wrap .text_mail {
	font-size: 2rem;
	font-weight: 600;
	color: #b41e00;
	text-align: center;
	margin-bottom: 1em;
}
.contact .form_wrap .text {
	text-align: center;
	margin-bottom: 40px;
}
.contact .dl_form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #cccccc;
}
.contact .dl_form:first-child {
	border-top: 1px solid #cccccc;
}
.contact .dl_form dt {
	width: 340px;
	text-align: left;
	line-height: 40px;
	font-weight: 700;
}
.contact .dl_form.kengaku dt {
	padding-right: 40px;
	line-height: 1.8;
}
.contact .dl_form.survey dt {
	padding-right: 40px;
	line-height: 1.8;
}
.contact .dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	border-radius: 5px;
	font-size: 1.1rem;
	line-height: 2;
	background-color: #f00000;
	color: #ffffff;
	margin-left: 15px;
}
.contact .dl_form dd {
	width: calc(100% - 340px);
}
.contact .dl_form dd .purpose_item_wrap {
	display: flex;
	flex-wrap: wrap;
}
.contact .dl_form dd .purpose_item_wrap .purpose_item {
	width: 50%;
	margin-bottom: 10px;
}
.contact .dl_form dd .purpose_item_wrap .purpose_item label {
	cursor: pointer;
}
.contact .dl_form dd .form-control {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 20px;
	margin: 0 10px 0 0;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 5px;
	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 {
	width: 100%;
	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: #b41e00;
	border: 1px solid #b41e00;
	border-radius: 5px;
	transition: .4s;
}
.contact input[type=submit]:hover {
	background-color: #f00000;
	border: 1px solid #f00000;
	cursor: pointer;
}
.contact .btn_link {
	margin: 90px auto;
}
.contact .btn_link:hover {
	color: #ffffff;
	background-color: #f00000;
	border: 1px solid #f00000;
}
@media screen and (max-width: 767px) {
	.contact .area_tel .tel {
		font-size: 2rem;
	}
	.contact .contact_title {
		font-size: 1.6rem;
	}
	.contact .contact_title::after {
		width: 40px;
	}
	.contact .form_wrap .text_mail {
		font-size: 1.6rem;
	}
	.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%;
	}
}
@media screen and (max-width: 480px) {
	.contact .dl_form dd .purpose_item_wrap .purpose_item {
		width: 100%;
	}
}



