/**
 * Knowledge marketing - Front Page
 */

.km-home {
	position: relative;
	background: #0b0d12;
	color: #fff;
}

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

.km-hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 75% 35%,
			rgba(89, 98, 255, 0.18),
			transparent 32%
		),
		#0b0d12;
	color: #fff;
}

.km-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	min-height: 100svh;
	padding: 140px 6vw 56px;
}

.km-hero__eyebrow {
	margin: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.25em;
	color: rgba(255, 255, 255, 0.55);
}

.km-hero__title {
	margin: auto 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(64px, 11vw, 190px);
	font-weight: 700;
	line-height: 0.83;
	letter-spacing: -0.065em;
	color: #fff;
}

.km-hero__title::after {
	display: none;
}

.km-hero__title-line {
	display: block;
	overflow: hidden;
}

.km-hero__title-text {
	display: block;
	will-change: transform;
}

.km-hero__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.km-hero__lead {
	margin: 0;
	font-size: clamp(15px, 1.3vw, 20px);
	line-height: 1.9;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.75);
}

.km-hero__scroll {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-family: Montserrat, sans-serif !important;
	font-size: 10px !important;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.65);
}

.km-hero__scroll-line {
	display: block;
	width: 1px;
	height: 52px;
	background: rgba(255, 255, 255, 0.6);
}

.km-hero__marquee {
	position: absolute;
	z-index: 1;
	right: -3vw;
	bottom: -0.17em;
	white-space: nowrap;
	font-family: Montserrat, sans-serif;
	font-size: clamp(90px, 15vw, 250px);
	font-weight: 700;
	line-height: 0.8;
	letter-spacing: -0.06em;
	color: rgba(255, 255, 255, 0.025);
	pointer-events: none;
}

@media (max-width: 767px) {
	.km-hero__inner {
		padding: 110px 24px 32px;
	}

	.km-hero__title {
		font-size: clamp(52px, 18vw, 90px);
		line-height: 0.88;
	}

	.km-hero__bottom {
		align-items: flex-start;
	}

	.km-hero__lead {
		font-size: 14px;
	}

	.km-hero__marquee {
		font-size: 30vw;
	}
}

/* --------------------------------
 * Header
 * スクロール前後で高さを変えない
 * -------------------------------- */

/*
 * bodyのoverflowを解除する代わりに、
 * 横方向のはみ出しはhtml側でクリップする
 */
html {
	overflow-x: clip;
}

body.home {
	--km-header-height: 88px;

	/*
	 * Lightning側の overflow-x: hidden が
	 * position: sticky を阻害するため解除
	 */
	overflow: visible !important;
}

body.home .cs-front-page-header {
	width: 100%;
	height: var(--km-header-height);
	min-height: var(--km-header-height);
	transition:
		background-color 0.35s ease,
		box-shadow 0.35s ease;
}

body.home .cs-front-page-header #site-header-container {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: var(--km-header-height);
	padding-top: 0;
	padding-bottom: 0;
}

/* ロゴ領域もスクロール前後で固定 */
body.home .cs-front-page-header .site-header-logo {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0 32px;
	padding: 0;
}

body.home .cs-front-page-header .site-header-logo img {
	display: block;
	width: auto;
	max-height: 64px;
	transition: filter 0.35s ease;
}

/* スクロール後 */
body.home .cs-front-page-header.header_scrolled {
	height: var(--km-header-height);
	min-height: var(--km-header-height);
}

/* 白ロゴを黒にする */
body.home .cs-front-page-header.header_scrolled .site-header-logo img {
	filter: invert(1);
}

body.home .cs-front-page-header.header_scrolled .global-nav-list > li > a {
	color: #131623;
}

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

.km-hero__title-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.06em;
}

.km-hero__title-text {
	display: block;
	transform-origin: left bottom;
	will-change: transform, opacity;
}

.km-hero__marquee {
	will-change: transform, opacity;
}

.km-hero__marquee span {
	display: inline-block;
	will-change: transform;
}

.km-hero__scroll-line {
	transform-origin: top center;
}

