@charset "UTF-8";

/* bl-form */
.bl-form {
	background: #F0F9F7;
	padding: 56px 80px;
}
.bl-form-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.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;
	color: #fff;
	width: 48px;
	height: 24px;
	padding-bottom: 1px;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
}
.el-required::after {
	content: "必須";
	background: #FF77D6;
}
.el-optional::after {
	content: "任意";
	background: #9B9B9B;
}
.bl-form input {
	width: 520px;
	height: 40px;
	padding: 1px 16px 0;
	border: 1px solid #969696;
	background: #fff;
}

/* 年齢 */
.bl-age-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}
.bl-age-wrapper input {
	width: 118px;
	height: 40px;
	font-size: 16px;
	padding: 0 16px 3px;
	border-radius: 5px;
	border: 1px solid #969696;
	background: #fff;
}
.bl-age-wrapper .wpcf7-not-valid-tip {
	width: 200%;
	bottom: -24px;
}

/* ラジオ */
.bl-radio-wrapper {
	flex: 1;
}
.bl-radio-wrapper .wpcf7-list-item {
	margin-left: 0;
}
.bl-radio-wrapper .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.bl-radio-wrapper .wpcf7-list-item-label {
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
	position: relative;
	cursor: pointer;
}
.bl-radio-wrapper .wpcf7-list-item-label::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #969696;
	background: #fff;
}
.bl-radio-wrapper .wpcf7-list-item-label::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #FF77D6;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	opacity: 0;
}
.bl-radio-wrapper input:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

/* チェックボックス */
.bl-check-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 48px;
	width: 520px;
}
.bl-check-wrapper .wpcf7-checkbox,
.bl-check-wrapper .wpcf7-check {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.bl-check-wrapper .wpcf7-list-item {
	margin-left: 0;
}
.bl-check-wrapper .wpcf7-list-item-label {
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
	cursor: pointer;
	position: relative;
}
.bl-check-wrapper .wpcf7-list-item-label::before {
	content: "";
	background: #fff;
	width: 16px;
	height: 16px;
	border: 1px solid #b0ab99;
	border-radius: 2px;
}
.bl-check-wrapper .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	width: 8px;
	height: 16px;
	left: 5px;
	top: 0;
	transform: rotate(42deg);
	opacity: 0;
}
.bl-check-wrapper input:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}
.bl-check-wrapper.registar {
	width: 520px;
	margin-left: 300px;
	margin-top: 8px;
}

/* カレンダー */
.bl-date-wrapper {
	width: 520px;
}
.bl-date-wrapper input[type="date"] {
	position: relative;
}
.bl-date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	width: 100%;
	height: 100%;
	background: none;
}
.bl-date-wrapper input {
	background: #fff url(../images/contact/icon-calender.svg) center right 16px / 22px 22px no-repeat;
}
.bl-date {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.bl-date-box:not(:first-of-type) {
	margin-top: 8px;
}
.bl-date-ttl {
	display: block;
	margin-bottom: 4px;
	position: relative;
}
.bl-date-ttl.el-required::after {
	right: auto;
	left: 96px;
}

/* 時間 */
.bl-time-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 16px 0 0 300px;
}
.bl-time-wrapper > span {
	display: flex;
	align-items: center;
}
.bl-time-wrapper 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-time-txt {
	margin-left: 8px;
}
.bl-time-wrapper > .el-time-txt:nth-of-type(2) {
	margin-right: 24px;
}

/* セレクト */
.bl-form select {
	width: 520px;
	height: 40px;
	font-size: 16px;
	padding: 1px 16px 0;
	border-radius: 5px;
	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;
	border: 1px solid #969696;
	border-radius: 5px;
	resize: none;
}

