@charset "UTF-8";
/*-----------------------お問合せ*/
.contact .contact_title {
	font-size: clamp(1rem, 0.780rem + 0.939vw, 1.625rem);
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 1.5em;
	position: relative;
}
.contact .area_tel {
	max-width: 1000px;
	margin: 0 auto 3em;
	padding: 3em;
	border-radius: 30px;
	background-color: #ffffff;
	background-size: 8px 8px;
}
.contact .area_tel .tel {
	font-size: clamp(1.875rem, 1.479rem + 1.69vw, 3rem);
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #20b9e6;
}
.contact .area_tel .tel_lead {
	text-align: center;
}
.contact .form_wrap {
	max-width: 1000px;
	padding: 4em;
	border-radius: 30px;
	margin: 0 auto;
	background-color: #ffffff;
}
.contact .form_wrap .text {
	margin-bottom: 40px;
}
.contact .form_wrap .dl_form {
	display: flex;
	flex-wrap: wrap;
	padding: 2em 0;
	border-bottom: 1px dashed #bc9c80;
}
.contact .form_wrap .dl_form dt {
	width: 26%;
	line-height: 1.8;
	font-weight: 600;
}
.contact .form_wrap .dl_form dd {
	width: 74%;
	line-height: 1.8;
}
.contact .form_wrap .dl_form dt span {
	display: inline-block;
	padding: 5px 10px;
	font-size: clamp(0.625rem, 0.581rem + 0.188vw, 0.75rem);
	line-height: 1;
	background-color: #ffc800;
	color: #ffffff;
	border-radius: 12px;
	margin-left: 15px;
}
.contact .form_wrap .dl_form dd .form-control {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 20px;
	margin: 0 10px 0 0;
	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 .form_wrap .dl_form dd .form-control.short {
	max-width: 300px;
	margin: 0 10px 10px 0;
}
.contact .form_wrap .dl_form dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 6px 12px;
	margin: 3px auto;
	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);
	position: relative;
	background-image: url("../img/common/select_arrow.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px auto;
}
.contact .form_wrap .dl_form dd textarea.form-control {
	width: 100%;
	height: auto;
}
.contact .form_wrap .submit_area {
	margin: 30px auto 0;
	text-align: center;
}
.contact .form_wrap .submit_area input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 240px;
	height: 60px;
	border-radius: 30px;
	padding: 0 10px;
	color: #ffffff;
	border: none;
	background-color: #ffc800;
	text-align: center;
	transition: .3s;
	cursor: pointer;
	margin: 0 auto;
	position: relative;
}
.contact .form_wrap .submit_area input[type="submit"]:hover {
	background-color: #ffdc62;
}
.contact .btn_link {
	margin: 90px auto;
}
@media screen and (max-width: 768px) {
	.contact .area_tel {
		margin: 0 auto 2em;
		padding: 2em;
		border-radius: 20px;
	}
	.contact .form_wrap {
		padding: 3em 2em;
		border-radius: 20px;
	}
	.contact .form_wrap .text {
		margin-bottom: 30px;
	}
	.contact .form_wrap .dl_form {
		flex-direction: column;
		padding: 1.5em 0;
	}
	.contact .form_wrap .dl_form dt {
		width: 100%;
		margin-bottom: 0.8em;
	}
	.contact .form_wrap .dl_form dd {
		width: 100%;
	}
}

