@charset "UTF-8";

/* bl_form */
.bl_form {
	background: #F2F8F3;
	padding: 56px 102px;
}
.bl_form_item {
	display: flex;
	flex-wrap: wrap;
}
.bl_form_item:not(:first-child) {
	margin-top: 24px;
}
.bl_form_ttl {
	width: 300px;
	display: flex;
	align-items: center;
	position: relative;
}
.bl_form_item:has(.bl_addressWrapper) .bl_form_ttl{
	align-items: flex-start;
	padding-top: 8px;
}
.bl_form_item:has(.bl_addressWrapper) .el_required::after, .el_optional::after{
	top: 10px;
	transform: unset;
}
.el_required::after,
.el_optional::after {
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	width: 48px;
	height: 25px;
	padding-bottom: 1px;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 88px;
	transform: translateY(-50%);
}
.el_required::after {
	content: "必須";
	background: #C85429;
}
.el_optional::after {
	content: "任意";
	background: #9A9A9A;
}
.bl_form input {
	width: 520px;
	height: 40px;
	letter-spacing: 0.68px;
	padding: 0 16px 3px;
	border-radius: 5px;
	border: 1px solid #969696;
	background: #fff;
}

/* 年齢 */
.bl_ageWrapper {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}
.bl_ageWrapper input {
	width: 118px;
	height: 40px;
	font-size: 16px;
	padding: 0 16px 3px;
	border-radius: 5px;
	border: 1px solid #969696;
	background: #fff;
}
.bl_ageWrapper .wpcf7-not-valid-tip {
	width: 200%;
	bottom: -24px;
}
/* 住所 */
.bl_addressWrapper > span:first-of-type{
	width: 270px;
	margin-bottom: 24px;
}
/* ラジオ */
.bl_radioWrapper {
	flex: 1;
}
.bl_radioWrapper .wpcf7-list-item {
	margin-left: 0;
}
.bl_radioWrapper .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.bl_radioWrapper .wpcf7-list-item-label {
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
	position: relative;
}
.bl_radioWrapper .wpcf7-list-item-label::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #969696;
	background: #fff;
}
.bl_radioWrapper .wpcf7-list-item-label::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #3a95ac;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	opacity: 0;
}
.bl_radioWrapper input:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

/* チェックボックス */
.bl_checkWrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 48px;
	width: 520px;
}
.bl_check + span {
	position: relative;
	padding-left: 24px;
	padding-top: 3px;
}
.bl_check + span::before {
	content: "";
	background: #fff;
	width: 16px;
	height: 16px;
	border: 1px solid #b0ab99;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl_check + span::after {
	content: "";
	display: block;
	background: transparent;
	border-bottom: 2px solid #b169c3;
	border-right: 2px solid #b169c3;
	width: 8px;
	height: 16px;
	position: absolute;
	left: 5px;
	top: 2px;
	transform: rotate(42deg);
	opacity: 0;
}
.bl_check:checked + span::after {
	opacity: 1;
}

