@charset "UTF-8";

/* bl-form */
.bl-form {
	background: #fff;
	padding: 56px 102px;
}
.bl-form-item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.bl-form-item:not(:first-of-type) {
	margin-top: 24px;
}
.el-form-ttl {
	width: 180px;
	color: #fff;
	display: flex;
	align-items: center;
	position: relative;
	margin-right: 120px;
}
.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: -50px;
	transform: translateY(-50%);
}
.el-required::after {
	content: "必須";
	background: #E05F26;
}
.el-optional::after {
	content: "任意";
	background: #9A9A9A;
}
.bl-form input {
	width: 520px;
	min-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-checkWrapper .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.bl-checkWrapper .wpcf7-list-item {
	margin-left: 0;
}
.bl-checkWrapper .wpcf7-check {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.bl-checkWrapper .wpcf7-list-item-label {
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
	cursor: pointer;
	position: relative;
}
.bl-checkWrapper .wpcf7-list-item-label::before {
	content: "";
	background: #fff;
	width: 16px;
	height: 16px;
	border: 1px solid #b0ab99;
	border-radius: 2px;
}
.bl-checkWrapper .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	display: block;
	background: transparent;
	border-bottom: 2px solid #222;
	border-right: 2px solid #222;
	width: 8px;
	height: 16px;
	left: 5px;
	top: 0px;
	transform: rotate(42deg);
	opacity: 0;
}
.bl-checkWrapper input:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}
.bl-checkWrapper.registar {
	width: 520px;
	margin-left: 300px;
	margin-top: 8px;
}

/* カレンダー部分 */
.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/icon-calender.svg) center right 16px / 22px 22px no-repeat;
}
.bl-date {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.bl-dateBox:not(:first-of-type) {
	margin-top: 8px;
}
.bl-date-unit {
	width: 520px;
	display: flex;
    flex-flow: wrap;
    gap: 16px;
}
.bl-dateWrapper {
	width: 270px;
}
.bl-dateWrapper input{
	width: 270px;
}
.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;
}
.bl-timeWrapper > span {
	display: flex;
	align-items: center;
}
.bl-timeWrapper select {
	min-width: 90px;
	border-radius: 5px;
	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 {
	color: #FFFFFF;
}
.bl-timeWrapper > .el-timeTxt:nth-of-type(2) {
	margin-right: 8px;
}
.bl-timeWrapper .wpcf7-not-valid-tip {
	width: 150px;
}

/* セレクト */
.bl-selectWrapper 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;
    flex-direction:row;
    direction:ltr;
    justify-content:center;
    align-items:center;
    gap:24px;
    margin-top:56px;
    flex-wrap:wrap;
}
.wpcf7-form-control-wrap {
	display:block;
}
.bl-btnWrapper .wpcf7-form-control-wrap,
.bl-btnWrapper p {
    display:flex !important;
    gap:24px !important;
    margin:0 !important;
    padding:0 !important;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}
.bl-btnWrapper input.wpcf7-submit,
.bl-btnWrapper input.wpcf7-previous,
.bl-btnWrapper button.wpcf7-previous {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-height:48px;
    padding:12px 16px;
    font-size:20px;
    font-weight:700;
    letter-spacing:0.04em;
    border:1px solid #C3B085;
    box-sizing:border-box;
    cursor:pointer;
    border-radius:0;
    flex:0 0 auto;
}
.bl-form .bl-btnWrapper > :first-child {
	margin-left:0;
}
.bl-form .bl-btnWrapper > :last-child {
    margin-right:0;
}
.bl-btnWrapper input.wpcf7-submit {
    min-width:320px;
    width:320px;
    background:#C3B085;
}
.bl-btnWrapper input.wpcf7-previous,
.bl-btnWrapper button.wpcf7-previous {
    min-width:204px;
    width:204px;
    background:#fff;
    color:#333;
}
.bl-form .el-btn {
	padding-top: 0;
}
.bl-btnWrapper button.wpcf7-previous *{
    display:contents;
}
.bl-btnWrapper .wpcf7-previous {
	width: 204px;
	border: 1px solid #C3B085;
	background: #fff;
}
.bl-btnWrapper .wpcf7-spinner {
	display: none;
}
.bl-btnWrapper .wpcf7-spinner,
.bl-btnWrapper input[type="hidden"] {
	display:none !important;
}
.wpcf7-form-control-wrap {
	display:block;
}

