@charset "UTF-8";



/* ------------------------------
	.mv
------------------------------ */
.mv{
	height: 495px;
	background: url(../img/contact/mv_img.jpg) no-repeat center center;
	background-size: cover;
}


@media screen and (max-width: 768px){
	.mv{
		height: 50vw;
	}
}



/* ------------------------------
	.contact
------------------------------ */
.contact{
	padding: 55px 0 200px;
}

.contact .sec_ttl{
	margin-bottom: 35px;
}

.contact .tel_box{
	margin-top: 30px;
}

.contact .tel_box .txt{
	text-align: center;
}
.contact .tel_box .txt a{
	font-size: 4.0rem;
	color: #90c766;
}


@media screen and (max-width: 768px){
	.contact{
		padding: 8vw 0 22vw;
	}

	.contact .sec_ttl{
		margin-bottom: 8%;
	}

	.contact .tel_box{
		margin-top: 6%;
	}

	.contact .tel_box .txt a{
		font-size: 7vw;
	}
}



/* ------------------------------
	.contact_form
------------------------------ */
.contact_form{
	width: 100%;
	max-width: 750px;
	margin: 40px auto 0;
}

.contact_form .req,
.contact_form .any{
	display: inline-block;
	margin-left: 20px;
	padding: 1px 1.5em;
	background: #ff502e;
	border-radius: 10px;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
}
.contact_form .any{
	background: #686767;
}

.contact_form dl{
	padding: 50px 0;
	border-bottom: 1px solid #aaa;
}

.contact_form dt,
.contact_form dd{
	line-height: 1.6;
	word-break: break-all;
}

.contact_form dt{
	padding-bottom: 15px;
}

.contact_form label{
	display: flex;
	align-items: center;
	cursor: pointer;
	line-height: 1.6;
}

.contact_form label + label{
	margin-left: 25px;
}

.contact_form .radio_wrap{
	display: flex;
	align-items: center;
}

.contact_form input[type="radio"]{
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
	border: 1px solid #333;
	background-color: #fff;
	border-radius: 50%;
}

.contact_form input[type="radio"]:checked::before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #333;
}

.contact_form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]){
	width: 100%;
	height: 45px;
	padding: 0 15px;
	background: #efefef;
	word-break: break-all;
}

.contact_form textarea{
	width: 100%;
	height: 200px;
	padding: 10px 15px;
	background: #efefef;
	word-break: break-all;
}

.contact_form .add_wrap{
	display: flex;
	flex-wrap: wrap;
}

.contact_form dd .add_wrap + *{
	margin-top: 20px;
}

.contact_form .add_box{
	position: relative;
	display: flex;
	margin-right: 20px;
}
.contact_form .add_box::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 135px;
	margin: auto;
	content: "";
	display: block;
	width: 15px;
	height: 1px;
	background: #333;
}

.contact_form .add_box input:nth-child(1){
	width: 120px !important;
}
.contact_form .add_box input:nth-child(2){
	width: 150px !important;
}

.contact_form .add_box input + input{
	margin-left: 46px;
}

.contact_form .add_wrap .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 230px;
	height: 45px;
	padding: 0;
	border-radius: 30px;
	background: #333;
	font-size: 1.4rem;
}

.contact_form .form_check{
	display: flex;
	margin-top: 45px;
}

.contact_form .form_check > .txt{
	flex-shrink: 0;
}

.contact_form .check_wrap{
	margin-left: 50px;
}

.contact_form .check_wrap label,
.contact_form .check_wrap .txt{
	font-size: 1.5rem;
}

.contact_form .check_wrap label{
	margin-top: 15px;
}

.contact_form .check_wrap .check{
	flex-shrink: 0;
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 15px;
	background: #fff;
	border: 1px solid #111;
	cursor: pointer;
}
.contact_form .check_wrap input[type="checkbox"]{
	margin: 0;
}
.contact_form .check_wrap .check::before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 2px;
	margin: auto;
	content: "";
	display: none;
	width: 12px;
	height: 7px;
	transform: rotate(-40deg);
	border-left: 3px solid #111;
	border-bottom: 3px solid #111;
}
.contact_form .check_wrap input[type="checkbox"]:checked + .check::before{
	display: block;
}

.contact_form .form_btn{
	margin-top: 70px;
	border-radius: 30px;
}


@media screen and (max-width: 768px){
	.contact_form dl{
		padding: 5vw 0;
	}

	.contact_form .req,
	.contact_form .any{
		font-size: 1.2rem;
		margin-left: 1.5em;
	}

	.contact_form dt,
	.contact_form dd,
	.contact_form .txt{
		font-size: 1.4rem;
	}

	.contact_form dt{
		padding-bottom: 3vw;
	}

	.contact_form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]){
		height: 35px;
		padding: 0 10px;
		font-size: 1.4rem;
	}

	.contact_form .form_check{
		margin-top: 5vw;
	}

	.contact_form .add_box{
		margin-right: auto;
	}
	.contact_form .add_box::before{
		left: 115px;
	}

	.contact_form .add_box input:nth-child(1){
		width: 100px !important;
	}
	.contact_form .add_box input:nth-child(2){
		width: 120px !important;
	}

	.contact_form .add_wrap .add_btn{
		width: 100%;
	}
	.contact_form .add_wrap .btn{
		width: 200px;
		height: 35px;
		margin: 3vw 0 0;
		font-size: 1.2rem;
	}
	.contact_form dd .add_wrap + *{
		margin-top: 4vw;
	}

	.contact_form .check_wrap label,
	.contact_form .check_wrap .txt{
		font-size: 1.3rem;
	}

	.contact_form .check_wrap{
		margin-left: 25px;
	}

	.contact_form .form_btn{
		margin-top: 10vw;
		border-radius: 10vw;
	}
}