/* カレンダー部分 */
.bl_date {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.bl_dateBox:not(:first-of-type) {
	margin-top: 8px;
}
.bl_dateWrapper {
	width: 520px;
}
.bl_date_ttl {
	display: block;
	margin-bottom: 4px;
	cursor: auto;
	position: relative;
}
.bl_date_ttl.el_required::after {
	right: auto;
	left: 96px;
}
.bl_form_input.calender {
	width: 280px;
	background: #fff url(../images/contact/calendar_icon.svg) center right 16px/22px 22px no-repeat;
}
.bl_time {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.bl_time_select {
	width: 88px;
	height: 40px;
	margin-right: 4px;
	background-image: url('../images/contact/icon_triangle__under.svg');
	background-color: #fff;
	background-position: center right 16px;
	background-size: 12px 10px;
	background-repeat: no-repeat;
	border-radius: 5px;
	border: 1px solid #969696;
	padding: 0 16px;
}

/* セレクト */
.bl_form select {
	width: 520px;
	height: 40px;
	font-size: 16px;
	padding: 0 16px 3px;
	border-radius: 5px;
	color: #000;
	border: 1px solid #969696;
	background: #fff url(../images/contact/icon_triangle__under.svg) center right 16px/12px 10px no-repeat;
}

/* テキストエリア */
.bl_form textarea {
	width: 520px;
	height: 160px;
	padding: 10px 0 0 16px;
	background: #fff;
	border: 1px solid #969696;
	border-radius: 5px;
	resize: none;
}

/* ボタン */
.bl_btnWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin-top: 56px;
	z-index: 5;
}
.bl_btnWrapper .el_moreBtn{
	padding-right: 0;
	margin: 0;
}
.bl_btnWrapper .el_moreBtn::after{
	z-index: 1;
}
.bl_btnWrapper .el_btn.back {
	min-width: 220px;
	height: 50px;
	margin-top: 0;
	display: block;
}
.bl_btnWrapper .wpcf7-form-control {
	width: 100%;
	height: 100%;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.72px;
	color: #fff;
}
.bl_btnWrapper .wpcf7-previous {
	width: 204px;
	border: 1px solid #1D7E4F;
	background: #fff;
	color: #1D7E4F;
	border-radius: 4px;
}
.bl_btnWrapper .wpcf7-spinner {
	display: none;
}
.wpcf7-form-control-wrap {
	display: flex;
}

/* エラー */
.wpcf7-form.invalid .bl_form_selectWrapper {
	position: relative;
}
.wpcf7-form.invalid .bl_form_selectWrapper:has(.wpcf7-not-valid-tip) {
	padding-bottom: 24px;
}
.wpcf7-form.invalid .bl_form_selectWrapper:has(.wpcf7-not-valid-tip) .wpcf7-form-control-wrap {
	position: static;
	padding-bottom: 0;
}
.wpcf7-form.invalid .bl_radioWrapper {
	position: relative;
}
.wpcf7-form.invalid .bl_radioWrapper:has(.wpcf7-not-valid-tip) {
	padding-bottom: 32px;
}
.wpcf7-form.invalid .bl_radioWrapper:has(.wpcf7-not-valid-tip) .wpcf7-form-control-wrap {
	position: static;
	padding-bottom: 0;
}
.wpcf7-form.invalid .bl_form_ttl {
	margin-bottom: 24px;
}
.wpcf7-form.invalid .wpcf7-form-control-wrap {
	display: flex;
}
.wpcf7-form.invalid .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip),
.wpcf7-form.init .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) {
	padding-bottom: 24px;
}
.wpcf7-form.invalid .bl_ageWrapper:has(.wpcf7-not-valid-tip) {
	padding-bottom: 24px;
}
.wpcf7-form.invalid .bl_ageWrapper:has(.wpcf7-not-valid-tip) .wpcf7-form-control-wrap {
	padding-bottom: 0;
}
.wpcf7-not-valid-tip {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 0.9em;
}
.wpcf7-form.invalid .wpcf7-response-output {
	display: none;
}
input, input[type=checkbox], input[type=submit], select, ::placeholder {
	font-family: "noto-sans-jp", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width : 750px){
	.bl_form {
		padding: 56px 24px 80px;
	}
	.bl_form_inner {
		padding: 56px 32px;
	}
	.bl_form_item {
		gap: 0;
	}
	.bl_form_item:not(:first-child) {
		margin-top: 40px;
	}
	.bl_form_ttl {
		font-size: 30px;
		width: 100%;
		margin-bottom: 16px;
	}
	.bl_form_item:has(.bl_addressWrapper) .bl_form_ttl{
		padding-top: 0;
	}
	.bl_form_item:has(.bl_addressWrapper) .el_required::after, .el_optional::after{
		top: 50%;
		transform: translateY(-50%);
	}
	.el_required::after,
	.el_optional::after {
		font-size: 26px;
		width: 80px;
		height: 40px;
		padding-top: 0;
		right: 0;
	}
	.bl_form input {
		width: 100%;
		height: 64px;
		font-size: 32px;
		padding: 0 16px 4px;
	}

	/* 年齢 */
	.bl_ageWrapper {
		width: 100%;
	}
	.bl_ageWrapper input {
		width: 208px;
		height: 64px;
		font-size: 32px;
		padding: 0 16px 4px;
	}
	.bl_ageWrapper .wpcf7-not-valid-tip {
		bottom: -36px;
	}

	/* 住所 */
	.bl_addressWrapper > span:first-of-type{
		width: 428px;
	}

	/* ラジオ */
	.bl_radioWrapper .wpcf7-radio {
		gap: 24px 48px;
	}
	.bl_radioWrapper .wpcf7-list-item-label {
		gap: 18px;
	}
	.bl_radioWrapper .wpcf7-list-item-label::before {
		width: 36px;
		height: 36px;
		border-width: 2px;
	}
	.bl_radioWrapper .wpcf7-list-item-label::after {
		width: 18px;
		height: 18px;
		left: 9px;
	}

	/* チェックボックス */
	.bl_checkWrapper {
		row-gap: 16px;
		width: 100%;
	}
	.bl_check + span {
		font-size: 30px;
		padding-left: 48px;
		padding-top: 0;
	}
	.bl_check + span::before {
		width: 32px;
		height: 32px;
		border-width: 2px;
		border-radius: 4px;
	}
	.bl_check + span::after {
		border-width: 4px;
		width: 20px;
		height: 33px;
		left: 7px;
		top: -5px;
	}

	/* セレクト */
	.bl_form_selectWrapper {
		width: 100%;
	}
	.bl_form_selectWrapper::after {
		border-width: 14px 9px 0 9px;
		top: 26px;
		right: 20px;
	}
	.bl_form select {
		width: 100%;
		height: 64px;
		font-size: 32px;
		padding: 0 16px 4px;
		background-size: 20px 18px;
		background-position: center right 24px;
	}

	/* カレンダー部分 */
	.bl_date {
		gap: 16px;
		justify-content: flex-start;
	}
	.bl_dateBox:not(:first-of-type) {
		margin-top: 24px;
	}
	.bl_dateWrapper {
		width: 100%;
	}
	.bl_date_ttl {
		margin-bottom: 16px;
	}
	.bl_date_ttl.el_required::after {
		right: 0;
		left: auto;
	}
	.bl_date_calenderWrapper {
		width: 100%;
	}
	.bl_form_input.calender {
		width: 100%;
		background-size: 32px 32px;
	}
	.bl_time_txt {
		padding-top: 0;
	}
	.bl_time_select {
		width: 160px;
		height: 64px;
		font-size: 32px;
		margin-right: 16px;
		background-size: 20px 18px;
	}

	/* テキストエリア */
	.bl_form textarea {
		width: 100%;
		height: 403px;
		padding: 10px 0 0 16px;
		font-size: 32px;
	}

	/* ボタン */
	.bl_btnWrapper {
		margin: 64px auto 0;
		gap: 64px;
	}
	.bl_btnWrapper span::after {
		width: 36px;
		height: 36px;
		right: 24px;
	}
	.bl_btnWrapper .wpcf7-form-control {
		/* width: 280px; */
		/* width: 100%;
		height: 96px; */
		font-size: 30px;
		padding-right: 0;
		padding-bottom: 1px;
		font-size: 30px;
	}
	.bl_btnWrapper .wpcf7-previous {
		width: 240px;
		height: 80px;
		border-width: 2px;
	}

	/* エラー */
	.wpcf7-form.invalid .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip),
	.wpcf7-form.init .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) {
		padding-bottom: 24px;
		padding-bottom: 48px;

	}
	.wpcf7-form.invalid .bl_radioWrapper:has(.wpcf7-not-valid-tip) {
		padding-bottom: 48px;
	}
	.wpcf7-form.invalid .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) {
		padding-bottom: 48px;
	}
	.wpcf7-form.invalid .bl_ageWrapper:has(.wpcf7-not-valid-tip) {
		padding-bottom: 48px;
	}
}

