@charset "UTF-8";
/*---------------ご相談・お問合せ*/
.contact {
	position: relative;
}
.contact .section_inner {
	max-width: 900px;
}
.contact .text {
	text-align: center;
	margin-bottom: 3em;
}
.contact .contact_title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 1em;
	position: relative;
}
.contact .area_tel {
	padding: 3em;
	border: 3px solid #04aa72;
	border-radius: 40px;
	background-image: url("../img/common/dot_green.png");
	background-repeat: repeat;
}
.contact .area_tel .tel {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #04aa72;
}
.contact .area_tel .tel_time {
	text-align: center;
}
.contact .form_wrap {
	max-width: 1000px;
	margin: 80px auto 0;
}
.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 dotted #cccccc;
}
.contact .dl_form:first-child {
	border-top: 1px dotted #cccccc;
}
.contact .dl_form dt {
	width: 340px;
	text-align: left;
	line-height: 40px;
	font-weight: 700;
}
.contact .dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	font-size: 1.1rem;
	line-height: 2;
	background-color: #ffd400;
	color: #ffffff;
	border-radius: 11px;
	margin-left: 15px;
}
.contact .dl_form dd {
	width: calc(100% - 340px);
}
.contact .dl_form dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 6px 12px;
	margin: 0 auto;
	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);
	position: relative;
	background-image: url("../img/common/select_arrow.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px auto;
}
.contact .dl_form dd .radio_item,
.contact .dl_form dd .check_item {
	margin-bottom: 5px;
}
.contact .dl_form dd .radio_item label,
.contact .dl_form dd .check_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 .check_item .form-control#others_text {
	width: 0;
	padding: 0;
	border: none;
}
.contact .dl_form dd .check_item .form-control#others_text.check {
	display: block;
	width: 100%;
	padding: 20px;
	border: 1px solid #dddddd;
}
.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: #04aa72;
	border: 1px solid #04aa72;
	border-radius: 25px;
	transition: .3s;
	cursor: pointer;
}
.contact input[type=submit]:hover {
	transform: translateY(-5px);
}
.contact .btn_link {
	margin: 90px auto;
}
@media screen and (max-width: 768px) {
	.contact .text {
		text-align: left;
	}
	.contact .area_tel .tel {
		font-size: 2.6rem;
	}
	.contact .contact_title {
		font-size: 1.8rem;
	}
	.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%;
	}
}

