@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: 2.2727vw;
}
input[type="radio"] {
	position: relative;
	cursor: pointer;
	padding-left: 2.2727vw;
}
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.4545vw;
	height: 1.4545vw;
	background-color: #fff;
	border-radius: 2px;
	border: 1px solid #4a4a4a;
	transform: translateY(-50%);
}
input[type="checkbox"]:checked::after {
	top: 50%;
	left: -1px;
	width: 0.4545vw;
	height: 0.8181vw;
	border-right: 1px solid #4a4a4a;
	border-bottom: 1px solid #4a4a4a;
	transform: rotate(45deg) translateY(-100%);
}

/* ラジオボタンデザイン */
input[type="radio"]::before {
	width: 1.6363vw;
	height: 1.6363vw;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: #fff;
	border: 1px solid #4a4a4a;
	border-radius: 0.9vw;
	transform: translateY(-50%);
}
input[type="radio"]::after {
	top: 0;
	left: 0;
	height: 0.8181vw;
	width: 0.4545vw;
	margin-top: 1px;
	transform: rotate(45deg) translateY(-100%);
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}
input[type="radio"]:checked::after {
	border-right: 1px solid #4a4a4a;
	border-bottom: 1px solid #4a4a4a;
}
.radioBtn-field__wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.radioBtn-field__wrap label:not(:last-child){
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-right: 2.7272vw;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	display: block;
	width: 43.9453vw;
	padding: 0.9766vw 1.4648vw;
	font-size: 1.5625vw;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6666;
	color: #4a4a4a;
	border-radius: 2px;
	border: none;
	background: #fff;
	cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
	height: 4.8828vw;
	display: flex;
	align-items: center;
	line-height: 1;
}
textarea {
	height: 9.0909vw;
}
.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:1024px) {
	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="radio"] {
		padding-left: 25px;
	}
	input[type="radio"]::before {
		width: 18px;
		height: 18px;
		border-radius: 9px;
	}
	input[type="radio"]::after {
		height: 9px;
		width: 5px;
		margin-top: 1px;
	}
	.radioBtn-field__wrap label:not(:last-child){
		margin-right: 30px;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		width: 450px;
		height: 50px;
		padding: 10px 15px;
		font-size: 14px;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		height: 50px;
	}
	textarea {
		height: 100px;
	}
	.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;
		border: 1px solid #d8d8d8;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		height: 13.3333vw;
	}
	textarea {
		height: 26.6666vw;
	}
	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: 40px 0;
}
.formSec .l-inner{
	width: 100%;
}
.form__about {
	font-size: 16px;
	letter-spacing: 0;
	line-height: 1.6;
	text-align: left;
	color: #4a4a4a;
}
.form__box {
	width: 670px;
	margin: 40px auto 0;
}
.form__box .stepList {
	position: relative;
	display: flex;
	max-width: 400px;
	margin: 20px auto;
	text-align: center;
}
.form__box .stepList .stepItem {
	position: relative;
	width: 33.333%;
	font-size: 14px;
	font-weight: 600;
	color: #4a4a4a;
}
.form__box .stepList .stepItem:after {
	position: absolute;
	content: "";
	left: calc( -50% + 15px );
	top: 14px;
	width: calc( 100% - 30px );
	height: 2px;
	background: #a5d2ff;
}
.form__box .stepList .stepItem:first-child:after {
	display: none;
}
.form__box .stepList .stepItem span {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-bottom: 5px;
	line-height: 30px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #a5d2ff;
	color: #ffffff;
}
.form__box .stepList .visited:after {
	background: #4f81e0;
}
.form__box .stepList .visited span {
	background: #4f81e0;
}

