@charset "UTF-8";
/*リセット */
input[type="checkbox"],
input[type="radio"],
input[type="text"],
input[type="email"],
input[type="tel"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="checkbox"] {
	position: relative;
	cursor: pointer;
	padding-left: 1.3889vw;
}
input[type="radio"] {
	position: relative;
	cursor: pointer;
	padding-left: 1.6667vw;
}
input[type="radio"]::before,
input[type="radio"]::after,
input[type="checkbox"]::before,
input[type="checkbox"]::after {
	position: absolute;
	content: "";
	display: block;
}

input[type="checkbox"]::before {
	top: 50%;
	left: 0;
	width: 1.1111vw;
	height: 1.1111vw;
	background-color: #fff;
	border-radius: 2px;
	border: 1px solid #4a4a4a;
	transform: translateY(-50%);
}
input[type="checkbox"]:checked::after {
	top: 50%;
	left: -1px;
	width: 0.3472vw;
	height: 0.625vw;
	border-right: 1px solid #4a4a4a;
	border-bottom: 1px solid #4a4a4a;
	transform: rotate(45deg) translateY(-100%);
}

/* ラジオボタンデザイン */
input[type="radio"]::before {
	background-color: #E9E9E9;
	border-radius: 0.7vw;
	width: 1.2vw;
	height: 1.2vw;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
input[type="radio"]::after {
	top: 0;
	left: 0;
	height: 0.6vw;
	width: 0.3333vw;
	margin-top: 1px;
	transform: rotate(45deg) translateY(-100%);
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
input[type="radio"]:checked::before {
	background-color: #00A1E9;
	border-radius: 0.7vw;
}
input[type="radio"]:checked::after {
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	display: block;
	width: 31.25vw;
	padding: 0.6944vw 1.0417vw;
	font-size: 1.25vw;
	font-family: "Inter";
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6666;
	color: #4a4a4a;
	border-radius: 2px;
	border: none;
	background: #EBEBEB;
	cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
	height: 3.4722vw;
	display: flex;
	align-items: center;
	line-height: 1;
}
input[type="text"].text-half {
	width: 15.2778vw;
}
input[type="tel"] {
	width: 13.1944vw;
}
.selectbox {
	display: inline-flex;
	align-items: center;
	position: relative;
}
.selectbox::after {
	position: absolute;
	content: '';
	pointer-events: none;
	top: 48%;
	right: 2.1528vw;
	transform: translate(50%, -50%) rotate(45deg);
	width: 0.5556vw;
	height: 0.5556vw;
	border-bottom: 1px solid #4A4A4A;
	border-right: 1px solid #4A4A4A;
}
.selectbox select {
	appearance: none;
	width: 31.25vw;
	height: 3.4722vw;
	padding: 0.6944vw 1.0417vw;
	font-size: 1.25vw;
	color: #4a4a4a;
	border-radius: 2px;
	border: none;
	background: #EBEBEB;
	cursor: pointer;
}

.selectbox select.isError {
	border: 1px solid #DE5A5A;
}
input[type="text"].isError,
input[type="tel"].isError,
input[type="email"].isError {
	border: 1px solid #DE5A5A;
}
textarea.isError {
	border: 1px solid #DE5A5A;
}
button[aria-disabled="true"] {
	cursor: not-allowed;
}
::placeholder {
	font-weight: 400;
	color: #A4A4A4;
}
::-webkit-input-placeholder {
	font-weight: 400;
	color: #A4A4A4;
}
::-ms-input-placeholder {
	font-weight: 400;
	color: #A4A4A4;
}
:-ms-input-placeholder {
	font-weight: 400;
	color: #A4A4A4;
}
:-moz-placeholder {
	font-weight: 400;
	color: #A4A4A4;
}
::-moz-placeholder {
	font-weight: 400;
	color: #A4A4A4;
	opacity: 1;
}

@media screen and (min-width:1441px) {
	input[type="checkbox"] {
		padding-left: 20px;
	}
	input[type="checkbox"]::before {
		width: 16px;
		height: 16px;
	}
	input[type="checkbox"]:checked::after {
		width: 5px;
		height: 9px;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		width: 450px;
		padding: 10px 15px;
		font-size: 18px;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		height: 50px;
	}
	input[type="text"].text-half {
		width: 220px;
	}
	input[type="tel"] {
		width: 190px;
	}
	.selectbox::after {
		right: 31px;
		width: 8px;
		height: 8px;
	}
	.selectbox select {
		width: 450px;
		height: 50px;
		padding: 10px 15px;
		font-size: 18px;
	}
}

@media screen and (max-width:768px) {
	input[type="checkbox"] {
		padding-left: 5.3333vw;
	}
	input[type="checkbox"]::before {
		width: 3.7333vw;
		height: 3.7333vw;
	}
	input[type="checkbox"]:checked::after {
		width: 1.3333vw;
		height: 2.4vw;
		left: -0.4vw;

	}
	
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		width: 100%;
		padding: 2.6667vw 4vw;
		font-size: 4.2667vw;
		line-height: 1.875;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		height: 13.3333vw;
	}
	input[type="text"].text-half {
		width: 40vw;
	}
	input[type="tel"] {
		width: 49.6vw;
	}
	.selectbox::after {
		top: 50%;
		right: 5.8667vw;
		transform: translate(50%, -50%) rotate(45deg);
		width: 2.1333vw;
		height: 2.1333vw;
	}
	.selectbox select {
		width: 89.3333vw;
		height: 13.3333vw;
		padding: 2.6667vw 4vw;
		font-size: 4.2667vw;
	}
}



/*-------------------------------
 Contact
-------------------------------*/
.formSec {
	padding: 5.5556vw 0 7.5694vw;
	background: #fff;
	border-bottom: 1px solid #d9d9d9;
}
.formSec .l-inner{
	width: 77.7778vw;
}

.contact__about {
	margin-top: 2.4306vw;
	font-size: 1.25vw;
	letter-spacing: 0;
	line-height: 2.2222;
	text-align: left;
	color: #4a4a4a;
}
.formSec-first .contact__about-first {
	display: block;
}
.formSec-first .contact__about-second {
	display: none;
}
.formSec-second .contact__about-first {
	display: none;
}
.formSec-second .contact__about-second {
	display: block;
}

.contactform_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 6.9444vw;
	padding-right: 9.7222vw;
}
.contactform_box .form__wrap {
	width: 52.7778vw;
}
.contactform_box .stepList {
	display: grid;
	width: 6.25vw;
	margin-top: 0.3472vw;
	margin-left: 4.5833vw;
	gap: 6.0417vw;
}
.contactform_box .stepList .stepItem {
	position: relative;
	text-align: center;
	font-family: "Inter";
	font-size: 1.1111vw;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .1em;
	color: #ABABAB;
}
.contactform_box .stepList .stepItem:not(:last-child)::after {
	position: absolute;
	content: "";
	bottom: -4.375vw;
	left: 43%;
	width: 2px;
	height: 2.4306vw;
	background: #ABABAB;
}
.contactform_box .stepList .stepItem .step__no {
	margin-bottom: 0.9028vw;
	font-family: "Jost";
	font-size: 2.0833vw;
	font-weight: 400;
	letter-spacing: 0;
}
.contactform_box .stepList .stepItem.active {
	color: #4C6BD0;
}
.contactform_box .stepList .stepItem.active::after {
	background: #4C6BD0;
}
.contactform_box .error__text {
	width: 100%;
	padding: 0.5555vw 0.5555vw 0 0;
	font-size: 0.9722vw;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	color: #DE5A5A;
	text-align: left;
}
.contactform_box dl {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 0;
	margin-bottom: 1.7361vw;
}
.contactform_box dt {
	position: relative;
	height: 3.4722vw;
	padding-right: 4.7222vw;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.25vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	color: #4a4a4a;
}
.contactform_box dt.req::after{
	position: absolute;
	content: "必須";
	top: calc(50% - 0.8333vw);
	right: 0.9028vw;
	width: 2.9861vw;
	height: 1.4583vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Inter";
	font-size: 0.8333vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	color: #fff;
	background: #DE5A5A;
	border-radius: 0.8333vw;
}
.contactform_box dd {
	width: 31.25vw;
	height: auto;
}
.contactform_box dd.dd-name .input__area{
	display: flex;
	justify-content: space-between;
}
.inquiry__dl dd {
	height: auto;
}
.inquiry__dl dd textarea {
	height: 13.8889vw;
}
.privacy__check__wrap {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	width: 100%;
	padding-top: 1.6667vw;
}
.privacy__check__wrap .link__privacy {
	position: relative;
	width: 50.6944vw;
	height: 4.8611vw;
	margin-bottom: 0.2778vw;
	font-family: "Inter";
	font-size: 1.1111vw;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .05em;
	border: 1px solid #4A4A4A;
}
.privacy__check__wrap .link__privacy a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.privacy__check__wrap .link__privacy a img {
	width: 1.1111vw;
	margin-left: 0.6944vw;
}
.privacy__check__wrap span {
	display: block;
	width: 100%;
	text-align: center;
}
.privacy__check__wrap label {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: "Inter";
	font-size: 0.9722vw;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .05em;
}
.privacy__check__wrap .error__text {
	text-align: center;
}

