:root {
	--company-shell: var(--shell);
	--company-ink: #102a5d;
	--company-blue: #0055a4;
	--company-gold: #c4a35a;
	--company-line: rgba(18, 27, 55, 0.12);
	--company-surface: #f5f6f8;
}

.company-info-page {
	position: relative;
	padding-top: 94px;
	background:
		radial-gradient(circle at 78% 14%, rgba(11, 87, 164, 0.06), transparent 22%),
		radial-gradient(circle at 80% 22%, rgba(196, 163, 90, 0.08), transparent 16%),
		linear-gradient(180deg, rgba(244, 247, 252, 0.75) 0%, rgba(255, 255, 255, 0.2) 16%, #fff 38%);
	overflow: hidden;
}

.company-info-shell,
.company-info-breadcrumb {
	width: var(--company-shell);
	margin: 0 auto;
}

.company-info-breadcrumb {
	padding: 20px 0 18px;
	border-bottom: 1px solid rgba(16, 42, 93, 0.08);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(16, 42, 93, 0.74);
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.7s ease 1.08s,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.08s;
}

.company-info-breadcrumb span {
	margin: 0 16px;
	color: rgba(16, 42, 93, 0.42);
}

html.is-page-ready .company-info-breadcrumb {
	opacity: 1;
	transform: translateY(0);
}

.company-info-hero {
	position: relative;
	display: grid;
	row-gap: 32px;
	padding: 42px 0 56px;
}

.company-info-hero__copy {
	max-width: min(100%, 920px);
	overflow: hidden;
	clip-path: inset(0 0 100% 0);
	transform: translateY(42px);
	transition:
		clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-hero__title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 40px;
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: 0.06em;
	color: var(--company-ink);
}

.company-info-hero__subtitle {
	margin: 18px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	color: rgba(10, 22, 40, 0.84);
}

.company-info-hero__visual {
	display: block;
	opacity: 0;
	transform: translateX(32px);
	transition:
		opacity 1.7s ease 0.54s,
		transform 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.54s;
}

.company-info-hero__visual-frame {
	width: 100%;
	height: clamp(280px, 31vw, 420px);
	border: 1px solid rgba(18, 27, 55, 0.1);
	background: #fff;
	overflow: hidden;
}

.company-info-hero__visual-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.065);
	transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.54s;
}

html.is-page-ready .company-info-hero__copy,
html.is-page-ready .company-info-hero__visual {
	transform: translateY(0);
}

html.is-page-ready .company-info-hero__copy {
	clip-path: inset(0 0 0 0);
}

html.is-page-ready .company-info-hero__visual {
	opacity: 1;
	transform: translateX(0);
}

html.is-page-ready .company-info-hero__visual-frame img {
	transform: scale(1);
}

.company-info-hero__scroll {
	position: absolute;
	right: 0;
	bottom: 88px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.company-info-hero__scroll span {
	font-family: var(--font-en);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.42em;
	writing-mode: vertical-rl;
	color: rgba(20, 25, 54, 0.28);
}

.company-info-hero__scroll i {
	display: block;
	width: 1px;
	height: 88px;
	background: rgba(20, 25, 54, 0.12);
	position: relative;
	overflow: hidden;
}

.company-info-hero__scroll i::after {
	content: "";
	position: absolute;
	left: 0;
	top: -56px;
	width: 100%;
	height: 56px;
	background: linear-gradient(180deg, transparent, var(--gold));
	animation: scrollFlow 2.4s ease-in-out infinite;
}

.company-info-toc {
	padding: 18px 0 6px;
}

.company-info-toc__item {
	position: relative;
	display: block;
	padding: 26px 0 34px 78px;
	margin-bottom: 56px;
	color: var(--company-ink);
	border-bottom: 1px solid rgba(16, 42, 93, 0.18);
}

.company-info-toc__item::before {
	content: "\2192";
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 1.55rem;
	line-height: 1;
	color: var(--company-blue);
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.company-info-toc__item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background: var(--company-blue);
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 0.35s ease;
}

.company-info-toc__item:is(:hover, :focus-visible)::after {
	transform: scaleX(1);
}

.company-info-toc__item:is(:hover, :focus-visible)::before {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.company-info-toc__title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 24px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--company-ink);
	transition: color 0.28s ease;
}

.company-info-toc__subtitle {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: rgba(16, 42, 93, 0.9);
	transition: color 0.28s ease;
}

.company-info-toc__item:is(:hover, :focus-visible) .company-info-toc__title,
.company-info-toc__item:is(:hover, :focus-visible) .company-info-toc__subtitle {
	color: var(--company-blue);
}

.company-info-section {
	padding: 108px 0;
}

