/**
 * TOP page (PC first)
 */

:root {
	--home-aside: 220px;
	--home-main: 1220px;
	--home-rpo: #4962f0;
	--home-rpo-soft: #e8ebf9;
	--home-red: #af322c;
	--home-pc-scale: 1;
}

@property --home-pc-scale {
	syntax: "<number>";
	inherits: true;
	initial-value: 1;
}

/* Layout ----------------------------------------------------------------- */

.p-home {
	display: grid;
	grid-template-columns: var(--home-aside) minmax(0, 1fr);
	align-items: start;
	min-height: 100vh;
	background: #fff;
}

@media (min-width: 1101px) {
	.p-home {
		/* px/px → number. Cap at 1 from 1440px up. Avoid min() (Firefox). */
		--home-pc-scale: calc((100vw - 220px) / 1220px);
	}

	.p-home-main {
		container-type: inline-size;
	}

	.p-home-hero {
		/* Prefer the actual main-column width (no 100vw / scrollbar mismatch). */
		--home-pc-scale: calc(100cqi / 1220px);
	}
}

@media (min-width: 1440px) {
	.p-home,
	.p-home-hero {
		--home-pc-scale: 1;
	}
}

@container (min-width: 1220px) {
	.p-home-hero {
		--home-pc-scale: 1;
	}
}

.p-home-aside {
	position: sticky;
	top: 0;
	z-index: 20;
	height: 100vh;
	border-right: 1px solid #eee;
	background: #fff;
}

.p-home-aside__inner {
	display: flex;
	flex-direction: column;
	gap: 28px;
	height: 100%;
	padding: 28px 24px 32px;
	overflow-y: auto;
}

.p-home-aside .c-logo img {
	height: 76px;
}

.p-home-aside__nav {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-home-aside__list {
	margin: 0;
	padding: 0 0 20px;
	list-style: none;
	border-bottom: 1px dotted var(--home-red);
}

.p-home-aside__list:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.p-home-aside__item {
	margin: 0;
}

.p-home-aside__item a {
	display: block;
	padding: 8px 0;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(13 * 100vw / 410), 13px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-decoration: none;
}

.p-home-aside__item--head a {
	color: var(--home-red);
	font-size: clamp(10px, calc(15 * 100vw / 410), 15px);
	font-weight: 700;
}

.p-home-aside__item a:hover,
.p-home-aside__item a.is-active {
	opacity: 0.7;
}

.p-home-aside__item:not(.p-home-aside__item--head) a.is-active {
	color: var(--home-red);
	font-weight: 700;
	opacity: 1;
}

.p-home-aside__sub {
	display: flex;
	flex-direction: column;
	margin: 0 0 4px;
	padding: 0;
	list-style: none;
}

.p-home-aside__sub li {
	display: flex;
	align-items: baseline;
	gap: 4px;
	padding-left: 2px;
}

.p-home-aside__sub li::before {
	content: "・";
	flex: 0 0 auto;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(13 * 100vw / 410), 13px);
	font-weight: 400;
	line-height: 1.5;
	color: #333;
}

.p-home-aside__sub a {
	padding: 2px 0;
	font-weight: 400;
}

.p-home-aside__cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: auto;
}

.p-home-aside__card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 16px 16px 20px;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-home-aside__card:hover,
.p-home-aside__card:focus-visible {
	opacity: 0.92;
	transform: translateY(-2px);
	text-decoration: none;
}

/* Figma 1466:49745 — #ffede9 / #ff351a */
.p-home-aside__card--shukatsu {
	border: 1px solid #ff351a;
	background: #ffede9;
}

.p-home-aside__card--shukatsu .p-home-aside__card-label {
	color: #333;
}

/* Figma 1466:49759 — #f4f8ff / #7cafff */
.p-home-aside__card--tenshoku {
	border: 1px solid #7cafff;
	background: #f4f8ff;
}

.p-home-aside__card--tenshoku .p-home-aside__card-label {
	color: #7cafff;
}

.p-home-aside__card-label {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.8;
}

.p-home-aside__card img {
	display: block;
	width: 112px;
	height: 18px;
	object-fit: contain;
}

.p-home-main {
	min-width: 0;
	max-width: none;
	margin: 0;
	width: 100%;
}

/* Header ----------------------------------------------------------------- */

.p-home-header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	min-height: 88px;
	padding: 20px 40px;
	border-bottom: 1px solid #d9d9d9;
	background: #fff;
}

.p-home-header__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-home-header__menu a {
	display: inline-block;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	white-space: nowrap;
	transition: text-decoration-color 0.25s ease;
}

.p-home-header__menu a:hover {
	color: #333;
	text-decoration-color: currentColor;
}

.p-home-header__actions {
	display: flex;
	gap: 10px;
}

.p-home-header__actions .c-btn--header {
	--c-btn-min-w: 0;
	min-width: 0;
}

/* Button helpers --------------------------------------------------------- */

.p-home .c-btn--primary-ghost {
	--c-btn-color: #fff;
	--c-btn-bg: transparent;
	border: 1px solid #fff;
	background: transparent;
}

.p-home .c-btn--on-primary {
	--c-btn-color: var(--home-red);
	--c-btn-bg: #fff;
	background: #fff;
}

.p-home .c-btn--on-dark {
	--c-btn-color: #333;
	--c-btn-bg: #fff;
	background: #fff;
}

.p-home .c-btn--on-dark .c-btn__icon {
	color: var(--home-rpo);
}

.p-home-svc--hr .c-btn--on-dark .c-btn__icon {
	color: var(--home-red);
}

.p-home .c-btn--outline {
	--c-btn-color: #333;
	--c-btn-bg: #fff;
	border: 1px solid #999;
	background: #fff;
}

/* Hero ------------------------------------------------------------------- */

.p-home-hero {
	background: linear-gradient(135deg, #af322c 0%, #d2534c 59%, #af322c 100%);
	overflow: hidden;
}

.p-home-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: end;
	min-height: 561px;
	padding: 64px 40px 0;
}

.p-home-hero__copy {
	padding-bottom: 72px;
	color: #fff;
}

/* 既定は functions.php の boot CSS で非表示。MOBO 適用後に html.mobo-ready で出す */

.p-home-hero__title {
	margin: 0 0 20px;
	font-family: var(--tokumori-font-display);
	font-size: clamp(36px, 3.6vw, 52px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.35;
}

.p-home-hero__line {
	display: block;
}

.p-home-hero__em {
	font-size: 1.55em;
	font-weight: 800;
}

.p-home-hero__em--num {
	font-family: var(--tokumori-font-en);
	font-size: 1.7em;
	font-weight: 600;
	letter-spacing: 0;
}

.p-home-hero__lead {
	margin: 0 0 36px;
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.8;
}

.p-home-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

/* TOP MV CTAs — Figma 1648:43916 / 1832:43256
 * Primary: #932B26→#AF322C horizontal + 1px border
 * Secondary: white fill / solid #AF322C 2px / download icon (not gradient outline)
 */
.p-home-hero__ctas .c-btn {
	--c-btn-min-w: 290px;
	--c-btn-weight: 700;
	--c-btn-font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	--c-btn-lh: 1.8;
	width: 290px;
	height: 72px;
	padding: 20px;
	border-radius: 37px;
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
}

.p-home-hero__ctas .c-btn--primary {
	--c-btn-bg: linear-gradient(90deg, #932b26 0%, #af322c 100%);
	border: 1px solid #af322c;
	background: linear-gradient(90deg, #932b26 0%, #af322c 100%);
	background-clip: padding-box;
}

.p-home-hero__ctas .c-btn--primary .c-btn__icon.c-icon-chevron {
	width: 10px;
	height: 18px;
}

.p-home-hero__ctas .c-btn--secondary {
	--c-btn-color: #af322c;
	--c-btn-bg: #fff;
	border: 2px solid #af322c;
	background: #fff;
	overflow: hidden;
}

.p-home-hero__ctas .c-btn--secondary::before {
	content: none;
	display: none;
}

.p-home-hero__ctas .c-btn--secondary .c-btn__label {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	color: #af322c;
}

.p-home-hero__ctas .c-btn--secondary .c-btn__icon {
	width: 24px;
	height: 24px;
	color: #af322c;
	background-color: currentColor;
	background-image: none;
}

.p-home-hero__media {
	margin: 0;
	align-self: end;
	line-height: 0;
}

.p-home-hero__media picture,
.p-home-hero__media img {
	display: block;
	width: 100%;
	max-width: 640px;
	height: auto;
	margin-left: auto;
}

/* Logos — Figma 1466:49857 (frame) / 49859 (upper) / 49861–49862 (lower)
 * 各帯は1枚目アセットのみ。同一画像を2枚並べて無限ループ。
 */

.p-home-logos {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	box-sizing: border-box;
	/* 32 + 76.79 + 74.86 + 32 ≈ 215.65 when both rows present */
	height: auto;
	min-height: 0;
	padding: 32px 0;
	overflow: hidden;
	background: #fff;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
}

.p-home-logos__track {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: max-content;
	gap: 40px;
	will-change: transform;
}

.p-home-logos__set {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-shrink: 0;
	gap: 40px;
}

/* Upper — R→L (0 → -shift) */
.p-home-logos__track--upper {
	animation: p-home-marquee var(--logo-marquee-duration, 40s) linear infinite;
}

.p-home-logos__track img {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: 72px;
	max-height: 72px;
	max-width: none;
	object-fit: contain;
}

/* Lower — L→R (-shift → 0) */
.p-home-logos__track--lower {
	animation: p-home-marquee-ltr var(--logo-marquee-duration, 40s) linear infinite;
}

@keyframes p-home-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-1 * var(--logo-marquee-shift, 50%)));
	}
}

@keyframes p-home-marquee-ltr {
	from {
		transform: translateX(calc(-1 * var(--logo-marquee-shift, 50%)));
	}

	to {
		transform: translateX(0);
	}
}

/* Section heads ---------------------------------------------------------- */

.p-home-section-head {
	max-width: 1020px;
	margin: 0 auto 56px;
	text-align: center;
}

.p-home-section-head--left {
	text-align: left;
	margin-left: 0;
}

.p-home-section-head__title {
	margin: 0 0 20px;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(40 * 100vw / 410), 40px);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.4;
}

.p-home-section-head__accent {
	color: var(--home-red);
}

.p-home-section-head--dark .p-home-section-head__title {
	color: #f5f5f5;
}

.p-home-section-head__lead {
	margin: 0;
	color: #555;
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 2;
}

.p-home-section-head--dark .p-home-section-head__lead {
	color: #cfcfcf;
}

/* Reasons ---------------------------------------------------------------- */

.p-home-reasons {
	padding: 100px 40px 110px;
	background: #fff;
}

.p-home-reasons__inner {
	max-width: 1020px;
	margin: 0 auto;
}

.p-home-reasons .p-home-section-head__title {
	font-size: clamp(10px, calc(36 * 100vw / 410), 36px);
}

.p-home-reasons .p-home-section-head__lead {
	color: #333;
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	line-height: 1.8;
}

.p-home-reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: start;
}

.p-home-reason {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	min-height: 340px;
	padding: 48px 28px 36px;
	border-radius: 16px;
	background: #fffafa;
	text-align: center;
}

.p-home-reason--2 {
	margin-top: 36px;
}

.p-home-reason--3 {
	margin-top: 72px;
}

.p-home-reason__label {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 4px 18px;
	border-radius: 999px;
	background: #fff;
	color: var(--home-red);
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 600;
	letter-spacing: 0.04em;
	box-shadow: 0 0 0 1px #eee;
}

.p-home-reason__icon {
	width: 120px;
	height: 100px;
	border-radius: 12px;
	background: #f3f3f3;
}

