@charset "UTF-8";
/* -------------------------------------------------- */
/* PC */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* #point */
/* -------------------------------------------------- */
#point {
	margin-bottom: 130px;
}

#point .pointSec {
	padding-top: 75px;
	position: relative;
}

#point .pointSec + .pointSec {
	margin-top: 100px;
}

#point .pointSec .txtBox {
	width: calc(100% - 110px);
	min-height: 540px;
	display: flex;
	align-items: center;
	padding: 75px 80px;
	background: #fff;
}

#point .pointSec .txtBox .in {
	width: calc(100% - 350px);
}

#point .pointSecTit {
	margin-bottom: 25px;
	font-weight: 600;
	font-size: 2.8rem;
}

#point .pointSec .txt {
	font-size: 1.8rem;
	line-height: 2;
}

#point .pointSec .img {
	position: absolute;
	top: 0;
	z-index: 1;
	max-width: 470px;
}

/* 画像影 */
#point .pointSec .img::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #998a54;
	opacity: 0.15;
	position: absolute;
	top: 25px;
	z-index: -1;
	pointer-events: none;
}

#point .pointSec .img img {
	width: 100%;
	height: auto;
}

/* 奇数スタイル */
#point .pointSec:nth-of-type(odd) .txtBox {
	margin-inline: auto 0;
}
#point .pointSec:nth-of-type(odd) .txtBox .in {
	margin-inline: auto 0;
}
#point .pointSec:nth-of-type(odd) .img::after {
	left: 25px;
}

/* 偶数スタイル */
#point .pointSec:nth-of-type(even) .img {
	right: 0;
}
#point .pointSec:nth-of-type(even) .img::after {
	right: 25px;
}


/* -------------------------------------------------- */
/* 業務内容のご紹介 */
/* -------------------------------------------------- */
#work {
	margin-bottom: 150px;
}

#workList {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 45px 25px;
}

#workList .img img {
	width: 100%;
}

#workList .txt {
	margin-top: 15px;
	font-family: var(--font-family-sub);
	font-size: 1.6rem;
}


/* -------------------------------------------------- */
/* 応募される方へのメッセージ */
/* -------------------------------------------------- */
#message {
	width: min(100%, 1200px);
	margin: 0 auto 140px;
	padding: 60px;
	background: #fff;
	border: 10px solid #f4f2ef;
}

#messageTit {
	text-align: center;
}
/* タイトル英字 */
#messageTit::after {
	margin-top: 20px;
	display: block;
	color: #ae9b62;
	font-weight: 400;
	font-size: 1.6rem;
	font-family: var(--fonr-family-en);
	line-height: 1;
	content: attr(data-en);
}

#message .txt {
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}

#message .txt + .txt {
	margin-top: 2em;
}


/* -------------------------------------------------- */
/* 募集要項 */
/* -------------------------------------------------- */
#guideline {
	margin-bottom: 70px;
}


/* -------------------------------------------------- */
/* 採用までの流れ */
/* -------------------------------------------------- */
#flow {
	margin-bottom: 150px;
}

#flowList {
	display: flex;
	border-inline: 1px solid #998a54;
}

#flowList .item {
	flex: 1;
	padding: 35px 30px 20px;
}

#flowList .item + .item {
	position: relative;
}

/* リスト左側のライン＋矢印 */
#flowList .item + .item::after {
	content: "";
	display: block;
	width: 33px;
	height: 100%;
	background: #998a54;
	-webkit-clip-path: polygon();
	clip-path: polygon(0 0, 1px 0, 1px calc(50% - 40px), 100% 50%, 1px calc(50% + 40px), 1px 100%, 0 100%, 0 calc(50% + 39.5px), calc(100% - 1px) 50%, 0 calc(50% - 39.5px));
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

#flowList .flowListTit {
	margin-bottom: 15px;
	font-size: 2.4rem;
	text-align: center;
}

#flowList .img {
	width: min(42%, 100px);
	margin: 0 auto 20px;
}

#flowList .img img {
	width: 100%;
}

#flowList .txt {
	font-size: 1.5rem;
	line-height: 2;
	font-family: var(--font-family-sub);
}