.js-btn__wrap {
	margin-top: 6.25vw;
	text-align: center;
}
.js-btn__wrap .confirm__btn__wrap {
	display: flex;
	
}
.js-btn__wrap > [aria-hidden="true"] {
	display: none;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	pointer-events: none;
}
.submit__btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24.3056vw;
	height: 5.5556vw;
	margin: 0 auto;
	font-size: 1.3889vw;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .06em;
	color: #fff;
	border-radius: 2.7777vw;
	border: none;
	background: #0099FF;
	background: linear-gradient(90deg, #0099FF 0%, #4C6BD0 100%);
	cursor: pointer;
	transition: 0.4s;
	z-index: 0;
}
.submit__btn:hover{
	opacity: 0.9;
}
.submit__btn:disabled{
	cursor:not-allowed;
	font-weight: 200;
	color: #B6B6B6;
	background: #FFFFFF;
	border: 2px solid #E4E4E4;
}
.submit__btn:disabled:hover{
	color: #B6B6B6;
	background: #FFFFFF;
	border: 2px solid #E4E4E4;
}
.confirm__btn__wrap .submit__btn {
	margin: 0 0 0 2.7778vw;
}
.back__btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 8.3333vw;
	height: 5.5556vw;
	margin-left: 3.4722vw;
	font-size: 1.25vw;
	font-weight: 400;
	font-family: "Inter";
	line-height: 1;
	letter-spacing: .05em;
	color: #4a4a4a;
	border: none;
	background: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}
