.c-recruitment-badge {
	display: inline-block;
	padding: 4px 16px;
	border-radius: 999px;
	background: var(--color-text);
	color: #fff;
	font-size: 14px;
}

.c-line-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(100%, 320px);
	margin: 32px auto 0;
	padding: 15px 20px;
	border-radius: 36px;
	background: var(--color-primary);
	box-shadow: 0 5px 14px rgb(20 152 51 / 20%);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	transition: filter 0.25s, transform 0.25s;
}

.c-line-button:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
}

.c-line-button__icon {
	padding: 4px 3px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-primary);
	font-size: 8px;
}

.c-section-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-bottom: 32px;
}

.c-section-heading__eyebrow {
	color: var(--color-muted);
	font-family: Figtree, sans-serif;
	font-weight: 900;
	letter-spacing: 1.12px;
}

.c-section-heading--dark .c-section-heading__eyebrow {
	color: var(--color-text);
}

.c-section-heading__title {
	font-size: 20px;
}

.c-lead-copy {
	font-size: 20px;
	font-weight: 500;
}

.c-lead-copy strong {
	color: var(--color-primary);
	font-size: 32px;
}

.c-check-list {
	width: 295px;
	margin: 20px auto 34px;
	padding: 0;
	list-style: none;
	text-align: left;
	font-size: 15px;
}

.c-check-list li {
	padding: 10px 0;
}

.c-check-list li::before {
	content: "✓";
	margin-right: 16px;
	color: #f4ca00;
	font-size: 20px;
	font-weight: 700;
}

.c-tag-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	width: min(100%, var(--mobile-content));
	margin: 0 auto 48px;
	padding: 0;
	list-style: none;
}

.c-tag-list li {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #f1d835;
}

.c-support-card {
	overflow: hidden;
	padding-bottom: 10px;
	border-radius: 30px;
	background: var(--color-surface);
}

.c-support-card__header {
	height: 122px;
	padding: 17px 24px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: left;
}

.c-support-card--pink .c-support-card__header { background: #fc6a97; }
.c-support-card--green .c-support-card__header { background: #37bb8e; }
.c-support-card--blue .c-support-card__header { background: #2963e3; }
.c-support-card--orange .c-support-card__header { background: #fcac15; }

.c-support-card__header i {
	font-family: Figtree, sans-serif;
	font-size: 36px;
	font-weight: 300;
}

.c-support-card__image {
	width: calc(100% - 48px);
	margin: -60px auto 17px;
	border-radius: 16px;
	box-shadow: 3px 3px 6px rgb(0 0 0 / 10%);
}

.c-support-card__title {
	font-size: 20px;
}

.c-definition-list {
	width: min(100%, var(--mobile-content));
	margin: 0 auto;
	padding: 22px 28px;
	border: 1px solid var(--color-yellow);
	border-radius: 30px;
	text-align: left;
}

.c-definition-list__item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 24px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-yellow);
}

.c-definition-list__item:last-child {
	border-bottom: 0;
}

.c-definition-list__icon {
	width: 48px;
	height: 48px;
}

.c-definition-list__icon img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.c-definition-list dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
}

.c-definition-list em {
	font-size: 20px;
	font-style: normal;
}

.c-definition-list--manager dd {
	line-height: 1.4;
}

.c-definition-list--manager dd > strong {
	display: block;
	margin-bottom: 6px;
}

.c-definition-list--manager ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-definition-list--manager li::before {
	content: "・";
}

.c-definition-list--manager li:first-child {
	white-space: nowrap;
}

.c-step-list {
	position: relative;
	display: flex;
	width: 100%;
	aspect-ratio: 804 / 314;
	margin: 0 auto;
	padding: 0;
	background: url("../../images/flow/flow-diagram.png") center / 100% 100% no-repeat;
	list-style: none;
}

.c-step-list__item {
	position: relative;
	flex: 1;
	height: 100%;
}

.c-step-list__number {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 14px;
	line-height: 1.3;
}

.c-step-list__number em {
	font-size: 20px;
	font-style: normal;
}

.c-step-list__label {
	position: absolute;
	top: 64%;
	left: 0;
	width: 100%;
	padding-inline: 2px;
	font-size: 13px;
	line-height: 1.3;
}

.c-step-list__item:nth-child(1) .c-step-list__label { transform: translateX(7%); }
.c-step-list__item:nth-child(2) .c-step-list__label { transform: translateX(5%); }
.c-step-list__item:nth-child(3) .c-step-list__label { transform: translateX(0.5%); }
.c-step-list__item:nth-child(4) .c-step-list__label { transform: translateX(-5%); }
.c-step-list__item:nth-child(5) .c-step-list__label { transform: translateX(-8%); }

.c-accordion {
	text-align: left;
}

.c-accordion__item {
	margin: 8px 0;
	padding: 12px;
	border-radius: 12px;
	background: #fff;
	font-size: 14px;
}

.c-accordion__item summary {
	cursor: pointer;
	font-weight: 500;
}

.c-accordion__item p {
	padding-top: 10px;
	line-height: 1.5;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.65s, transform 0.65s;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.c-site-footer {
	width: 100%;
	padding: 34px 24px 24px;
	background: var(--color-text);
	color: #fff;
}

.c-site-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(100%, 760px);
	margin-inline: auto;
}

.c-site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.c-site-footer__brand strong {
	font-family: Figtree, sans-serif;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 1.8px;
}

.c-site-footer__brand span {
	color: rgb(255 255 255 / 65%);
	font-size: 11px;
}

.c-site-footer__links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.c-site-footer__link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 11px 16px;
	border: 1px solid rgb(255 255 255 / 30%);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}

.c-site-footer__link:hover,
.c-site-footer__link:focus-visible {
	border-color: var(--color-yellow);
	background: rgb(243 209 46 / 12%);
	transform: translateY(-2px);
}

.c-site-footer__arrow {
	color: var(--color-yellow);
	font-size: 16px;
	line-height: 1;
}

.c-site-footer__copyright {
	grid-column: 1 / -1;
	padding-top: 16px;
	border-top: 1px solid rgb(255 255 255 / 12%);
	color: rgb(255 255 255 / 45%);
	font-family: Figtree, sans-serif;
	font-size: 10px;
	letter-spacing: 0.8px;
}

@media (max-width: 600px) {
	.c-site-footer {
		padding: 28px 20px 20px;
	}

	.c-site-footer__inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.c-site-footer__links {
		display: grid;
		grid-template-columns: 1fr;
	}

	.c-site-footer__link {
		justify-content: space-between;
		width: 100%;
	}

	.c-site-footer__copyright {
		grid-column: auto;
	}
}

@media (max-width: 374px) {
	.c-line-button {
		font-size: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.c-line-button {
		transition: none;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
