.recruit-hero {
	padding-top: 8.125rem;
	background: url(../images/recruit/bg_recruit_pc.webp) center bottom/cover no-repeat;
}

.recruit-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.recruit-hero__inner {
	display: flex;
	justify-content: space-between;
}

.recruit-hero__content {
	width: 45%;
	color: #fff;
	padding-top: 4.375rem;
}

.recruit-hero__title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 5rem;
	line-height: 4.375rem;
	letter-spacing: 0;
}

.recruit-hero__subtitle {
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 2rem;
	line-height: 3.8125rem;
	letter-spacing: 0;
}

.job-card__title,
.recruit-section-title__text {
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 0;
	font-family: var(--font-main);
	color: var(--color-text-main);
}

.recruit-hero__image-wrap {
	position: relative;
	transform: translateY(1rem);
}

.recruit-hero__image {
	width: 100%;
	max-width: 35.625rem;
	height: 23.125rem;
	object-fit: cover;
	border-radius: var(--radius-pc);
	box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
	display: block;
}

.recruit-content {
	padding: 9.9rem 0 8rem;
}

.recruit-section-title {
	display: flex;
	align-items: center;
	gap: .875rem;
	margin-bottom: 1.875rem;
}

.recruit-section-title__icon {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-block;
}

.recruit-section-title__text {
	font-size: 2.125rem;
}

.job-list {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.job-card {
	display: flex;
	border: 1px solid #bbb;
	border-radius: var(--radius-pc);
	padding: 3.125rem;
	gap: 3.125rem;
	position: relative;
	transition: border-color .3s, box-shadow .3s;
	text-decoration: none;
	color: inherit;
}

.job-card.private {
	position: relative;
	pointer-events: none;
	cursor: not-allowed;
}

.job-card.private::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.2;
	z-index: 10;
	border-radius: inherit;
}

.job-card__image-wrap {
	width: 28.125rem;
	height: 16.875rem;
	border-radius: 0.625rem;
}

.job-card__image-wrap--no-image {
	border: 0.5px solid #eee;
}

.job-card__image {
	width: 28.125rem;
	height: 16.875rem;
	display: block;
	transition: transform .5s;
	border-radius: 0.625rem;
}

.job-card__info {
	width: 100%;
}

.job-card:hover .job-card__image {
	transform: scale(1.05);
}

.job-card__title {
	font-size: 1.875rem;
	margin-bottom: 1.4375rem;
}

.job-card__divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #00b9ef 0, #00b9ef 2.375rem, #ccc 2.375rem, #ccc 100%);
}

.job-card__desc {
	margin-top: 1.125rem;
	font-family: var(--font-main);
	font-size: 1rem;
	color: var(--color-text-main);
	font-weight: 500;
	line-height: 2rem;
	letter-spacing: 10%;
}

.job-card__button {
	position: absolute;
	bottom: 3.125rem;
	right: 3.125rem;
	width: 3rem;
	height: 3rem;
	background-color: #000;
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
	cursor: pointer;
}

.job-card__button::after {
	position: absolute;
	content: '';
	width: 1.9375rem;
	height: 1.9375rem;
	background: url(../images/recruit/ico_recruit_info_pc.svg) center/cover no-repeat;
}

.job-list__sentinel {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 0;
	min-height: 4rem;
}

.job-list__sentinel::before {
	content: '';
	width: 2.25rem;
	height: 2.25rem;
	border: 3px solid #ddd;
	border-top-color: var(--color-primary, #00b8ee);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .3s;
}

.job-list__sentinel.is-loading::before {
	opacity: 1;
	animation: job-list-spinner .6s linear infinite;
}

.job-list__sentinel.is-end {
	display: none;
}

@keyframes job-list-spinner {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 991px) {
	.recruit-hero {
		height: 45.8rem;
		padding-top: 13.5rem;
		background: url(../images/recruit/bg_recruit_sp.webp) center bottom/cover no-repeat;
	}

	.recruit-hero__inner {
		flex-direction: column;
	}

	.recruit-hero__content {
		width: 100%;
		margin-bottom: 4.6rem;
	}

	.recruit-hero__title {
		font-family: var(--font-title);
		font-weight: 700;
		font-size: 5.2rem;
		line-height: 5rem;
		letter-spacing: 0;
	}

	.recruit-hero__subtitle {
		font-family: var(--font-main);
		font-weight: 500;
	}

	.recruit-hero__subtitle {
		font-size: 2rem;
		line-height: 4rem;
		letter-spacing: 0;
	}

	.job-card__title,
	.recruit-section-title__text {
		font-weight: 700;
		line-height: 100%;
		font-family: var(--font-main);
		color: var(--color-text-main);
		letter-spacing: 0;
	}

	.recruit-hero__image-wrap {
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}

	.recruit-hero__image {
		width: 23rem;
		height: 15rem;
	}

	.recruit-section-title {
		display: flex;
		align-items: center;
		gap: 0.8rem;
		margin-bottom: 2rem;
	}

	.recruit-content {
		padding: 8.5rem 0 7.5rem;
	}

	.recruit-section-title__icon {
		width: 2.6rem;
		height: 2.6rem;
	}

	.recruit-section-title__text {
		font-size: 2.4rem;
	}

	.job-card {
		flex-direction: column;
		padding: 1.8rem 1.8rem 9rem;
		gap: 2.4rem;
		border-radius: 1rem;
	}

	.job-card__image-wrap {
		width: 100%;
		height: 19rem;
		border-radius: 1rem;
	}

	.job-card__image {
		width: 100%;
		height: 19rem;
	}

	.job-card__info {
		width: 100%;
		padding-right: 0;
	}

	.job-card__title {
		font-size: 2.2rem;
		margin-bottom: 1.5rem;
	}

	.job-card__desc {
		margin-top: 2rem;
		font-family: var(--font-main);
		font-size: 1.4rem;
		color: var(--color-text-main);
		font-weight: 500;
		line-height: 3rem;
		letter-spacing: 0;
	}

	.job-card__button {
		bottom: 2rem;
		right: 1.8rem;
		border-radius: 1rem;
		width: 6rem;
		height: 6rem;
	}

	.job-card__button::after {
		position: absolute;
		content: '';
		width: 2.4rem;
		height: 2.4rem;
		background: url(../images/recruit/ico_recruit_info_pc.svg) center/cover no-repeat;
	}

	.job-card__divider {
		width: 100%;
		height: 1px;
		background: linear-gradient(to right, #00b9ef 0, #00b9ef 2.146rem, #ccc 2.146rem, #ccc 100%);
	}
}
