:root {
	--recruit-shell: var(--shell);
	--recruit-ink: #102a5d;
	--recruit-blue: #0c4f9f;
	--recruit-line: rgba(18, 27, 55, 0.12);
	--recruit-soft: #f4f7fb;
	--recruit-soft-strong: #ecf2f9;
}

.recruit-page {
	padding-top: 94px;
	background:
		radial-gradient(circle at 82% 12%, rgba(11, 87, 164, 0.06), transparent 22%),
		radial-gradient(circle at 24% 10%, rgba(196, 163, 90, 0.05), transparent 16%),
		linear-gradient(180deg, rgba(244, 247, 252, 0.75) 0%, rgba(255, 255, 255, 0.2) 16%, #fff 36%);
}

.recruit-shell,
.recruit-breadcrumb {
	width: var(--recruit-shell);
	margin: 0 auto;
}

.recruit-breadcrumb {
	padding: 20px 0 18px;
	border-bottom: 1px solid rgba(16, 42, 93, 0.08);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(16, 42, 93, 0.74);
	opacity: 0;
	transform: translateY(14px);
	animation: recruitBreadcrumbReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.recruit-breadcrumb a {
	color: inherit;
}

.recruit-breadcrumb span {
	margin: 0 16px;
	color: rgba(16, 42, 93, 0.42);
}

.recruit-hero {
	padding: 42px 0 44px;
}

.recruit-hero__copy {
	max-width: min(100%, 760px);
	overflow: hidden;
	clip-path: inset(0 0 100% 0);
	transform: translateY(42px);
	animation: recruitTitleReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.04s forwards;
}

.recruit-hero__title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 40px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.06em;
	color: var(--recruit-ink);
}

.recruit-hero__subtitle {
	margin: 18px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--recruit-ink);
}

.recruit-page__section {
	padding: 24px 0 108px;
}

.recruit-entry-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.recruit-entry-card {
	position: relative;
	display: block;
	min-height: 410px;
	padding: 0;
	border: 1px solid rgba(18, 27, 55, 0.12);
	border-radius: 0;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	transition:
		transform var(--transition),
		box-shadow var(--transition),
		border-color var(--transition);
	opacity: 0;
	transform: translateY(28px);
	animation: recruitCardReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.recruit-entry-card:nth-child(1) {
	animation-delay: 0.72s;
}

.recruit-entry-card:nth-child(2) {
	animation-delay: 0.96s;
}

.recruit-entry-card:hover,
.recruit-entry-card:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(12, 79, 159, 0.24);
	box-shadow: 0 20px 48px rgba(16, 42, 93, 0.08);
	outline: none;
}

.recruit-entry-card__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	padding: 56px 60px 52px;
}

.recruit-entry-card--graduates {
	background:
		radial-gradient(circle at 14% 78%, rgba(32, 129, 221, 0.22), transparent 24%),
		radial-gradient(circle at 62% 24%, rgba(210, 176, 112, 0.16), transparent 20%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(240, 247, 255, 0.96));
}

.recruit-entry-card--career {
	border-color: rgba(172, 136, 58, 0.42);
	background:
		radial-gradient(circle at 14% 78%, rgba(214, 184, 120, 0.22), transparent 24%),
		radial-gradient(circle at 62% 24%, rgba(196, 163, 90, 0.16), transparent 20%),
		linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(247, 239, 220, 0.96));
}

.recruit-entry-card--career .recruit-entry-card__button {
	border-color: rgba(172, 136, 58, 0.62);
	background: rgba(255, 250, 240, 0.88);
	color: #8a6420;
}

.recruit-entry-card--career .recruit-entry-card__button::before {
	background: linear-gradient(135deg, #c4a35a, #a87b2a);
}

.recruit-entry-card__title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 25px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0.03em;
	color: var(--recruit-blue);
}

.recruit-entry-card__eyebrow {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: var(--recruit-blue);
}

.recruit-entry-card__rule {
	width: 44px;
	height: 2px;
	margin-top: 20px;
	background: rgba(12, 79, 159, 0.9);
}

.recruit-entry-card__copy {
	margin: 34px 0 0;
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.02em;
	color: rgba(10, 22, 40, 0.9);
	margin-bottom: auto;
}

.recruit-entry-card__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 168px;
	margin-top: 32px;
	padding: 14px 30px;
	border: 1px solid rgba(12, 79, 159, 0.56);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	font-family: var(--font-en);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--recruit-blue);
	overflow: hidden;
	transition:
		background var(--transition),
		color var(--transition),
		border-color var(--transition);
}

.recruit-entry-card__button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--recruit-blue);
	clip-path: ellipse(50% 0 at 50% 100%);
	transition: clip-path 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.recruit-entry-card__button > * {
	position: relative;
	z-index: 1;
	color: inherit;
}

.recruit-entry-card__button span[aria-hidden="true"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15em;
	flex: 0 0 1.15em;
	line-height: 1;
}

.recruit-entry-card:hover .recruit-entry-card__button,
.recruit-entry-card:focus-visible .recruit-entry-card__button {
	border-color: var(--recruit-blue);
	color: #fff;
}

.recruit-entry-card:hover .recruit-entry-card__button::before,
.recruit-entry-card:focus-visible .recruit-entry-card__button::before {
	clip-path: ellipse(120% 120% at 50% 100%);
}

.recruit-entry-card:hover .recruit-entry-card__button span[aria-hidden="true"],
.recruit-entry-card:focus-visible .recruit-entry-card__button span[aria-hidden="true"] {
	animation: news-arrow-pulse 0.55s ease;
}

.recruit-entry-card--career:hover .recruit-entry-card__button,
.recruit-entry-card--career:focus-visible .recruit-entry-card__button {
	border-color: #a87b2a;
	color: #fffdf7;
}

@keyframes recruitTitleReveal {
	from {
		clip-path: inset(0 0 100% 0);
		transform: translateY(42px);
	}
	to {
		clip-path: inset(0 0 0 0);
		transform: translateY(0);
	}
}

@keyframes recruitBreadcrumbReveal {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes recruitCardReveal {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.recruit-entry-card__inner {
		padding: 48px 38px 42px;
	}
}

@media (max-width: 767px) {
	.recruit-page {
		padding-top: 102px;
	}

	.recruit-breadcrumb {
		padding: 16px 0 14px;
		font-size: 0.72rem;
	}

	.recruit-breadcrumb span {
		margin: 0 10px;
	}

	.recruit-hero {
		padding: 34px 0 30px;
	}

	.recruit-page__section {
		padding: 12px 0 84px;
	}

	.recruit-entry-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.recruit-entry-card {
		min-height: auto;
	}

	.recruit-entry-card__inner {
		padding: 34px 26px 30px;
	}

	.recruit-entry-card__copy {
		margin-top: 26px;
		font-size: 0.95rem;
		line-height: 1.9;
	}

	.recruit-entry-card__button {
		width: 100%;
		margin-top: 28px;
	}
}
