.top-main section {
	padding-block: clamp(4rem, 8vw, 6.75rem);
}

.top-main {
	overflow-x: clip;
}

.top-main .top-hero,
.top-main .top-recruit,
.top-main .top-image-marquee,
.top-main .top-parallax {
	padding-block: 0;
}

.top-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100svh;
	height: 100vh;
	height: 100svh;
	overflow: visible;
	background: #0f172a;
	opacity: 0;
	transition: opacity 1.05s ease-out;
}

.top-hero__stage {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

body.top-hero-is-ready .top-hero {
	opacity: 1;
}

.top-hero__slider {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity 1.1s ease-out;
}

body.top-hero-is-ready .top-hero__slider {
	opacity: 1;
}

.top-hero__slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02) translate3d(0, 0, 0);
	transition: opacity 1.25s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
	animation: top-hero-kenburns 6s ease-out forwards paused;
}

.top-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	animation-play-state: running;
}

/*
 * メインビジュアル画像仕様（top-hero-0N-pc / top-hero-0N-sp）
 * PC（768px以上）: 1920 × 1080px（16:9）推奨 — Retina: 3840 × 2160px
 * SP（767px以下）: 828 × 1472px（9:16）推奨 — Retina: 1656 × 2944px
 * 形式: JPEG（品質80〜85%） / 重要部分は中央付近に配置（cover表示のため）
 */
.top-hero__slide--1 {
	background-image: url("../images/top/top-hero-01-pc.jpg");
}

.top-hero__slide--2 {
	background-image: url("../images/top/top-hero-02-pc.jpg");
}

.top-hero__slide--3 {
	background-image: url("../images/top/top-hero-03-pc.jpg");
}

.top-hero__slide--4 {
	background-image: url("../images/top/top-hero-04-pc.jpg");
}

.top-hero__panel {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.top-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(120deg, rgba(4, 17, 36, 0.68) 0%, rgba(3, 25, 58, 0.52) 48%, rgba(7, 24, 42, 0.68) 100%);
}

.top-hero__inner {
	position: absolute;
	top: auto;
	bottom: clamp(2rem, 5vw, 3.75rem);
	left: clamp(1rem, 2.5vw, 2rem);
	z-index: 3;
	width: min(calc(100% - 2 * clamp(1rem, 2.5vw, 2rem)), 1120px);
	margin: 0;
	padding: 0;
	transform: none;
	pointer-events: auto;
}

.top-hero__catchcopy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: clamp(0.45rem, 1.2vw, 0.75rem);
	width: 100%;
	max-width: none;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.35;
	text-align: left;
	color: #fff;
	opacity: 1;
	transform: none;
}

.top-hero__catchcopy-line {
	display: block;
	width: fit-content;
	max-width: 100%;
	opacity: 0;
	transform: translate3d(-2.5rem, 0, 0);
	transition: opacity 0.75s ease-out, transform 0.95s cubic-bezier(0.2, 1, 0.3, 1);
	transition-delay: var(--line-delay, 0ms);
}

.top-hero__catchcopy-line:nth-child(1) {
	--line-delay: 0ms;
	font-size: clamp(2rem, 5.8vw, 4.5rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.04em;
}

.top-hero__catchcopy-line:nth-child(2) {
	--line-delay: 180ms;
	font-size: clamp(1rem, 2.35vw, 1.65rem);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.06em;
}

.top-hero--catchcopy-in .top-hero__catchcopy-line {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.top-hero__catchcopy-br-sp {
	display: none;
}

.top-hero__scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: clamp(1.25rem, 3vw, 2rem);
	z-index: 2;
	display: flex;
	margin: 0;
	pointer-events: none;
	opacity: 0;
	transform: translate3d(-50%, 12px, 0);
	transition: opacity 0.85s ease-out, transform 0.85s cubic-bezier(0.2, 1, 0.3, 1);
}

.top-hero--news-in .top-hero__scroll-indicator {
	opacity: 1;
	transform: translate3d(-50%, 0, 0);
}

.top-hero__scroll-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.top-hero--news-in .top-hero__scroll-button {
	animation: top-hero-scroll-bounce 1.75s ease-in-out infinite;
}

@keyframes top-hero-scroll-bounce {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, 5px, 0);
	}
}

.top-hero__scroll-icon {
	display: block;
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
}

