@charset "UTF-8";
/*---------------ご相談・お問合せ*/
.contact .section_title {
	font-size: 2.6rem;
	font-weight: 600;
	color: #1e73be;
	margin-bottom: 2.6em;
	text-align: center;
}
.contact .phone_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contact .phone_wrap .phone_item {
	width: 360px;
	padding: 2em;
	margin: 0 10px 30px;
	background-color: #ffffff;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
	text-align: center;
}
.contact .phone_wrap .phone_item .title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.5em;
}
.contact .phone_wrap .phone_item .phone_num {
	font-size: 2.8rem;
	font-weight: 600;
	color: #1e73be;
}
.contact .phone_wrap .phone_item .phone_num a {
	color: #1e73be;
}
@media screen and (max-width: 768px) {
	.contact .section_title {
		font-size: 2.4rem;
		margin-bottom: 2em;
	}
	.contact .phone_wrap .phone_item {
		width: 100%;
	}
	.contact .phone_wrap .phone_item .title {
		font-size: 1.8rem;
	}
	.contact .phone_wrap .phone_item .phone_num {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 480px) {
	.contact .section_title {
		font-size: 2.2rem;
	}
	.contact .phone_wrap .phone_item {
		padding: 1.2em;
		margin: 0 10px 20px;
	}
	.contact .phone_wrap .phone_item .title {
		font-size: 1.6rem;
	}
	.contact .phone_wrap .phone_item .phone_num {
		font-size: 2.2rem;
	}
}

.contact .contact_form_wrap {
	max-width: 960px;
	margin: 0 auto;
}
.contact .dl_form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #dddddd;
}
.contact .dl_form:first-child {
	border-top: 1px solid #dddddd;
}
.contact .dl_form dt {
	width: 340px;
	text-align: left;
	line-height: 40px;
	font-weight: 600;
}
.contact .dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	font-size: 1.1rem;
	line-height: 2;
	background-color: #f5c93d;
	color: #ffffff;
	border-radius: 11px;
	margin-left: 15px;
}
.contact .dl_form dd {
	width: calc(100% - 340px);
}
.contact .dl_form dd .interest_item {
	width: 100%;
	margin-bottom: 0.3em;
}
.contact .dl_form dd .interest_item label {
	cursor: pointer;
}
.contact .dl_form dd .phone_explanation {
	width: 100%;
	margin-bottom: 0.3em;
}
.contact .dl_form dd .phone_explanation label {
	cursor: pointer;
}
.contact .dl_form dd .email_response {
	width: 100%;
	margin-bottom: 0.3em;
}
.contact .dl_form dd .email_response label {
	cursor: pointer;
}
.contact .dl_form dd .payment_method {
	width: 100%;
	margin-bottom: 0.3em;
}
.contact .dl_form dd .payment_method 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: #1e73be;
	background-color: #ffffff;
	border: 1px solid #1e73be;
	border-radius: 25px;
	transition: .4s;
	cursor: pointer;
}
.contact input[type=submit]:hover {
	background-color: #1e73be;
	color: #ffffff;
}
.contact .btn_link {
	margin: 90px auto;
}
@media screen and (max-width: 768px) {
	.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%;
	}
}




