@charset "UTF-8";

/* ------------------------------------------------
                   contact.css
--------------------------------------------------- */
.sec-contact {
	width: 100%;
	padding-bottom: 100px;
	text-align: center;
}
.sec-contact .contact-txt {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 700;
}

.tel-box {
	width: 100%;
}
.tel-info-txt {
	padding: 20px 0;
	background: #149953;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}
.tel-txt {
	margin: 30px auto 20px;
	padding: 10px 30px;
	display: inline-block;
	background: #fbe23c;
	border-radius: 30px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}
.tel-num {
	margin-bottom: 30px;
}
.tel-num a {
	padding-left: 57px;
	display: inline-block;
	background: url("../img/common/icon_tel_red.png") left 7px no-repeat;
	background-size: 37px;
	color: #ef4806;
	font-size: 62px;
	font-weight: 700;
	line-height: 1;
}

.tel-guide-wrap {
	width: 90%;
	margin: 0 auto 60px;
	padding: 40px 50px;
	background: #efefef;
}
.tel-guide-ttl {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #149953;
	color: #149953;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}
.tel-guide-list li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
	font-size: 18px;
	font-weight: 700;
}


.sec-contact .btn-orange {
	margin: 0 auto;
}

.sec-contact .h2-box {
	text-align: center;
}
@media all and (max-width : 767px ){
	.sec-contact {
		width: 100%;
		padding-bottom: 12vw;
		text-align: center;
	}
	.sec-contact .contact-txt {
		margin-bottom: 8vw;
		font-size: 3.6vw;
	}

	.tel-info-txt {
		padding: 4vw 0;
		font-size: 4vw;
	}
	.tel-txt {
		margin: 6vw auto 4vw;
		padding: 2vw 4vw;
		border-radius: 6vw;
		font-size: 3.8vw;
	}
	.tel-num {
		margin-bottom: 6vw;
	}
	.tel-num a {
		padding-left: 8vw;
		display: inline-block;
		background: url("../img/common/icon_tel_red.png") left 0.2vw no-repeat;
		background-size: 6vw;
		font-size: 9vw;
	}

	.tel-guide-wrap {
		width: 100%;
		margin: 0 auto 10vw;
		padding: 5vw;
	}
	.tel-guide-ttl {
		margin-bottom: 4vw;
		padding-bottom: 3vw;
		font-size: 4vw;
		line-height: 1.6;
	}
	.tel-guide-list li {
		font-size: 3.4vw;
	}

}

.grecaptcha-badge {
  bottom: 200px !important;
}


@media all and (max-width : 767px ){
  .grecaptcha-badge {
    bottom: 38vw !important;
  }
}


/*------------------------------------------------------------------------------------------------
    form
--------------------------------------------------------------------------------------------------*/
/*
wrap
---------------------------------------*/
.contact-form-wrap .contact-txt {
	margin-bottom: 60px;
}
.contact-form-item {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #efefef;
	border-top: 1px solid #e3e3e3;
}
.contact-form-item.last{
	border-bottom: 1px solid #e3e3e3;
}

.contact-form-ttl{
	width: 260px;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact-form-req{
	display: inline-block;
	padding: 6px 10px;
	background: #de4b4b;
	border-radius: 4px;
	color: #fff;
	font-size: 13px;
	line-height: 1;
}
.contact-form-detail{
	width: calc(100% - 260px);
	padding: 20px;
	background: #fff;
	text-align: left;
}

@media all and (max-width : 767px ){

	.p-form__box{
		margin: 3vw 0;
		padding: 5vw 3vw 8vw
	}
	.contact-form-item{
		display: block;
	}
	.contact-form-ttl{
		width: 100%;
		padding: 4vw;
	}
	.contact-form-detail{
		width: 100%;
		padding: 4vw;
	}

}





input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
    box-sizing: border-box;
}

textarea {
	resize: vertical;
}


input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}


::placeholder {
	color: #cdcdcd;
}
input[type="text"] {
	width:100%;
    padding: 10px;
	font-size: 16px;
	background: #fff;
	border: 1px solid #efefef;
	border-radius: 5px;
}
.contact-form-submit {
	width: 50%;
	max-width: 400px;
	margin: 40px auto 0;
	position: relative;
}
.contact-form-submit::before {
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: calc(50% - 4px);
	right: 15px;
	transform: rotate(45deg);
	z-index: 3;
}
.contact-form-submit::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #3c3c3c;
	border-radius: 10px;
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: 1;
}
.contact-form-back {
	width: 50%;
	max-width: 400px;
	margin: 40px auto 0;
	position: relative;
}
.mw_wp_form_input .contact-form-back {
	display: none;
}
.contact-form-back::before {
	content: '';
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #525252;
	border-left: 2px solid #525252;
	position: absolute;
	top: calc(50% - 4px);
	left: 15px;
	transform: rotate(45deg);
	z-index: 3;
}
.contact-form-back::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #525252;
	border-radius: 10px;
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: 1;
}
input[type="submit"],
button.back {
	width: 100%;
    padding: 25px 20px;
	background: #525252;
	border-radius: 10px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	position: relative;
	z-index: 2;
}
input[type="submit"].back,
button.back{
	width: 100%;
	background: #fff;
	border: 2px solid #525252;
	color: #525252;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.contact-form-submit:hover input[type="submit"] {
		bottom: -5px;
	}
	.contact-form-submit:hover::before {
		top: calc(50% + 1px);
	}
	.contact-form-back:hover input[type="submit"] {
		bottom: -5px;
	}
	.contact-form-back:hover::before {
		top: calc(50% + 1px);
	}
}
textarea{
	width: 100%;
    padding: 10px;
	font-size: 16px;
	background: #fff;
	border: 1px solid #efefef;
	border-radius: 5px;
	line-height: 1.6;
	resize: none;
}

input[type='checkbox'],
input[type='radio'] {
	opacity: 0;
}


label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 0 0 0 26px;
	position: relative;
	width: auto;
}

label::before {
	content: "";
	display: block;
	border: 2px solid #00295c;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px
}
input[type='radio']:checked+label::before,
input[type='checkbox']:checked+label::before{
	background: #00295c;
}
label::after {
	border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    content: '';
    display: block;
    height: 10px;
	width: 5px;
    opacity: 0;
    position: absolute;
    top: 7px;
    left: 6px;
	transform: rotate(45deg);


}
input[type='radio']:checked+label::after,
input[type='checkbox']:checked+label::after{
	opacity: 1;
}

@media all and (max-width : 767px ){
	input[type="text"] {
		width:100%;
		padding: 2vw;
		border-radius: 1vw;
	}
	.contact-form-submit {
		width: 80%;
		margin: 8vw auto 0;
		position: relative;
	}
	.contact-form-submit::before {
		content: '';
		width: 1.6vw;
		height: 1.6vw;
		position: absolute;
		top: calc(50% - 0.8vw);
		right: 4vw;
	}
	.contact-form-submit::after {
		content: '';
		width: 100%;
		height: 100%;
		border-radius: 2vw;
		position: absolute;
		bottom: -5px;
		left: 0;
		z-index: 1;
	}
	input[type="submit"] {
		width: 100%;
		padding: 5vw;
		border-radius: 2vw;
		font-size: 4vw;
	}
}
