@charset "UTF-8";

/*=======================================================
formArea
=======================================================*/
.bl_formArea {
	padding: 80px 0;
	background: linear-gradient(180deg, #F6F2E8 0%, #FFFFFF 100%);
}
.bl_formArea_intro {
	text-align: center;
	margin-bottom: 27px;
}

/* bl_form */
.bl_form {
	background: #F0EEE7;
	border-radius: 10px;
	padding: 56px 100px;
}
.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;
}
.el_required::after,
.el_optional::after {
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	width: 48px;
	height: 24px;
	padding: 0 0 2px;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 88px;
	transform: translateY(-50%);
}
.el_required::after {
	content: "必須";
	background: #EF626B;
}
.el_optional::after {
	content: "任意";
	background: #9A9A9A;
}
.bl_form_input {
	width: 520px;
	height: 40px;
	padding: 0 16px;
	border-radius: 5px;
	background: #fff;
}
.bl_postal .bl_form_input{
	width: 279px;
}
/* ラジオ */
.bl_form input[type="radio"] {
	display: unset;
	-webkit-appearance: auto;
	appearance: auto;
	width: 24px;
	height: 24px;
	padding-right: 40px;
}
.bl_radio > div{
	display: flex;
	align-items: center;
}
.bl_radio > div + div{
	margin-left: 48px;
}
.bl_radio > div label{
	display: flex;
	align-items: center;
}
.bl_radio > div label span{
	padding-left: 8px;
}
/* セレクト */
.bl_form_select {
	width: 520px;
	height: 40px;
	font-size: 16px;
	padding: 0 16px;
	border-radius: 5px;
	background: #fff;
}
.bl_form_selectWrapper {
	position: relative;
}
.bl_form_selectWrapper::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 6px 0 6px;
	border-color: #333 transparent transparent transparent;
	position: absolute;
	top: 16px;
	right: 16px;
}

/* テキストエリア */
.bl_form_textarea {
	width: 520px;
	height: 160px;
	padding: 10px 0 0 16px;
	background: #fff;
	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{
	border-radius: 2px;
	width: 265px;
	height: 50px;
	background: #7F7F7F;
	margin: 40px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl_form .el_arrowBtn::after {
	background: url(../images/common/btn_arrow.svg) top center/cover no-repeat;
	width: 8px;
	height: 15px;
	transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
	pointer-events: none;
}
.bl_form .el_btn input{
	width: 100%;
	height: 100%;
	font-size: 20px;
	color: #fff;
}
@media screen and (max-width : 750px){
	.bl_form {
		padding: 56px 24px 80px;
	}
	.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;
	}
	.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_postal .bl_form_input{
		width: 310px;
	}

	/* ラジオ */
	.bl_form input[type="radio"] {
		width: 32px;
		height: 32px;
		/* padding-right: 40px; */
	}
	.bl_radio > div + div{
		margin-left: 48px;
	}
	.bl_radio > div label{
		padding-left: 16px;
	}

	/* セレクト */
	.bl_form_select {
		width: 642px;
		height: 64px;
		font-size: 32px;
	}
	.bl_form_selectWrapper::after {
		border-width: 20px 12px 0 12px;
		top: 22px;
		right: 24px;
	}

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

	/* ボタン */
	.bl_form .bl_btnWrapper {
		margin-top: 56px;
	}
	.bl_form .el_btn{
		width: 408px;
		height: 88px;
		border-radius: 4px;
	}
	.bl_form .el_btn__rightArrow::after {
		width: 36px;
		height: 15px;
		top: 50%;
		transform: translate(75px, -50%);
	}
	.bl_form .el_btn input{
		width: 100%;
		height: 100%;
		font-size: 32px;
	}
}


/*=======================================================
サンクスページ
=======================================================*/
/* mv */
.bl_lower_mv_ttl::before {
	background: url(../images/recruit/mv_ttl.svg) top center/contain no-repeat;
	width: 134px;
	height: 22px;
}
@media screen and (max-width : 750px){
	.bl_lower_mv_ttl::before {
		width: 207px;
		height: 34px;
	}
}
.ly_thanks{
	padding: 40px 0 80px;
}
.bl_thanks{
	background: #F0EEE7;
}
.bl_thanks_inner{
	padding: 40px 0 56px;
	position: relative;
}
.bl_thanks_ttl{
	font-size: 26px;
	font-weight: normal;
	color: #4E2E2E;
	text-align: center;
	margin-bottom: 24px;
}
.bl_thanks_txt{
	background: #fff;
	padding: 24px 0 32px;
	text-align: center;
	width: 728px;
	margin: 0 auto;
}
.bl_thanks .el_btn{
	width: 265px;
	height: 50px;
}

@media screen and (max-width : 750px){
	.ly_thanks{
		padding: 40px 0 94px;
	}
	.bl_thanks_inner{
		padding: 56px 40px;
	}
	.bl_thanks_ttl{
		font-size: 36px;
		margin-bottom: 40px;
		text-align: center;
	}
	.bl_thanks_txt{
		width: auto;
	}
	.bl_thanks .el_btn{
		width: 344px;
		height: 80px;
		margin:  56px auto 0;
	}
}