/* ボタン */
.bl-form .bl-btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin-top: 40px;
}
.bl-form .bl-btn-wrapper .el-btn{
	width: 258px;
	height: 56px;
	padding: 0;
	margin: 0;
	display: block;
}
.bl-btn-wrapper .wpcf7-form-control {
	width: 258px;
	height: 56px;
	font-size: 18px;
	letter-spacing: 0.72px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #69C6AC;
	color: #fff;
	border: none;
	border-radius: 0;
	padding-top: 2px;
}
.bl-btn-wrapper .wpcf7-previous {
	width: 204px;
	border: 1px solid #69C6AC;
	background: #fff;
	color: #69C6AC;
}
.wpcf7-spinner{
	position: absolute;
	margin: 0;
}
@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;
	}

	/* 年齢 */
	.bl-age-wrapper {
		width: 100%;
	}
	.bl-age-wapper input {
		width: 208px;
		height: 64px;
		padding: 0 16px 4px;
	}
	.bl-age-wrapper .wpcf7-not-valid-tip {
		bottom: -36px;
	}

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

	/* チェックボックス */
	.bl-check-wrapper {
		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-select-wrapper {
		width: 100%;
	}
	.bl-form-select-wrapper::after {
		border-width: 14px 9px 0 9px;
		top: 26px;
		right: 20px;
	}
	.bl-form select {
		width: 642px;
		height: 64px;
		font-size: 32px;
		padding: 0 16px;
		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-date-wrapper {
		width: 100%;
	}
	.bl-date-ttl {
		margin-bottom: 16px;
	}
	.bl-date-ttl.el-required::after {
		right: 0;
		left: auto;
	}
	.bl-date-calender-wrapper {
		width: 100%;
	}
	.bl-form-input.calender {
		width: 100%;
		background-size: 32px 32px;
	}
	.el-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-form .bl-btn-wrapper {
		gap: 64px;
		margin-top: 64px;
	}
	.bl-form .bl-btn-wrapper .el-btn{
		width: 312px;
        height: 78px;
		padding: 0;
		margin: 0;
		display: block;
	}
	.bl-btn-wrapper .wpcf7-form-control {
        width: 312px;
        height: 78px;
		padding: 0;
		font-size: 30px;
	}
	.bl-btn-wrapper .wpcf7-previous {
		width: 240px;
		border-width: 2px;
	}

	/* エラー */
	.wpcf7-form.invalid .bl-form-selectWrapper:has(.wpcf7-not-valid-tip),
	.wpcf7-form.invalid .bl-radioWrapper:has(.wpcf7-not-valid-tip),
	.wpcf7-form.invalid .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip),
	.wpcf7-form.invalid .bl-ageWrapper:has(.wpcf7-not-valid-tip) {
		padding-bottom: 48px;
	}
}
/* thanks */
.bl-thanks {
	background: #F0F9F7;
}
.bl-thanks .ly-cont-inner {
	margin: 0 auto;
	padding: 96px 24px;
	background: #fff;
}
.bl-thanks .ly-cont-inner::after{
	content: '';
	position: absolute;
	background: url(../images/entry/thanks-oguri.png) top center / contain no-repeat;
	width: 142px;
	height: 186px;
	bottom: 0;
	right: 56px;
}
.el-thanks-ttl {
	color: #69C6AC;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.96px;
	text-align: center;
	margin-bottom: 24px;
}
.bl-thanks .el-txt {
	font-size: 16px;
	text-align: center;
}
.bl-thanks .el-txt{
	line-height: 2;
}
.bl-thanks .hp-link{
	color: #06C755;
	text-decoration: underline;
}
.bl-thanks .el-line{
	display: block;
	width: 300px;
	margin: 40px auto;
	transition: all 0.3s ease;
}
.bl-thanks .el-line img:nth-of-type(2){
	display: none;
}
.bl-thanks .el-line:hover img{
	display: none;
}
.bl-thanks .el-line:hover img:nth-of-type(2){
	display: block;
}
@media screen and (max-width: 750px) {
	.bl-thanks .ly-cont-inner::after{
		width: 140px;
		height: 183px;
		bottom: 0;
		right: 20px;
	}
	.el-thanks-ttl {
		font-size: 38px;
		margin-bottom: 32px;
	}
	.bl-thanks .el-txt {
		font-size: 28px;
	}
	.bl-thanks .el-line{
		width: 480px;
		margin: 56px auto;
	}
}