body.home .site-header {
	opacity: 0;
	transform: translate3d(0, -12px, 0);
	transition: opacity 0.72s ease-out 0.9s, transform 0.72s ease-out 0.9s;
}

body.home.top-hero-sequence-done .site-header {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.top-hero__mark,
.site-mark.top-hero__mark {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: 0;
	opacity: 0.4;
	pointer-events: none;
	transform: translate(-4%, 8%);
	will-change: opacity, visibility;
}

.top-hero__mark.top-hero__mark--hidden {
	opacity: 0 !important;
	visibility: hidden !important;
}

.top-hero__mark-image {
	display: block;
	width: clamp(299px, 52vw, 707px);
	height: auto;
}

.top-hero-news {
	position: absolute;
	right: clamp(1rem, 2.5vw, 2rem);
	bottom: clamp(1.25rem, 3vw, 2rem);
	z-index: 3;
	width: min(100% - 2rem, 360px);
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition: opacity 0.85s ease-out, transform 0.85s cubic-bezier(0.2, 1, 0.3, 1);
	pointer-events: none;
}

.top-hero--news-in .top-hero-news {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
}

.top-hero-news__link {
	display: block;
	padding: 1rem 1.1rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 32px rgba(4, 12, 28, 0.22);
	color: #fff;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.top-hero-news__link:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.38);
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 16px 36px rgba(4, 12, 28, 0.28);
}

.top-hero-news__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.55rem;
}

.top-hero-news__label {
	font-family: "Montserrat", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.top-hero-news__date {
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.82);
}

.top-hero-news__badge {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.55rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(0, 147, 147, 0.88);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.4;
}

.top-hero-news__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.55;
}

.top-hero-news__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.top-hero-news__more-icon {
	font-size: 1.1rem;
	line-height: 1;
	transition: transform 0.3s ease;
}

.top-hero-news__link:hover .top-hero-news__more-icon {
	transform: translateX(4px);
}

/* Hero contact button styles for future HTML additions. */
.top-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.top-hero__contact-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius-button);
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.top-hero__contact-button--tel {
	background: var(--color-accent);
	color: #fff;
}

.top-hero__contact-button--tel:hover {
	background: var(--color-accent-dark);
}

.top-hero__contact-button--line {
	background: var(--color-line);
	color: #fff;
}

.top-hero__contact-button--line:hover {
	background: #05af4c;
}

.top-concept {
	position: relative;
	overflow: hidden;
	background: var(--color-surface);
}

.top-concept::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	height: 33.333%;
	background: linear-gradient(to top, var(--color-surface) 0%, rgb(255 255 255 / 0) 100%);
	pointer-events: none;
}

.top-concept::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 4;
	width: min(93.6vw, 728px);
	height: min(75.4vw, 546px);
	background: url("../images/top/top-concept_bg.png") no-repeat left bottom / contain;
	pointer-events: none;
}

.top-company {
	background: var(--color-surface);
}

.top-image-marquee {
	position: relative;
	z-index: 3;
	overflow: hidden;
	background: var(--color-bg);
}

.top-services {
	position: relative;
	z-index: 3;
	background: var(--color-bg);
}

.top-image-marquee__viewport {
	overflow: hidden;
	padding-block: clamp(2rem, 4vw, 3rem);
}

.top-image-marquee__viewport:hover .top-image-marquee__track {
	animation-play-state: paused;
}

.top-image-marquee__track {
	display: flex;
	width: max-content;
	animation: top-image-marquee-scroll 48s linear infinite;
	will-change: transform;
}

.top-image-marquee__list {
	display: flex;
	flex-shrink: 0;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-image-marquee__item {
	flex-shrink: 0;
	width: clamp(286px, 36.4vw, 442px);
	aspect-ratio: 3 / 2;
	border-radius: var(--radius-image);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.top-image-marquee__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-image);
}

@keyframes top-image-marquee-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}
.top-concept__inner,
.top-company__inner {
	display: grid;
	gap: 1.6rem;
}

.top-concept__inner {
	position: relative;
	z-index: 5;
	align-items: start;
}

.top-concept__title {
	margin-bottom: 0;
}

.top-company__title {
	margin-bottom: 3rem;
}

.top-concept__catch {
	margin: 0 0 3rem;
	font-size: clamp(1.65rem, 4.2vw, 2.35rem);
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.05em;
	color: #111827;
}

.top-concept__text,
.top-company__text {
	margin: 0 0 3rem;
	color: var(--color-text-muted);
}