.back__btn::before {
	position: relative;
	content: "";
	width: 12px;
	height: 12px;
	margin-right: 10px;
	border-bottom: 1px solid #4A4A4A;
	border-left: 1px solid #4A4A4A;
	transform: rotate(45deg);
	cursor: pointer;
}
.back__btn::after {
	position: absolute;
	content: "";
	left: 10%;
	bottom: 1.3889vw;
	width: 0;
	height: 2px;
	background-color: #00a1e9;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.back__btn:hover::after {
	width: 80%;
}

/* 確認ページ */
.formSec-first .input__area {
	display: block;
}
.formSec-first .disp__text {
	display: none;
}
.formSec-second .input__area,
.formSec-second .contactform_box dd.dd-name .input__area {
	display: none;
}
.formSec-second .disp__text {
	display: block;
	padding: 1.3889vw 1.0417vw;
	font-family: "Inter";
	font-size: 1.25vw;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .05em;
	color: #4A4A4A;
}
.formSec-second .contactform_box {
	margin-top: 5.2778vw;
}
.formSec-second .contactform_box .stepList {
	margin-top: 1.9444vw;
}
.formSec-second .contactform_box dl {
	align-items: center;
	width: 100%;
	height: 6.6667vw;
	margin-bottom: 0;
	border-bottom: 1px solid #CBCBCB;
}
.formSec-second .contactform_box dl.inquiry__dl {
	align-items: flex-start;
	width: 100%;
	height: auto;
	padding: 1.0417vw 0;
}
.formSec-second .contactform_box dt {
	flex: 1;
	padding-right: 2.0833vw;
	justify-content: center;
}
.formSec-second .contactform_box dt.req::after{
	content: none;
}
.formSec-second .contactform_box dl.inquiry__dl dt {
	padding-top: 1.1111vw;
}
.formSec-second .contactform_box dl.inquiry__dl .disp__text {
	line-height: 1.6666;
}
.formSec-second .contactform_box dd {
	width: 30.5556vw;
}
.formSec-second .privacy__check__wrap {
	display: none;
}
.formSec-second .js-btn__wrap {
	margin-top: 5.5556vw;
}