.company-info-section__heading {
	display: grid;
	justify-items: start;
	gap: 4px;
	margin-bottom: 44px;
}

#outline .company-info-section__heading {
	overflow: hidden;
	clip-path: inset(0 0 100% 0);
	transform: translateY(42px);
	transition:
		clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#history .company-info-section__heading {
	overflow: hidden;
	clip-path: inset(0 0 100% 0);
	transform: translateY(42px);
	transition:
		clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-section__heading h2 {
	margin: 0;
	font-size: 30px;
	font-family: var(--font-en);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: 0.06em;
	color: var(--company-ink);
}

.company-info-section__subtitle {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: var(--company-ink);
}

.company-info-table {
	border-top: none;
	border-bottom: none;
}

.company-info-table__row {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	column-gap: 48px;
}

#outline .company-info-table__row {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#outline .company-info-table__row:nth-child(1) { transition-delay: 0.18s; }
#outline .company-info-table__row:nth-child(2) { transition-delay: 0.26s; }
#outline .company-info-table__row:nth-child(3) { transition-delay: 0.34s; }
#outline .company-info-table__row:nth-child(4) { transition-delay: 0.42s; }
#outline .company-info-table__row:nth-child(5) { transition-delay: 0.50s; }
#outline .company-info-table__row:nth-child(6) { transition-delay: 0.58s; }
#outline .company-info-table__row:nth-child(7) { transition-delay: 0.66s; }
#outline .company-info-table__row:nth-child(8) { transition-delay: 0.74s; }
#outline .company-info-table__row:nth-child(9) { transition-delay: 0.82s; }
#outline .company-info-table__row:nth-child(10) { transition-delay: 0.90s; }

#outline.is-outline-visible .company-info-section__heading {
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

#outline.is-outline-visible .company-info-table__row {
	opacity: 1;
	transform: translateY(0);
}

#history .company-history__year {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#history .company-history__year:nth-child(1) { transition-delay: 0.18s; }
#history .company-history__year:nth-child(2) { transition-delay: 0.28s; }
#history .company-history__year:nth-child(3) { transition-delay: 0.38s; }
#history .company-history__year:nth-child(4) { transition-delay: 0.48s; }
#history .company-history__year:nth-child(5) { transition-delay: 0.58s; }

#history.is-history-visible .company-info-section__heading {
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

#history.is-history-visible .company-history__year {
	opacity: 1;
	transform: translateY(0);
}

.company-info-table__term {
	padding: 26px 0;
	border-bottom: 1px solid rgba(18, 27, 55, 0.14);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: rgba(85, 102, 128, 0.88);
}

.company-info-table__desc {
	padding: 26px 0;
	border-bottom: 1px solid rgba(18, 27, 55, 0.14);
	font-size: 14px;
	line-height: 1.9;
	color: rgba(10, 22, 40, 0.92);
}

.company-info-table__desc p {
	margin: 0;
}

.company-info-table__desc--phone {
	border-bottom: 1px solid rgba(18, 27, 55, 0.14);
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}

.company-info-table__location-copy {
	display: grid;
	gap: 4px;
}

.company-info-table__location-name {
	font-weight: 700;
	color: var(--company-ink);
}

.company-info-table__term--blank {
	color: transparent;
}