/* ヘッダー色切替はGSAPで制御 */
body.home .cs-front-page-header {
	background-color: rgba(255, 255, 255, 0);
	will-change: background-color, box-shadow;
}

body.home .cs-front-page-header .global-nav-list > li > a {
	will-change: color;
}

body.home .cs-front-page-header .site-header-logo img {
	will-change: filter;
}

/* =========================================================
 * Concept
 * ========================================================= */

.km-concept {
	position: relative;
	overflow: hidden;
	background: #f2f0ea;
	color: #11141c;
}

.km-concept__inner {
	position: relative;
	z-index: 2;
	padding: 120px 6vw 150px;
}

.km-concept__head {
	margin-bottom: clamp(48px, 6vw, 90px);
}

.km-concept__label {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
	color: rgba(17, 20, 28, 0.45);
}

.km-concept__label span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(17, 20, 28, 0.25);
	border-radius: 50%;
	letter-spacing: 0;
}

.km-concept__statement {
	width: 100%;
}

.km-concept__line {
	overflow: hidden;
	margin: 0;
	font-size: clamp(48px, 7.7vw, 132px) !important;
	font-weight: 700;
	line-height: 1.08 !important;
	letter-spacing: -0.055em !important;
	color: #11141c;
}

.km-concept__line-inner {
	display: block;
	will-change: transform;
}

.km-concept__line--accent {
	margin-top: 0.1em;
	color: #5962ff;
}

.km-concept__body {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1fr);
	gap: clamp(60px, 10vw, 180px);
	max-width: 1080px;
	margin: 140px 0 0 auto;
}

.km-concept__lead {
	margin: 0;
	font-size: clamp(18px, 1.6vw, 24px) !important;
	font-weight: 500;
	line-height: 2 !important;
	letter-spacing: 0.06em !important;
}

.km-concept__description {
	margin: 0;
	font-size: 15px !important;
	font-weight: 400;
	line-height: 2.2 !important;
	letter-spacing: 0.055em !important;
	color: rgba(17, 20, 28, 0.72);
}

.km-concept__ticker {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 30px 0 38px;
	background: #ebe9e2;
	border-top: 1px solid rgba(17, 20, 28, 0.18);
	border-bottom: 1px solid rgba(17, 20, 28, 0.18);
}

.km-concept__ticker-track {
	display: flex;
	align-items: center;
	gap: 0.28em;
	width: max-content;
	white-space: nowrap;
	font-family: Montserrat, sans-serif;
	font-size: clamp(58px, 8vw, 140px);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.06em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(17, 20, 28, 0.32);
	will-change: transform;
}

.km-concept__ticker-track span {
	display: flex;
	align-items: center;
}

.km-concept__ticker-track span::after {
	display: block;
	width: 0.15em;
	height: 0.15em;
	margin-left: 0.28em;
	content: '';
	border-radius: 50%;
	background: #5962ff;
}

@media (max-width: 767px) {

	.km-concept__inner {
		padding: 88px 24px 100px;
	}

	.km-concept__head {
		margin-bottom: 48px;
	}

	.km-concept__line {
		font-size: clamp(39px, 12vw, 62px) !important;
		line-height: 1.13 !important;
		letter-spacing: -0.045em !important;
	}

	.km-concept__body {
		display: block;
		margin-top: 80px;
	}

	.km-concept__description {
		margin-top: 48px;
	}

	.km-concept__ticker {
		padding: 22px 0 28px;
	}

	.km-concept__ticker-track {
		font-size: 18vw;
	}

}

/* =========================================================
 * Service
 * ========================================================= */

.km-service {
	position: relative;
	overflow: hidden;
	background: #0b0d12;
	color: #fff;
}

.km-service__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(600px, 1.5fr);
	gap: clamp(60px, 8vw, 150px);
	padding: 140px 6vw 160px;
}

.km-service__head {
	position: relative;
}

.km-service__label {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 100px;
	font-family: Montserrat, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
	color: rgba(255, 255, 255, 0.42);
}

.km-service__label span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	letter-spacing: 0;
}