/* 完了ページ */
.formSec-third .contactform_box {
	margin-top: 5.208333vw;
}
.formSec-third .confirm__text {
	padding-left: 1.0417vw;
	font-family: "Inter";
	letter-spacing: .05em;
	text-align: center;
	color: #4a4a4a;
}
.formSec-third .confirm__text h3 {
	margin: 0.3472vw 0 0.6944vw;
	font-size: 1.5278vw;
	font-weight: 700;
	line-height: 1;
}
.formSec-third .confirm__text p {
	font-size: 1.25vw;
	font-weight: 400;
	line-height: 2;
}
.formSec-third .confirm__text p:not(:last-child) {
	margin-bottom: 2.5vw;
}
.formSec-third .tel__wrap {
	width: 21.5278vw;
	height: 6.9444vw;
	margin: 2.2222vw auto 5.5556vw;
}
.formSec-third .tel__wrap a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.6667vw 0 0;
	color: #4C6BD0;
	background: #E2ECFC;
	font-family: "Inter";
	line-height: 1;
	text-align: center;
}
.formSec-third .tel__wrap .tel__title {
	display: block;
	margin-bottom: 0.5556vw;
	font-size: 1.1111vw;
	font-weight: 600;
	letter-spacing: .05em;
}
.formSec-third .tel__wrap .tel__no {
	display: block;
	font-size: 2.3611vw;
	font-weight: 700;
	letter-spacing: .04em;
}
.formSec-third .btn__wrap {
	text-align: center;
}
.formSec-third .btn__wrap a:hover {
	color: #fff;
}

@media screen and (min-width:769px) {
	.formSec-third .tel__wrap a {
		pointer-events: none;
	}
}