#flow .flowBtn {
	margin-top: 100px;
	width: min(100%, 390px);
}


/* -------------------------------------------------- */
/* PC(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) {
	/* -------------------------------------------------- */
	/* 採用までの流れ */
	/* -------------------------------------------------- */
	#flow .flowBtn .btn1Link {
		min-height: 70px;
	}

	#flow .flowBtn .btn1Icon {
		width: 30px;
		height: 30px;
	}

}


/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	/* -------------------------------------------------- */
	/* #point */
	/* -------------------------------------------------- */
	#point {
		margin-bottom: 80px;
	}

	#point .pointSec {
		display: flex;
		flex-direction: column;
		padding-top: 0;
	}

	#point .pointSec + .pointSec {
		margin-top: 50px;
	}

	#point .pointSec .txtBox {
		width: 90%;
		min-height: auto;
		display: block;
		margin-top: -30px;
		padding: calc(60px + 5%) max(20px, 5%) max(30px, 5%) !important;
	}

	#point .pointSec .txtBox .in {
		width: 100%;
	}

	#point .pointSecTit {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}

	#point .pointSec .txt {
		font-size: 1.4rem;
	}

	#point .pointSec .img {
		order: -1;
		width: 90%;
		position: relative;
	}

	/* 画像影 */
	#point .pointSec .img::after {
		top: 5%;
	}

	/* 奇数スタイル */
	#point .pointSec:nth-of-type(odd) .img::after {
		left: 5%;
	}

	/* 偶数スタイル */
	#point .pointSec:nth-of-type(even) .img {
		margin-inline: auto 0;
	}
	#point .pointSec:nth-of-type(even) .img::after {
		right: 5%;
	}


	/* -------------------------------------------------- */
	/* 業務内容のご紹介 */
	/* -------------------------------------------------- */
	#work {
		margin-bottom: 80px;
	}

	#workList {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 30px 15px;
	}

	#workList .txt {
		margin-top: 10px;
		font-size: 1.4rem;
	}


	/* -------------------------------------------------- */
	/* 応募される方へのメッセージ */
	/* -------------------------------------------------- */
	#message {
		width: 90%;
		margin-bottom: 80px;
		padding: max(30px, 5%) 0;
		border-width: 7px;
	}

	/* タイトル英字 */
	#messageTit::after {
		margin-top: 10px;
		font-size: 1.4rem;
	}

	#message .txt {
		font-size: 1.4rem;
	}

	#message .txt + .txt {
		margin-top: 1.3rem;
	}


	/* -------------------------------------------------- */
	/* 採用までの流れ */
	/* -------------------------------------------------- */
	#flow {
		margin-bottom: 80px;
	}

	#flowList {
		display: block;
		border-inline: none;
		border-block: 1px solid #998a54;
	}

	#flowList .item {
		padding: 30px 20px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 15px 30px;
		align-items: center;
	}

	/* リスト下部のライン＋矢印 */
	#flowList .item + .item::after {
		width: 100%;
		height: 20px;
		-webkit-clip-path: polygon(0 0, calc(50% - 40px) 0, 50% calc(100% - 1px), calc(50% + 40px) 0, 100% 0, 100% 1px, calc(50% + 40.5px) 1px, 50% 100%, calc(50% - 40.5px) 1px, 0 1px);
		clip-path: polygon(0 0, calc(50% - 40px) 0, 50% calc(100% - 1px), calc(50% + 40px) 0, 100% 0, 100% 1px, calc(50% + 40.5px) 1px, 50% 100%, calc(50% - 40.5px) 1px, 0 1px);
	}

	#flowList .flowListTit {
		margin-bottom: 0;
		font-weight: 600;
		font-size: 2rem;
		text-align: right;
	}

	#flowList .img {
		width: min(100%, 80px);
		margin: 0 auto 0 0;
	}

	#flowList .txt {
		grid-column: span 2;
		font-size: 1.4rem;
	}

	#flow .flowBtn {
		margin-top: 50px;
	}

}


/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	/* -------------------------------------------------- */
	/* 応募される方へのメッセージ */
	/* -------------------------------------------------- */
	#message .txt {
		text-align: left;
	}

}