.km-service__heading {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(64px, 7vw, 120px);
	font-weight: 700;
	line-height: 0.86;
	letter-spacing: -0.065em;
	color: #fff;
}

.km-service__heading::after {
	display: none;
}

.km-service__heading span {
	display: block;
}

.km-service__intro {
	max-width: 420px;
	margin: 72px 0 0;
	font-size: 14px !important;
	font-weight: 400;
	line-height: 2.1 !important;
	letter-spacing: 0.07em !important;
	color: rgba(255, 255, 255, 0.58);
}

.km-service__list {
	align-self: end;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.km-service__item {
	position: relative;
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr) 60px;
	align-items: center;
	gap: 28px;
	min-height: 190px;
	padding: 30px 10px;
	overflow: hidden;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	transition: color 0.45s ease;
}

/* ホバー時の背景を擬似要素で入れます。 */
.km-service__item::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: '';
	background: #5962ff;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.km-service__item:hover {
	color: #fff;
	opacity: 1;
}

.km-service__item:hover::before {
	transform: scaleY(1);
}
/* END：ホバー時の背景 */

.km-service__number {
	align-self: start;
	padding-top: 12px;
	font-family: Montserrat, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.42);
}

.km-service__content {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* ここが主役 */
.km-service__name {
	font-family: Montserrat, sans-serif;
	font-size: clamp(38px, 4.5vw, 78px);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.km-service__jp {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.52);
	transition: color 0.35s ease;
}

.km-service__item:hover .km-service__jp {
	color: rgba(255, 255, 255, 0.88);
}

.km-service__arrow {
	font-family: Montserrat, sans-serif;
	font-size: 30px;
	font-weight: 300;
	text-align: center;
	transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.km-service__item:hover .km-service__arrow {
	transform: rotate(45deg);
}

.km-service__background {
	position: absolute;
	z-index: 1;
	right: -0.04em;
	bottom: -0.15em;
	white-space: nowrap;
	font-family: Montserrat, sans-serif;
	font-size: clamp(160px, 23vw, 400px);
	font-weight: 700;
	line-height: 0.8;
	letter-spacing: -0.075em;
	color: rgba(255, 255, 255, 0.018);
	pointer-events: none;
	will-change: transform;
}

/* =========================================================
 * Works
 * ========================================================= */

.km-works {
	position: relative;
	background: #f2f0ea;
	color: #11141c;
}

.km-works__inner {
	padding: 140px 6vw 170px;
}

.km-works__label {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 80px;
	font-family: Montserrat, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
	color: rgba(17, 20, 28, 0.45);
}

.km-works__label span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(17, 20, 28, 0.25);
	border-radius: 50%;
	letter-spacing: 0;
}

.km-works__heading {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(68px, 9vw, 155px);
	font-weight: 700;
	line-height: 0.84;
	letter-spacing: -0.07em;
	color: #11141c;
}

.km-works__heading::after {
	display: none;
}

.km-works__heading span {
	display: block;
}

.km-works__intro {
	max-width: 560px;
	margin: 70px 0 0 auto;
	font-size: 15px !important;
	font-weight: 400;
	line-height: 2.1 !important;
	letter-spacing: 0.06em !important;
	color: rgba(17, 20, 28, 0.65);
}

.km-works__body {
	display: grid;
	grid-template-columns: minmax(420px, 1.1fr) minmax(480px, 0.9fr);
	align-items: start;
	gap: clamp(60px, 8vw, 140px);
	margin-top: 130px;
}

/* 左側の固定ビジュアル */
.km-works__stage {
	position: sticky;
	top: calc(var(--km-header-height) + 32px);
	align-self: start;

	height: calc(100vh - var(--km-header-height) - 64px);
	min-height: 520px;
	max-height: 760px;

	overflow: hidden;
	background: #11141c;
}

.km-works__visual {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 48px;
	opacity: 0;
	transform: scale(1.04);
	transition:
		opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1),
		transform 1s cubic-bezier(0.76, 0, 0.24, 1);
	color: #fff;
}

.km-works__visual.is-active {
	opacity: 1;
	transform: scale(1);
}