.company-info-table__desc--location {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.company-info-table__desc--split {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.company-info-table__list {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.company-info-table__map {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	font-family: var(--font-en);
	font-size: 0.94rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--company-ink);
	transition: color 0.24s ease;
}

.company-info-table__map span[aria-hidden="true"] {
	display: inline-block;
	will-change: transform, opacity;
}

.company-info-table__map:is(:hover, :focus-visible) {
	color: var(--company-blue);
}

.company-info-table__map:is(:hover, :focus-visible) span[aria-hidden="true"] {
	animation: companyInfoMapArrowShift 0.42s ease;
}

@keyframes companyInfoMapArrowShift {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	45% {
		opacity: 0;
		transform: translateX(8px);
	}
	55% {
		opacity: 0;
		transform: translateX(-8px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.company-history {
	border-top: none;
}

.company-history__year {
	border-bottom: none;
}

.company-history__year summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	border-bottom: 1px solid rgba(18, 27, 55, 0.14);
	background: transparent;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--company-ink);
}

.company-history__year summary::-webkit-details-marker {
	display: none;
}

.company-history__toggle {
	font-size: 18px;
	font-weight: 500;
	color: var(--company-ink);
}

.company-history__items {
	padding: 0 0 24px;
	overflow: hidden;
	will-change: height;
}

.company-history__item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 14px 0;
}

.company-history__month {
	margin: 0;
	font-size: 0.96rem;
	font-weight: 500;
	text-align: left;
	color: rgba(20, 25, 54, 0.74);
}

.company-history__dot {
	display: none;
}

.company-history__item--featured .company-history__dot {
	display: none;
}

.company-history__content {
	padding-bottom: 0;
}

.company-history__content h3 {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: var(--company-ink);
}

.company-history__content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.85;
	color: rgba(10, 22, 40, 0.8);
}

.company-info-links {
	padding: 108px 0;
}

.company-info-links__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.company-info-link-card {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 28px 32px;
	border: 1px solid rgba(18, 27, 55, 0.12);
	background: #fff;
	box-shadow: 0 16px 36px rgba(16, 34, 69, 0.04);
	transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-link-card:hover,
.company-info-link-card:focus-visible {
	background: var(--company-blue);
	border-color: var(--company-blue);
	box-shadow: 0 22px 42px rgba(0, 85, 164, 0.24);
	transform: translateY(-2px);
}

.company-info-link-card__icon {
	flex-shrink: 0;
	width: 84px;
	height: 84px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(245, 246, 248, 0.9);
	color: var(--company-blue);
	transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-link-card:hover .company-info-link-card__icon,
.company-info-link-card:focus-visible .company-info-link-card__icon {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.company-info-link-card__icon svg {
	width: 38px;
	height: 38px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.company-info-link-card__body h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	color: var(--company-ink);
	transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-link-card__body p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.9;
	color: rgba(10, 22, 40, 0.82);
	transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-link-card__body > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	color: var(--company-blue);
	transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-info-link-card__body > span::after {
	content: "\2192";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	flex: 0 0 auto;
}

.company-info-link-card__body > span > span {
	display: none;
}

.company-info-link-card:hover .company-info-link-card__body h3,
.company-info-link-card:hover .company-info-link-card__body p,
.company-info-link-card:hover .company-info-link-card__body span,
.company-info-link-card:focus-visible .company-info-link-card__body h3,
.company-info-link-card:focus-visible .company-info-link-card__body p,
.company-info-link-card:focus-visible .company-info-link-card__body span {
	color: #fff;
}

@media (max-width: 1200px) {
	.company-info-hero {
		padding-bottom: 48px;
	}

	.company-info-toc__item {
		padding: 22px 0 30px 68px;
		margin-bottom: 42px;
	}
}

@media (max-width: 960px) {
	.company-info-shell,
	.company-info-breadcrumb {
		width: min(100% - 40px, 960px);
	}

	.company-info-table__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.company-info-table__desc--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.company-info-table__term {
		padding: 20px 0 8px;
	}

	.company-info-table__desc {
		padding: 10px 0 20px;
	}

	.company-history__item {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 14px;
	}

	.company-info-links__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.company-info-shell,
	.company-info-breadcrumb {
		width: min(calc(100% - 80px), 100%);
	}

	.company-info-breadcrumb {
		padding: 16px 0 14px;
		font-size: 0.72rem;
	}

	.company-info-breadcrumb span {
		margin: 0 10px;
	}

	.company-info-page {
		padding-top: 38px;
	}

	.company-info-section,
	.company-info-links {
		padding: 72px 0;
	}

	.company-info-hero {
		row-gap: 24px;
		padding: 34px 0 44px;
	}

	.company-info-hero__title {
		font-size: 30px;
	}

	.company-info-hero__subtitle {
		margin-top: 12px;
		font-size: 13px;
	}

	.company-info-hero__visual-frame {
		height: clamp(220px, 58vw, 320px);
	}

	.company-info-toc__title {
		font-size: 20px;
	}

	.company-info-toc__item {
		padding: 18px 0 26px;
		margin-bottom: 28px;
	}

	.company-info-toc__item::before {
		display: none;
	}

	.company-history__year summary {
		padding: 15px 0;
		font-size: 16px;
	}

	.company-info-section__eyebrow {
		font-size: 28px;
		letter-spacing: 0.06em;
	}

	.company-info-section__heading h2 {
		font-size: 24px;
	}

	.company-info-section__subtitle {
		font-size: 13px;
	}

	.company-info-link-card {
		padding: 24px 20px;
		gap: 18px;
		align-items: flex-start;
	}

	.company-info-table__desc--phone,
	.company-info-table__desc--location {
		white-space: normal;
		word-break: break-word;
	}

	.company-info-table__desc--location,
	.company-info-table__desc--split,
	.company-history__item,
	.company-info-link-card {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.company-info-table__desc--location {
		align-items: flex-start;
		text-align: left;
	}

	.company-info-table__map {
		align-self: flex-end;
	}

	.company-history__content h3 {
		font-size: 15px !important;
	}

	.company-info-link-card__icon {
		width: 64px;
		height: 64px;
	}

	.company-info-link-card__body h3 {
		font-size: 20px !important;
	}
}