.top-concept__image,
.top-company__image {
	min-height: 220px;
	border-radius: var(--radius-image);
	background-color: #e2e8f0;
	background-size: cover;
	background-position: center;
	box-shadow: var(--shadow-soft);
}

.top-concept__image {
	background-image: url("../images/top/top-concept.jpg");
}

.top-concept__body {
	display: flex;
	flex-direction: column;
}

.top-company__image {
	background-image: url("../images/top/top-company.jpg");
}

.top-company__image-wrap {
	margin: 0;
}

.top-parallax {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	--top-parallax-height: clamp(240px, 38vw, 420px);
	--top-parallax-overflow: 25%;
	min-height: var(--top-parallax-height);
	margin-bottom: clamp(4rem, 8vw, 6.75rem);
	background-color: #334155;
}

.top-parallax__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	min-height: var(--top-parallax-height);
	background-color: #334155;
	background-image: url("../images/top/top-parallax.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.top-parallax__image {
	position: absolute;
	inset: calc(-1 * var(--top-parallax-overflow)) 0;
	background-color: #334155;
	background-image: url("../images/top/top-parallax.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.top-parallax__overlay {
	position: absolute;
	inset: 0;
	background: transparent;
}

.top-parallax__text-viewport {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: var(--top-parallax-height);
	overflow: hidden;
}

.top-parallax__text-viewport:hover .top-parallax__text-track {
	animation-play-state: paused;
}

.top-parallax__text-track {
	display: flex;
	align-items: flex-end;
	width: max-content;
	animation: top-parallax-text-scroll 72s linear infinite;
	will-change: transform;
}

.top-parallax__text {
	flex-shrink: 0;
	margin: 0;
	padding-inline: clamp(1.5rem, 4vw, 3rem);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2.85rem, 12vw, 4.75rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.5);
}

@keyframes top-parallax-text-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.top-concept__action,
.top-news__action,
.top-company__action {
	margin: 0;
}

.top-concept__button,
.top-news__button,
.top-company__button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 1rem;
	width: 100%;
	max-width: 22rem;
	min-height: 52px;
	padding: 0.85rem 2.75rem;
	border-radius: var(--radius-button);
	background: var(--color-primary);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

/* .top-concept__button {
	max-width: 28rem;
} */

.top-concept__button:hover,
.top-concept__button:focus-visible,
.top-news__button:hover,
.top-news__button:focus-visible,
.top-company__button:hover,
.top-company__button:focus-visible {
	background: var(--color-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.top-concept__button:focus-visible,
.top-news__button:focus-visible,
.top-company__button:focus-visible {
	outline: 3px solid var(--color-primary);
	outline-offset: 3px;
}

.top-concept__button-icon,
.top-news__button-icon,
.top-company__button-icon {
	position: absolute;
	top: 50%;
	right: 1.25rem;
	flex-shrink: 0;
	font-size: 1.35rem;
	line-height: 1;
	transform: translateY(-50%);
}

.top-services__title {
	margin-bottom: clamp(4.5rem, 12vw, 6.6rem);
}

.top-news__title {
	margin-bottom: 3.6rem;
}

.top-services__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.top-services__item {
	margin: 0;
}

.top-services__banner-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(300px, 50vw, 440px);
	padding: clamp(2rem, 5vw, 3rem) 1.5rem;
	overflow: hidden;
	color: #fff;
	text-align: center;
	transition: color 0.2s ease;
}

.top-services__banner-link:hover,
.top-services__banner-link:focus-visible {
	color: #fff;
}

.top-services__banner-link:focus-visible {
	outline: 3px solid #fff;
	outline-offset: -6px;
}

.top-services__banner-bg,
.top-services__banner-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.top-services__banner-bg {
	z-index: 0;
	background-color: #334155;
	background-size: cover;
	background-position: center;
	transition: transform 0.45s ease;
}

.top-services__banner--business .top-services__banner-bg {
	background-image: url("../images/top/top-service-business.jpg");
}

.top-services__banner--home .top-services__banner-bg {
	background-image: url("../images/top/top-service-home.jpg");
}

.top-services__banner-overlay {
	z-index: 1;
}

.top-services__banner--business .top-services__banner-overlay {
	background: rgba(0, 147, 147, 0.72);
}

.top-services__banner--home .top-services__banner-overlay {
	background: rgba(0, 117, 117, 0.72);
}

.top-services__banner-link:hover .top-services__banner-bg,
.top-services__banner-link:focus-visible .top-services__banner-bg {
	transform: scale(1.04);
}

.top-services__banner-link:hover .top-services__banner-overlay,
.top-services__banner-link:focus-visible .top-services__banner-overlay {
	background: rgba(15, 23, 42, 0.55);
}

.top-services__banner-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(1.4rem, 3vw, 2rem);
	max-width: 22rem;
}