.km-works__visual--01 {
	background:
		linear-gradient(
			135deg,
			#5962ff 0%,
			#252951 45%,
			#11141c 100%
		);
}

.km-works__visual--02 {
	background:
		linear-gradient(
			135deg,
			#11141c 0%,
			#24364b 55%,
			#5962ff 140%
		);
}

.km-works__visual--03 {
	background:
		linear-gradient(
			135deg,
			#302b63 0%,
			#5962ff 60%,
			#777fff 100%
		);
}

.km-works__visual-number {
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.km-works__visual-word {
	font-family: Montserrat, sans-serif;
	font-size: clamp(70px, 8vw, 150px);
	font-weight: 700;
	line-height: 0.8;
	letter-spacing: -0.075em;
}

/* 右側の案件一覧 */
.km-works__list {
	border-top: 1px solid rgba(17, 20, 28, 0.22);
}

.km-works__item {
	padding: 48px 0 54px;
	border-bottom: 1px solid rgba(17, 20, 28, 0.22);
	opacity: 0.34;
	transition:
		opacity 0.45s ease,
		transform 0.45s ease;
}

.km-works__item.is-active {
	opacity: 1;
}

.km-works__meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 46px;
	font-family: Montserrat, sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.16em;
	color: rgba(17, 20, 28, 0.48);
}

.km-works__title {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(42px, 4.8vw, 78px);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.06em;
	color: #11141c;
}

.km-works__title::after {
	display: none;
}

.km-works__description {
	max-width: 480px;
	margin: 42px 0 0;
	font-size: 14px !important;
	line-height: 2 !important;
	letter-spacing: 0.05em !important;
	color: rgba(17, 20, 28, 0.66);
}

.km-works__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 56px;
	font-family: Montserrat, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.13em;
}

.km-works__arrow {
	font-size: 28px;
	font-weight: 300;
	transition: transform 0.4s ease;
}

.km-works__item.is-active .km-works__arrow {
	transform: rotate(45deg);
}

.km-works__mobile-visual {
	display: none;
}

/* Tablet */
@media (max-width: 991px) {
	body.home {
		--km-header-height: 72px;
	}
}

/* =========================================================
 * Company
 * ========================================================= */

.km-company {
	position: relative;
	overflow: hidden;
	background: #0b0d12;
	color: #fff;
}

.km-company__inner {
	position: relative;
	z-index: 2;
	padding: 140px 6vw 160px;
}

.km-company__label {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 90px;
	font-family: Montserrat, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
	color: rgba(255, 255, 255, 0.42);
}

.km-company__label span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	letter-spacing: 0;
}

.km-company__heading {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(70px, 10vw, 170px);
	font-weight: 700;
	line-height: 0.83;
	letter-spacing: -0.075em;
	color: #fff;
}

.km-company__heading::after {
	display: none;
}

.km-company__heading-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.06em;
}

.km-company__heading-line > span {
	display: block;
	will-change: transform;
}

.km-company__heading-line--accent {
	color: #5962ff;
}

.km-company__body {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1fr);
	gap: clamp(80px, 12vw, 200px);
	max-width: 1180px;
	margin: 140px 0 0 auto;
}

.km-company__lead {
	margin: 0;
	font-size: clamp(20px, 1.9vw, 28px) !important;
	font-weight: 500;
	line-height: 1.9 !important;
	letter-spacing: 0.05em !important;
	color: #fff;
}

.km-company__description {
	color: rgba(255, 255, 255, 0.62);
}

.km-company__description p {
	margin: 0 0 32px;
	font-size: 15px !important;
	font-weight: 400;
	line-height: 2.15 !important;
	letter-spacing: 0.055em !important;
}

.km-company__principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 150px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.km-company__principle {
	position: relative;
	min-height: 310px;
	padding: 40px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	transition:
		background-color 0.45s ease,
		color 0.45s ease;
}

.km-company__principle:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.km-company__principle:hover {
	background: #5962ff;
}

.km-company__principle-number {
	display: block;
	margin-bottom: 80px;
	font-family: Montserrat, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.4);
}

