@charset "UTF-8";
/* bl_form */
.bl_form{
	padding-left: 14px;
	padding-right: 13px;
}
.bl_kana{
	margin-top: 24px;
}
.bl_form_list{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bl_form_item {
	display: flex;
	flex-wrap: wrap;
}
.bl_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;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 88px;
	transform: translateY(-50%);
	line-height: 1.4;
}
.el_required::after {
	content: "必須";
	background: #E05F26;
}
.el_optional::after {
	content: "任意";
	background: #9A9A9A;
}
.bl_form_input {
	width: 520px;
	height: 40px;
	padding: 0 16px;
	border-radius: 5px;
	border: 1px solid #969696;
	background: #fff;
}

/* 年齢 */
.bl_age_inputWrapper {
	width: 520px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.bl_age_inputWrapper input {
	width: 118px;
	height: 40px;
	font-size: 16px;
	padding: 0 16px;
	border-radius: 5px;
	border: 1px solid #969696;
	background: #fff;
}

/* ラジオ */
.bl_radioWrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 48px;
	width: 520px;
}
.bl_radio + span {
	position: relative;
	padding-left: 40px;
	padding-bottom: 2px;
}
.bl_radio + span::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #969696;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl_radio + span::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #0181c0;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	opacity: 0;
}
.bl_radio:checked + span::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_txt {
  padding-top: 3px;
}
.bl_time_select {
  width: 88px;
  height: 40px;
  margin-right: 4px;
	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;
	border-radius: 5px;
	border: 1px solid #969696;
	background-color: #fff;
}

/* テキストエリア */
.bl_form_textarea {
	width: 520px;
	height: 160px;
	padding: 10px 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;
}

/* エラー */
.mw_wp_form .error {
	margin-left: 300px;
	margin-top: 8px;
}
.mw_wp_form .bl_dateBox .error {
	margin-left: 0;
}
/* MW側のCSS調整 */
.mw_wp_form .bl_form_item .horizontal-item + .horizontal-item {
	margin-left: 0;
}
.form01_error .bl_form02 .error{
	display: none;
}
.form02_error .bl_form01 .error{
	display: none;
}
.bl_radioWrapper .error{
	margin-left: 0;
}
.bl_form_num{
	margin-left: auto;
}

@media screen and (max-width : 750px){
	.bl_contact .mw_wp_form .horizontal-item + .horizontal-item{
		margin-left: 0;
	}
	.bl_form {
		padding: 0 24px;
	}
	.bl_form_inner {
		padding: 56px 32px;
	}
	.bl_form_list{
		gap: 40px;
	}
	.bl_form_item {
		gap: 0;
	}
	.bl_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;
	}

	/* 年齢 */
	.bl_age_inputWrapper {
		width: 100%;
	}
	.bl_age_inputWrapper input {
		width: 208px;
		height: 64px;
		font-size: 32px;
	}

	/* ラジオ */
	.bl_radioWrapper {
		width: 100%;
		row-gap: 16px;
	}
	.bl_radio + span {
		font-size: 30px;
		padding-left: 48px;
		padding-bottom: 5px;
	}
	.bl_radio + span::before {
		width: 32px;
		height: 32px;
	}
	.bl_radio + span::after {
		width: 18px;
		height: 18px;
		left: 7px;
	}

	/* チェックボックス */
	.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;
		background-size: 20px 18px;
		background-position: center right 24px;
		color: #222;
  }

	/* カレンダー部分 */
	.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_form .bl_btnWrapper {
		margin-top: 56px;
	}
	.bl_form .el_btn {
		min-width: 400px;
	}
	/* エラー */
	.mw_wp_form .error {
		margin-left: 0;
	}
}

/*=======================================================
check,thanks
=======================================================*/
/* check */
.bl_check .bl_form_selectWrapper::after {
  content: none;
}
.bl_check .el_btn.el_btn__back {
	min-width: 150px;
}
.bl_check .bl_radioWrapper {
	width: auto;
}
.bl_check .bl_age_inputWrapper {
	width: auto;
}
.bl_check .bl_form_num{
	display: none;
}
@media screen and (max-width : 750px){
	/* check */
	.bl_check .bl_form {
		padding: 0;
	}
	.bl_form_btnWrapper {
		flex-direction: column-reverse;
		gap: 40px;
	}
	.bl_check .bl_form_btnWrapper .el_btn.back {
		width: 400px;
	}
}

/**Mac,iPad Safari**/
@media only screen and (min-device-width:768px){
	_::-webkit-full-page-media, _:future, :root
	.bl_radio + span,
	.bl_check + span {
			padding-top: 0;
	}
	_::-webkit-full-page-media, _:future, :root
	.el_required::after,
	.el_optional::after {
			padding-top: 0;
	}
	_::-webkit-full-page-media, _:future, :root
	.bl_time_txt {
			padding-top: 0;
	}
}