/*=======================================================
check,thanks
=======================================================*/
/* check */
.bl_check {
	padding: 32px 0 80px;
}
.bl_check .bl_form {
	padding: 0 102px;
	padding: 56px 102px;
	background: #F2F8F3;
}
.bl_check .bl_form_item{
	border-bottom: 1px solid #fff;
	margin-top: 0;
	padding: 16px 0;
}
.bl_check .bl_form_selectWrapper::after {
	content: none;
}
.bl_check .el_btn.el_btn__back {
	min-width: 204px;
}
.bl_check .el_btn.el_btn__send{
	min-width: 258px;
}
.bl_check .bl_radioWrapper {
	width: auto;
}
.bl_check .bl_age_inputWrapper {
	width: auto;
}
@media screen and (max-width : 750px){
	/* check */
	.bl_check .bl_form {
		padding: 40px;
	}
	.bl_btnWrapper {
		/* flex-direction: column-reverse; */
		gap: 40px;
	}
	.bl_btnWrapper .el_btn.back{
		min-width: 180px;
		height: 80px;
	}
	.bl_btnWrapper .el_moreBtn{
		width: 380px;
		/* height: 96px; */
	}
}

/* thanks */
.bl_thanks {
	padding: 40px 0 80px;
}
.bl_thanks_inner {
	margin: 0 auto;
	padding: 56px 120px;
	background: linear-gradient(90deg, #195C28 0%, #C2D433 100%);
	position: relative;
	z-index: 1;
}
.bl_thanks_inner::before{
	content: '';
	position: absolute;
	background: url(../images/contact/thanks_bg.svg) top center / contain no-repeat;
	width: 556px;
	height: 200px;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.bl_thanks_ttl {
	font-size: 24px;
	letter-spacing: 1.44px;
	color: #fff;
	margin-bottom: 24px;
}
.bl_thanks_txt {
	color: #fff;
}
.bl_thanks .bl_btnWrapper {
	margin-top: 40px;
	text-align: center;
}
.bl_thanks .el_moreBtn{
	margin: 56px 0 0;
}
@media screen and (max-width : 750px){
	.bl_thanks_inner {
		width: 690px;
		padding: 56px;
		margin: 0 auto;
	}
	.bl_thanks_inner::before{
		content: none;
	}
	.bl_thanks_ttl {
		font-size: 34px;
		text-align: center;
	}
	.bl_thanks_txt {
		text-align: center;
	}
	.bl_thanks .el_moreBtn{
		width: 570px;
		margin: 56px auto 0;
	}
}

/*====================================================================
エラー文の非表示
（ラジオボタンやチェックボックスクリックで他のバリデーションが勝手に表示されるため）
======================================================================*/
.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
	display: none;
}

/* zipaddr */
#autozip {
	display: none !important;
}