.km-company__principle-title {
	display: block;
	margin-bottom: 28px;
	font-family: Montserrat, sans-serif;
	font-size: clamp(32px, 3.2vw, 56px);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.055em;
}

.km-company__principle p {
	margin: 0;
	font-size: 13px !important;
	line-height: 1.9 !important;
	letter-spacing: 0.06em !important;
	color: rgba(255, 255, 255, 0.55);
	transition: color 0.4s ease;
}

.km-company__principle:hover p {
	color: rgba(255, 255, 255, 0.9);
}

.km-company__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: 70px;
	padding: 26px 0;
	font-family: Montserrat, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.km-company__link:hover {
	color: #fff;
	opacity: 1;
}

.km-company__link-arrow {
	font-size: 28px;
	font-weight: 300;
	transition: transform 0.4s ease;
}

.km-company__link:hover .km-company__link-arrow {
	transform: rotate(45deg);
}

.km-company__background {
	position: absolute;
	z-index: 1;
	right: -0.05em;
	bottom: -0.12em;
	white-space: nowrap;
	font-family: Montserrat, sans-serif;
	font-size: clamp(180px, 27vw, 460px);
	font-weight: 700;
	line-height: 0.8;
	letter-spacing: -0.08em;
	color: rgba(255, 255, 255, 0.018);
	pointer-events: none;
	will-change: transform;
}

/* =========================================================
 * Recruit
 * ========================================================= */

.km-recruit {
	position: relative;
	overflow: hidden;
	background: #5962ff;
	color: #fff;
}

.km-recruit__inner {
	position: relative;
	z-index: 2;
	padding: 140px 6vw 150px;
}

.km-recruit__label {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 100px;
	font-family: Montserrat, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
	color: rgba(255, 255, 255, 0.55);
}

.km-recruit__label span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	letter-spacing: 0;
}

.km-recruit__heading {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(74px, 11vw, 190px);
	font-weight: 700;
	line-height: 0.82;
	letter-spacing: -0.075em;
	color: #fff;
}

.km-recruit__heading::after {
	display: none;
}

.km-recruit__heading-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.06em;
}

.km-recruit__heading-line > span {
	display: block;
	will-change: transform;
}

.km-recruit__heading-line--accent {
	color: transparent;
	-webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
}

.km-recruit__bottom {
	display: grid;
	grid-template-columns: minmax(400px, 1fr) minmax(320px, 0.6fr);
	align-items: end;
	gap: clamp(80px, 12vw, 200px);
	margin-top: 130px;
}

.km-recruit__copy {
	max-width: 760px;
}

.km-recruit__lead {
	margin: 0;
	font-size: clamp(22px, 2vw, 32px) !important;
	font-weight: 500;
	line-height: 1.7 !important;
	letter-spacing: 0.05em !important;
}

.km-recruit__description {
	max-width: 680px;
	margin: 48px 0 0;
	font-size: 14px !important;
	font-weight: 400;
	line-height: 2.15 !important;
	letter-spacing: 0.06em !important;
	color: rgba(255, 255, 255, 0.72);
}

.km-recruit__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 28px 0;
	font-family: Montserrat, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.45);
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.km-recruit__link:hover {
	color: #fff;
	opacity: 1;
}

.km-recruit__link-arrow {
	font-size: 30px;
	font-weight: 300;
	transition: transform 0.4s ease;
}

.km-recruit__link:hover .km-recruit__link-arrow {
	transform: rotate(45deg);
}

.km-recruit__ticker {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 28px 0 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.km-recruit__ticker-track {
	width: max-content;
	white-space: nowrap;
	font-family: Montserrat, sans-serif;
	font-size: clamp(90px, 13vw, 220px);
	font-weight: 700;
	line-height: 0.82;
	letter-spacing: -0.065em;
	color: rgba(255, 255, 255, 0.12);
	will-change: transform;
}

/* =========================================================
 * Contact
 * ========================================================= */

.km-contact {
	position: relative;
	overflow: hidden;
	background: #f2f0ea;
	color: #11141c;
}

.km-contact__inner {
	padding: 140px 6vw 130px;
}

.km-contact__label {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 90px;
	font-family: Montserrat, sans-serif !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
	color: rgba(17, 20, 28, 0.45);
}

.km-contact__label span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(17, 20, 28, 0.25);
	border-radius: 50%;
	letter-spacing: 0;
}

