@charset "euc-jp";
/* mv
----------------------------------------------------------------------*/
.contact .mv_img{
	background-image: url(../images/contact_mv_img.webp);
}
/* main
----------------------------------------------------------------------*/
.contact_tel{
	font-size: 2.2rem;
}

/* control
----------------------------------------------------------------------*/
input{
	min-height: 44px;
}
input[type="radio"],
input[type="checkbox"]{
	display: none;
}
form input + .btn{
	width: auto;
	min-height: 44px;
	margin-left: 6px;
}
.control_xs{
	width: 5rem;
}
.control_s{
	width: 10rem;
}
.control_m{
	width: 20rem;
}
.control_l{
	width: 100%;
}
select{
	padding-right: 28px;
}
textarea{
	width: 100%;
}
::placeholder{
	color: #666;
}
.required::after{
	content: "É¬¿Ü";
	display: inline-block;
	padding: 4px;
	margin: 0 0 4px 6px;
	background: var(--color-primary);
	border-radius: 5px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
}
.checkbox_txt{
	display: inline-flex;
	align-items: center;
	gap: 0 5px;
	position: relative;
	min-height: 18px;
	padding: 6px 6px 6px calc(1.5em + 8px);
	border-radius: 5px;
	cursor: pointer;
	vertical-align: middle;
	background: rgba(var(--color-primary-rgb), .15);
	transition: background .1s ease-in-out, border .1s ease-in-out;
}
.checkbox_txt::after,
.checkbox_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
}
.checkbox_txt::after{
	inset: 0 auto 2px 6px;
	width: 7px;
	height: 10px;
	margin: auto;
	transition: transform .06s .04s;
	transform: rotate(90deg);
}
input:checked + .checkbox_txt::after{
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	z-index: 1;
}
input + .checkbox_txt::after{
	inset: 13px auto auto 13px;
	margin: auto 0;
}
.checkbox_txt::before{
	inset: 8px auto 0 6px;
	width: 22px;
	height: 22px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	transition: background .1s;
}
input:checked + .checkbox_txt::before{
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}
.select_page select{
	font-size: 2rem;
}

/*error*/
.is-error{
	background-color: #ffe6ea !important;
	border: 1px solid #f9000d;
	border-radius: 5px;
}
.error_box{
	margin-top: 20px;
}
.error,
.error_txt{
	color: #f9000d;
}


/*=====================================================================
   769 start
======================================================================*/
@media screen and ( min-width:769px ){
.contact_tel{
	text-align: center;
}

}