@charset "UTF-8";
/* CSS Document */

/*
	募集要項
-----------------------------------------------------------------------------------------------*/
/* header
============================== */
@media print, screen and (min-width:813px){
	#headerWrapper .titMenu.recruit{
		color: var(--clrBase);
	}
	#headerWrapper .titMenu.recruit::after{
		opacity: 1;
	}
}

/* ページタイトル
============================== */
.recruitPage #cmnPageTitWrapper{
	background: url("/cms/npf/brand/recruit//images/bg_recruit_main_tit_pc.png") no-repeat center top / cover;
}

/* リード文
============================== */
.txtLead{
	text-align: center;
}

/* カミングスーン */
.txtLead.cs{
	letter-spacing: 0.15rem;
	padding-top: 50px;
}

/* エントリー方法・採用フロー
============================== */
.listStep{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 51px;
}
.listStep li{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 286px;
	min-height: 130px;
	background-color: var(--clrBeige);
	text-align: center;
	padding: 20px;
	position: relative;
}
.listStep li:not(:last-of-type)::after{
	content: " ";
	display: block;
	width: 10px;
	height: 8px;
	background: url("/cms/npf/brand/recruit//images/ico_triangle_gray.svg") no-repeat top left / 100% auto;
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%) rotate(30deg);
}

/* num */
.listStep .num{
	color: var(--clrBase);
	font-size: 1.4rem;
	font-family: var(--fEn);
	font-weight: 700;
	line-height: 90%;
	position: absolute;
	top: 0;
	left: -10px;
	transform: translateY(-50%);
}

/* tit */
.listStep .tit{
	font-size: 1.8rem;
	font-family: var(--fZen);
	font-weight: 700;
	line-height: 130%;
}

/* txt */
.listStep .txt{
	color: #666;
	font-size: 1.4rem;
	line-height: 130%;
	margin-top: 10px;
}

/* p */
.listStep + p{
	text-align: center;
	margin-top: 20px;
}


@media screen and (max-width:812px){
	/*
		募集要項
	-----------------------------------------------------------------------------------------------*/
	/* ページタイトル
	============================== */
	.recruitPage #cmnPageTitWrapper{
		background: url("/cms/npf/brand/recruit//images/bg_recruit_main_tit_sp.png") no-repeat center top / cover;
	}

	/* エントリー方法・採用フロー
	============================== */
	.listStep{
		flex-direction: column;
		gap: 25px 0;
	}
	.listStep li{
		width: 100%;
		min-height: 100px;
	}
	.listStep li:not(:last-of-type)::after{
		top: auto;
		right: auto;
		bottom: -17px;
		left: 50%;
		transform: translateX(-50%);
	}

	/* num */
	.listStep .num{
		font-size: 1.2rem;
	}

	/* tit */
	.listStep .tit{
		font-size: 1.6rem;
	}

	/* txt */
	.listStep .txt{
		font-size: 1.3rem;
		margin-top: 8px;
	}

	/* p */
	.listStep + p{
		text-align: left;
		margin-top: 15px;
	}
}