@charset "UTF-8";
/*-----------------------お問合せ*/
.section_mv #contact.mv_inner {
	background-image: url("../img/contact/mv.jpg");
}
.contact .section_inner {
	max-width: 1000px;
}
.contact .contact_title {
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 1em;
	position: relative;
}
.contact .area_tel {
	padding: 3em;
	background-color: #efefef;
}
.contact .area_tel.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.contact .area_tel.fadeIn.active {
	top: 0;
	opacity: 1;
}
.contact .area_tel .tel {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
	color: #05287d;
}
.contact .form_wrap {
	max-width: 1000px;
	margin: 80px auto 0;
}
.contact .form_wrap.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.contact .form_wrap.fadeIn.active {
	top: 0;
	opacity: 1;
}
.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: 1px;
	border-bottom: 1px solid #cccccc;;
}
.contact .dl_form:first-child {
	border-top: 1px solid #cccccc;
}
.contact .dl_form dt {
	width: 340px;
	text-align: left;
	font-weight: 600;
}
.contact .dl_form dt span {
	display: inline-block;
	padding: 5px 10px 7px 10px;
	font-size: 1.1rem;
	line-height: 1;
	background-color: #193c8c;
	color: #ffffff;
	border-radius: 3px;
	margin-left: 15px;
}
.contact .dl_form dd {
	width: calc(100% - 340px);
}
.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] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 60px;
	border-radius: 30px;
	padding: 0 10px;
	border: 1px solid #ffffff;
	color: #ffffff;
	background: #05196E;
	background: linear-gradient(90deg, rgba(5, 25, 110, 1) 0%, rgba(40, 120, 255, 1) 50%, rgba(5, 25, 110, 1) 100%);
	background-size: 200% 100%;
	text-align: center;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	cursor: pointer;
	margin: 0 auto;
	position: relative;
}
.contact input[type=submit]::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-left: 10px solid #ffffff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.contact input[type=submit]:hover {
	background-position: 100% 0;
}
.contact .btn_link {
	margin: 90px auto;
}
@media screen and (max-width: 768px) {
	.contact .text {
		text-align: left;
	}
	.contact .contact_title {
		font-size: 2.2rem;
	}
	.contact .area_tel .tel {
		font-size: 2.6rem;
	}
	.contact .dl_form {
		flex-direction: column;
		padding: 1em 0 1.3em;
	}
	.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%;
	}
}

