@charset "UTF-8";

/* bl_form */
.bl_form {
	padding: 56px 102px;
}
.bl_form_item {
	display: flex;
	flex-wrap: wrap;
}
.bl_form_item:not(:first-child) {
	margin-top: 24px;
}
.el_form_ttl {
	width: 300px;
	display: flex;
	align-items: center;
	position: relative;
}
.el_required::after,
.el_optional::after {
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	width: 48px;
	height: 24px;
	padding-bottom: 1px;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 88px;
	transform: translateY(-50%);
}
.el_required::after {
	content: "必須";
	background: #E05F26;
}
.el_optional::after {
	content: "任意";
	background: #9A9A9A;
}
.bl_form input {
	width: 520px;
	height: 40px;
	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_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_dateWrapper input[type="date"]{
    position: relative;
}
.bl_dateWrapper input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
	background: none;
}
.bl_dateWrapper input {
	background: #fff url(../images/contact/calendar_icon.svg) center right 16px/22px 22px no-repeat;
}
.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_timeWrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 16px 0 0 300px;
}
.bl_timeWrapper > span{
	display: flex;
	align-items: center;
}
.bl_timeWrapper select {
	width: 88px!important;
	height: 40px;
	margin-right: 4px;
	background: url(../images/contact/icon_triangle__under.svg) center right 12px / 12px 10px no-repeat #fff!important;
	padding: 0 16px;
}
.el_timeTxt{
	margin-left: 8px;
}
.bl_timeWrapper > .el_timeTxt:nth-of-type(2){
	margin-right: 24px;
}
.bl_timeWrapper .wpcf7-not-valid-tip{
	width: 150px;
}
/* セレクト */
.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_form .bl_btnWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin-top: 40px;
}
.bl_form .el_btn {
	min-width: 220px;
	padding-top: 0;
}
.bl_btnWrapper .wpcf7-form-control {
	position: relative;
	z-index: 2;
	width: 258px;
	height: 56px;
	padding-bottom: 4px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	border: none;
	border-radius: 0;
	background-color: #74babe;
}
.bl_btnWrapper .wpcf7-previous {
	width: 204px;
	border: 1px solid #3a95ac;
	background: #fff;
	color: #3a95ac;
}
.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 .el_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) {
	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;
	}
	.el_form_ttl {
		font-size: 30px;
		width: 100%;
		margin-bottom: 16px;
	}
	.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_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: 320px;
		height: 80px;
		padding-bottom: 4px;
		font-size: 30px;
	}
	.bl_btnWrapper .wpcf7-previous {
		width: 240px;
		border-width: 2px;
	}

	/* エラー */
	.wpcf7-form.invalid .bl_form_selectWrapper:has(.wpcf7-not-valid-tip) {
		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: #dcedf2;
}
.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;
	}
}

/* thanks */
.bl_thanks {
	padding: 40px 0 80px;
}
.bl_thanks_inner {
	width: 800px;
	margin: 0 auto;
	padding: 80px 0;
	background: #ccc;
}
.el_thanks_ttl {
	font-size: 32px;
	color: #fff;
	text-align: center;
	margin-bottom: 16px;
}
.bl_thanks_txt {
	color: #fff;
	text-align: center;
}
.bl_thanks .bl_btnWrapper {
	margin-top: 40px;
	text-align: center;
}

@media screen and (max-width : 750px){
	.bl_thanks_inner {
		width: 690px;
		margin: 0 auto;
	}
	.el_thanks_ttl {
		font-size: 38px;
		margin-bottom: 16px;
	}
	.bl_thanks_txt {
		text-align: center;
	}
}

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

/**Mac,iPad Safari**/
/* @media only screen and (min-device-width:768px){
_::-webkit-full-page-media, _:future, :root{

}
} */