.km-contact__eyebrow {
	margin: 0 0 30px;
	font-family: Montserrat, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.2em !important;
	color: rgba(17, 20, 28, 0.42);
}

.km-contact__heading {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Montserrat, sans-serif !important;
	font-size: clamp(100px, 18vw, 310px);
	font-weight: 700;
	line-height: 0.75;
	letter-spacing: -0.085em;
	color: #11141c;
}

.km-contact__heading::after {
	display: none;
}

.km-contact__heading-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.08em;
}

.km-contact__heading-line > span {
	display: block;
	will-change: transform;
}

.km-contact__heading-line--accent {
	color: #5962ff;
}

/* 下部 */
.km-contact__bottom {
	display: grid;
	grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.8fr);
	align-items: end;
	gap: clamp(80px, 12vw, 200px);
	margin-top: 120px;
}

.km-contact__description {
	max-width: 600px;
	margin: 0;
	font-size: 15px !important;
	font-weight: 400;
	line-height: 2.1 !important;
	letter-spacing: 0.06em !important;
	color: rgba(17, 20, 28, 0.66);
}

/* 問い合わせリンク */
.km-contact__link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 34px 0;
	overflow: hidden;
	font-family: Montserrat, sans-serif !important;
	font-size: 14px !important;
	font-weight: 700;
	letter-spacing: 0.17em;
	color: #11141c;
	border-top: 1px solid rgba(17, 20, 28, 0.32);
	border-bottom: 1px solid rgba(17, 20, 28, 0.32);
	transition: color 0.4s ease;
}

.km-contact__link::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	content: '';
	background: #5962ff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.km-contact__link-text,
.km-contact__link-arrow {
	position: relative;
	z-index: 1;
}