@media screen and (min-width:1441px) {
	.formSec {
		padding: 80px 0 109px;
	}
	.formSec .l-inner{
		width: 1120px;
	}
	.contact__about {
		margin-top: 35px;
		font-size: 18px;
	}
	.contactform_box {
		margin-top: 100px;
		padding-right: 140px;
	}
	.contactform_box .form__wrap {
		width: 760px;
	}
	.contactform_box .stepList {
		width: 90px;
		margin-top: 5px;
		margin-left: 66px;
		gap: 87px;
	}
	.contactform_box .stepList .stepItem {
		font-size: 16px;
	}
	.contactform_box .stepList .stepItem:not(:last-child)::after {
		bottom: -63px;
		width: 2px;
		height: 35px;
	}
	.contactform_box .stepList .stepItem .step__no {
		margin-bottom: 13px;
		font-size: 30px;
	}
	.contactform_box .error__text {
		padding: 8px 8px 0 0;
		font-size: 12px;
	}
	.contactform_box dl {
		margin-bottom: 25px;
	}
	.contactform_box dt {
		height: 50px;
		padding-right: 68px;
		font-size: 18px;
	}
	.contactform_box dt.req::after{
		top: calc( 50% - 12px );
		right: 13px;
		width: 43px;
		height: 21px;
		font-size: 12px;
		border-radius: 12px;
	}
	.contactform_box dd {
		width: 450px;
	}
	.inquiry__dl dd textarea {
		height: 200px;
	}
	.privacy__check__wrap {
		padding-top: 24px;
	}
	.privacy__check__wrap .link__privacy {
		width: 730px;
		height: 70px;
		margin-bottom: 4px;
		font-size: 16px;
	}
	.privacy__check__wrap .link__privacy a img {
		width: 16px;
		margin-left: 10px;
	}
	.privacy__check__wrap label {
		font-size: 14px;
	}
	.js-btn__wrap {
		margin-top: 90px;
	}
	.submit__btn {
		width: 350px;
		height: 80px;
		font-size: 20px;
		border-radius: 40px;
	}
	.confirm__btn__wrap .submit__btn {
		margin: 0 0 0 40px;
	}
	.back__btn {
		width: 120px;
		height: 80px;
		margin-left: 50px;
		font-size: 18px;
	}
	.back__btn::before {
		width: 12px;
		height: 12px;
		margin-right: 10px;
	}
	.back__btn::after {
		bottom: 20px;
	}

	/* 確認ページ */
	.formSec-second .disp__text {
		padding: 20px 15px;
		font-size: 18px;
	}
	.formSec-second .contactform_box {
		margin-top: 76px;
	}
	.formSec-second .contactform_box .stepList {
		margin-top: 28px;
	}
	.formSec-second .contactform_box dl {
		height: 96px;
	}
	.formSec-second .contactform_box dl.inquiry__dl {
		padding: 15px 0;
	}
	.formSec-second .contactform_box dt {
		padding-right: 30px;
	}
	.formSec-second .contactform_box dl.inquiry__dl dt {
		padding-top: 16px;
	}
	.formSec-second .contactform_box dd {
		width: 440px;
	}
	.formSec-second .js-btn__wrap {
		margin-top: 80px;
	}


	/* 完了ページ */
	.formSec-third .contactform_box {
		margin-top: 75px
	}
	.formSec-third .confirm__text {
		padding-left: 15px;
	}
	.formSec-third .confirm__text h3 {
		margin: 5px 0 10px;
		font-size: 22px;
	}
	.formSec-third .confirm__text p {
		font-size: 18px;
	}
	.formSec-third .confirm__text p:not(:last-child) {
		margin-bottom: 36px;
	}
	.formSec-third .tel__wrap {
		width: 310px;
		height: 100px;
		margin: 32px auto 80px;
	}
	.formSec-third .tel__wrap a {
		padding: 24px 0 0;
	}
	.formSec-third .tel__wrap .tel__title {
		margin-bottom: 8px;
		font-size: 16px;
	}
	.formSec-third .tel__wrap .tel__no {
		font-size: 34px;
	}
}