.top-services__banner-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
}

.top-services__banner-title {
	margin: 0;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: clamp(1.35rem, 3.6vw, 1.85rem);
	font-weight: 700;
	line-height: 1.35;
	color: inherit;
	letter-spacing: 0.04em;
}

.top-services__banner-rule {
	width: 2.75rem;
	height: 1px;
	margin: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.9);
}

.top-services__banner-lead {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(0.78rem, 2vw, 0.92rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.95);
}

.top-services__banner-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 1rem;
	width: 100%;
	min-height: 52px;
	padding: 0.85rem 2.75rem;
	border: 0;
	border-radius: var(--radius-button);
	background: #fff;
	color: var(--color-primary);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-services__banner-cta-icon {
	position: absolute;
	top: 50%;
	right: 1.25rem;
	flex-shrink: 0;
	font-size: 1.35rem;
	line-height: 1;
	color: var(--color-primary);
	transform: translateY(-50%);
}

.top-services__banner-link:hover .top-services__banner-cta,
.top-services__banner-link:focus-visible .top-services__banner-cta {
	background: #e6f7f7;
	color: var(--color-primary-dark);
	transform: translateY(-1px);
}

.top-services__banner-link:hover .top-services__banner-cta-icon,
.top-services__banner-link:focus-visible .top-services__banner-cta-icon {
	color: var(--color-primary-dark);
}

.top-news__list {
	display: grid;
	gap: 0.8rem;
	margin-bottom: 3.6rem;
}

.top-news__article {
	display: grid;
	gap: 0.4rem;
	padding: 1rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.top-news__date {
	font-family: "Montserrat", sans-serif;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--color-primary);
}

.top-news__item-title {
	margin: 0;
	font-size: 1rem;
}

.top-news__item-link:hover {
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.top-recruit__layout {
	display: grid;
	grid-template-columns: 1fr;
}

.top-recruit__figure {
	margin: 0;
	min-height: clamp(200px, 52vw, 320px);
}

.top-recruit__image {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	border-radius: var(--radius-image);
}

.top-recruit__panel {
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #33b8b8 0%, #009393 55%, #007575 100%);
}

.top-recruit__content {
	width: 100%;
	padding: clamp(2rem, 6vw, 3.25rem) clamp(1.35rem, 5vw, 2.5rem);
	color: #fff;
}

.top-recruit__label {
	margin: 0 0 2.55rem;
	font-family: "Cormorant Garamond", "Times New Roman", serif;
	font-size: clamp(2.6rem, 11vw, 3.75rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
}

.top-recruit__catch {
	margin: 0 0 3.45rem;
	font-size: clamp(1.15rem, 4.2vw, 1.55rem);
	font-weight: 700;
	line-height: 1.55;
	color: #fff;
}

.top-recruit__message {
	margin: 0 0 clamp(4.8rem, 12vw, 6.6rem);
	font-size: clamp(0.88rem, 2.6vw, 1rem);
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.96);
}

.top-recruit__action {
	margin: 0;
}

.top-recruit__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 1rem;
	width: 100%;
	min-height: 52px;
	padding: 0.85rem 2.75rem;
	border-radius: var(--radius-button);
	background: #fff;
	color: var(--color-primary);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-recruit__cta:hover,
.top-recruit__cta:focus-visible {
	background: #e6f7f7;
	color: var(--color-primary-dark);
	transform: translateY(-1px);
}

.top-recruit__cta:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.top-recruit__cta-icon {
	position: absolute;
	top: 50%;
	right: 1.25rem;
	flex-shrink: 0;
	font-size: 1.35rem;
	line-height: 1;
	color: var(--color-primary);
	transform: translateY(-50%);
}
@keyframes top-hero-kenburns {
	from {
		transform: scale(1.02) translate3d(0, 0, 0);
	}

	to {
		transform: scale(1.3) translate3d(-1.1%, -1.6%, 0);
	}
}