.km-contact__link-arrow {
	font-size: 34px;
	font-weight: 300;
	transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.km-contact__link:hover {
	color: #fff;
	opacity: 1;
}

.km-contact__link:hover::before {
	transform: scaleX(1);
}

.km-contact__link:hover .km-contact__link-arrow {
	transform: rotate(45deg);
}

/* =========================================================
 * SP
 * ========================================================= */

@media (max-width: 767px) {

	/* --------------------------------
	 * HERO
	 * -------------------------------- */

	.km-hero__inner {
		padding: 110px 24px 32px;
	}

	.km-hero__title {
		font-size: clamp(52px, 18vw, 90px);
		line-height: 0.88;
	}

	.km-hero__bottom {
		align-items: flex-start;
	}

	.km-hero__lead {
		font-size: 14px;
	}

	.km-hero__marquee {
		font-size: 30vw;
	}


	/* --------------------------------
	 * CONCEPT
	 * -------------------------------- */

	.km-concept__inner {
		padding: 88px 24px 100px;
	}

	.km-concept__head {
		margin-bottom: 48px;
	}

	.km-concept__line {
		font-size: clamp(39px, 12vw, 62px) !important;
		line-height: 1.13 !important;
		letter-spacing: -0.045em !important;
	}

	.km-concept__body {
		display: block;
		margin-top: 80px;
	}

	.km-concept__description {
		margin-top: 48px;
	}

	.km-concept__ticker {
		padding: 22px 0 28px;
	}

	.km-concept__ticker-track {
		font-size: 18vw;
	}


	/* --------------------------------
	 * SERVICE
	 * -------------------------------- */

	.km-service__inner {
		display: block;
		padding: 88px 24px 100px;
	}

	.km-service__label {
		margin-bottom: 64px;
	}

	.km-service__heading {
		font-size: clamp(58px, 18vw, 90px);
	}

	.km-service__intro {
		margin-top: 48px;
	}

	.km-service__list {
		margin-top: 100px;
	}

	.km-service__item {
		grid-template-columns: 34px minmax(0, 1fr) 32px;
		gap: 10px;
		min-height: 140px;
		padding: 24px 0;
	}

	.km-service__name {
		font-size: clamp(30px, 9vw, 46px);
	}

	.km-service__jp {
		font-size: 12px;
	}

	.km-service__arrow {
		font-size: 22px;
	}

	.km-service__background {
		font-size: 48vw;
	}

	/* --------------------------------
	 * Works
	 * -------------------------------- */
    .km-works__inner {
        padding: 88px 24px 100px;
    }

    .km-works__label {
        margin-bottom: 64px;
    }

    .km-works__heading {
        font-size: clamp(58px, 18vw, 90px);
    }

    .km-works__intro {
        margin-top: 48px;
    }

    .km-works__body {
        display: block;
        margin-top: 88px;
    }

    .km-works__stage {
        display: none;
    }

    .km-works__item {
        padding: 0 0 64px;
        margin-bottom: 64px;
        opacity: 1;
    }

    .km-works__mobile-visual {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        aspect-ratio: 4 / 3;
        margin-bottom: 32px;
        padding: 28px;
        color: #fff;
    }

    .km-works__mobile-visual span {
        font-family: Montserrat, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.15em;
    }

    .km-works__mobile-visual strong {
        font-family: Montserrat, sans-serif;
        font-size: 15vw;
        font-weight: 700;
        line-height: 0.8;
        letter-spacing: -0.07em;
    }

    .km-works__meta {
        margin-bottom: 28px;
    }

    .km-works__title {
        font-size: clamp(38px, 12vw, 62px);
    }

    .km-works__description {
        margin-top: 30px;
    }

    .km-works__footer {
        margin-top: 36px;
    }

	/* --------------------------------
	 * Company
	 * -------------------------------- */
    .km-company__inner {
        padding: 88px 24px 100px;
    }

    .km-company__inner {
        padding: 88px 24px 100px;
    }

    .km-company__label {
        margin-bottom: 64px;
    }

    .km-company__heading {
        font-size: clamp(54px, 17vw, 88px);
    }

    .km-company__body {
        display: block;
        margin-top: 80px;
    }

    .km-company__description {
        margin-top: 48px;
    }

    .km-company__principles {
        display: block;
        margin-top: 90px;
    }

    .km-company__principle {
        min-height: unset;
        padding: 32px 0 40px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .km-company__principle:first-child {
        border-left: 0;
    }

    .km-company__principle-number {
        margin-bottom: 44px;
    }

    .km-company__principle-title {
        font-size: clamp(38px, 12vw, 58px);
    }

    .km-company__link {
        margin-top: 60px;
    }

    .km-company__background {
        font-size: 55vw;
    }

	/* --------------------------------
	 * Recruit
	 * -------------------------------- */
    
    .km-recruit__inner {
        padding: 88px 24px 100px;
    }

    .km-recruit__label {
        margin-bottom: 64px;
    }

    .km-recruit__heading {
        font-size: clamp(52px, 16vw, 84px);
        line-height: 0.88;
    }

    .km-recruit__heading-line--accent {
        -webkit-text-stroke-width: 1px;
    }

    .km-recruit__bottom {
        display: block;
        margin-top: 80px;
    }

    .km-recruit__description {
        margin-top: 36px;
    }

    .km-recruit__link {
        margin-top: 64px;
    }

    .km-recruit__ticker {
        padding: 20px 0 26px;
    }

    .km-recruit__ticker-track {
        font-size: 28vw;
    }

	/* --------------------------------
	 * Contact
	 * -------------------------------- */

    .km-contact__inner {
        padding: 88px 24px 90px;
    }

    .km-contact__label {
        margin-bottom: 64px;
    }

    .km-contact__eyebrow {
        margin-bottom: 24px;
    }

    .km-contact__heading {
        font-size: clamp(88px, 28vw, 150px);
        line-height: 0.78;
    }

    .km-contact__bottom {
        display: block;
        margin-top: 80px;
    }

    .km-contact__link {
        margin-top: 64px;
        padding: 28px 0;
    }
}