@media screen and (max-width:768px) {
	.formSec {
		padding: 14.6667vw 0 26.6667vw;
	}
	.formSec .l-inner {
		width: 89.3333vw;
	}
	.contact__about {
		margin-top: 7.4667vw;
		font-size: 4.2667vw;
		line-height: 1.9375;
	}
	.contactform_box {
		justify-content: flex-start;
		flex-flow: column;
		margin-top: 21.3333vw;
		padding-right: 0;
	}
	.contactform_box .form__wrap {
		width: 100%;
		margin-top: 17.3333vw;
	}
	.contactform_box .stepList {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		width: 81.3333vw;
		margin: 0 auto;
		gap: unset;
	}
	.contactform_box .stepList .stepItem {
		font-size: 4.2667vw;
	}
	.contactform_box .stepList .stepItem:not(:last-child)::after {
		bottom: auto;
		left: auto;
		top: 8.8vw;
		right: -9.8667vw;
		width: 6.6667vw;
		height: 2px;
	}
	.contactform_box .stepList .stepItem .step__no {
		margin-bottom: 3.4667vw;
		font-size: 8vw;
	}
	.contactform_box .error__text {
		margin-top: 1.3333vw;
		font-size: 3.2vw;
	}
	.contactform_box dl {
		justify-content: flex-start;
		flex-flow: column;
		padding: 0;
		margin-bottom: 2.6667vw;
	}
	.contactform_box dt {
		position: relative;
		height: 13.3333vw;
		padding-right: 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		font-size: 4.2667vw;
	}
	.contactform_box dt.req::after{
		position: relative;
		top: auto;
		right: auto;
		margin-left: 3.4667vw;
		width: 11.4667vw;
		height: 5.6vw;
		font-size: 3.2vw;
		border-radius: 3.2vw;
	}
	.contactform_box dd {
		width: 100%;
	}
	.contactform_box dd.dd-name .input__area {
		justify-content: flex-start;
		gap: 4vw;
	}
	.contactform_box .inquiry__dl dd {
		height: auto;
	}
	.contactform_box .inquiry__dl dd textarea {
		height: 58.6667vw;
	}
	.privacy__check__wrap {
		width: 100%;
		padding-top: 16vw;
	}
	.privacy__check__wrap .link__privacy {
		position: relative;
		width: 100%;
		height: 17.0667vw;
		margin-bottom: 3.2vw;
		font-size: 3.7333vw;
	}
	.privacy__check__wrap .link__privacy a img {
		width: 4.2667vw;
		margin-left: 2.6667vw;
	}
	.privacy__check__wrap span {
		width: 100%;
		text-align: center;
	}
	.privacy__check__wrap label {
		font-size: 3.2vw;
	}
	.js-btn__wrap {
		margin-top: 17.8667vw;
	}
	.js-btn__wrap .confirm__btn__wrap {
		display: flex;
		flex-flow: column-reverse;
		justify-content: center;
		align-items: center;
	}
	.submit__btn {
		width: 80vw;
		height: 17.0667vw;
		font-size: 4.8vw;
		border-radius: 8.5333vw;
	}
	.confirm__btn__wrap .submit__btn {
		margin: 0 auto;
	}
	.back__btn {
		width: 80vw;
		height: 17.0667vw;
		margin: 2.1333vw auto 0;
		font-size: 4.2667vw;
	}
	.back__btn::before {
		width: 2.6667vw;
		height: 2.6667vw;
		margin-right: 2.6667vw;
	}
	.back__btn::after {
		content: none;
	}

	/* 確認ページ */
	.formSec-second .disp__text {
		padding: 1.6vw 0;
		font-size: 4.2667vw;
		line-height: 1.5;
	}
	.formSec-second .inquiry__dl .disp__text {
		line-height: 1.6666;
	}
	.formSec-second .contactform_box {
		margin-top: 22.4vw;
	}
	.formSec-second .contactform_box .stepList {
		margin-top: 0;
	}
	.formSec-second .contactform_box .form__wrap {
		margin-top: 14.6667vw;
	}
	.formSec-second .contactform_box dl,
	.formSec-second .contactform_box dl.inquiry__dl {
		width: 100%;
		height: auto;
		padding-top: 2.6667vw;
		padding-bottom: 4.8vw;
	}
	.formSec-second .contactform_box dt {
		width: 100%;
		flex: auto;
		padding-right: 0;
		justify-content: flex-start;
	}
	.formSec-second .contactform_box dl.inquiry__dl dt {
		padding-top: 0;
	}
	.formSec-second .contactform_box dd {
		width: 100%;
	}
	.formSec-second .js-btn__wrap {
		margin-top: 9.6vw;
	}
	
	/* 完了ページ */
	.formSec-third .contactform_box {
		margin-top: 22.6667vw;
	}
	.formSec-third .confirm__text {
		padding-left: 0;
	}
	.formSec-third .contactform_box .form__wrap {
		margin-top: 21.3333vw;
	}
	.formSec-third .confirm__text h3 {
		margin: 0 0 6.1333vw;
		font-size: 4.8vw;
	}
	.formSec-third .confirm__text p {
		text-align: left;
		font-size: 4.2667vw;
		line-height: 1.9375;
	}
	.formSec-third .confirm__text p:not(:last-child) {
		margin-bottom: 8vw;
	}
	.formSec-third .tel__wrap {
		width: 74.6667vw;
		height: 21.3333vw;
		margin: 8.5333vw auto 16vw;
	}
	.formSec-third .tel__wrap a {
		padding: 4vw 0 0;
	}
	.formSec-third .tel__wrap .tel__title {
		margin-bottom: 1.3333vw;
		font-size: 3.7333vw;
	}
	.formSec-third .tel__wrap .tel__no {
		font-size: 7.4667vw;
		letter-spacing: 0;
	}
}

.wpcf7-not-valid-tip {
	display: none!important;
}
.wpcf7-form.invalid .wpcf7-response-output {
	display: none;
}
.wpcf7-form.sent .wpcf7-response-output {
	display: none;
}