@charset "utf-8";
/* Copyright 2022 FSFIELD All Rights Reserved. */

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

パソコン、タブレット、スマートフォン（iPhone,Android) 共通

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* ------------------------------------------------------------

フォーム関連

------------------------------------------------------------ */

.form {
	width: 100%;
}

.form th,
.form td {
	display: block;
}

.form th {
	padding-bottom: 10px;
}

.form td {
	word-break: break-all;
	padding-bottom: 25px;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
	border: 1px solid #CFD2D8;
	padding: 15px;
	border-radius: 0;
	outline: none;
	background: #F3F4F5;
	width: 100%;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
	border-top: none;
	border-right: none;
}

.form input::-moz-focus-inner,
.form select::-moz-focus-inner {
	border: 0;
}

/* Firefox 点線消す */
.form input {
	-webkit-appearance: none;
}

/* ios 影消す */

.form textarea {
	display: block;
	resize: vertical;
	width: 100%;
	min-height: 380px;
}

.form textarea::-moz-focus-inner {
	border: 0;
}

/* Firefox 点線消す */
.form textarea {
	-webkit-appearance: none;
}

/* ios 影消す */

.form .error {
	color: #F36E34;
	display: block;
}

.form .must {
	color: #F36E34;
}

.form label {
	display: inline-block;
}

/*--チェックボックス--*/
.form input[type="checkbox"] {
	display: none;
}

.form input[type="checkbox"]+label {
	display: inline-block;
	background: url(../img/img_checkbox01.jpg) no-repeat 0 center;
	background-size: 20px;
	padding: 0 0 0 28px;
	line-height: 20px;
	cursor: pointer;
}

.form input[type="checkbox"]:checked+label {
	background: url(../img/img_checkbox01_on.jpg) no-repeat 0 0;
	background-size: 20px;
}

.form .wrap_check {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}


/* フォーム改修後 */
/*--ボタン--*/
.btn-form {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}

.btn-form__inner {
	display: inline-block;
	background: #35373E;
	width: 180px;
	position: relative;
	cursor: pointer;
	transition: background .3s;
}

.btn-form__inner:hover {
	background: #008E84;
}

.btn-form__inner::before {
	content: "";
	display: block;
	background: url("../img/ico_arrow01.png") no-repeat 0 0;
	background-size: contain;
	width: 15px;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 23px;
	margin-top: -6px;
	transition: right .3s;
	pointer-events: none;
}

.btn-form__inner:hover::before {
	right: 13px;
}

.btn-form__inner .mfs_confirmation_button {
	background: none;
	margin: 0;
	padding: 17px 20px;
	outline: 0;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	width: 100%;
	height: 100%;
	cursor: pointer;
	font-family: 'Outfit';
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 0;
	color: #FFF;
	text-align: left;
	line-height: 1;
}

.grecaptcha-badge {
	bottom: 120px !important;
}

@media only screen and (max-width:1024px) {
	/* 表示領域が1024px以下の場合に適用するスタイル */

	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	タブレット

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	フォーム関連

	------------------------------------------------------------ */

	/*--チェックボックス--*/
	.form .wrap_check {
		display: flex;
		flex-wrap: wrap;
		gap: 15px 30px;
	}

}

/*--@media--*/


@media only screen and (max-width:767px) {
	/* 表示領域が767px以下の場合に適用するスタイル */
	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	スマートフォン（iPhone,Android)

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	フォーム関連

	------------------------------------------------------------ */

	.form input[type="text"],
	.form input[type="tel"],
	.form input[type="email"],
	.form textarea {
		font-size: 1.6rem;
	}

	/*--ボタン--*/
	.btn-form__inner .mfs_confirmation_button {
		max-width: 165px;
	}

}

/*--@media--*/


@media only screen and (max-width:400px) {
	/* 表示領域が400px以下の場合に適用するスタイル */
	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	スマートフォン（iPhone,Android)

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	フォーム関連

	------------------------------------------------------------ */

	/*--チェックボックス--*/
	.form .wrap_check {
		justify-content: space-between;
		gap: 15px 0;
	}

	.form .wrap_check div {
		width: calc(50% - 10px);
	}

}

/*--@media--*/