.p-home-reason__line {
	margin: 0;
	color: #333;
	font-size: clamp(10px, calc(15 * 100vw / 410), 15px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.7;
}

.p-home-reason__em {
	margin: 0;
	color: var(--home-red);
	font-size: clamp(10px, calc(22 * 100vw / 410), 22px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

/* Service intro ---------------------------------------------------------- */

.p-home-service-intro {
	padding: 100px 40px;
	background: #fafafa;
}

.p-home-service-intro__inner {
	max-width: 1020px;
	margin: 0 auto;
}

.p-home-service-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	max-width: 920px;
	margin: 0 auto;
}

.p-home-service-tab--rpo {
	border-right: 1px dotted #bbb;
	padding-right: 40px;
	margin-right: 40px;
}

.p-home-service-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	padding: 16px 12px;
	color: inherit;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-home-service-tab:hover,
.p-home-service-tab:focus-visible {
	opacity: 0.92;
	transform: translateY(-2px);
	color: inherit;
	text-decoration: none;
}

.p-home-service-tab__eyebrow {
	margin: 0;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.p-home-service-tab--rpo .p-home-service-tab__eyebrow,
.p-home-service-tab--rpo .p-home-service-tab__em {
	color: var(--home-rpo);
}

.p-home-service-tab--hr .p-home-service-tab__eyebrow,
.p-home-service-tab--hr .p-home-service-tab__em {
	color: var(--home-red);
}

.p-home-service-tab__title {
	margin: 0;
	color: #333;
	font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
}

.p-home-service-tab__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 270px;
	padding: 16px 24px;
	border: 1px solid #333;
	border-radius: 999px;
	color: #333;
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 700;
	background: #fff;
}

.p-home-service-tab__chev {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") center / 14px no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.p-home-service-tab--rpo .p-home-service-tab__chev {
	background: var(--home-rpo);
	mask: none;
	-webkit-mask: none;
	position: relative;
}

.p-home-service-tab--rpo .p-home-service-tab__chev::after,
.p-home-service-tab--hr .p-home-service-tab__chev::after {
	content: "";
	position: absolute;
	inset: 0;
	background: center / 12px no-repeat
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
}

.p-home-service-tab--rpo .p-home-service-tab__chev {
	background-color: var(--home-rpo);
}

.p-home-service-tab--hr .p-home-service-tab__chev {
	background-color: var(--home-red);
	mask: none;
	-webkit-mask: none;
	position: relative;
}

/* Service detail blocks -------------------------------------------------- */

.p-home-svc {
	padding: 100px 40px;
	color: #fff;
	background: #111;
}

.p-home-svc__inner {
	max-width: 1020px;
	margin: 0 auto;
}

.p-home-svc__eyebrow {
	margin: 0 0 20px;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.p-home-svc--rpo .p-home-svc__eyebrow {
	color: #4a63f1;
}

.p-home-svc--hr .p-home-svc__eyebrow {
	color: #ff8a84;
}

.p-home-svc__eyebrow span {
	margin-right: 12px;
}

.p-home-svc__title {
	margin: 0 0 24px;
	font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.p-home-svc__lead {
	margin: 0 0 32px;
	max-width: 920px;
	color: #cfcfcf;
	font-size: clamp(10px, calc(15 * 100vw / 410), 15px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2;
}

.p-home-svc__head {
	margin-bottom: 64px;
}

.p-home-svc__compare {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 28px;
	align-items: start;
	margin-bottom: 72px;
}

.p-home-svc__sub {
	margin: 0 0 20px;
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.p-home-svc__challenge-list,
.p-home-svc__solution-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-home-svc__challenge-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-home-svc__challenge-list li {
	padding: 0;
	color: #333;
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.7;
}

.p-home-svc__challenge-box {
	box-sizing: border-box;
	display: grid;
	place-items: center;
	align-self: stretch;
	justify-self: stretch;
	width: 100%;
	height: 100%;
	min-height: inherit;
	padding: 16px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 23px rgb(0 0 0 / 8%);
	transform: skewX(-4deg);
	transform-origin: center center;
}

.p-home-svc__challenge-text {
	display: block;
	text-align: center;
	transform: skewX(4deg);
	transform-origin: center center;
}

.p-home-svc__solutions {
	padding: 28px 24px;
	border-radius: 16px;
	background: var(--home-rpo-soft);
	color: #333;
}

.p-home-svc--hr .p-home-svc__solutions {
	background: #f8e9e8;
}

.p-home-svc__solutions .p-home-svc__sub {
	color: #333;
}

.p-home-svc__flow-icon {
	display: block;
	width: 112px;
	height: 112px;
	margin: 0 auto 8px;
	object-fit: contain;
}

.p-home-svc__solution-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-home-svc__solution-list li {
	padding: 22px 20px;
	border-radius: 12px;
	background: #fff;
}

.p-home-svc__sol-title {
	margin: 0 0 12px;
	color: var(--home-rpo);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.55;
}

.p-home-svc--hr .p-home-svc__sol-title {
	color: var(--home-red);
}

.p-home-svc__sol-body {
	margin: 0;
	color: #555;
	font-size: clamp(10px, calc(13 * 100vw / 410), 13px);
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.8;
}

.p-home-svc__benefits-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-bottom: 36px;
}

.p-home-svc__benefits-illust {
	width: 140px;
	height: auto;
}

.p-home-svc__benefits-title {
	margin: 0;
	font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.p-home-svc__benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.p-home-svc__benefit {
	padding: 28px 22px;
	border-radius: 12px;
	background: #fff;
	color: #333;
}

.p-home-svc__benefit-title {
	margin: 0 0 14px;
	color: var(--home-rpo);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
}

.p-home-svc__benefit-body {
	margin: 0;
	font-size: clamp(10px, calc(13 * 100vw / 410), 13px);
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.8;
}

/* CTA pairs -------------------------------------------------------------- */

.p-home-cta-pair {
	padding: 56px 40px;
	background: #fafafa;
}

.p-home-cta-pair__inner,
.p-home-cta-pair--contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 1020px;
	margin: 0 auto;
	justify-items: center;
}

.p-home-cta-pair--contact {
	margin-top: 64px;
	padding: 0;
}

.p-home-cta-pair .c-btn-wrap {
	width: 100%;
}

.p-home-cta-pair--rpo .c-btn--big.c-btn--primary-outline .c-btn__title,
.p-home-cta-pair--rpo .c-btn--big.c-btn--primary-outline .c-btn__desc {
	background: none;
	color: #333;
}

.p-home-cta-pair--rpo .c-btn--big.c-btn--primary-outline .c-btn__icon {
	color: #333;
	background: none;
}

.p-home-cta-pair--rpo .c-btn--big.c-btn--primary-outline::before {
	display: none;
}

.p-home-cta-pair--rpo .c-btn--big.c-btn--secondary-fill {
	background: #4a63f1;
}

/* Results ---------------------------------------------------------------- */

.p-home-results {
	padding: 100px 40px 80px;
	background: #fff;
}

.p-home-results__inner {
	max-width: 1030px;
	margin: 0 auto;
}

.p-home-stats {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 64px;
}

.p-home-stats__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 20px;
	font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.p-home-stats__brand img {
	display: block;
	height: 36px;
	width: auto;
}

.p-home-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.p-home-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 210px;
	padding: 30px 20px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.p-home-stat__label {
	margin: 0;
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.p-home-stat__value {
	margin: 0;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(64 * 100vw / 410), 64px);
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 0.9;
}

.p-home-stat--rpo .p-home-stat__value {
	color: var(--home-rpo);
}

.p-home-stat--hr .p-home-stat__value {
	color: var(--home-red);
}

.p-home-stat__unit {
	margin-left: 4px;
	font-family: var(--tokumori-font-display);
	font-size: 0.45em;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.p-home-featured-case {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	align-items: center;
	margin-bottom: 40px;
	padding: 28px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease;
}

.p-home-featured-case:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.p-home-featured-case__media {
	margin: 0;
	aspect-ratio: 454 / 260;
	overflow: hidden;
	border-radius: 8px;
	background: #f2f2f2;
}

.p-home-featured-case__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-home-featured-case__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: #999;
	font-weight: 700;
}

.p-home-featured-case__meta {
	margin: 0 0 12px;
	color: #666;
	font-size: clamp(10px, calc(13 * 100vw / 410), 13px);
	font-weight: 500;
}

.p-home-featured-case__title {
	margin: 0 0 16px;
	font-size: clamp(10px, calc(22 * 100vw / 410), 22px);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.6;
}

.p-home-featured-case__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.p-home-featured-case__tags li {
	padding: 4px 12px;
	border-radius: 999px;
	background: #f8e9e8;
	color: var(--home-red);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 700;
}

.p-home-featured-case__more {
	display: inline-flex;
	align-items: center;
	min-width: 160px;
	padding: 12px 20px;
	border: 1px solid #999;
	border-radius: 999px;
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
}

.p-home-cases {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.p-home-results__actions {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

/* Columns ---------------------------------------------------------------- */

.p-home-columns {
	padding: 100px 40px;
	background: #fafafa;
}

.p-home-columns__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.p-home-columns__slider {
	overflow: hidden;
	margin-bottom: 40px;
}

.p-home-columns__track {
	display: flex;
	width: max-content;
}

.p-home-columns__set {
	display: flex;
	gap: 24px;
}

.p-home-columns__actions {
	display: flex;
	justify-content: center;
}

/* Philosophy ------------------------------------------------------------- */

.p-home-philosophy {
	position: relative;
	overflow: hidden;
	padding: 100px 40px 140px;
	background: var(--home-red);
	color: #fff;
	text-align: center;
}

.p-home-philosophy__inner {
	position: relative;
	z-index: 1;
	max-width: 920px;
	margin: 0 auto;
}

.p-home-philosophy__logo {
	display: block;
	width: min(420px, 70%);
	height: auto;
	margin: 0 auto 28px;
}

.p-home-philosophy__title {
	margin: 0 0 24px;
	font-size: clamp(32px, 3.2vw, 50px);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.55;
}

.p-home-philosophy__lead {
	display: none;
	margin: 0 0 36px;
	font-size: clamp(10px, calc(15 * 100vw / 410), 15px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2;
}

.p-home-philosophy__illust {
	position: absolute;
	bottom: 0;
	width: min(320px, 28vw);
	height: auto;
	pointer-events: none;
}

.p-home-philosophy__illust--l {
	left: 0;
}

.p-home-philosophy__illust--r {
	right: 0;
}

/* Culture ---------------------------------------------------------------- */

.p-home-culture {
	padding: 100px 0 80px;
	background:
		radial-gradient(circle at 12% 18%, rgba(254, 103, 96, 0.12), transparent 28%),
		radial-gradient(circle at 88% 8%, rgba(254, 103, 96, 0.1), transparent 24%),
		#fff;
}

.p-home-culture__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px;
}

.p-home-culture__gallery {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 0 48px;
	overflow: hidden;
}

.p-home-culture__row {
	overflow: hidden;
	width: 100%;
}

.p-home-culture__track {
	display: flex;
	width: max-content;
	will-change: transform;
}

.p-home-culture__set {
	display: flex;
	flex-shrink: 0;
	gap: 20px;
	padding-right: 20px;
}

.p-home-culture__card {
	box-sizing: border-box;
	display: block;
	flex: 0 0 auto;
	width: 215px;
	height: 130px;
	object-fit: cover;
	border-radius: 5px;
	background: #e4e4e4;
}

.p-home-culture__card--placeholder {
	background: #e4e4e4;
}

.p-home-culture__cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	max-width: 400px;
	margin: 0 auto;
	padding: 28px 32px;
	border: 1px solid var(--home-red);
	border-radius: 12px;
	color: #333;
	text-decoration: none;
	background: #fff;
}

.p-home-culture__cta-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 16px;
}

.p-home-culture__cta-title {
	font-size: clamp(10px, calc(22 * 100vw / 410), 22px);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.p-home-culture__cta-icon {
	color: var(--home-red);
}

.p-home-culture__cta-desc {
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.8;
}

/* News ------------------------------------------------------------------- */

.p-home-news {
	padding: 100px 40px 120px;
	background: #f7f6f6;
}

.p-home-news__inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	max-width: 1100px;
	margin: 0 auto;
	align-items: start;
	align-items: center;
}

.p-home-news__list {
	display: flex;
	flex-direction: column;
}

.p-home-news__empty {
	margin: 0;
	color: #666;
}

.p-home-news__deco {
	display: none;
}

/* Footer band stays full width ------------------------------------------- */

body.home .c-cta-band,
body.home .c-footer {
	width: 100%;
}

/* PC keeps the in-column header; SP uses the shared c-header. */
body.home .c-header,
body.page-template-page-home .c-header,
body.page-template-page-home-php .c-header {
	display: none;
}

/* SP deferred: keep readable stack --------------------------------------- */

@media (max-width: 1100px) {
	body.home .c-header,
	body.page-template-page-home .c-header,
	body.page-template-page-home-php .c-header {
		display: block;
	}

	.p-home-header,
	.p-home-mobile-nav {
		display: none !important;
	}

	.p-home {
		grid-template-columns: 1fr;
	}

	.p-home-aside {
		position: static;
		height: auto;
		border-right: 0;
		border-bottom: 1px solid #eee;
	}

	.p-home-aside__inner {
		gap: 20px;
		padding: 20px 24px;
	}

	.p-home-aside__cards {
		flex-direction: row;
		margin-top: 0;
	}

	.p-home-header {
		flex-wrap: wrap;
		justify-content: center;
		padding: 16px 20px;
	}

	.p-home-hero__inner {
		grid-template-columns: 1fr;
		padding: 48px 24px 0;
	}

	.p-home-hero__media {
		max-width: none;
		margin: 0 auto;
	}

	.p-home-reasons__grid,
	.p-home-svc__compare,
	.p-home-svc__benefit-grid,
	.p-home-stats__grid,
	.p-home-cases,
	.p-home-cta-pair__inner,
	.p-home-cta-pair--contact,
	.p-home-featured-case,
	.p-home-news__inner,
	.p-home-service-tabs {
		grid-template-columns: 1fr;
	}

	.p-home-service-tab--rpo {
		border-right: 0;
		padding-right: 12px;
		margin-right: 0;
	}

	.p-home-reason--2,
	.p-home-reason--3 {
		margin-top: 0;
	}

	.p-home-philosophy__illust {
		display: none;
	}
}

/* ==========================================================================
   Figma rebuild — PC 1136:39982 / SP 1136:45588
   ========================================================================== */

.p-home {
	overflow: clip;
	font-family: var(--tokumori-font-display);
}

.p-home-only-sp {
	display: none;
}

.p-home,
.p-home *,
.p-home *::before,
.p-home *::after {
	box-sizing: border-box;
}

.p-home-aside {
	width: 220px;
	height: 100vh;
	border: 0;
	z-index: 40;
	box-shadow: 4px 0 16px rgb(0 0 0 / 8%);
}

.p-home-aside__inner {
	gap: 0;
	min-height: 0;
	padding: 0 1px 0 0;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: thin;
}

/*
 * Logo area: default 152px. When nav+cards would exceed 100vh,
 * this is the only block that shrinks (down to 100px).
 * When content is shorter than 100vh, keep 152px — do not grow.
 */
.p-home-aside .c-logo {
	display: grid;
	flex: 0 1 152px;
	place-items: center;
	box-sizing: border-box;
	width: 100%;
	min-height: 100px;
	max-height: 152px;
	overflow: hidden;
}

.p-home-aside .c-logo img {
	width: 130px;
	height: auto;
	max-height: calc(100% - 16px);
	object-fit: contain;
}

.p-home-aside__nav {
	flex: 0 0 auto;
	gap: 0;
}

.p-home-aside__list {
	padding: 20px 24px;
	border-top: 1px dotted var(--home-red);
	border-bottom: 0;
}

.p-home-aside__list:last-of-type {
	padding-bottom: 20px;
	border-top: 1px dotted var(--home-red);
}

.p-home-aside__item a {
	padding: 4px 0;
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	line-height: 1.8;
}

.p-home-aside__item--head a {
	padding-bottom: 7px;
	color: var(--home-red);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
}

.p-home-aside__sub li::before {
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	line-height: 1.8;
}

.p-home-aside__sub a {
	padding: 2px 0;
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	line-height: 1.8;
}

/* Figma 1466:49743 — Nav cards 219×246, pad 24, gap 20 */
.p-home-aside__cards {
	flex: 0 0 auto;
	gap: 20px;
	margin-top: auto; /* push to bottom only when free space exists */
	padding: 24px;
	border-top: 1px dotted #af322c;
}

.p-home-aside__card {
	gap: 10px;
	padding: 16px 16px 20px;
	border-radius: 8px;
}

.p-home-main {
	max-width: none;
	width: 100%;
	margin: 0;
}

.p-home-header {
	position: relative;
	z-index: 1;
	gap: 24px;
	height: 72px;
	min-height: 72px;
	padding: 12px 40px;
}

.p-home-header__brand,
.p-home-header__menu-toggle,
.p-home-mobile-nav {
	display: none;
}

.p-home-header__menu {
	flex-wrap: nowrap;
	gap: 20px;
}

.p-home-header__menu a {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #333;
	text-decoration: underline solid transparent;
	text-underline-offset: 0.2em;
	white-space: nowrap;
}

.p-home-header__actions {
	gap: 10px;
}

.p-home-header__actions .c-btn--header {
	--c-btn-gap: 8px;
	--c-btn-pad-x: 24px;
	--c-btn-font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	height: 48px;
	min-height: 48px;
	padding: 0 24px;
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	overflow: visible;
}

.p-home-header__actions .c-btn__label {
	flex: 0 1 auto;
	text-align: center;
}

.p-home-hero {
	position: relative;
	min-height: 360px;
	height: 561px;
	height: calc(561px * var(--home-pc-scale, 1));
	background: linear-gradient(110deg, #f17b75 0%, #af322c 100%);
}

.p-home-hero__inner {
	position: relative;
	display: block;
	width: 1440px;
	max-width: 100%;
	min-height: calc(561px * var(--home-pc-scale, 1));
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

.p-home-hero__copy {
	position: relative;
	z-index: 2;
	padding: 0;
	color: #fff;
}

.p-home-hero__veil {
	display: none;
}

.p-home-hero__title {
	position: absolute;
	top: calc(63px * var(--home-pc-scale, 1));
	left: calc(64px * var(--home-pc-scale, 1));
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: max-content;
	margin: 0;
	font-family: var(--tokumori-font-mobo);
	font-size: calc(80px * var(--home-pc-scale, 1));
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
	white-space: nowrap;
}

/* Figma 1648:43920 — line 104px, suffix bottom-aligned */
.p-home-hero__line {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: max-content;
	height: calc(104px * var(--home-pc-scale, 1));
}

.p-home-hero__em {
	flex: 0 0 auto;
	font-size: calc(80px * var(--home-pc-scale, 1));
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
}

.p-home-hero__line--2 .p-home-hero__em,
.p-home-hero__em--palt {
	font-feature-settings: "palt" 1;
	font-variant-east-asian: proportional-width;
}

.p-home-hero__suffix {
	flex: 0 0 auto;
	font-size: calc(42px * var(--home-pc-scale, 1));
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
}

/* Line1: 追う採用|から flush; Line2: palt 後は」の空きが消えるので gap なし */
.p-home-hero__line--1 .p-home-hero__suffix {
	margin-left: 0;
}

.p-home-hero__line--2 {
	gap: 0;
}

/* Figma 1648:43929 — 32px / LH 180% / LS 1.2 (box h 58 ⇒ 32×1.8) */
.p-home-hero__lead {
	position: absolute;
	top: calc(275px * var(--home-pc-scale, 1));
	left: calc(64px * var(--home-pc-scale, 1));
	display: flex;
	align-items: baseline;
	width: max-content;
	margin: 0;
	font-family: var(--tokumori-font-mobo);
	font-size: calc(32px * var(--home-pc-scale, 1));
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: calc(1.2px * var(--home-pc-scale, 1));
	white-space: nowrap;
}

.p-home-hero__lead-sm {
	font-size: calc(24px * var(--home-pc-scale, 1));
	line-height: 2;
}

.p-home-hero__ctas {
	position: absolute;
	top: calc(420px * var(--home-pc-scale, 1));
	left: calc(61px * var(--home-pc-scale, 1));
	z-index: 3;
	flex-wrap: nowrap;
	gap: calc(20px * var(--home-pc-scale, 1));
}

@media (min-width: 1101px) {
	.p-home-hero__ctas .c-btn {
		--c-btn-min-w: calc(290px * var(--home-pc-scale, 1));
		--c-btn-font-size: calc(18px * var(--home-pc-scale, 1));
		--c-btn-radius: calc(37px * var(--home-pc-scale, 1));
		--c-btn-gap: calc(8px * var(--home-pc-scale, 1));
		width: calc(290px * var(--home-pc-scale, 1));
		height: calc(72px * var(--home-pc-scale, 1));
		padding: calc(20px * var(--home-pc-scale, 1));
		border-radius: calc(37px * var(--home-pc-scale, 1));
		gap: calc(8px * var(--home-pc-scale, 1));
		font-size: calc(18px * var(--home-pc-scale, 1));
		letter-spacing: calc(1.2px * var(--home-pc-scale, 1));
	}

	.p-home-hero__ctas .c-btn__label {
		flex: 1 1 auto;
		min-width: 0;
		font-size: inherit;
		font-weight: inherit;
		letter-spacing: inherit;
		line-height: inherit;
		white-space: nowrap;
	}

	.p-home-hero__ctas .c-btn--primary .c-btn__icon.c-icon-chevron {
		width: calc(10px * var(--home-pc-scale, 1));
		height: calc(18px * var(--home-pc-scale, 1));
	}

	.p-home-hero__ctas .c-btn--secondary .c-btn__icon {
		width: calc(24px * var(--home-pc-scale, 1));
		height: calc(24px * var(--home-pc-scale, 1));
	}
}

.p-home-hero__media {
	position: absolute;
	top: calc(10px * var(--home-pc-scale, 1));
	right: auto;
	left: calc(600px * var(--home-pc-scale, 1));
	z-index: 1;
	width: calc(721px * var(--home-pc-scale, 1));
	height: calc(667px * var(--home-pc-scale, 1));
	overflow: visible;
}

.p-home-hero__media picture,
.p-home-hero__media img {
	display: block;
	width: calc(721px * var(--home-pc-scale, 1));
	max-width: none;
	height: auto;
	margin: 0;
}

.p-home-logos {
	height: auto;
	min-height: 0;
	padding: 32px 0;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
}

.p-home-logos__track--upper {
	gap: 40px;
}

.p-home-logos__track--lower {
	gap: 40px;
}

.p-home-logos__track img {
	width: auto;
	height: 72px;
	max-height: 72px;
}

.p-home-section-head {
	margin-bottom: 48px;
}

.p-home-section-head__title {
	margin-bottom: 16px;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(36 * 100vw / 410), 36px);
	line-height: 1.6;
	letter-spacing: 0;
}

.p-home-section-head__lead {
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	line-height: 1.8;
	letter-spacing: 1.2px;
}

.p-home-reasons {
	height: 655px;
	padding: 64px 80px;
	background: #f7f7f7;
}

.p-home-reasons__inner {
	max-width: 1060px;
}

.p-home-reasons__grid {
	grid-template-columns: repeat(3, 320px);
	gap: 24px;
	justify-content: center;
}

@media (min-width: 1101px) {
	.p-home-reasons__slide {
		display: contents;
	}
}

.p-home-reason,
.p-home-reason--2,
.p-home-reason--3 {
	gap: 16px;
	min-height: 356px;
	margin-top: 0;
	padding: 32px 24px 24px;
	border-radius: 8px;
	background: #fff;
	transform: skewX(-4deg);
}

.p-home-reason > .p-home-reason__label,
.p-home-reason > .p-home-reason__icon {
	transform: skewX(4deg);
}

.p-home-reason__label {
	position: static;
	padding: 0;
	box-shadow: none;
	color: #333;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(32 * 100vw / 410), 32px);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.1;
}

.p-home-reason__icon {
	display: block;
	width: 150px;
	height: 120px;
	object-fit: contain;
	border-radius: 0;
	background: transparent;
}

.p-home-reason__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 272px;
	max-width: 100%;
}

.p-home-reason__em {
	margin: 0;
	min-height: 64px;
	color: var(--home-red);
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.6;
}

.p-home-reason__line {
	margin: 0;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	white-space: nowrap;
}

.p-home-reason__mark {
	display: inline;
	background-image: linear-gradient(#fffd8c, #fffd8c);
	background-repeat: no-repeat;
	background-size: 100% 8px;
	background-position: center 18px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.p-home-reason__extra {
	display: none;
}

.p-home-reasons__controls {
	display: none;
}

.p-home-service-intro {
	height: 708px;
	padding: 104px 80px;
	background: #fff;
}

.p-home-service-intro__inner {
	max-width: 1060px;
}

.p-home-service-tabs {
	grid-template-columns: repeat(2, 510px);
	gap: 40px;
	max-width: 1060px;
	justify-content: center;
}

.p-home-service-tab,
.p-home-service-tab--rpo {
	gap: 24px;
	min-height: 304px;
	margin: 0;
	padding: 40px 24px;
	border: 1px solid #333;
	border-radius: 8px;
	box-shadow: 0 12px 23px rgb(0 0 0 / 8%);
}

.p-home-service-tab__mark {
	display: block;
	width: 30px;
	height: 35px;
	margin: 0 auto;
}

.p-home-service-tab__eyebrow {
	display: none;
}

.p-home-service-tab__eyebrow::after {
	content: none;
	display: none;
}

.p-home-service-tab__title {
	flex: 1 1 auto;
	margin: 0;
	color: #333;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(32 * 100vw / 410), 32px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	text-align: center;
}

.p-home-service-tab__lg {
	font-size: clamp(10px, calc(32 * 100vw / 410), 32px);
	font-weight: 700;
	line-height: 1.6;
	color: #333;
}

.p-home-service-tab__sm {
	font-size: clamp(10px, calc(22 * 100vw / 410), 22px);
	font-weight: 700;
	line-height: 1.6;
	color: #333;
}

.p-home-service-tab--rpo .p-home-service-tab__em,
.p-home-service-tab--hr .p-home-service-tab__em {
	color: inherit;
}

.p-home-reasons .p-home-section-head,
.p-home-service-intro .p-home-section-head {
	margin-bottom: 32px;
}

.p-home-reasons .p-home-section-head__title,
.p-home-service-intro .p-home-section-head__title {
	margin-bottom: 24px;
}

.p-home-reasons .p-home-section-head__lead {
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	line-height: 1.8;
}

.p-home-service-intro .p-home-section-head {
	margin-bottom: 56px;
}

.p-home-service-tab__btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	min-width: 200px;
	height: 37px;
	min-height: 37px;
	padding: 4px 0;
	border: 0;
	border-radius: 50px;
	background: #f4f6ff;
	color: #4a63f1;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-service-tab--hr .p-home-service-tab__btn {
	background: #fff2f1;
	color: #af322c;
}

.p-home-service-tab__chev {
	display: none;
}

.p-home-svc {
	min-height: 0;
	padding: 96px 80px 72px;
	background: #fff;
	color: #333;
}

.p-home-svc--hr {
	padding-top: 64px;
}

.p-home-svc--hr .p-home-svc__inner {
	display: flex;
	flex-direction: column;
	gap: 56px;
	min-height: 0;
}

.p-home-svc--hr .p-home-stats__block,
.p-home-svc--hr .p-home-svc__reuse-achieve {
	margin-top: 0;
}

.p-home-svc__inner {
	max-width: 1060px;
}

.p-home-svc__reuse-features {
	box-sizing: border-box;
	max-width: 100%;
	margin: 0;
	padding: 96px 40px 56px;
	border-radius: 8px;
	background: #f7f8fb;
}

.p-home-svc__reuse-btob-features {
	margin-bottom: 56px;
}

.p-home-svc__reuse-btob-features .c-btob-features__title {
	text-align: center;
}

/* Figma 1577:48521 — 8 cards, 458×229–237, 2-col gap 16 */
.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-features__track {
	display: grid;
	grid-template-columns: repeat(2, 458px);
	justify-content: center;
	align-items: stretch;
	gap: 16px;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature--numbered {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: 458px;
	height: auto;
	min-height: 229px;
	padding: 24px 16px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
	text-align: left;
	overflow: hidden;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__num {
	display: block;
	margin: 0;
	font-family: var(--tokumori-font-en);
	font-size: clamp(10px, calc(32 * 100vw / 410), 32px);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.1;
	color: #333;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__icon {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	min-width: 0;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__title {
	margin: 0;
	min-height: 0;
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.6;
	color: #333;
	text-align: left;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__title span {
	display: inline;
	background-image: linear-gradient(#fffd8c, #fffd8c);
	background-repeat: no-repeat;
	background-size: 100% 8px;
	background-position: 0 88%;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__body {
	margin: 0;
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #333;
	text-align: left;
	overflow-wrap: break-word;
	word-break: normal;
}

.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__note {
	margin: -12px 0 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
	color: var(--color-gray, #838586);
}

.p-home-svc--rpo .c-svc-feature__body-mark {
	display: inline;
	background-image: linear-gradient(#fffd8c, #fffd8c);
	background-repeat: no-repeat;
	background-size: 100% 8px;
	background-position: 0 15px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.p-home-svc--rpo .c-svc-feature__note {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
	color: var(--color-gray, #838586);
}

.p-home-svc__reuse-achieve {
	width: 100%;
}

.p-home-svc__reuse-achieve .c-btob-stat__note {
	display: none;
}

.p-home-svc__reuse-links {
	width: 100%;
}

.p-home-svc__head {
	position: relative;
	margin-bottom: 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid #e5e5e5;
}

.p-home-svc__head-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 40px;
	margin-bottom: 80px;
}

.p-home-svc__head--hr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 0;
	border-bottom: 0;
}

.p-home-svc__head--hr .c-btob-card__label {
	flex-shrink: 0;
	background: var(--color-hr-soft, #fff2f1);
	color: var(--home-red, #af322c);
}

.p-home-svc__brand {
	display: block;
	width: 328px;
	height: 40px;
	object-fit: contain;
}

.p-home-svc__head--hr .p-home-svc__brand--hr {
	position: static;
	width: auto;
	max-width: 508px;
	height: 40px;
	object-fit: contain;
}

.p-home-svc__brand--hr {
	width: 508px;
}

.p-home-svc__eyebrow {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 40px;
	margin: 0;
	padding: 4px 0;
	border-radius: 50px;
	background: #f4f6ff;
	color: #4a63f1;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-svc--hr .p-home-svc__eyebrow {
	background: #fff0ef;
	color: var(--home-red);
}

.p-home-svc__intro {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-home-svc__title {
	margin: 0 0 16px;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(36 * 100vw / 410), 36px);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0;
	color: #333;
}

.p-home-svc--hr .p-home-svc__title {
	margin-bottom: 0;
}

.p-home-svc__title-hl {
	position: relative;
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	/* Avoid z-index:-1 underline (hidden behind white section bg) */
	background-image: linear-gradient(transparent 62%, #fffd8c 62%);
	box-shadow: none;
}

.p-home-svc__title-hl::after {
	content: none;
}

.p-home-svc__lead {
	max-width: 932px;
	margin: 0;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-svc--hr .p-home-svc__lead {
	max-width: none;
	margin-bottom: 0;
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-svc__compare {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 80px;
	margin-bottom: 56px;
}

.p-home-svc__compare--hr {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-bottom: 0;
}

.p-home-svc__sub {
	margin: 0 0 32px;
	text-align: center;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	color: #333;
}

.p-home-svc__sub-em {
	color: #4a63f1;
}

.p-home-svc__challenge-stage {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: visible;
}

.p-home-svc__challenge-list {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-home-svc--rpo .p-home-svc__challenge-list li {
	position: absolute;
	box-sizing: border-box;
	display: grid;
	place-items: center;
	height: 96px;
	padding: 0;
	overflow: visible;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	text-align: center;
	color: #333;
}

.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(1) {
	top: 1px;
	left: 39.56px;
	width: 352px;
}

.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(2) {
	top: 1px;
	left: 420.58px;
	width: 252px;
}

.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(3) {
	top: 1px;
	left: 701.61px;
	width: 192px;
}

.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(4) {
	top: 120.89px;
	left: 1.5px;
	width: 292px;
}

.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(5) {
	top: 120.89px;
	left: 322.6px;
	width: 292px;
}

.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(6) {
	top: 120.89px;
	left: 643.6px;
	width: 292px;
}

.p-home-svc__solutions-pill {
	box-sizing: border-box;
	position: absolute;
	top: 496.43px;
	left: 50%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 500px;
	min-height: 107px;
	margin: 0;
	padding: 16px 56px;
	border: 1px solid #4a63f1;
	border-radius: 100px;
	background: #fff;
	box-shadow: 0 12px 23px rgb(0 0 0 / 8%);
	color: #4a63f1;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
	transform: translateX(-50%);
}

.p-home-svc--hr .p-home-svc__challenge-list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, calc(292px * var(--home-pc-scale, 1)));
	justify-content: space-between;
	align-items: start;
	gap: 0;
	width: 100%;
	max-width: calc(932px * var(--home-pc-scale, 1));
	margin: 0 auto;
	min-height: calc(144px * var(--home-pc-scale, 1));
}

.p-home-svc__challenge-list li {
	display: grid;
	place-items: center;
	min-height: 92px;
	padding: 0;
	overflow: visible;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	text-align: center;
}

.p-home-svc--hr .p-home-svc__challenge-list li {
	box-sizing: border-box;
	width: calc(292px * var(--home-pc-scale, 1));
	min-height: calc(112px * var(--home-pc-scale, 1));
	margin-top: calc(57px * var(--home-pc-scale, 1));
	padding: 0;
	font-family: var(--tokumori-font-mobo);
	font-size: calc(20px * var(--home-pc-scale, 1));
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
}

.p-home-svc--hr .p-home-svc__challenge-box {
	padding: calc(24px * var(--home-pc-scale, 1)) calc(16px * var(--home-pc-scale, 1));
}

.p-home-svc--hr .p-home-svc__challenge-text {
	white-space: nowrap;
}

.p-home-svc--hr .p-home-svc__challenge-list li:nth-child(2) {
	min-height: calc(144px * var(--home-pc-scale, 1));
	margin-top: 0;
}

.p-home-svc__challenges {
	position: relative;
	width: 100%;
	min-height: 470px;
}

.p-home-svc--hr .p-home-svc__challenges {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	min-height: 408px;
}

.p-home-svc--hr .p-home-svc__sub {
	margin-bottom: 0;
}

.p-home-svc--hr .p-home-svc__sub-em {
	color: var(--home-red, #af322c);
}

.p-home-svc__bridge-illust {
	position: absolute;
	top: 189.91px;
	left: 297px;
	display: block;
	width: 358px;
	height: 252px;
	transform: none;
	pointer-events: none;
}

.p-home-svc--rpo .p-home-svc__flow-icon {
	position: absolute;
	top: 68.36px;
	left: 33.78px;
	z-index: 2;
	display: block;
	width: 112px;
	height: 112px;
	margin: 0;
	object-fit: contain;
	transform: rotate(9.53deg);
	pointer-events: none;
}

.p-home-svc--hr .p-home-svc__bridge-illust {
	position: absolute;
	bottom: 0;
	top: auto;
	left: 50%;
	z-index: 0;
	margin: 0;
	transform: translateX(-50%);
	pointer-events: none;
}

.p-home-svc__hr-solutions {
	position: relative;
	padding-top: 53px;
}

.p-home-svc__sol-pill {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 500px;
	max-width: calc(100% - 32px);
	min-height: 107px;
	margin: 0;
	padding: 16px 64px;
	border: 1px solid var(--home-red, #af322c);
	border-radius: 100px;
	background: #fff;
	color: var(--home-red, #af322c);
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	text-align: center;
	transform: translateX(-50%);
}

.p-home-svc__sol-l1 {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-svc__sol-l2 {
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
}

.p-home-svc__reuse-features--hr {
	box-sizing: border-box;
	width: 100%;
	max-width: 932px;
	margin: 0 auto;
	padding: 96px 40px 40px;
	border-radius: 8px;
	background: #faf5f6;
	margin-bottom: 0;
}

.p-home-svc__reuse-features--hr .c-svc-features--saiyo {
	gap: 0;
}

.p-home-svc__reuse-features--hr .c-svc-feature--saiyo {
	grid-template-columns: minmax(0, 1fr) 230px;
	gap: 32px;
	min-height: 167px;
}

.p-home-svc__reuse-features--hr .c-svc-feature--saiyo:not(:last-child) {
	padding-bottom: 56px;
	margin-bottom: 56px;
	border-bottom: 1px dashed #d9d9d9;
}

.p-home-svc__reuse-features--hr .c-svc-feature__art {
	width: 230px;
	height: 167px;
}

.p-home-svc__reuse-features--hr .c-svc-feature__check-img--pc,
.p-home-svc__reuse-features--hr .c-svc-feature__check-img--sp {
	display: none;
}

.p-home-svc__reuse-features--hr .c-svc-feature__check-img {
	display: block;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	margin-top: 8px;
}

.p-home-svc__reuse-features--hr .c-svc-feature__title-sp {
	display: none;
}

.p-home-svc__reuse-features--hr .c-svc-feature__title-pc {
	display: block;
}

.p-home-svc__solutions {
	padding: 48px 56px 32px;
	border-radius: 0;
	background: #f4f5fb;
}

.p-home-svc--hr .p-home-svc__solutions {
	background: #fbf4f3;
}

.p-home-svc__solution-list {
	gap: 0;
}

.p-home-svc__solution-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	min-height: 210px;
	padding: 24px 32px;
	border-radius: 0;
	background: transparent;
	border-bottom: 1px solid #d9d9d9;
}

.p-home-svc__solution-list li:last-child {
	border-bottom: 0;
}

.p-home-svc__solution-list li:nth-child(even) {
	flex-direction: row-reverse;
}

.p-home-svc__sol-copy {
	flex: 1;
}

.p-home-svc__sol-title {
	position: relative;
	margin-bottom: 10px;
	padding-left: 34px;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	line-height: 1.6;
}

.p-home-svc__sol-title::before {
	content: "✓";
	position: absolute;
	top: 0.15em;
	left: 0;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--home-rpo);
	color: #fff;
	font: 700 14px/1 sans-serif;
}

.p-home-svc--hr .p-home-svc__sol-title::before {
	background: var(--home-red);
}

.p-home-svc__sol-body {
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	line-height: 1.8;
}

.p-home-svc__sol-icon {
	flex: 0 0 200px;
	width: 200px;
	height: 150px;
	object-fit: contain;
}

.p-home-svc--hr .p-home-svc__sol-icon {
	flex-basis: 230px;
	width: 230px;
	height: 167px;
}

.p-home-svc__benefits {
	margin-top: 72px;
}

.p-home-svc__benefits-head {
	margin-bottom: 28px;
}

.p-home-svc__benefits-illust {
	width: 180px;
}

.p-home-svc__benefits-title {
	color: var(--home-rpo);
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
}

.p-home-svc__benefit-grid {
	gap: 12px;
}

.p-home-svc__benefit {
	min-height: 200px;
	padding: 24px 18px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	text-align: center;
}

.p-home-svc__benefit-icon {
	display: block;
	width: 100px;
	height: 50px;
	margin: 0 auto 12px;
	object-fit: contain;
}

.p-home-svc__benefit-title {
	margin-bottom: 8px;
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
}

.p-home-svc__benefit-body {
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	line-height: 1.6;
}

.p-home-stats__block {
	margin-top: 72px;
}

.p-home-stats__brand {
	margin-bottom: 24px;
	font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
}

.p-home-stats__brand img {
	max-width: 610px;
	height: auto;
}

.p-home-stats__grid {
	gap: 12px;
}

.p-home-stat {
	min-height: 176px;
	padding: 22px 16px;
	border-radius: 4px;
}

.p-home-stat__label {
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
}

.p-home-stat__value {
	font-size: clamp(10px, calc(72 * 100vw / 410), 72px);
}

.p-home-stats__note {
	margin: 12px 0 0;
	color: #777;
	font-size: clamp(10px, calc(11 * 100vw / 410), 11px);
	text-align: right;
}

.p-home-cta-pair {
	padding: 48px 80px 72px;
	background: #fff;
}

.p-home-cta-pair__inner {
	gap: 40px;
	max-width: 1060px;
}

.p-home-services {
	display: flex;
	flex-direction: column;
	gap: 80px;
	padding: 80px 40px;
	background: #f7f6f6;
}

.p-home-service-group {
	width: 1060px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
}

.p-home-service-group--rpo {
	height: auto;
	overflow: visible;
}

.p-home-service-group--hr {
	height: auto;
	overflow: visible;
}

.p-home-service-group .p-home-svc {
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 64px;
}

.p-home-service-group--rpo .p-home-svc {
	height: auto;
	padding-bottom: 64px;
}

.p-home-service-group--hr .p-home-svc {
	height: auto;
}

.p-home-service-group .p-home-svc__inner,
.p-home-service-group .p-home-cta-pair__inner {
	max-width: 932px;
}

.p-home-service-group .p-home-cta-pair {
	height: 244px;
	padding: 0 64px 64px;
}

.p-home-service-group--rpo .p-home-cta-pair {
	height: auto;
	margin-top: 56px;
	padding: 0;
	background: transparent;
}

.p-home-service-group--rpo .p-home-cta-pair__inner {
	display: grid;
	grid-template-columns: repeat(2, 446px);
	justify-content: space-between;
	justify-items: stretch;
	gap: 40px;
	width: 932px;
	max-width: 100%;
	height: 180px;
	margin: 0;
}

.p-home-service-group .p-home-cta-pair__inner {
	height: 180px;
}

.p-home-service-group .c-btn--big {
	border-radius: 8px;
}

.p-home-service-group--rpo .c-btn-wrap {
	position: relative;
	width: 446px;
	height: 180px;
	/* Match HR .c-btob-link hover */
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-home-service-group--rpo .c-btn-wrap:hover,
.p-home-service-group--rpo .c-btn-wrap:focus-visible {
	opacity: 0.92;
	transform: translateY(-2px);
	text-decoration: none;
}

.p-home-service-group--rpo .c-btn-wrap:hover .c-btn,
.p-home-service-group--rpo .c-btn-wrap:focus-visible .c-btn,
.p-home-service-group--rpo .c-btn:hover,
.p-home-service-group--rpo .c-btn:focus-visible {
	opacity: 1;
	transform: none;
}

.p-home-service-group--rpo .c-btn-wrap__eyebrow {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 2;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 8px 16px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	-webkit-background-clip: border-box;
	background-clip: border-box;
}

.p-home-service-group--rpo .c-btn-wrap:last-child .c-btn-wrap__eyebrow {
	background: transparent;
}

.p-home-service-group--rpo .c-btn--big {
	box-sizing: border-box;
	width: 100%;
	height: 180px;
	min-height: 180px;
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 12px 23px rgb(0 0 0 / 8%);
}

.p-home-service-group--rpo .c-btn--big .c-btn__body {
	gap: 4px;
	padding-top: 51px;
}

.p-home-service-group--rpo .c-btn--big .c-btn__title {
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
}

.p-home-service-group--rpo .c-btn--big .c-btn__desc {
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
}

.p-home-service-group--rpo .c-btn--big.c-btn--primary-outline {
	border: 1px solid #333;
	background: #fff;
}

.p-home-service-group--rpo .c-btn--big.c-btn--secondary-fill {
	border: 1px solid #4a63f1;
	background: #4a63f1;
}

.p-home-service-group--hr .p-home-svc__inner {
	min-height: 0;
}

.p-home-results {
	box-sizing: border-box;
	min-height: 0;
	/* 1220主列で104px。狭いPCでは内側1012を優先して左右を縮める */
	padding: 80px clamp(32px, calc((100% - 1012px) / 2), 104px);
	background: #fff;
}

.p-home-results__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 56px;
	box-sizing: border-box;
	width: 100%;
	max-width: 1012px;
	min-height: 0;
	margin: 0 auto;
}

.p-home-results .p-home-section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
	max-width: 1020px;
	margin: 0;
	text-align: center;
}

.p-home-results .p-home-section-head__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(36 * 100vw / 410), 36px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.6;
	color: #333;
}

.p-home-results .p-home-section-head__lead {
	margin: 0;
	color: #333;
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-pickup,
.p-home-pickup__cards {
	width: 100%;
	max-width: 100%;
}

.p-home-pickup__cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-home-pickup__head {
	display: none;
}

.p-home-cases__item--pc-only {
	min-width: 0;
}

.p-home-cases__item--pc-only .c-card {
	width: 100%;
	max-width: none;
}

.p-home-featured-case {
	display: grid;
	/* Figma 454+40+454。狭いPCでは等分で縮み、1100以下で1カラム */
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(20px, 3.3vw, 40px);
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: clamp(16px, 2vw, 24px) clamp(16px, 2.6vw, 32px);
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease;
}

.p-home-featured-case.p-home-featured-case--sp-only {
	display: none;
}

.p-home-featured-case:hover,
.p-home-featured-case:focus-visible {
	background: #faf5f6;
	box-shadow: none;
	border-color: #af322c;
	color: inherit;
	text-decoration: none;
}

.p-home-featured-case__media {
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 454 / 260;
	border-radius: 10px;
	background: #e4e4e4;
	overflow: hidden;
}

.p-home-featured-case__body {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.6vw, 32px);
	width: 100%;
	min-width: 0;
}

.p-home-featured-case__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.p-home-featured-case__meta {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	color: #333;
}

.p-home-featured-case__industry {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #333;
}

.p-home-featured-case__company {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #333;
	transition: color 0.3s ease;
}

.p-home-featured-case:hover .p-home-featured-case__company,
.p-home-featured-case:focus-visible .p-home-featured-case__company {
	color: #af322c;
}

.p-home-featured-case__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(18px, 1.7vw, 24px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #333;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.p-home-featured-case__tags {
	gap: 4px;
	margin: 0;
}

.p-home-featured-case__tags li {
	padding: 4px 12px;
	border-radius: 8px;
	background: #fff8f8;
	color: #af322c;
	font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
}

/* Figma 1466:50424 — 155×48 outline pill, lead 24 + label + trail 24, pad R 12 */
.p-home-featured-case__more {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 155px;
	min-width: 155px;
	height: 48px;
	padding: 0 12px 0 0;
	border: 1px solid #333;
	border-radius: 37px;
	background: #fff;
	color: #333;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
}

.p-home-featured-case__more-lead,
.p-home-featured-case__more-trail {
	display: inline-flex;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.p-home-featured-case__more-label {
	flex: 1 1 auto;
	min-width: 0;
	text-align: center;
	white-space: nowrap;
}

.p-home-featured-case__more-icon {
	flex: 0 0 auto;
	width: 0.55em;
	height: 0.9em;
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	color: #333;
}

.p-home-cases {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 40px 20px;
	width: 100%;
	margin: 0;
}

.p-home-cases > *,
.p-home-cases .c-card {
	height: 100%;
	max-width: none;
}

.p-home-cases .c-card__body {
	flex: 1 1 auto;
}

.p-home-cases .c-card__tags {
	margin-top: auto;
}

.p-home-results__actions {
	display: flex;
	justify-content: center;
	margin: 0;
}

.p-home-results__actions .c-btn--outline {
	--c-btn-color: #333;
	--c-btn-bg: #fff;
	--c-btn-min-w: 350px;
	--c-btn-font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	--c-btn-weight: 700;
	--c-btn-lh: 1.8;
	--c-btn-pad-y: 20px;
	--c-btn-pad-x: 0;
	width: 350px;
	padding-right: 28px;
	padding-left: 40px;
	border: 1px solid #333;
	background: #fff;
	letter-spacing: 1.2px;
}

.p-home-results__cta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	width: 100%;
}

.p-home-results__cta-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	box-sizing: border-box;
	min-height: 120px;
	height: 120px;
	padding: 24px;
	border-radius: 8px;
	text-decoration: none;
	overflow: hidden;
	transition: opacity 0.2s ease;
}

.p-home-results__cta-link:hover,
.p-home-results__cta-link:focus-visible {
	opacity: 0.92;
	text-decoration: none;
}

.p-home-results__cta-link--contact {
	background: #af322c;
	color: #fff;
}

/* Figma 1466:50436 — download CTA */
.p-home-results__cta-link--download {
	padding: 24px 0 24px 24px;
	background: linear-gradient(96.5deg, #fe6760 0%, #af322c 100%);
	box-shadow: 0 12px 23px rgba(0, 0, 0, 0.08);
	color: #fff;
}

.p-home-results__cta-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: min(100%, 312px);
	min-width: 0;
	z-index: 1;
}

.p-home-results__cta-link--download .p-home-results__cta-title {
	white-space: nowrap;
}

.p-home-results__cta-eyebrow {
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #fff;
}

.p-home-results__cta-title {
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.6;
	color: #fff;
}

.p-home-results__cta-arrow {
	position: relative;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border: 1px solid #fff;
	border-radius: 50%;
}

.p-home-results__cta-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: translate(-60%, -50%) rotate(45deg);
}

.p-home-results__cta-illust {
	position: absolute;
	top: -30px;
	right: 0;
	display: block;
	/* Figma cta-illust: 211×180 at x:275 / y:-30 (parent clips overflow) */
	width: 211px;
	height: 180px;
	object-fit: contain;
	object-position: left top;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.p-home-columns {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	min-height: 983px;
	padding: 104px 0;
	overflow: hidden;
	background: #f7f6f6;
}

.p-home-columns__inner {
	position: relative;
	box-sizing: border-box;
	max-width: none;
	width: 1060px;
	height: auto;
	margin: 0 auto;
	overflow: visible;
}

.p-home-columns .p-home-section-head {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 1020px;
	min-height: 140px;
	margin: 0 0 32px 0;
	text-align: left;
}

.p-home-columns .p-home-section-head__title {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(36 * 100vw / 410), 36px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.6;
	color: #333;
}

.p-home-columns .p-home-section-head__lead {
	margin: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 1.8;
	color: #333;
}

.p-home-columns__illust {
	position: absolute;
	top: -44px;
	left: 800px;
	right: auto;
	z-index: 0;
	display: block;
	width: 310px;
	height: 216px;
	pointer-events: none;
}

/* Full-bleed infinite marquee (R → L), pause on hover / focus */
.p-home-columns__slider {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 0 56px;
	overflow: hidden;
}

.p-home-columns__track {
	display: flex;
	align-items: stretch;
	width: max-content;
	will-change: transform;
	animation: p-home-columns-marquee 50s linear infinite;
}

.p-home-columns__slider:hover .p-home-columns__track,
.p-home-columns__slider:focus-within .p-home-columns__track {
	animation-play-state: paused;
}

.p-home-columns__set {
	display: flex;
	flex-shrink: 0;
	gap: 30px;
	padding-right: 30px;
}

.p-home-columns .c-columns-card {
	box-sizing: border-box;
	flex: 0 0 386px;
	width: 386px;
	height: auto;
	min-height: 0;
}

.p-home-columns .c-columns-card__media {
	width: 346px;
	height: 180px;
	aspect-ratio: auto;
	flex-shrink: 0;
}

.p-home-columns .c-columns-card__actions .c-columns-btn {
	width: 165px;
	max-width: 165px;
	height: 48px;
	padding: 0 24px;
}

.p-home-columns__foot {
	box-sizing: border-box;
	width: auto;
	padding-left: 0;
	display: flex;
	justify-content: center;
}

.p-home-columns__controls {
	display: none;
}

.p-home-columns__actions {
	justify-content: center;
	margin-left: 0;
}

.p-home-columns__actions .c-btn--outline {
	--c-btn-color: #333;
	--c-btn-bg: #fff;
	--c-btn-min-w: 350px;
	--c-btn-font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	--c-btn-weight: 700;
	--c-btn-lh: 1.8;
	--c-btn-pad-y: 20px;
	--c-btn-pad-x: 0;
	--c-btn-gap: 8px;
	box-sizing: border-box;
	width: 350px;
	height: 72px;
	min-height: 72px;
	padding-right: 28px;
	padding-left: 40px;
	border: 1px solid #333;
	border-radius: 37px;
	background: #fff;
	letter-spacing: 1.2px;
}

.p-home-columns__actions .c-btn--outline .c-btn__label {
	background: none;
	color: #333;
	-webkit-text-fill-color: currentColor;
}

.p-home-columns__actions .c-btn--outline .c-btn__icon {
	color: #333;
	background-color: currentColor;
	background-image: none;
}

@keyframes p-home-columns-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* Figma 1466:50493 — philosophy banner (1220 design canvas) */
.p-home-philosophy {
	position: relative;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	min-height: 600px;
	padding: 0;
	overflow: visible;
	border-radius: 0;
	background: #f7f6f6;
	color: #fff;
	text-align: center;
	container-type: inline-size;
	container-name: philosophy;
}

/* Red rounded band. Corner “ears” show the section gray (#f7f6f6), matching columns. */
.p-home-philosophy::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #af322c;
	border-radius: 30px 30px 0 0;
	pointer-events: none;
}

/* Lock artboard to Figma 1220×600 so the 4 figures stay aligned with the CTA */
.p-home-philosophy__canvas {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	overflow: hidden;
	flex: 0 0 auto;
	width: 1220px;
	height: 600px;
	padding: 100px 56px;
	transform: scale(min(1, 100cqi / 1220));
	transform-origin: top center;
}

/* Collapse unused space when the canvas is scaled down on narrower desktops */
.p-home-philosophy {
	height: min(600px, calc(600px * 100cqi / 1220));
}

.p-home-philosophy__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 56px;
	width: 100%;
	max-width: 1108px;
	height: 100%;
	margin: 0 auto;
}

.p-home-philosophy__figures {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.p-home-philosophy__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
	max-width: 1021px;
}

.p-home-philosophy__logo {
	display: block;
	width: 566px;
	max-width: 100%;
	height: auto;
	margin: 0;
}

.p-home-philosophy__title {
	margin: 0;
	color: #fff;
	font-family: var(--tokumori-font-mobo);
	font-size: clamp(10px, calc(48 * 100vw / 410), 48px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.3;
	text-align: center;
}

.p-home-philosophy__lead {
	display: none;
}

.p-home-philosophy__btn,
.p-home-philosophy .c-btn {
	--c-btn-color: #333;
	--c-btn-bg: #fff;
	--c-btn-min-w: 350px;
	--c-btn-gap: 0;
	--c-btn-font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	--c-btn-weight: 700;
	--c-btn-lh: 1.8;
	--c-btn-pad-y: 20px;
	--c-btn-pad-x: 0;
	position: relative;
	z-index: 3;
	box-sizing: border-box;
	justify-content: flex-start;
	width: 350px;
	min-width: 350px;
	height: 72px;
	padding-right: 28px;
	padding-left: 28px;
	border: 2px solid #333;
	border-radius: 37px;
	background: #fff;
	color: #333;
	letter-spacing: 1.2px;
}

.p-home-philosophy .c-btn--secondary::before,
.p-home-philosophy__btn.c-btn--secondary::before {
	display: none;
}

.p-home-philosophy__btn::before,
.p-home-philosophy .c-btn::before {
	content: "";
	flex: 0 0 auto;
	width: 0.625em;
	height: 1em;
	font-size: clamp(10px, calc(14.6 * 100vw / 410), 14.6px);
}

.p-home-philosophy .c-btn__label,
.p-home-philosophy__btn .c-btn__label {
	flex: 1 1 auto;
	background: none;
	color: #333;
	text-align: center;
	transform: translateX(-4px);
	-webkit-text-fill-color: currentColor;
}

.p-home-philosophy .c-btn__icon,
.p-home-philosophy__btn .c-btn__icon {
	flex: 0 0 auto;
	background-color: #333;
	color: #333;
	font-size: clamp(10px, calc(14.6 * 100vw / 410), 14.6px);
}

.p-home-philosophy__illust {
	position: absolute;
	display: block;
	height: auto;
	pointer-events: none;
	user-select: none;
}

/* Figma Group 115948 (1560:44744): 374.34×280.69 at 0,349.73 */
.p-home-philosophy__illust--l {
	top: 350px;
	left: 0;
	width: 374px;
}

.p-home-philosophy__illust--r {
	top: 357px;
	left: 861px;
	width: 359px;
}

.p-home-culture {
	height: auto;
	padding: 80px 0;
	background: #fff;
}

.p-home-culture__inner {
	max-width: none;
	width: 100%;
	padding: 0;
}

.p-home-culture .p-home-section-head {
	width: 1012px;
	max-width: calc(100% - 208px);
	margin: 0 auto 80px;
}

.p-home-culture .p-home-section-head__title {
	font-size: clamp(10px, calc(40 * 100vw / 410), 40px);
	line-height: 1.55;
}

.p-home-culture .p-home-section-head__title span {
	color: var(--home-red);
}

.p-home-culture__gallery {
	gap: 40px;
	width: 100%;
	margin: 0 0 80px;
	overflow: hidden;
}

.p-home-culture__track {
	animation: p-home-culture-marquee 42s linear infinite;
}

.p-home-culture__row--lower .p-home-culture__track {
	animation-duration: 51s;
	animation-direction: reverse;
}

.p-home-culture__set {
	gap: 40px;
	padding-right: 40px;
}

.p-home-culture__card {
	width: 444px;
	height: 269px;
	border-radius: 10px;
}

/* Figma 1466:50622 — 350×72 outline pill, pad 20 28 20 40, 18 Bold */
.p-home-culture__cta {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 350px;
	max-width: 100%;
	height: 72px;
	margin: 0 auto;
	padding: 20px 28px 20px 40px;
	border: 1px solid #333;
	border-radius: 37px;
	background: #fff;
	color: #333;
	text-decoration: none;
}

.p-home-culture__cta-main {
	display: contents;
}

.p-home-culture__cta-title {
	flex: 1 1 auto;
	min-width: 0;
	font-family: var(--tokumori-font-display);
	font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.8;
	text-align: left;
	color: #333;
}

.p-home-culture__cta-icon {
	flex: 0 0 auto;
	width: 0.625em;
	height: 1em;
	font-size: clamp(10px, calc(14.6 * 100vw / 410), 14.6px);
	color: #333;
}

.p-home-culture__cta-desc {
	display: none;
}

@keyframes p-home-culture-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* Figma 1466:50623 — Section 1220×864, pad 80, gap 80, cols 238 / 742 */
.p-home-news {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	min-height: 500px;
	padding: 80px;
	background: #f7f6f6;
}

.p-home-news__deco {
	display: block;
	position: absolute;
	bottom: -90px;
	left: -98px;
	z-index: 0;
	width: 331px;
	height: 432px;
	pointer-events: none;
	user-select: none;
}

.p-home-news__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 238px 742px;
	column-gap: 80px;
	align-items: start;
	max-width: 1060px;
	margin: 0 auto;
}

.p-home-news .p-home-section-head {
	max-width: none;
	margin: 0;
}

.p-home-news .p-home-section-head__title {
	margin: 0 0 24px;
	color: #333;
	font-size: clamp(10px, calc(36 * 100vw / 410), 36px);
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: 1.6;
}

.p-home-news .p-home-section-head__lead {
	display: none;
}

.p-home-news__body {
	display: flex;
	flex-direction: column;
	gap: 40px;
	min-width: 0;
}

.p-home-news__list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #d9d9d9;
}

/* PC below 1440: size against the main column (viewport minus 220px aside), not 100vw */
@media (min-width: 1101px) and (max-width: 1439px) {
	.p-home-main {
		container-type: inline-size;
		container-name: home-main;
	}

	.p-home-header {
		gap: clamp(8px, 1.6cqi, 20px);
		height: auto;
		min-height: 72px;
		padding: 12px clamp(16px, 2.2cqi, 40px) 12px clamp(24px, 3.2cqi, 40px);
		min-width: 0;
	}

	.p-home-header__nav {
		min-width: 0;
		flex: 1 1 auto;
	}

	.p-home-header__menu {
		justify-content: flex-end;
		gap: clamp(6px, 1.3cqi, 16px);
	}

	.p-home-header__menu a {
		font-size: clamp(11px, 1.45cqi, 14px);
		letter-spacing: 0.04em;
	}

	.p-home-header__actions {
		flex-shrink: 0;
		gap: 8px;
	}

	.p-home-header__actions .c-btn--header {
		--c-btn-pad-x: clamp(10px, 1.6cqi, 16px);
		padding: 0 clamp(10px, 1.6cqi, 16px);
		font-size: clamp(11px, 1.45cqi, 14px);
	}

	.p-home-reasons,
	.p-home-service-intro,
	.p-home-news,
	.p-home-columns {
		padding-left: clamp(20px, calc((100% - 1060px) / 2), 80px);
		padding-right: clamp(20px, calc((100% - 1060px) / 2), 80px);
	}

	.p-home-cta-pair {
		padding-left: clamp(20px, calc((100% - 1060px) / 2), 80px);
		padding-right: clamp(20px, calc((100% - 1060px) / 2), 80px);
	}

	.p-home-reasons,
	.p-home-service-intro {
		height: auto;
	}

	.p-home-reasons__inner,
	.p-home-reasons__viewport,
	.p-home-reasons__grid,
	.p-home-service-intro__inner,
	.p-home-svc__inner {
		width: 100%;
		max-width: 1060px;
		min-width: 0;
	}

	.p-home-reasons__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(12px, 2.4cqi, 24px);
	}

	.p-home-reason,
	.p-home-reason--2,
	.p-home-reason--3 {
		min-width: 0;
		padding: 24px 16px 20px;
	}

	.p-home-reason__copy {
		width: 100%;
	}

	.p-home-reason__line {
		white-space: normal;
	}

	.p-home-reason__em {
		min-height: 0;
	}

	.p-home-service-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(12px, 2.4cqi, 40px);
		width: 100%;
	}

	.p-home-service-tab,
	.p-home-service-tab--rpo {
		min-width: 0;
		padding: 32px 16px;
	}

	.p-home-services {
		padding-left: clamp(16px, calc((100% - 1060px) / 2), 40px);
		padding-right: clamp(16px, calc((100% - 1060px) / 2), 40px);
	}

	.p-home-service-group {
		width: 100%;
		max-width: 1060px;
		overflow: visible;
	}

	.p-home-service-group .p-home-svc {
		padding: 48px clamp(24px, calc((100% - 932px) / 2), 64px);
	}

	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-features__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature--numbered {
		width: auto;
		min-width: 0;
	}

	.p-home-svc__reuse-features {
		padding-left: clamp(16px, 3cqi, 40px);
		padding-right: clamp(16px, 3cqi, 40px);
	}

	.p-home-svc--rpo .p-home-svc__challenges {
		container-type: inline-size;
		width: 100%;
	}

	.p-home-svc--rpo .p-home-svc__challenge-stage {
		--home-rpo-chal-scale: min(1, calc(100cqi / 937px));
		width: 937px;
		transform: scale(var(--home-rpo-chal-scale));
		transform-origin: top left;
		margin-right: calc(937px * (var(--home-rpo-chal-scale) - 1));
		margin-bottom: calc(400px * (var(--home-rpo-chal-scale) - 1));
	}

	.p-home-svc__solutions-pill,
	.p-home-svc__sol-pill {
		width: min(500px, 100%);
		white-space: normal;
		padding-left: clamp(16px, 4cqi, 56px);
		padding-right: clamp(16px, 4cqi, 56px);
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo {
		grid-template-columns: minmax(0, 1fr) minmax(96px, 230px);
		gap: 16px;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature__art {
		width: 100%;
		max-width: 230px;
		height: auto;
	}

	.p-home-svc__head-top {
		flex-wrap: wrap;
	}

	.p-home-svc__brand {
		width: min(328px, 100%);
		height: auto;
		max-height: 40px;
	}

	.p-home-stats__brand img {
		max-width: min(610px, 100%);
	}

	.p-home-service-group .p-home-cta-pair {
		height: auto;
		padding-left: clamp(24px, calc((100% - 932px) / 2), 64px);
		padding-right: clamp(24px, calc((100% - 932px) / 2), 64px);
	}

	.p-home-service-group .p-home-cta-pair__inner,
	.p-home-service-group--rpo .p-home-cta-pair__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		height: auto;
		gap: clamp(16px, 2.4cqi, 40px);
	}

	.p-home-service-group--rpo .c-btn-wrap {
		width: 100%;
	}

	.p-home-columns__inner,
	.p-home-columns .p-home-section-head {
		width: 100%;
		max-width: 1060px;
	}

	.p-home-columns__illust {
		left: auto;
		right: 0;
	}

	.p-home-culture .p-home-section-head {
		width: 100%;
		max-width: min(1012px, calc(100% - 40px));
	}

	.p-home-news {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.p-home-news__inner {
		grid-template-columns: minmax(132px, 200px) minmax(0, 1fr);
		column-gap: clamp(20px, 4cqi, 48px);
		width: 100%;
	}
}

@media (max-width: 1100px) {
	.p-home-only-pc {
		display: none !important;
	}

	.p-home-only-sp {
		display: inline;
	}

	p.p-home-only-sp {
		display: block;
	}

	h2 .p-home-only-sp,
	.p-home-svc__title .p-home-only-sp,
	.p-home-service-tab__title .p-home-only-sp,
	.p-home-section-head__lead .p-home-only-sp {
		display: inline;
	}

	img.p-home-only-sp,
	.p-home-service-tab__mark {
		display: block;
	}

	.p-home-svc__brands-sp.p-home-only-sp {
		display: flex;
	}

	.p-home {
		display: block;
		width: 100%;
		overflow: visible;
	}

	.p-home-aside {
		display: none;
	}

	.p-home-main {
		max-width: none;
	}

	body.home .c-header,
	body.page-template-page-home .c-header,
	body.page-template-page-home-php .c-header {
		display: block;
	}

	.p-home-header,
	.p-home-mobile-nav {
		display: none !important;
	}

	.p-home-header {
		position: sticky;
		top: 0;
		z-index: 40;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		height: 64px;
		min-height: 64px;
		padding: 8px 12px;
		background: #fff;
	}

	.p-home-header__brand {
		display: block;
		flex: 0 0 130px;
		line-height: 0;
	}

	.p-home-header__brand img {
		display: block;
		width: 130px;
		height: auto;
	}

	.p-home-header__nav {
		display: none;
	}

	.p-home-header__actions {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-left: auto;
	}

	.p-home-header__actions .c-btn--primary {
		width: 144px;
		height: 40px;
		min-height: 40px;
		padding: 0 12px;
		background: var(--home-red);
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	}

	.p-home-header__actions .c-btn--secondary {
		display: none;
	}

	.p-home-header__actions .c-btn__icon {
		display: none;
	}

	.p-home-header.is-menu-open .p-home-header__actions {
		display: none;
	}

	.p-home-header__menu-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		flex-shrink: 0;
		width: 32px;
		height: 36px;
		padding: 0 4px;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.p-home-header__menu-toggle span {
		display: block;
		width: 24px;
		height: 2px;
		background: #333;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.p-home-header.is-menu-open .p-home-header__menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.p-home-header.is-menu-open .p-home-header__menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.p-home-header.is-menu-open .p-home-header__menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.p-home-mobile-nav {
		position: fixed;
		inset: 0;
		z-index: 35;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		padding-top: 64px;
		background: #fff;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-16px);
		transition:
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.4s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.p-home-mobile-nav[hidden] {
		display: none;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav[hidden] {
		display: flex;
	}

	.p-home-mobile-nav__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
		box-sizing: border-box;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		padding: 40px 24px 48px;
	}

	.p-home-mobile-nav__menu {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.p-home-mobile-nav__menu > li {
		opacity: 0;
		transform: translateY(12px);
		transition:
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__menu > li {
		opacity: 1;
		transform: translateY(0);
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__menu > li:nth-child(1) {
		transition-delay: 0.06s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__menu > li:nth-child(2) {
		transition-delay: 0.1s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__menu > li:nth-child(3) {
		transition-delay: 0.14s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__menu > li:nth-child(4) {
		transition-delay: 0.18s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__menu > li:nth-child(5) {
		transition-delay: 0.22s;
	}

	.p-home-mobile-nav__menu a {
		display: inline-block;
		color: #333;
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-decoration: none;
	}

	.p-home-mobile-nav__menu a:hover,
	.p-home-mobile-nav__menu a:focus-visible {
		color: var(--home-red);
	}

	.p-home-mobile-nav__actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		opacity: 0;
		transform: translateY(12px);
		transition:
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__actions {
		opacity: 1;
		transform: translateY(0);
	}

	.p-home-mobile-nav__actions .c-btn {
		--c-btn-min-w: 0;
		width: 100%;
	}

	.p-home-mobile-nav__cards {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		opacity: 0;
		transform: translateY(12px);
		transition:
			opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
	}

	.p-home-header.is-menu-open ~ .p-home-mobile-nav .p-home-mobile-nav__cards {
		opacity: 1;
		transform: translateY(0);
	}

	.p-home-hero {
		min-height: 690px;
		height: auto;
		background: linear-gradient(
			129deg, #d45953 0%, #d45953 44.7%, #af322c 90.4%);
	}

	.p-home-hero__inner {
		position: relative;
		display: block;
		min-height: 690px;
		padding: 0;
	}

	/* Absolute title/lead/CTA live inside copy — stretch so bottom:24 anchors correctly */
	.p-home-hero__copy {
		position: relative;
		z-index: 3;
		min-height: 690px;
	}

	/* Full-bleed veil: Figma overlay toward waist / CTAs, not the heads */
	.p-home-hero__veil {
		display: block;
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2;
		height: 240px;
		background: linear-gradient(180deg, rgb(175 50 44 / 0%) 0%, rgb(175 50 44 / 0.55) 58%, #af322c 100%);
		pointer-events: none;
	}

	.p-home-hero__title {
		--hero-title-size: clamp(10px, calc(48 * 100vw / 410), 48px);
		top: 30px;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		font-size: var(--hero-title-size);
		line-height: 1.3;
		text-align: center;
		transform: none;
	}

	.p-home-hero__line {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		gap: 0;
		width: auto;
		height: auto;
		min-height: 0;
		line-height: 1.3;
	}

	.p-home-hero__em {
		font-size: var(--hero-title-size);
		letter-spacing: 0;
	}

	.p-home-hero__line--2 .p-home-hero__em {
		font-size: var(--hero-title-size);
		letter-spacing: 0;
	}

	.p-home-hero__line--1 .p-home-hero__suffix {
		margin-left: 0;
	}

	.p-home-hero__line--2 .p-home-hero__suffix,
	.p-home-hero__line:nth-child(2) .p-home-hero__suffix {
		margin-left: 0;
	}

	.p-home-hero__line--2,
	.p-home-hero__line:nth-child(2) {
		transform: none;
	}

	.p-home-hero__suffix {
		font-size: clamp(10px, calc(28 * 100vw / 410), 28px);
	}

	.p-home-hero__lead {
		top: 158px;
		left: 50%;
		display: flex;
		align-items: baseline;
		justify-content: center;
		width: 100%;
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		letter-spacing: min(1.2px, calc(1.2 * 100vw / 410));
		text-align: center;
		transform: translateX(-50%);
		white-space: nowrap;
	}

	.p-home-hero__lead-sm {
		font-size: inherit;
		line-height: inherit;
		letter-spacing: inherit;
	}

	/* PNG glow padding: 539px display → people ≈ Figma 477 (1832:43244) */
	.p-home-hero__media {
		top: 194px;
		right: auto;
		left: 53%;
		z-index: 1;
		width: 539px;
		max-width: none;
		height: auto;
		margin: 0;
		overflow: visible;
		transform: translateX(-50%);
	}

	.p-home-hero__media picture,
	.p-home-hero__media img {
		display: block;
		width: 100%;
		max-width: none;
		height: auto;
		mask-image: linear-gradient(180deg, #000 70%, rgb(0 0 0 / 0.65) 88%, transparent 100%);
		-webkit-mask-image: linear-gradient(180deg, #000 70%, rgb(0 0 0 / 0.65) 88%, transparent 100%);
	}

	.p-home-hero__ctas {
		position: absolute;
		top: auto;
		bottom: 24px;
		left: 50%;
		z-index: 3;
		flex-direction: column;
		gap: 17px;
		width: calc(100% - 48px);
		max-width: 362px;
		transform: translateX(-50%);
	}

	.p-home-hero__ctas .c-btn {
		--c-btn-min-w: 0;
		--c-btn-font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		width: 100%;
		height: 72px;
		padding: 20px;
		gap: 8px;
		border-radius: 37px;
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		letter-spacing: 1.2px;
	}

	.p-home-hero__ctas .c-btn__label {
		white-space: normal;
		font-size: inherit;
		letter-spacing: inherit;
	}

	.p-home-hero__ctas .c-btn--primary .c-btn__icon.c-icon-chevron {
		width: 10px;
		height: 18px;
	}

	.p-home-hero__ctas .c-btn--secondary .c-btn__icon {
		width: 24px;
		height: 24px;
	}

	/* SP primary: white 1px stroke on red MV (Figma 1832:43258) */
	.p-home-hero__ctas .c-btn--primary {
		border: 1px solid #fff;
	}

	.p-home-logos {
		height: auto;
		min-height: 0;
		padding: 16px 0;
	}

	.p-home-logos__track,
	.p-home-logos__set {
		gap: 24px;
	}

	.p-home-logos__track--upper {
		gap: 24px;
	}

	.p-home-logos__track--lower {
		gap: 24px;
	}

	/* SP — Figma 1136:45609 pad 16 */
	.p-home-logos__track img {
		width: auto;
		height: 52px;
		max-height: 52px;
	}

	.p-home-reasons {
		min-height: 0;
		height: auto;
		padding: 64px 16px 56px;
		overflow: visible;
		background: #f7f6f6;
	}

	.p-home-reasons .p-home-section-head {
		width: 378px;
		max-width: 100%;
		margin-right: auto;
		margin-bottom: 32px;
		margin-left: auto;
		padding: 0;
	}

	.p-home-reasons .p-home-section-head__title {
		margin-bottom: 16px;
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		line-height: 1.6;
	}

	.p-home-reasons .p-home-section-head__accent {
		display: block;
	}

	.p-home-reasons .p-home-section-head__lead {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		line-height: 1.8;
	}

	.p-home-reasons__viewport {
		position: relative;
		z-index: 0;
		width: min(378px, 100%);
		max-width: 100%;
		margin: 0 auto;
		overflow: visible;
		transition: height 0.35s ease;
	}

	.p-home-reasons__viewport.is-animating {
		overflow: hidden;
	}

	.p-home-reasons__grid {
		position: relative;
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		overflow: visible;
		transform: none;
	}

	.p-home-reasons__slide {
		display: none;
		box-sizing: border-box;
		align-items: flex-start;
		justify-content: center;
		width: 100%;
		margin: 0;
		padding: 0 16px;
	}

	/* Idle: only the current card is in flow. Do not lay slides in a row. */
	.p-home-reasons__slide.is-active {
		display: flex;
		position: relative;
		z-index: 1;
	}

	.p-home-reasons__slide.is-leave {
		display: flex;
		position: relative;
		z-index: 1;
	}

	.p-home-reasons__slide.is-enter {
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		width: 100%;
		transform: translate3d(100%, 0, 0);
	}

	.p-home-reasons__slide.is-enter.from-prev {
		transform: translate3d(-100%, 0, 0);
	}

	.p-home-reasons__slide.is-enter.is-in,
	.p-home-reasons__slide.is-leave.to-next,
	.p-home-reasons__slide.is-leave.to-prev {
		transition: transform 0.35s ease;
	}

	.p-home-reasons__slide.is-enter.is-in {
		transform: translate3d(0, 0, 0);
	}

	.p-home-reasons__slide.is-leave.to-next {
		transform: translate3d(-100%, 0, 0);
	}

	.p-home-reasons__slide.is-leave.to-prev {
		transform: translate3d(100%, 0, 0);
	}

	.p-home-reason,
	.p-home-reason--2,
	.p-home-reason--3 {
		box-sizing: border-box;
		flex: 0 0 320px;
		width: 320px;
		max-width: 100%;
		height: auto;
		min-height: 0;
		margin: 0;
		padding: 28px 24px 24px;
	}

	.p-home-reason__copy {
		width: 100%;
	}

	.p-home-reason__extra {
		display: none;
	}

	.p-home-reason__icon {
		width: 150px;
		height: 120px;
	}

	.p-home-reasons__controls {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		width: 239px;
		margin: 24px auto 0;
		pointer-events: auto;
	}

	.p-home-reasons__arrow {
		position: relative;
		width: 24px;
		height: 24px;
		border: 1px solid #999;
		border-radius: 50%;
		background: #fff;
	}

	.p-home-reasons__arrow::before {
		content: "";
		position: absolute;
		top: 8px;
		left: 7px;
		width: 6px;
		height: 6px;
		border-top: 1px solid currentColor;
		border-right: 1px solid currentColor;
		transform: rotate(45deg);
	}

	.p-home-reasons__arrow--prev::before {
		left: 8px;
		transform: rotate(-135deg);
	}

	.p-home-reasons__arrow--next {
		border-color: #333;
		background: #333;
		color: #fff;
	}

	.p-home-reasons__progress {
		position: relative;
		width: 160px;
		height: 2px;
		background: #bbb;
	}

	.p-home-reasons__progress span {
		position: absolute;
		inset: 0 auto 0 0;
		width: 33.333%;
		background: #333;
	}

	.p-home-service-intro {
		min-height: 0;
		height: auto;
		padding: 56px 16px;
	}

	.p-home-service-intro .p-home-section-head {
		margin-bottom: 32px;
	}

	.p-home-service-intro .p-home-section-head__title {
		margin-bottom: 16px;
		color: #333;
		font-size: clamp(20px, 5.5vw, 24px);
		line-height: 1.6;
		white-space: normal;
		text-wrap: balance;
	}

	.p-home-service-intro .p-home-section-head__accent {
		color: var(--home-red);
	}

	.p-home-service-intro .p-home-section-head__lead {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		line-height: 1.8;
		color: #333;
	}

	.p-home-service-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.p-home-service-tab,
	.p-home-service-tab--rpo {
		gap: 8px;
		min-height: 201px;
		padding: 16px;
		border: 1px solid #333;
		border-radius: 8px;
		box-shadow: 0 12px 23px rgb(0 0 0 / 8%);
		margin: 0;
	}

	.p-home-service-tab__mark {
		width: 26px;
		height: 30px;
	}

	.p-home-service-tab--rpo .p-home-service-tab__em,
	.p-home-service-tab--hr .p-home-service-tab__em {
		color: inherit;
	}

	.p-home-service-tab__title {
		flex: 1 1 auto;
		color: #333;
		font-family: var(--tokumori-font-mobo);
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.6;
	}

	.p-home-service-tab__lg {
		font-family: var(--tokumori-font-mobo);
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.6;
		color: #333;
	}

	.p-home-service-tab__sm {
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		color: #333;
	}

	.p-home-service-tab__btn {
		width: 100%;
		max-width: 149px;
		min-width: 0;
		height: 33px;
		min-height: 33px;
		padding: 4px 0;
		border-radius: 50px;
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		white-space: nowrap;
		text-align: center;
	}

	.p-home-svc,
	.p-home-svc--hr {
		min-height: 3151px;
		padding: 56px 16px 48px;
	}

	.p-home-svc--hr .p-home-svc__inner {
		min-height: 3047px;
	}

	.p-home-svc__head {
		margin-bottom: 32px;
	}

	.p-home-svc__head--hr {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.p-home-svc__head--hr .c-btob-card__label {
		width: auto;
		min-width: 0;
		padding: 4px 16px;
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	}

	.p-home-svc__brand,
	.p-home-svc__brand--hr,
	.p-home-svc__head--hr .p-home-svc__brand--hr {
		position: static;
		width: min(100%, 300px);
		max-width: 100%;
		height: auto;
		margin: 0;
	}

	.p-home-svc__brands-sp {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 184px;
	}

	.p-home-svc__brands-sp img {
		display: block;
		width: 184px;
		height: 30px;
	}

	.p-home-svc--hr .p-home-svc__inner {
		gap: 32px;
	}

	.p-home-svc__compare--hr {
		gap: 48px;
	}

	.p-home-svc--hr .p-home-svc__challenge-list {
		grid-template-columns: 1fr;
		justify-content: stretch;
	}

	.p-home-svc--hr .p-home-svc__challenge-list li,
	.p-home-svc--hr .p-home-svc__challenge-list li:nth-child(2) {
		width: 100%;
		min-height: 0;
		margin-top: 0;
		padding: 0;
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	}

	.p-home-svc--hr .p-home-svc__challenge-text {
		white-space: normal;
	}

	.p-home-svc--hr .p-home-svc__challenges {
		padding-bottom: 200px;
	}

	.p-home-svc--hr .p-home-svc__bridge-illust {
		width: min(100%, 300px);
		height: auto;
	}

	.p-home-svc__hr-solutions {
		padding-top: 40px;
	}

	.p-home-svc__sol-pill {
		width: min(100%, 346px);
		min-height: 0;
		padding: 16px 32px;
		border-radius: 70px;
		box-shadow: 0 12px 23px rgb(0 0 0 / 8%);
		white-space: normal;
	}

	.p-home-svc__sol-l1 {
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		white-space: nowrap;
	}

	.p-home-svc__sol-l2 {
		font-family: var(--tokumori-font-mobo);
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.6;
		white-space: nowrap;
	}

	.p-home-svc__title {
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.6;
	}

	.p-home-svc__title-hl {
		background-image: linear-gradient(transparent 68%, #fffd8c 68%);
	}

	.p-home-svc__lead {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		letter-spacing: 1.2px;
		line-height: 1.8;
	}

	.p-home-section-head__title,
	.p-home-section-head__lead,
	.p-home-svc__title,
	.p-home-svc__lead,
	.p-home-reason__em,
	.p-home-reason__line,
	.p-home-service-tab__title,
	.c-svc-feature__body,
	.c-btob-feature__body,
	.c-btob-features__title,
	.p-home-philosophy__title,
	.c-btn__desc {
		line-break: strict;
	}

	/* Figma SP 1178:66078 — title 16 / body 14 / ls 1.2 / lh 180% at 346px */
	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__title {
		width: 100%;
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-align: center;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__title-line {
		display: block;
		max-width: none;
		overflow: visible;
		text-overflow: clip;
		white-space: nowrap;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__body {
		width: 100%;
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		font-weight: 400;
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-align: left;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__note {
		width: 100%;
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
		letter-spacing: 0;
		line-height: 1.6;
		color: #838586;
		text-align: left;
	}

	.p-home-svc__sub {
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	}

	.p-home-svc__challenge-list,
	.p-home-svc--hr .p-home-svc__challenge-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: clamp(4px, 1vh, 8px);
		margin-bottom: 0;
		height: auto;
	}

	.p-home-svc--rpo .p-home-svc__challenge-list {
		width: 100%;
		max-width: 300px;
		margin-inline: auto;
	}

	.p-home-svc__challenge-stage {
		position: relative;
		height: auto;
		min-height: 0;
		padding-bottom: 200px;
		overflow: visible;
	}

	.p-home-svc--rpo .p-home-svc__challenge-list li,
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(1),
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(2),
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(3),
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(4),
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(5),
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(6) {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		min-height: 0;
		padding: 0;
		grid-column: auto;
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
	}

	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(2) br,
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(3) br,
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(4) br,
	.p-home-svc--rpo .p-home-svc__challenge-list li:nth-child(5) br {
		display: none;
	}

	.p-home-svc__challenge-list li {
		width: 100%;
		min-height: 0;
		padding: 0;
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 0;
	}

	.p-home-svc--rpo .p-home-svc__challenge-box,
	.p-home-svc--hr .p-home-svc__challenge-box {
		height: auto;
		padding: clamp(8px, 1.5vh, 16px) 16px;
	}

	.p-home-svc--rpo .p-home-svc__challenge-list li:first-child,
	.p-home-svc--rpo .p-home-svc__challenge-list li:last-child {
		min-height: 0;
	}

	.p-home-svc__challenges,
	.p-home-svc--hr .p-home-svc__challenges {
		min-height: 0;
		padding-bottom: 0;
	}

	.p-home-svc__bridge-illust,
	.p-home-svc--rpo .p-home-svc__bridge-illust {
		top: auto;
		bottom: 8px;
		left: 50%;
		width: min(300px, 90%);
		height: auto;
		transform: translateX(-50%);
		z-index: 1;
	}

	.p-home-svc--rpo .p-home-svc__flow-icon {
		top: auto;
		bottom: 120px;
		left: 8px;
		width: 72px;
		height: 72px;
		transform: rotate(-8deg);
		z-index: 2;
	}

	.p-home-svc__solutions-pill {
		position: relative;
		top: auto;
		left: auto;
		z-index: 3;
		width: min(346px, 100%);
		min-height: 0;
		margin: -40px auto 0;
		padding: 16px 8px;
		border-radius: 80px;
		font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.6;
		white-space: nowrap;
		transform: none;
	}

	.p-home-svc__head-top {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 16px;
		margin-bottom: 32px;
	}

	.p-home-svc__eyebrow {
		width: auto;
		min-width: 0;
		height: 32px;
		padding: 4px 16px;
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	}

	/* Figma SP 1136:45806 — 346 centered; label/logo/title centered */
	.p-home-svc--rpo .p-home-svc__head {
		box-sizing: border-box;
		width: 100%;
		max-width: 346px;
		margin-left: auto;
		margin-right: auto;
	}

	.p-home-svc--rpo .p-home-svc__head-top {
		align-items: center;
	}

	.p-home-svc--rpo .p-home-svc__brand {
		width: 246px;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.p-home-svc--rpo .p-home-svc__title {
		text-align: center;
	}

	/* Figma SP 1178:66315 — 346 centered; label/logos/title centered */
	.p-home-svc--hr .p-home-svc__head--hr {
		align-items: center;
		box-sizing: border-box;
		width: 100%;
		max-width: 346px;
		margin-left: auto;
		margin-right: auto;
	}

	.p-home-svc--hr .p-home-svc__brands-sp {
		align-items: center;
	}

	.p-home-svc--hr .p-home-svc__intro {
		box-sizing: border-box;
		width: 100%;
		max-width: 346px;
		margin-left: auto;
		margin-right: auto;
	}

	.p-home-svc--hr .p-home-svc__title {
		text-align: center;
	}

	/* Figma SP 1178:66340 — 346 centered */
	.p-home-svc--hr .p-home-svc__challenges {
		box-sizing: border-box;
		width: 100%;
		max-width: 346px;
		margin-left: auto;
		margin-right: auto;
	}

	/* Figma SP 1178:66078 / 1178:66378 — 346 centered */
	.p-home-svc__reuse-features,
	.p-home-svc__reuse-features--hr {
		box-sizing: border-box;
		width: 100%;
		max-width: 346px;
		margin-left: auto;
		margin-right: auto;
		padding: 56px 16px 32px;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		grid-template-columns: none;
		min-height: 0;
		text-align: center;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__content {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		width: 100%;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__main {
		align-items: center;
		width: 100%;
	}

	.p-home-svc--rpo .p-home-svc__reuse-features .c-svc-feature--saiyo .c-svc-feature__art {
		width: 180px;
		height: 130px;
		margin: 0 auto;
	}

	/* Figma SP 1178:66338 — same 1100px switch as RPO why-features */
	.p-home-svc__reuse-features--hr {
		padding: 56px 16px 24px;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		grid-template-columns: none;
		min-height: 0;
		text-align: center;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo:not(:last-child) {
		padding-bottom: 32px;
		margin-bottom: 32px;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo .c-svc-feature__content {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		width: 100%;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature__check-img {
		width: 24px;
		height: 24px;
		margin-top: 0;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo .c-svc-feature__main {
		align-items: center;
		gap: 8px;
		width: 100%;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature__art {
		width: 180px;
		height: 130px;
		margin: 0 auto;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature__title-pc {
		display: none;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature__title-sp {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo .c-svc-feature__title {
		width: 100%;
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-align: center;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo .c-svc-feature__title-line {
		display: block;
		max-width: none;
		overflow: visible;
		text-overflow: clip;
		white-space: nowrap;
	}

	.p-home-svc__reuse-features--hr .c-svc-feature--saiyo .c-svc-feature__body {
		width: 100%;
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		font-weight: 400;
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-align: left;
	}

	/* SP numbered cards — stacked, not a slider */
	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-features__track {
		--btob-feature-w: 100%;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		gap: 16px;
		grid-template-columns: none;
		grid-auto-flow: unset;
		width: 100%;
		max-width: 378px;
		min-width: 0;
		margin-left: auto;
		margin-right: auto;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature--numbered {
		flex: none;
		width: 100%;
		min-width: 0;
		max-width: none;
		height: auto;
		min-height: 0;
		gap: 12px;
		padding: 24px 16px;
		align-items: flex-start;
		text-align: left;
		scroll-snap-align: unset;
		scroll-snap-stop: normal;
	}

	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__title {
		font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-align: left;
	}

	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-feature__body {
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
		font-weight: 400;
		letter-spacing: 0;
		line-height: 1.6;
		text-align: left;
	}

	.p-home-svc--rpo .p-home-svc__reuse-btob-features .c-btob-features__nav {
		display: none;
	}

	/* TOP SP: PCと同じくラベル右に注釈記号、リスト下に共通注釈 */
	.p-home-svc__reuse-achieve .c-btob-stat,
	.p-home-svc__reuse-achieve .c-btob-achieve__stats .c-btob-stat:not(:last-child) {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
	}

	.p-home-svc__reuse-achieve .c-btob-stat__label {
		flex: 1 1 auto;
		width: auto;
		max-width: none;
		min-width: 0;
		min-height: 0;
	}

	.p-home-svc__reuse-achieve .c-btob-stat__num {
		font-weight: 400;
		letter-spacing: 1.2px;
	}

	.p-home-svc__reuse-achieve .c-btob-stat__icon {
		display: none;
	}

	.p-home-svc__reuse-achieve .c-btob-stat__ref {
		display: inline-block;
		font-size: 12px;
		line-height: 1;
		vertical-align: 0.12em;
	}

	.p-home-svc__reuse-achieve .c-btob-stat__note {
		display: none;
	}

	.p-home-svc__reuse-achieve .c-btob-achieve__note {
		display: block;
		width: 100%;
		margin-top: 4px;
	}

	.p-home-service-group--rpo .p-home-cta-pair,
	.p-home-cta-pair--rpo {
		width: 100%;
		max-width: 346px;
		margin-top: 40px;
		margin-inline: auto;
	}

	.p-home-service-group--rpo .p-home-cta-pair__inner,
	.p-home-service-group--rpo .c-btn-wrap {
		width: 100%;
		height: auto;
		grid-template-columns: 1fr;
	}

	.p-home-service-group--rpo .c-btn--big {
		height: auto;
		min-height: 140px;
	}

	.p-home-svc__solutions {
		padding: 32px 16px 16px;
	}

	.p-home-svc__compare {
		margin-bottom: 32px;
	}

	.p-home-svc__solution-list li,
	.p-home-svc__solution-list li:nth-child(even) {
		flex-direction: column;
		gap: 8px;
		min-height: 0;
		padding: 26px 8px;
		text-align: center;
	}

	.p-home-svc__sol-title {
		padding-left: 28px;
		font-size: clamp(10px, calc(19 * 100vw / 410), 19px);
	}

	.p-home-svc__sol-title::before {
		width: 20px;
		height: 20px;
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	}

	.p-home-svc__sol-body {
		font-size: clamp(10px, calc(12 * 100vw / 410), 12px);
	}

	.p-home-svc__sol-icon,
	.p-home-svc--hr .p-home-svc__sol-icon {
		flex: none;
		width: 150px;
		height: 113px;
	}

	.p-home-svc__benefits,
	.p-home-stats__block {
		margin-top: 40px;
	}

	.p-home-svc__benefits-head {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.p-home-svc__benefits-title {
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
	}

	.p-home-svc__benefit-grid {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.p-home-svc__benefit-grid::-webkit-scrollbar {
		display: none;
	}

	.p-home-svc__benefit {
		flex: 0 0 314px;
		min-height: 190px;
		padding: 16px 6px;
		scroll-snap-align: start;
	}

	.p-home-svc__benefit-icon {
		width: 70px;
		height: 42px;
	}

	.p-home-svc__benefit-title {
		font-size: clamp(10px, calc(13 * 100vw / 410), 13px);
	}

	.p-home-svc__benefit-body {
		font-size: clamp(10px, calc(10 * 100vw / 410), 10px);
	}

	.p-home-stats__brand {
		flex-direction: column;
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
	}

	.p-home-stats__brand img {
		max-width: 100%;
		height: auto;
	}

	.p-home-stat {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 130px;
		padding: 14px 18px;
		text-align: left;
	}

	.p-home-stats__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.p-home-stat__label {
		font-size: clamp(10px, calc(10 * 100vw / 410), 10px);
	}

	.p-home-stat__value {
		font-size: clamp(10px, calc(42 * 100vw / 410), 42px);
	}

	.p-home-cta-pair {
		padding: 24px 16px 48px;
	}

	.p-home-services {
		gap: 32px;
		height: auto;
		padding: 56px 16px;
	}

	.p-home-service-group {
		width: 100%;
		border-radius: 8px;
		/* visible on both axes — overflow-x:clip makes overflow-y compute
		   to auto and kills position:sticky on the story pin. */
		overflow: visible;
	}

	.p-home-svc__reuse-btob-features {
		overflow: visible;
		width: 100%;
		max-width: 378px;
		margin-left: auto;
		margin-right: auto;
	}

	.p-home-service-group--rpo {
		height: auto;
	}

	.p-home-service-group--hr {
		height: auto;
	}

	.p-home-service-group .p-home-svc {
		width: 100%;
		min-height: 0;
		padding: 56px 16px 48px;
	}

	.p-home-service-group--rpo .p-home-svc {
		height: auto;
	}

	.p-home-service-group--hr .p-home-svc {
		height: auto;
	}

	.p-home-service-group--hr .p-home-svc__inner {
		min-height: 0;
	}

	.p-home-service-group .p-home-cta-pair {
		height: auto;
		min-height: 0;
		padding: 0 0 32px;
	}

	.p-home-service-group .p-home-cta-pair__inner {
		height: auto;
		gap: 16px;
	}

	.p-home-cta-pair__inner,
	.p-home-cta-pair--contact {
		gap: 12px;
	}

	.p-home-results {
		min-height: 0;
		padding: 56px 16px;
		background: #fff;
	}

	.p-home-results__inner {
		gap: 32px;
		align-items: stretch;
		width: 100%;
		max-width: 378px;
		margin: 0 auto;
	}

	.p-home-results .p-home-section-head {
		align-items: center;
		gap: 16px;
		margin: 0;
		text-align: center;
	}

	.p-home-results .p-home-section-head__title,
	.p-home-columns .p-home-section-head__title,
	.p-home-news .p-home-section-head__title {
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
	}

	.p-home-results .p-home-section-head__lead {
		width: 100%;
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		letter-spacing: 1.2px;
		line-height: 1.8;
		text-align: center;
	}

	/* Figma 1530:43946 — gray PICK UP panel, 2 stacked featured cards */
	.p-home-pickup {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		box-sizing: border-box;
		width: 100%;
		padding: 16px;
		border-radius: 8px;
		background: #f7f6f6;
	}

	.p-home-pickup__head {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.p-home-pickup__mark {
		display: block;
		width: 34px;
		height: 40px;
	}

	.p-home-pickup__label {
		margin: 0;
		width: 100%;
		color: #333;
		font-family: var(--tokumori-font-display);
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1.6;
		text-align: center;
	}

	.p-home-pickup__cards {
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
	}

	.p-home-featured-case,
	.p-home-featured-case.p-home-featured-case--sp-only {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
		align-items: stretch;
		width: 100%;
		min-height: 0;
		padding: 24px 16px;
		border: 1px solid #d9d9d9;
		border-radius: 8px;
		background: #fff;
	}

	.p-home-featured-case__media {
		width: 100%;
		height: auto;
		aspect-ratio: 454 / 260;
		border-radius: 10px;
	}

	.p-home-featured-case__body {
		width: 100%;
		gap: 32px;
	}

	.p-home-featured-case__title {
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
		line-height: 1.6;
	}

	.p-home-featured-case__tags {
		gap: 4px;
	}

	.p-home-featured-case__tags li {
		background: #faf5f6;
	}

	.p-home-cases {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		align-items: stretch;
		gap: 16px;
		overflow: visible;
	}

	.p-home-cases > * {
		width: 100%;
		max-width: 327px;
		height: auto;
	}

	.p-home-cases .c-card {
		width: 100%;
		max-width: 327px;
		height: auto;
	}

	.p-home-cases .c-card__tag {
		background: #faf5f6;
	}

	.p-home-cases__item--pc-only,
	.p-home-cases--pc-only {
		display: none;
	}

	.p-home-cases > :nth-child(n + 4) {
		display: none;
	}

	.p-home-results__actions .c-btn--outline {
		--c-btn-min-w: 320px;
		--c-btn-font-size: clamp(10px, calc(18 * 100vw / 410), 18px);
		--c-btn-weight: 700;
		--c-btn-lh: 1.8;
		--c-btn-pad-y: 20px;
		box-sizing: border-box;
		width: 320px;
		max-width: 100%;
		min-height: 72px;
		padding: 20px 28px 20px 40px;
		border: 2px solid #333;
		letter-spacing: 1.2px;
	}

	.p-home-results__cta {
		grid-template-columns: 1fr;
		gap: 40px;
		width: 100%;
		max-width: 362px;
		margin: 24px auto 0;
	}

	.p-home-results__cta-link {
		min-height: 140px;
		height: 140px;
		padding: 24px;
		box-shadow: 0 12px 23px rgba(0, 0, 0, 0.08);
	}

	.p-home-results__cta-link--contact {
		border: 1px solid #fff;
	}

	.p-home-results__cta-link--download {
		padding: 24px 0 24px 24px;
	}

	.p-home-results__cta-copy {
		width: min(100%, 250px);
	}

	.p-home-results__cta-link--download .p-home-results__cta-title {
		white-space: normal;
	}

	.p-home-results__cta-eyebrow {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		letter-spacing: 1.2px;
		line-height: 1.8;
	}

	.p-home-results__cta-title {
		font-size: clamp(10px, calc(20 * 100vw / 410), 20px);
		line-height: 1.6;
	}

	.p-home-results__cta-illust {
		top: -20px;
		right: 0;
		width: 211px;
		height: 180px;
	}

	.p-home-columns {
		min-height: 0;
		height: auto;
		padding: 56px 16px;
		overflow-x: clip;
		overflow-y: visible;
	}

	.p-home-columns__inner {
		width: 100%;
		height: auto;
		overflow: visible;
	}

	.p-home-columns .p-home-section-head {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 16px;
		width: 100%;
		min-height: 0;
		margin: 0 0 32px;
		text-align: center;
	}

	.p-home-columns .p-home-section-head__title {
		margin: 0;
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		letter-spacing: 1.2px;
		text-align: center;
	}

	.p-home-columns .p-home-section-head__lead {
		font-size: clamp(10px, calc(14 * 100vw / 410), 14px);
		line-height: 1.8;
		text-align: center;
	}

	.p-home-columns__illust {
		display: none;
	}

	.p-home-columns__slider {
		width: 100%;
		margin: 0 0 24px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-padding-inline: 0;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.p-home-columns__slider::-webkit-scrollbar {
		display: none;
	}

	.p-home-columns__track {
		display: flex;
		width: max-content;
		max-width: none;
		animation: none;
		will-change: auto;
	}

	.p-home-columns__set {
		display: flex;
		flex-shrink: 0;
		width: max-content;
		min-width: max-content;
		gap: 16px;
		padding-right: 0;
	}

	.p-home-columns__set--clone {
		display: none;
	}

	.p-home-columns .c-columns-card {
		box-sizing: border-box;
		flex: 0 0 min(386px, calc(100vw - 32px));
		width: min(386px, calc(100vw - 32px));
		min-width: min(386px, calc(100vw - 32px));
		max-width: min(386px, calc(100vw - 32px));
		height: auto;
		min-height: 0;
		scroll-snap-align: start;
	}

	.p-home-columns .c-columns-card__media {
		width: 100%;
		height: 180px;
		aspect-ratio: auto;
	}

	.p-home-columns .c-columns-card__title,
	.p-home-columns .c-columns-card__desc {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.p-home-columns__foot {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		padding-left: 0;
	}

	.p-home-columns__controls {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		width: 239px;
		margin: 0 auto 56px;
	}

	.p-home-columns__arrow {
		position: relative;
		width: 24px;
		height: 24px;
		border: 1px solid #999;
		border-radius: 50%;
		background: #fff;
	}

	.p-home-columns__arrow::before {
		content: "";
		position: absolute;
		top: 8px;
		left: 7px;
		width: 6px;
		height: 6px;
		border-top: 1px solid currentColor;
		border-right: 1px solid currentColor;
		transform: rotate(45deg);
	}

	.p-home-columns__arrow--prev::before {
		left: 8px;
		transform: rotate(-135deg);
	}

	.p-home-columns__arrow--next {
		border-color: #333;
		background: #333;
		color: #fff;
	}

	.p-home-columns__progress {
		position: relative;
		width: 160px;
		height: 2px;
		background: #bbb;
	}

	.p-home-columns__progress span {
		position: absolute;
		inset: 0 auto 0 0;
		width: 33.333%;
		background: #333;
	}

	.p-home-columns__actions {
		justify-content: center;
		margin-left: 0;
	}

	.p-home-columns__actions .c-btn,
	.p-home-columns__actions .c-btn--outline {
		--c-btn-min-w: 320px;
		--c-btn-font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
		width: 320px;
		height: 72px;
		padding-right: 28px;
		padding-left: 40px;
	}

	.p-home-philosophy {
		min-height: 505px;
		height: auto;
		border-radius: 0;
		container-type: normal;
	}

	.p-home-philosophy__canvas {
		width: 100%;
		min-height: 505px;
		height: 505px;
		padding: 56px 16px 0;
		overflow: hidden;
		transform: none;
	}

	.p-home-philosophy__inner {
		gap: 32px;
		height: auto;
	}

	.p-home-philosophy__head {
		gap: 40px;
	}

	.p-home-philosophy__logo {
		width: 290px;
	}

	.p-home-philosophy__title {
		width: 247px;
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		letter-spacing: 0;
		line-height: 1.6;
		text-align: center;
	}

	.p-home-philosophy__btn,
	.p-home-philosophy .c-btn {
		--c-btn-min-w: 270px;
		--c-btn-font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
		width: 270px;
		min-width: 270px;
		height: 72px;
		padding-right: 20px;
		padding-left: 20px;
	}

	/* Figma Group 115888: left bleeds -36; right art has SVG padding, pin to right */
	.p-home-philosophy__illust--l {
		top: 347px;
		right: auto;
		bottom: auto;
		left: -36px;
		width: 238px;
		max-width: none;
	}

	.p-home-philosophy__illust--r {
		top: 350px;
		bottom: auto;
		left: auto;
		right: -56px;
		width: 229px;
		max-width: none;
	}

	.p-home-culture {
		min-height: 0;
		height: auto;
		padding: 56px 0;
		background: #fff;
	}

	.p-home-culture__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 56px;
		padding: 0 16px;
	}

	.p-home-culture .p-home-section-head__title {
		width: 288px;
		max-width: 100%;
		margin: 0 auto;
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.6;
		text-align: center;
	}

	.p-home-culture .p-home-section-head__title span {
		color: inherit;
	}

	.p-home-culture .p-home-section-head {
		width: 378px;
		max-width: 100%;
		margin: 0;
	}

	.p-home-culture__gallery {
		gap: 24px;
		width: calc(100% + 32px);
		margin: 0 -16px;
	}

	.p-home-culture__track {
		animation-duration: 34s;
	}

	.p-home-culture__row--lower .p-home-culture__track {
		animation-duration: 41s;
	}

	.p-home-culture__set {
		gap: 19px;
		padding-right: 19px;
	}

	.p-home-culture__card {
		width: 215px;
		height: 130px;
		border-radius: 5px;
	}

	.p-home-culture__cta {
		width: 320px;
		max-width: 100%;
		height: 72px;
		margin: 0 auto;
		padding: 20px 20px 20px 40px;
		border: 1px solid #333;
		border-radius: 37px;
	}

	.p-home-culture__cta-title {
		font-size: clamp(10px, calc(16 * 100vw / 410), 16px);
	}

	.p-home-culture__cta-desc {
		display: none;
	}

	/* Figma 1136:46740 — SP news pad 56/16, gap 32 */
	.p-home-news {
		min-height: 0;
		padding: 56px 16px;
		background: #f7f6f6;
	}

	.p-home-news__deco {
		display: none;
	}

	.p-home-news__inner {
		display: flex;
		flex-direction: column;
		gap: 32px;
		max-width: none;
		width: 100%;
	}

	.p-home-news .p-home-section-head {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 16px;
		margin: 0;
		width: 100%;
		text-align: center;
	}

	.p-home-news .p-home-section-head__title {
		flex-shrink: 0;
		margin: 0;
		font-size: clamp(10px, calc(24 * 100vw / 410), 24px);
		letter-spacing: 1.2px;
		line-height: 1.6;
		text-align: center;
	}

	.p-home-news .p-home-section-head__lead {
		display: none;
	}

	.p-home-news__body {
		gap: 40px;
	}
}

@media (max-width: 390px) {
	.p-home-header__brand {
		flex-basis: 112px;
	}

	.p-home-header__brand img {
		width: 112px;
	}

	.p-home-header__actions .c-btn--primary {
		width: 132px;
		font-size: clamp(10px, calc(11 * 100vw / 410), 11px);
	}
}

/* Challenge scroll stories ----------------------------------------------- */

.p-home-svc__story-art {
	position: absolute;
	top: 189.91px;
	left: 297px;
	width: 358px;
	height: 252px;
	overflow: hidden;
	pointer-events: none;
}

.p-home-svc__story-person {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-home-svc__story-person--worry,
.p-home-svc__story-moya,
.p-home-svc__story-surprise-mark {
	opacity: 0;
}

.p-home-svc__story-person--surprise,
.p-home-svc__story-logo,
.p-home-svc__story-sparkle {
	opacity: 1;
}

.p-home-svc__story-moya {
	position: absolute;
	top: 48.7px;
	left: 242.7px;
	display: block;
	width: 93px;
	height: 89px;
	object-fit: contain;
	transform-origin: center;
}

.p-home-svc__story-logo {
	position: absolute;
	top: 68.36px;
	left: 33.78px;
	z-index: 4;
	display: block;
	box-sizing: border-box;
	width: 112px;
	height: 112px;
	padding: 22px 26.5px;
	border-radius: 50%;
	background: #fff;
	box-shadow:
		0 calc(10px * var(--story-logo-scale, 1)) calc(22px * var(--story-logo-scale, 1))
			rgb(0 0 0 / 10%),
		0 0 calc(28px * var(--story-logo-scale, 1)) rgb(175 50 44 / 18%);
	object-fit: contain;
	transform: translate3d(
			var(--story-logo-x, 0px),
			var(--story-logo-y, 0px),
			0
		)
		rotate(var(--story-logo-rotate, -9.5deg))
		scale(var(--story-logo-scale, 1));
	transform-origin: center;
	will-change: transform;
	pointer-events: none;
}

.p-home-svc--rpo .p-home-svc__story-logo {
	box-shadow:
		0 calc(12px * var(--story-logo-scale, 1)) calc(24px * var(--story-logo-scale, 1))
			rgb(74 99 241 / 28%),
		0 0 calc(36px * var(--story-logo-scale, 1)) rgb(74 99 241 / 40%);
}

.p-home-svc__story-surprise-mark {
	position: absolute;
	top: 54px;
	left: 261px;
	z-index: 3;
	color: #4a63f1;
	font-family: Arial, sans-serif;
	font-size: clamp(10px, calc(74 * 100vw / 410), 74px);
	font-weight: 900;
	line-height: 1;
	transform: rotate(15deg) scale(var(--story-alert-scale, 1));
	transform-origin: center;
}

.p-home-svc__story-sparkle {
	position: absolute;
	top: 88.51px;
	left: 252.81px;
	z-index: 3;
	display: block;
	width: 50.75px;
	height: 48.33px;
	object-fit: contain;
	transform: scale(var(--story-sparkle-scale, 1));
	transform-origin: center;
}

.p-home-svc--hr .p-home-svc__challenge-stage {
	height: 338px;
}

.p-home-svc--hr .p-home-svc__story-art {
	top: 120.91px;
}

.p-home-svc--hr .p-home-svc__story-surprise-mark {
	color: var(--home-red, #af322c);
}

.p-home-svc__story-sparkle--hr {
	background: var(--home-red, #af322c);
	-webkit-mask: url("../img/top/rpo-story-sparkle.svg") center / contain no-repeat;
	mask: url("../img/top/rpo-story-sparkle.svg") center / contain no-repeat;
}

.p-home-svc__story-spacer {
	display: none;
}

.p-home-svc__solution-reveal {
	position: relative;
	z-index: 3;
}

.p-home-svc__solution-reveal-person {
	display: none;
}

.p-home-svc__compare.is-story-ready {
	display: block;
	--story-copy-opacity: 0;
	--story-item-opacity: 0;
	--story-enter-y: 18px;
	--story-worry-opacity: 0;
	--story-surprise-opacity: 0;
	--story-resolve: 0;
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-art {
	overflow: visible;
	opacity: var(--story-stage-opacity, 1);
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-pin {
	position: sticky;
	top: 0;
	z-index: 1;
	box-sizing: border-box;
	background: #fff;
}

.p-home-svc__compare.is-story-ready .p-home-svc__challenges {
	position: relative;
	top: auto;
	z-index: 1;
	box-sizing: border-box;
	min-height: 470px;
	background: #fff;
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-spacer {
	display: block;
	height: clamp(1400px, 200vh, 1900px);
}

.p-home-svc__compare.is-story-ready .p-home-svc__sub,
.p-home-svc__compare.is-story-ready .p-home-svc__challenge-list li {
	opacity: var(--story-copy-opacity);
	transform: translateY(var(--story-enter-y));
	will-change: opacity, transform;
}

.p-home-svc__compare.is-story-ready .p-home-svc__challenge-list li {
	opacity: var(--story-item-opacity, var(--story-copy-opacity));
	transform: translate3d(
			var(--story-item-x, 0px),
			var(--story-item-y, var(--story-enter-y)),
			0
		)
		scale(var(--story-item-scale, 1));
	transform-origin: center;
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-person--worry {
	opacity: var(--story-worry-opacity);
	inset: auto;
	top: 55px;
	left: 0;
	width: 328px;
	height: 197px;
	object-fit: fill;
	transform: translateY(var(--story-art-y, 20px));
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-moya {
	opacity: var(--story-worry-opacity);
	animation: home-story-moya 1.8s ease-in-out infinite;
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-person--surprise {
	opacity: var(--story-surprise-opacity);
	inset: auto;
	top: 55px;
	left: 0;
	width: 328px;
	height: 197px;
	object-fit: fill;
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-logo {
	opacity: var(--story-logo-opacity, 0);
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-surprise-mark {
	opacity: var(--story-alert-opacity, 0);
}

.p-home-svc__compare.is-story-ready .p-home-svc__story-sparkle {
	opacity: var(--story-sparkle-opacity, 0);
}

.p-home-svc__compare.is-story-ready.is-story-shaking .p-home-svc__story-logo {
	animation: home-story-logo-shake 0.1s ease-in-out infinite alternate;
}

.p-home-svc__compare.is-story-ready .p-home-svc__solution-reveal {
	margin-top: -52px;
}

.p-home-svc__compare.is-story-ready .p-home-svc__solution-reveal-person {
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: 1;
	display: block;
	width: 358px;
	height: 252px;
	overflow: hidden;
	opacity: var(--story-reveal-opacity, 0);
	transform: translateX(-50%);
	pointer-events: none;
}

.p-home-svc__compare.is-story-ready .p-home-svc__solutions-pill {
	position: relative;
	top: auto;
	left: auto;
	z-index: 3;
	margin: 0 auto -54px;
	transform: none;
}

.p-home-svc__compare.is-story-ready .p-home-svc__reuse-features {
	position: relative;
	z-index: 2;
	margin-top: 0;
	background: #f4f5fb;
}

.p-home-svc__compare--hr.is-story-ready .p-home-svc__challenges {
	min-height: 408px;
}

.p-home-svc__compare--hr.is-story-ready .p-home-svc__intro {
	margin-bottom: 56px;
}

.p-home-svc__compare--hr.is-story-ready .p-home-svc__hr-solutions {
	padding-top: 0;
}

.p-home-svc__compare--hr.is-story-ready .p-home-svc__sol-pill {
	position: relative;
	top: auto;
	left: auto;
	margin: 0 auto -54px;
	transform: none;
}

.p-home-svc__compare--hr.is-story-ready .p-home-svc__reuse-features--hr {
	background: #faf5f6;
}

@keyframes home-story-moya {
	0%,
	100% {
		transform: translate(0, 0) rotate(-2deg);
	}
	50% {
		transform: translate(3px, -3px) rotate(3deg);
	}
}

@keyframes home-story-logo-shake {
	from {
		transform: translate3d(
				calc(var(--story-logo-x, 0px) - 22px),
				calc(var(--story-logo-y, 0px) - 6px),
				0
			)
			rotate(calc(var(--story-logo-rotate, -9.5deg) - 22deg))
			scale(calc(var(--story-logo-scale, 1) * 1.12));
	}
	to {
		transform: translate3d(
				calc(var(--story-logo-x, 0px) + 22px),
				calc(var(--story-logo-y, 0px) + 4px),
				0
			)
			rotate(calc(var(--story-logo-rotate, -9.5deg) + 16deg))
			scale(calc(var(--story-logo-scale, 1) * 0.94));
	}
}

@media (max-width: 1100px) {
	.p-home-svc__story-art {
		top: auto;
		bottom: 0;
		left: 50%;
		width: min(100%, 300px);
		height: auto;
		aspect-ratio: 358 / 252;
		transform: translateX(-50%);
	}

	.p-home-svc--hr .p-home-svc__story-art {
		top: auto;
	}

	.p-home-svc--hr .p-home-svc__challenge-stage {
		height: auto;
	}

	.p-home-svc__story-logo {
		top: 27.1%;
		left: 9.4%;
		width: 31.3%;
		height: auto;
		aspect-ratio: 1;
		padding: 6.1% 7.4%;
	}

	.p-home-svc__story-surprise-mark {
		top: 21.4%;
		left: 72.9%;
		font-size: clamp(56px, 17.2vw, 74px);
	}

	.p-home-svc__story-moya {
		top: 19.3%;
		left: 67.8%;
		width: 26%;
		height: auto;
		aspect-ratio: 93 / 89;
	}

	.p-home-svc__story-sparkle {
		top: 35.1%;
		left: 70.6%;
		width: 14.2%;
		height: auto;
		aspect-ratio: 50.75 / 48.33;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-person--surprise {
		top: 21.8%;
		left: 0;
		width: 91.6%;
		height: 78.2%;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-person--worry {
		top: 21.8%;
		left: 0;
		width: 91.6%;
		height: 78.2%;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-pin {
		position: sticky;
		/* JS sets `top` so the person sits on the viewport bottom. */
		top: 0;
		z-index: 1;
		background: #fff;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__challenges {
		position: relative;
		top: auto;
		min-height: 0;
		padding-bottom: 0;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__challenge-stage {
		padding-bottom: calc(min(100%, 300px) * 252 / 358);
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-spacer {
		height: clamp(1100px, 160vh, 1500px);
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__solutions-pill {
		margin-bottom: -42px;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__solution-reveal {
		margin-top: -75px;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__solution-reveal-person {
		bottom: 100%;
		width: min(100%, 300px);
		height: auto;
		aspect-ratio: 358 / 252;
	}

	.p-home-svc__compare--hr.is-story-ready .p-home-svc__sol-pill {
		margin-bottom: -40px;
	}
}

@media (max-width: 600px) {
	.p-home-hero__media {
		width: calc(100% * 539 / 410);
	}

	.p-home-svc--rpo .p-home-svc__sub {
		margin-bottom: clamp(8px, 1.6vh, 16px);
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__challenge-stage {
		padding-bottom: calc(min(100%, 300px) * 252 / 358);
	}
}

@media (max-width: 1100px) and (max-height: 740px) {
	.p-home-svc__challenge-list,
	.p-home-svc--hr .p-home-svc__challenge-list {
		gap: 4px;
	}

	.p-home-svc--rpo .p-home-svc__challenge-box,
	.p-home-svc--hr .p-home-svc__challenge-box {
		padding: 8px 16px;
	}

	.p-home-svc--rpo .p-home-svc__sub,
	.p-home-svc--hr .p-home-svc__sub {
		margin-bottom: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.p-home-mobile-nav,
	.p-home-mobile-nav__menu > li,
	.p-home-mobile-nav__actions,
	.p-home-mobile-nav__cards {
		transition: none !important;
	}

	.p-home-mobile-nav__menu > li,
	.p-home-mobile-nav__actions,
	.p-home-mobile-nav__cards {
		opacity: 1;
		transform: none;
	}

	.p-home-logos__track {
		animation-play-state: paused;
	}

	.p-home-columns__track {
		animation: none;
	}

	.p-home-columns__set--clone {
		display: none;
	}

	.p-home-culture__track {
		animation: none;
	}

	.p-home-culture__set:last-child {
		display: none;
	}

	.p-home-reasons__grid,
	.p-home-cases,
	.p-home-columns__slider {
		scroll-behavior: auto;
	}

	.p-home-reasons__grid {
		transition: none;
	}

	.p-home-reasons__viewport {
		transition: none;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-pin,
	.p-home-svc__compare.is-story-ready .p-home-svc__challenges {
		position: relative;
		top: auto;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-spacer {
		display: none;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__sub,
	.p-home-svc__compare.is-story-ready .p-home-svc__challenge-list li {
		opacity: 1;
		transform: none;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-person--worry,
	.p-home-svc__compare.is-story-ready .p-home-svc__story-moya,
	.p-home-svc__compare.is-story-ready .p-home-svc__story-surprise-mark {
		display: none;
		animation: none;
	}

	.p-home-svc__compare.is-story-ready .p-home-svc__story-person--surprise,
	.p-home-svc__compare.is-story-ready .p-home-svc__story-logo,
	.p-home-svc__compare.is-story-ready .p-home-svc__story-sparkle {
		display: block;
		opacity: 1;
		animation: none;
	}
}

@media (min-width: 1101px) and (max-width: 1439px) {
	.p-home-svc--rpo .p-home-svc__challenges {
		container-type: inline-size;
		width: 100%;
	}

	.p-home-svc--rpo .p-home-svc__challenge-stage {
		--home-rpo-chal-scale: min(1, calc(100cqi / 937px));
		width: 937px;
		transform: scale(var(--home-rpo-chal-scale));
		transform-origin: top left;
		margin-right: calc(937px * (var(--home-rpo-chal-scale) - 1));
		margin-bottom: calc(400px * (var(--home-rpo-chal-scale) - 1));
	}

	.p-home-svc--hr .p-home-svc__story-art {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		max-width: min(358px, 100%);
	}
}