.form__box .error__text {
	width: 100%;
	padding: 5px 0;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	color: #DE5A5A;
	text-align: left;
}
.form__box dl {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0;
	margin-bottom: 15px;
}
.form__box dt {
	position: relative;
	width: 220px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .05em;
	color: #4a4a4a;
}
.form__box dt.req::after{
	position: absolute;
	content: "必須";
	top: calc(50% - 9px);
	right: 10px;
	width: 35px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	color: #fff;
	background: #DE5A5A;
	border-radius: 10px;
}
.form__box dd {
	width: calc( 100% - 220px);
	height: auto;
	min-height: 60px;
}
.form__box dd.dd_radio {
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.btn__box {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.submit__btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 220px;
	height: 60px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .06em;
	color: #fff;
	border-radius: 30px;
	border: none;
	background: #4f81e0;
	background: linear-gradient(90deg, #00b1ff 0%, #4f81e0 100%);
	cursor: pointer;
	transition: 0.4s;
	z-index: 0;
}
.submit__btn:hover{
	opacity: 0.8;
}
.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;
}
.formSec-second .submit__btn {
	margin: 0 0 0 15px;
}
.back__btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 220px;
	height: 60px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .06em;
	color: #fff;
	border-radius: 30px;
	border: none;
	background: #4f81e0;
	background: linear-gradient(90deg, #E1CFF7 0%, #a58bfd 100%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}
.back__btn:hover{
	opacity: 0.8;
}



/* 確認ページ */
.formSec-second .form__box dl {
	align-items: center;
	width: 100%;
	height: 80px;
	margin-bottom: 0;
	border-bottom: 1px solid #fff;
}
.formSec-second .form__box dl:first-child{
	margin-top: 50px;
	border-top: 1px solid #fff;
}
.formSec-second .form__box dt.req::after{
	content: none;
}
.formSec-second .form__box dd {
	font-size: 20px;
}

/* 完了ページ */
.formSec-third .send__complete {
	width: 90%;
	margin: 0 auto;
	padding: 30px 20px;
	border: 2px solid #F2F2F2;
}
.send__complete h3 {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .1em;
	text-align: center;
}
.send__complete p {
	margin-bottom: 40px;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .015em;
}
.send__complete .cause__info {
	width: 100%;
	padding: 25px 10px;
	margin-bottom: 20px;
	border: 1px solid #4f81e0;
	border-radius: 4px;
}
.send__complete .cause__info h4 {
	margin-bottom: 20px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .08em;
	text-align: center;
}
.send__complete .cause__info ul li {
	position: relative;
	padding-left: 10px;
	line-height: 1.6;
	letter-spacing: .04em;
}
.send__complete .cause__info ul li:not(:last-of-type) {
	margin-bottom: 8px;
}
.send__complete .cause__info ul li::before {
	position: absolute;
	content: "";
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #4f81e0;
	clip-path: circle(2px at 50% 50%);
}
.send__complete .again__info {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}
.again__info a {
	color: #4f81e0;
	border-bottom: 2px solid #4f81e0;
}

.privacy__box {
	width: 450px;
	height: 135px;
	padding: 15px 14px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .1em;
	text-align: justify;
	overflow-y: scroll;
	background: #fff;
	border-radius: 3px;
}
.privacy__box p {
	margin-bottom: 20px;
}
.privacy__check__wrap {
	padding-top: 15px;
}

@media screen and (max-width:1024px) {
	.formSec {
		padding: 3.9063vw 0;
	}
	.form__about {
		font-size: 1.5625vw;
	}
	.form__box {
		width: 65.4297vw;
		margin: 3.9063vw auto 0;
	}
	.form__box .stepList {
		margin: 1.9531vw auto;
	}
	.form__box .stepList .stepItem {
		font-size: 1.3672vw;
	}
	.form__box .stepList .stepItem:after {
		left: calc( -50% + 1.4648vw );
		top: 1.3672vw;
		width: calc( 100% - 2.9297vw );
	}
	.form__box .stepList .stepItem span {
		width: 2.9297vw;
		height: 2.9297vw;
		margin-bottom: 0.4883vw;
		line-height: 2.9297vw;
	}
	.form__box .error__text {
		padding: 0.4883vw 0;
		font-size: 1.1719vw;
	}
	.form__box dl {
		margin-bottom: 1.4648vw;
	}
	.form__box dt {
		width: 21.4844vw;
		height: 5.8594vw;
		font-size: 1.5625vw;
	}
	.form__box dt.req::after{
		top: calc(50% - 0.8789vw);
		right: 0.9766vw;
		width: 3.418vw;
		height: 1.7578vw;
		font-size: 0.8789vw;
		border-radius: 0.9766vw;
	}
	.form__box dd {
		width: calc( 100% - 21.4844vw);
	}
	.btn__box {
		margin-top: 4.8828vw;
	}
	.submit__btn {
		width: 21.4844vw;
		height: 5.8594vw;
		font-size: 1.5625vw;
		border-radius: 2.9297vw;
	}
	.formSec-second .submit__btn {
		margin: 0 0 0 1.4648vw;
	}
	.back__btn {
		width: 21.4844vw;
		height: 5.8594vw;
		font-size: 1.5625vw;
		border-radius: 2.9297vw;
	}

	/* 確認ページ */
	.formSec-second .form__box dl {
		height: 7.8125vw;
	}
	.formSec-second .form__box dl:first-child{
		margin-top: 4.8828vw;
	}
	.formSec-second .form__box dd {
		font-size: 1.9531vw;
	}

	/* 完了ページ */
	.formSec-third .send__complete {
		padding: 2.9297vw 1.9531vw;
	}
	.send__complete h3 {
		margin-bottom: 1.9531vw;
		font-size: 2.1484vw;
	}
	.send__complete p {
		margin-bottom: 3.9063vw;
		font-size: 1.5625vw;
	}
	.send__complete .cause__info {
		padding: 2.4414vw 0.9766vw;
		margin-bottom: 1.9531vw;
	}
	.send__complete .cause__info h4 {
		margin-bottom: 1.9531vw;
		font-size: 1.6602vw;
	}
	.send__complete .cause__info ul li {
		padding-left: 0.9766vw;
	}
	.send__complete .cause__info ul li:not(:last-of-type) {
		margin-bottom: 0.7813vw;
	}
	.send__complete .cause__info ul li::before {
		top: 1.1719vw;
	}
	.send__complete .again__info {
		font-size: 1.5625vw;
	}
}

@media screen and (max-width:768px) {
	.formSec {
		padding: 10.6667vw 0;
	}
	.form__about {
		font-size: 4vw;
	}
	.form__box {
		width: 100%;
		margin: 10.6667vw auto 0;
	}
	.form__box .stepList {
		margin: 5.3333vw auto;
	}
	.form__box .stepList .stepItem {
		width: 33.333%;
		font-size: 3.7333vw;
	}
	.form__box .stepList .stepItem:after {
		left: calc( -50% + 4vw );
		top: 3.7333vw;
		width: calc( 100% - 8vw );
	}
	.form__box .stepList .stepItem span {
		width: 8vw;
		height: 8vw;
		margin-bottom: 1.3333vw;
		line-height: 8vw;
	}
	.form__box .error__text {
		padding: 1.3333vw 0;
		font-size: 3.2vw;
	}
	.form__box dl {
		display: flex;
		flex-flow: column;
		margin-bottom: 4vw;
	}
	.form__box dt {
		width: 100%;
		height: 16vw;
		font-size: 4.2667vw;
	}
	.form__box dt.req::after{
		position: relative;
		content: "必須";
		top: auto;
		right: auto;
		margin-left: 2.6667vw;
		width: 9.3333vw;
		height: 4.8vw;
		font-size: 2.4vw;
		border-radius: 2.6667vw;
	}
	.form__box dd {
		width: 100%;
		height: 16vw;
	}
	.form__box dl.dl__inquiry dd,
	.form__box dl.dl__privacy dd {
		height: auto;
	}
	.btn__box {
		flex-flow: column;
		align-items: center;
		margin-top: 13.3333vw;
	}
	.submit__btn {
		width: 58.6667vw;
		height: 16vw;
		font-size: 4.2667vw;
		border-radius: 8vw;
	}
	.formSec-second .submit__btn {
		margin: 4vw 0 0;
	}
	.back__btn {
		width: 58.6667vw;
		height: 16vw;
		font-size: 4.2667vw;
		border-radius: 8vw;
	}
	.submit__btn:hover,
	.back__btn:hover {
		opacity: 1;
	}

	/* 確認ページ */
	.formSec-second .form__box dl {
		height: 21.3333vw;
	}
	.formSec-second .form__box dl:first-child{
		margin-top: 13.3333vw;
	}
	.formSec-second .form__box dd {
		font-size: 5.3333vw;
	}

	/* 完了ページ */
	.formSec-third .send__complete {
		width: 100%;
		padding: 5.3333vw 4vw;
	}
	.send__complete h3 {
		margin-bottom: 5.3333vw;
		font-size: 5.8667vw;
		line-height: 1.5;
	}
	.send__complete p {
		margin-bottom: 10.6667vw;
		font-size: 4.2667vw;
		letter-spacing: 0;
		text-align: justify;
	}
	.send__complete .cause__info {
		width: 100%;
		padding: 2.6667vw 2.6667vw;
		margin-bottom: 5.3333vw;
		border: 1px solid #4f81e0;
		border-radius: 1.0667vw;
	}
	.send__complete .cause__info h4 {
		margin-bottom: 4vw;
		font-size: 4.2667vw;
		font-weight: 500;
		line-height: 1.5;
		letter-spacing: 0;
		text-align: left;
	}
	.send__complete .cause__info ul li {
		padding-left: 2.6667vw;
	}
	.send__complete .cause__info ul li:not(:last-of-type) {
		margin-bottom: 2.1333vw;
	}
	.send__complete .cause__info ul li::before {
		top: 2.6667vw;
	}
	.send__complete .again__info {
		font-size: 4.2667vw;
		text-align: left;
	}
}