/* エラー */
.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.el-required {
	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;
		flex-wrap: wrap;
		justify-content: start;
	}
	.bl-form-item:not(:first-child) {
		margin-top: 40px;
	}
	.el-form-ttl {
		font-size: 30px;
		width: 100%;
		margin-bottom: 16px;
		margin-right: 0;
	}
	.el-required::after,
	.el-optional::after {
		font-size: 26px;
		width: 80px;
		height: 40px;
		padding-top: 0;
		right: 0;
	}
	.bl-form input {
		width: 100%;
		min-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: 626px;
		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-date-unit {
	    width: 100%;
        gap: 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-timeWrapper select {
		width: 160px;
		height: 64px;
		font-size: 32px;
		padding: 0 16px;
		margin-right: 12px;
		background: url(../images/contact/icon-triangle--under.svg) center right 12px / 20px 28px no-repeat #fff !important;
	}
	.bl-timeWrapper > .el-timeTxt:nth-of-type(2) {
		margin-right: 32px;
	}
	/* テキストエリア */
	.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 input.wpcf7-submit{
		width: 360px;
		min-height: 80px;
		font-size: 30px;
	}
	.bl-btnWrapper .wpcf7-form-control {
		width: 420px;
		min-height: 80px;
		padding-bottom: 8px;
		font-size: 30px;
		flex-flow: nowrap;
		white-space: pre-wrap;
	}
	.bl-btnWrapper .wpcf7-previous {
		width: 240px;
		font-size: 28px!important;
		border-width: 2px!important;
	}
	/* エラー */
	.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;
	}
}

/*=======================================================
check, thanks
=======================================================*/
.bl-check {
	padding: 32px 0 80px;
}
.bl-check .bl-form {
	padding: 56px 102px;
	background: #001733;
}
.bl-check .bl-form-item {
	border-bottom: 1px solid #fff;
	margin-top: 0;
	padding: 16px 0;
	color: #fff;
	justify-content: start;
}
.bl-check .bl-form-selectWrapper::after {
	content: none;
}
.bl-check .el-btn.back {
	min-width: 204px;
}
.bl-check .el-btn.send {
	min-width: 258px;
}
.bl-check .bl-radioWrapper,
.bl-check .bl-age-inputWrapper {
	width: auto;
}
.bl-check .bl-dateWrapper {
	width: auto;
}

@media screen and (max-width: 750px) {
	.bl-check .bl-form {
		padding: 40px;
	}
	.bl-check .bl-btnWrapper {
		gap: 40px;
		flex-wrap: nowrap;
	}
	.bl-check .bl-timeWrapper {
		margin: 0 0 0 24px;
	}
}

/* thanks */
.bl-thanks {
	padding: 64px 0;
}
.bl-thanks .ly-cont-inner {
	padding: 56px 122px 64px;
	background: url(../images/contact/thanks-bg.jpg) top center / cover no-repeat;
}
.el-thanks-ttl {
	font-size: 24px;
	letter-spacing: 1.44px;
	font-weight: bold;
	color: #C3B085;
	margin-bottom: 40px;
}
.el-thanks-txt {
	color: #fff;
}
.bl-thanks .bl-btnWrapper {
	margin-top: 40px;
}
.bl-thanks .el-btn {
	width: 300px;
	height: 50px;
	border: 1px solid #FFFFFF;
	background: #141111;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	margin-top: 40px;
	padding-right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.bl-thanks .el-btn::after {
	position: absolute;
	content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
    border-right: 0;
	top: 50%;
	transform: translateY(-50%);
	right: 60px;
}
@media screen and (max-width: 750px) {
    .bl-thanks {
	    padding: 80px 0;
    }
    .bl-thanks .ly-cont-inner {
	    padding: 80px 0;
	    background: url(../images/contact/thanks-bg-sp.jpg) top center / cover no-repeat;
    }
	.el-thanks-ttl {
		font-size: 32px;
		text-align: center;
		letter-spacing: 1.92px;
		line-height: 1.8em;
		margin-bottom: 56px;
	}
	.el-thanks-txt {
		text-align: center;
	}
	.bl-thanks .el-btn {
	    width: 512px;
	    height: 76px;
	    font-size: 28px;
	    margin: 96px auto 0;
	    padding-right: 16px;
    }
    .bl-thanks .el-btn::after {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid #ffffff;
	    right: 80px;
    }
}

/* 非表示にするエラー文（Safari対応含む） */
.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{

}
}
*/

