﻿:root {
	--color-blue: #1167c4;
	--color-blue-dark: #0c3267;
	--color-sky: #b8def5;
	--color-sky-soft: #e9f7ff;
	--color-yellow: #ffe98b;
	--color-pink: #ed58ae;
	--color-navy: #202a36;
	--color-text: #20242b;
	--color-muted: #6e7a88;
	--color-line: #d8e3ec;
	--color-white: #fff;
	--font-sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--container: 1180px;
	--radius-lg: 36px;
	--radius-md: 22px;
	--shadow: 0 18px 44px rgba(18, 64, 119, .16);
	--site-header-height: 98px;
	--hero-loader-bg: url("https://typesinc.com/wp-content/uploads/2026/06/08_FV3__01_FV-%E3%81%AE%E3%82%B3%E3%83%94%E3%83%BC-2__02_%E7%A9%BA__x2946_y913_w1366_h839.png");
	--grid-bg:
		linear-gradient(var(--color-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
}

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

html {
	max-width: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	position: relative;
	max-width: 100%;
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.8;
	background: var(--color-white);
	overflow-x: hidden;
}

@supports (overflow-x: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

body.is-menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.section {
	position: relative;
	padding: clamp(72px, 9vw, 128px) 24px;
}

.section--grid {
	background-image: var(--grid-bg);
	background-size: 28px 28px;
}

.section__inner {
	width: min(100%, var(--container));
	margin: 0 auto;
}

.section__inner--narrow {
	width: min(100%, 920px);
}

.section-title {
	margin: 0 0 42px;
	font-size: clamp(32px, 4vw, 58px);
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	letter-spacing: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 240px;
	min-height: 52px;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1.3;
	transition: transform .25s ease, background-color .25s ease;
}

.button span {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 10px;
}

.button--dark {
	color: var(--color-white);
	background: #1f252b;
}

.button--dark span {
	position: relative;
	font-size: 0;
}

.button--dark span::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid var(--color-white);
}

.button--primary {
	color: var(--color-white);
	background: var(--color-blue);
	border: 0;
	cursor: pointer;
}

.button:hover {
	transform: translateY(-2px);
}

.loader {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: transparent;
	animation: loader-safety-hide .7s 8s ease forwards;
	transition: opacity .7s ease, visibility .7s ease;
}

.loader::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(37, 96, 155, .08), rgba(255, 255, 255, .12)),
		var(--hero-loader-bg) center center / cover no-repeat;
	opacity: 1;
	transition: opacity 1.05s ease;
}

.loader.is-revealing::before {
	opacity: 0;
}

.loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loader__stage {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: calc(var(--hero-mark-size) * .68);
	min-height: clamp(180px, 24vw, 300px);
	transform: translateX(clamp(24px, 4vw, 72px));
}

.loader__copy {
	position: relative;
	z-index: 2;
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0;
	color: var(--color-white);
	font-size: clamp(38px, 4.2vw, 68px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-align: left;
	text-shadow: 0 12px 34px rgba(18, 64, 119, .24);
	transform-origin: center;
}

.loader__line {
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0;
	white-space: nowrap;
}

.loader.is-moving .loader__copy {
	transform:
		translate3d(var(--loader-target-x, 0), var(--loader-target-y, 0), 0)
		rotate(var(--loader-target-rotate, -4deg))
		scale(var(--loader-target-scale, 1));
	transition:
		transform 1.05s cubic-bezier(.2, .88, .18, 1),
		opacity .7s ease;
}

.loader.is-copy-handoff .loader__copy {
	opacity: 0;
	transition: opacity .36s ease;
}

.loading-logo {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: calc(50% - clamp(130px, 15vw, 210px));
	width: clamp(118px, 16vw, 210px);
	height: auto;
	opacity: 0;
	transform: translate(-50%, 18px) scale(.96);
	filter: blur(8px);
}

.loading-logo img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 28px rgba(18, 64, 119, .14));
}

.loader.is-logo-visible .loading-logo {
	opacity: 1;
	transform: translate(-50%, 0) scale(1);
	filter: blur(0);
	transition:
		opacity .8s ease,
		transform .8s cubic-bezier(.2, .88, .2, 1),
		filter .8s ease;
}

.loader.is-logo-out .loading-logo {
	opacity: 0;
	transform: translate(-50%, -10px) scale(.98);
	filter: blur(4px);
	transition:
		opacity .45s ease,
		transform .45s ease,
		filter .45s ease;
}

.loader__char {
	display: inline-block;
	min-width: 0;
	opacity: 0;
	transform: translate3d(var(--loader-x, 0), var(--loader-y, 0), 0) rotate(var(--loader-r, 0deg)) scale(.96);
	will-change: transform, opacity;
}

.loader.is-assembled .loader__char {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	transition:
		opacity 1.15s cubic-bezier(.2, .9, .2, 1),
		transform 1.45s cubic-bezier(.16, .86, .18, 1);
	transition-delay: var(--loader-delay, 0ms);
}

.loader.is-bouncing .loader__char--playful {
	animation: loader-playful-bounce .48s cubic-bezier(.2, .82, .28, 1.18);
	animation-delay: var(--loader-bounce-delay, 0ms);
}

body.is-loading-active:not(.is-loaded) .hero__copy {
	opacity: 0;
}

body.is-loaded .hero__copy {
	opacity: 1;
	transition: opacity .38s ease;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background: transparent;
	pointer-events: none;
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px clamp(18px, 4vw, 44px);
}

.site-header__logo {
	color: var(--color-white);
	font-size: 22px;
	font-weight: 900;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .12);
	pointer-events: auto;
}

.site-header__logo img,
.site-header__logo .custom-logo {
	display: block;
	width: auto;
	max-width: 160px;
	max-height: 48px;
	object-fit: contain;
}

.site-header__logo-placeholder {
	width: 1px;
	height: 1px;
}

.site-header__actions {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	pointer-events: auto;
}

.site-header__contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 7px 22px;
	color: var(--color-white);
	background: #1f252b;
	border-radius: 999px;
	font-size: 17px;
	font-weight: 800;
}

.site-header__contact span {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid currentColor;
	border-radius: 50%;
	line-height: 1;
}

.site-header__contact span::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid currentColor;
}

.menu-toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 54px;
	height: 54px;
	padding: 0;
	background: rgba(255, 255, 255, .1);
	border: 3px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 3px;
	background: var(--color-white);
	border-radius: 2px;
}

.menu-toggle span + span {
	margin-top: 0;
}

.site-header.is-past-hero .menu-toggle,
body.is-past-hero .menu-toggle {
	background: rgba(255, 255, 255, .92);
	border-color: #1f252b;
}

.site-header.is-past-hero .menu-toggle span,
body.is-past-hero .menu-toggle span {
	background: #1f252b;
}

body:not(.home) .site-header__logo {
	color: #1f252b;
	text-shadow: none;
}

body:not(.home) .site-header__logo img,
body:not(.home) .site-header__logo .custom-logo {
	filter: none;
}

body:not(.home) .menu-toggle {
	background: rgba(255, 255, 255, .92);
	border-color: #1f252b;
}

body:not(.home) .menu-toggle span {
	background: #1f252b;
}

.overlay-menu {
	position: fixed;
	inset: 0;
	z-index: 900;
	display: grid;
	place-items: center;
	padding: 56px 24px;
	color: var(--color-white);
	background: rgba(32, 42, 54, .98);
	transform: scale(.04);
	transform-origin: calc(100% - 52px) 42px;
	opacity: 0;
	visibility: hidden;
	border-bottom-left-radius: 80px;
	transition: transform .45s cubic-bezier(.19, 1, .22, 1), opacity .3s ease, visibility .3s ease;
}

.overlay-menu.is-open {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.overlay-menu__close {
	position: absolute;
	top: 24px;
	right: 26px;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	color: var(--color-white);
	background: transparent;
	border: 2px solid rgba(255, 255, 255, .72);
	border-radius: 50%;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
}

.overlay-menu__close span,
.overlay-menu__close span::before {
	content: "";
	position: absolute;
	width: 30px;
	height: 3px;
	background: currentColor;
	border-radius: 999px;
}

.overlay-menu__close span {
	transform: rotate(45deg);
}

.overlay-menu__close span::before {
	top: 0;
	left: 0;
	transform: rotate(90deg);
}

.overlay-menu__butterfly {
	position: absolute;
	left: 18vw;
	bottom: 16vh;
	color: #dff3ff;
	font-size: 64px;
	transform: rotate(-18deg);
}

.overlay-menu__nav {
	position: relative;
	width: min(100%, 520px);
}

.overlay-menu__list {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 900;
}

.overlay-menu__list a {
	display: inline-flex;
	padding: 2px 0;
}

.overlay-menu__list ul {
	display: grid;
	gap: 4px;
	margin: 8px 0 0 104px;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

.overlay-menu__list ul a::before {
	content: "";
	width: 28px;
	height: 2px;
	margin: .85em 12px 0 0;
	background: currentColor;
}

.hero {
	position: sticky;
	top: 0;
	z-index: 0;
	--hero-mark-size: clamp(500px, 46vw, 760px);
	--hero-mark-left: clamp(20px, 7vw, 132px);
	--hero-mark-top: clamp(54px, 8vh, 92px);
	height: 100vh;
	min-height: 100svh;
	padding: 96px 24px 0;
	overflow: hidden;
	background: linear-gradient(180deg, #8bc8ee 0%, #b8def5 100%);
}

.hero ~ .section {
	opacity: 1;
	transform: none;
	z-index: 5;
}

.hero ~ .section.is-visible {
	opacity: 1;
	transform: none;
}

.hero ~ .section > .section__inner {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

.hero ~ .section.is-visible > .section__inner {
	opacity: 1;
	transform: translateY(0);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: transparent;
	opacity: 1;
	pointer-events: none;
}

.hero__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #9fcceb;
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero__slide {
	position: absolute;
	inset: 0;
	background-image: var(--hero-slide-pc);
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transform: none;
	transition: none;
	will-change: opacity;
}

body:not(.is-loading-complete) .hero__slide:first-child {
	opacity: 1;
}

.hero__slide.is-active {
	opacity: 1;
	z-index: 1;
	transform: none;
}

.hero__slide.is-leaving {
	opacity: 0;
	z-index: 2;
	transition: opacity .9s ease;
}

.hero__inner {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(420px, .95fr);
	align-items: end;
	width: 100%;
	min-height: calc(100svh - 96px);
	margin: 0 auto;
}

.hero__copy {
	position: absolute;
	top: calc(var(--hero-mark-top) + var(--hero-mark-size) * .5);
	left: calc(var(--hero-mark-left) + var(--hero-mark-size) * .535);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(var(--hero-mark-size) * .68);
	padding: 0;
	text-align: center;
	transform: translate(-50%, -50%) rotate(-4deg);
	transform-origin: center;
}

.hero__company {
	order: 2;
	margin: 8px 0 0;
	color: var(--color-white);
	font-size: clamp(24px, 2vw, 36px);
	font-weight: 900;
	text-shadow: 0 2px 10px rgba(16, 78, 138, .28);
}

.hero__copy-image {
	display: block;
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(19, 91, 160, .28));
}

.hero__deco {
	position: absolute;
	z-index: 4;
	display: block;
	pointer-events: none;
	filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(35, 77, 118, .16));
}

.hero__deco--crown {
	top: -44%;
	left: -10%;
	width: clamp(34px, 3.6vw, 56px);
	transform: rotate(-19deg);
	animation: hero-crown-float 3.8s ease-in-out infinite;
}

.hero__deco--under {
	right: 9%;
	bottom: -96%;
	width: clamp(32px, 3.4vw, 52px);
	transform: rotate(4deg);
	animation: hero-sparkle-float 3.2s ease-in-out infinite;
}

.hero__title {
	order: 1;
	display: grid;
	gap: 4px;
	justify-items: start;
	width: max-content;
	max-width: 100%;
	margin: 0;
	color: var(--color-white);
	font-size: clamp(38px, 4.2vw, 68px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-align: left;
	text-shadow: 0 4px 18px rgba(19, 91, 160, .28);
}

.hero__loader-target {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
	display: grid;
	gap: 4px;
	justify-items: start;
	width: max-content;
	max-width: 100%;
	margin: 0;
	color: transparent;
	font-size: clamp(38px, 4.2vw, 68px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-align: left;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%);
}

.hero__loader-target-line {
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0;
	white-space: nowrap;
}

.hero__line {
	position: relative;
	display: inline-block;
	width: max-content;
	max-width: 100%;
	overflow: visible;
}

.hero__line span {
	display: inline-block;
	clip-path: none;
	animation: none;
}

.hero__line:nth-child(2) span {
	animation-delay: 1.45s;
}

.hero__circle {
	position: absolute;
	top: var(--hero-mark-top);
	left: var(--hero-mark-left);
	z-index: 2;
	width: var(--hero-mark-size);
	height: var(--hero-mark-size);
	color: rgba(255, 255, 255, .42);
}

.hero__circle svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
	font-size: 35px;
	font-weight: 900;
	letter-spacing: 0;
	animation: rotate-cw 30s linear infinite;
}

.hero__rocket {
	position: absolute;
	inset: -8%;
	display: block;
	width: auto;
	height: auto;
	color: var(--color-white);
	font-size: clamp(34px, 4vw, 62px);
	transform-origin: center;
	animation: rocket-orbit 18s linear infinite;
}

.hero__rocket-orbiter {
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(126px, 13vw, 204px);
	height: clamp(126px, 13vw, 204px);
	transform: translate(-50%, -50%) rotate(270deg);
	transform-origin: center;
}

.hero__rocket-main {
	position: absolute;
	display: block;
	object-fit: contain;
	filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(35, 77, 118, .18));
}

.hero__rocket-main {
	top: 50%;
	left: 50%;
	width: 84%;
	height: 84%;
	transform: translate(-50%, -50%);
}

.message {
	position: relative;
	z-index: 5;
	margin-top: 0;
	padding-top: clamp(104px, 9vw, 148px);
	padding-bottom: clamp(92px, 10vw, 150px);
	overflow: hidden;
	text-align: center;
	background-color: var(--color-white);
}

.message .section__inner {
	position: relative;
	z-index: 1;
}

.message.js-reveal {
	opacity: 1;
	transform: none;
	transition: none;
}

.message.js-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.message__title {
	width: fit-content;
	margin: 0 auto 34px;
	font-size: clamp(30px, 3.5vw, 52px);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
	text-align: left;
}

.message__title span {
	display: block;
}

.message__title mark {
	position: relative;
	display: inline-block;
	margin-right: .08em;
	padding: 0 .1em .02em;
	color: var(--color-white);
	background: transparent;
	isolation: isolate;
}

.message__title mark::before {
	content: "";
	position: absolute;
	inset: .06em 0 .02em;
	z-index: -1;
	background: var(--color-blue);
	transform: scaleX(0);
	transform-origin: left center;
}

.message__title .message__suffix {
	display: inline;
}

.message.is-visible .message__title mark::before {
	transform: scaleX(1);
	transition: transform .72s cubic-bezier(.18, .82, .22, 1);
	transition-delay: .18s;
}

.message__text {
	width: min(100%, 700px);
	margin: 0 auto 42px;
	font-size: clamp(13px, 1.05vw, 16px);
	font-weight: 700;
	line-height: 2;
}

.message__hands {
	position: absolute;
	top: clamp(8px, 1.5vw, 22px);
	left: 50%;
	z-index: 0;
	width: max(154vw, 1520px);
	max-width: none;
	height: calc(100% - clamp(18px, 3vw, 42px));
	object-fit: contain;
	transform: translateX(-50%);
	pointer-events: none;
}

.staff {
	background: var(--color-white);
}

.staff__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #d7dee7;
	border-left: 1px solid #d7dee7;
}

.staff-card {
	position: relative;
	min-width: 0;
	padding: 18px 14px 20px;
	text-align: center;
	border-right: 1px solid #d7dee7;
	border-bottom: 1px solid #d7dee7;
	background: var(--color-white);
	outline: none;
	overflow: visible;
}

.staff-card:hover,
.staff-card:focus,
.staff-card:focus-visible,
.staff-card:focus-within {
	z-index: 5;
}

.staff-card__image {
	position: relative;
	width: min(100%, 170px);
	aspect-ratio: 3 / 4;
	margin: 0 auto 14px;
	overflow: visible;
	border-radius: 0;
	background: transparent;
}

.staff-card__photo {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-sky-soft), #d5ecff);
}

.staff-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(var(--staff-photo-zoom, 1.22));
	transition: transform .35s ease, filter .35s ease;
}

.staff-card__image--circle {
	width: min(100%, 178px);
	aspect-ratio: 1;
}

.staff-card__image--circle .staff-card__photo {
	border-radius: 50%;
}

.staff-card__image--tilt-left .staff-card__photo,
.staff-card__image--tilt-right .staff-card__photo {
	border-radius: 4px;
}

.staff-card__image--tilt-left .staff-card__photo {
	transform: rotate(-3deg);
}

.staff-card__image--tilt-right .staff-card__photo {
	transform: rotate(3deg);
}

.staff-card__image--arch .staff-card__photo {
	border-radius: 999px 999px 30px 30px;
}

.staff-card__comment {
	position: absolute;
	top: -58px;
	right: -104px;
	z-index: 4;
	display: grid;
	place-items: center;
	width: clamp(214px, 17vw, 286px);
	min-height: clamp(138px, 11vw, 178px);
	padding: 38px 38px 34px;
	color: var(--color-text);
	font-size: clamp(13px, 1.05vw, 17px);
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
	overflow-wrap: anywhere;
	background: var(--staff-balloon-image) center / contain no-repeat;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	opacity: 0;
	pointer-events: none;
	transform: translate(12px, -10px) scale(.96);
	transition: opacity .28s ease, transform .28s ease;
}

.staff-card__comment::before {
	content: none;
}

.staff-card__comment--fluffy {
	top: -64px;
	right: -108px;
	padding: 36px 42px 46px;
}

.staff-card__comment--jagged {
	top: -56px;
	right: -102px;
	padding: 44px 42px 34px;
}

.staff-card__comment--kakukaku {
	top: -58px;
	right: -104px;
	padding: 36px 42px 42px;
}

.staff-card__comment--powapowa {
	top: -62px;
	right: -106px;
	padding: 26px 42px 56px;
}

.staff-card__comment--normal {
	padding: 20px 42px 66px;
}

.staff-card:hover .staff-card__photo img,
.staff-card:focus .staff-card__photo img,
.staff-card:focus-visible .staff-card__photo img,
.staff-card:focus-within .staff-card__photo img {
	transform: scale(var(--staff-photo-hover-zoom, 1.3));
	filter: saturate(.9) brightness(.82);
}

.staff-card:hover .staff-card__comment,
.staff-card:focus .staff-card__comment,
.staff-card:focus-visible .staff-card__comment,
.staff-card:focus-within .staff-card__comment {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.staff-card__role {
	margin: 0 0 2px;
	font-size: 12px;
	font-weight: 800;
}

.staff-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.4;
}

.staff-card:focus-visible {
	box-shadow: inset 0 0 0 3px rgba(17, 103, 196, .26);
}

.business {
	position: relative;
	z-index: 5;
	isolation: isolate;
	overflow: visible;
	padding-bottom: 300px;
	background-color: var(--color-white);
	background-image: none;
}

.business::before {
	content: "";
	position: absolute;
	top: -120px;
	left: 50%;
	z-index: 1;
	width: min(2600px, 230vw);
	height: 980px;
	background: var(--color-yellow);
	border-radius: 50%;
	transform: translateX(-50%);
}

.business::after {
	content: "";
	position: absolute;
	inset: clamp(260px, 21vw, 390px) 0 0;
	z-index: 0;
	background-image: var(--grid-bg);
	background-size: 28px 28px;
	pointer-events: none;
}

.business .section__inner {
	position: relative;
	z-index: 2;
}

.business__grid {
	display: flex;
	gap: 18px;
	margin-inline: calc((100vw - min(100vw - 48px, 1180px)) / -2);
	padding: 26px calc((100vw - min(100vw - 48px, 1180px)) / 2) 22px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-padding-inline: calc((100vw - min(100vw - 48px, 1180px)) / 2);
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.business__grid::-webkit-scrollbar {
	display: none;
}

.business-card {
	position: relative;
	flex: 0 0 clamp(230px, 22vw, 300px);
	min-height: 310px;
	overflow: hidden;
	border-radius: 24px;
	background: var(--color-navy);
	box-shadow: var(--shadow);
	color: var(--color-white);
	text-decoration: none;
	scroll-snap-align: start;
	transition: transform .25s ease;
}

.business-card:hover {
	transform: scale(1.035);
}

.business-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 24px;
	color: var(--color-white);
	background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.16) 52%, rgba(0,0,0,.46));
}

.business-card__overlay p,
.business-card__overlay h3,
.business-card__overlay span {
	margin: 0;
}

.business-card__overlay p {
	font-size: 13px;
	font-weight: 800;
}

.business-card__overlay h3 {
	font-size: clamp(24px, 2.6vw, 36px);
	font-weight: 900;
	line-height: 1.2;
}

.business-card__overlay span {
	margin-top: 12px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.business-card__overlay i {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(255,255,255,.76);
	border-radius: 50%;
	font-style: normal;
	transition: background-color .25s ease, color .25s ease;
}

.business-card__overlay i::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid var(--color-white);
}

.business-card:hover i {
	background: rgba(255, 255, 255, .2);
}

.news {
	position: relative;
	z-index: 6;
	margin-top: -220px;
	padding-top: 72px;
	padding-bottom: clamp(72px, 8vw, 126px);
	background-color: var(--color-white);
	background-image: var(--grid-bg);
	background-size: 28px 28px;
}

.news.section--grid {
	background-image: var(--grid-bg);
	background-size: 28px 28px;
}

.news::before {
	content: none;
}

.news .section__inner {
	position: relative;
	z-index: 1;
}

.news__layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 38px;
	padding: 34px;
	background: var(--color-white);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.news__marquee {
	grid-column: 1 / -1;
	width: 100%;
	margin: -18px 0 -8px;
	overflow: hidden;
}

.news__marquee-track {
	display: flex;
	width: max-content;
	animation: news-marquee 18s linear infinite;
	will-change: transform;
}

.news__marquee-track span {
	flex: 0 0 auto;
	padding-right: .45em;
	color: #bde3ff;
	font-size: clamp(28px, 4.4vw, 56px);
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.news__heading h2 {
	margin: 0 0 18px;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 900;
	line-height: 1.2;
}

.news__filters {
	display: grid;
	gap: 10px;
	width: 138px;
}

.news__filters button {
	min-height: 34px;
	padding: 4px 16px;
	color: var(--color-blue);
	background: var(--color-white);
	border: 3px solid var(--color-blue);
	border-radius: 999px;
	font-weight: 900;
	cursor: pointer;
}

.news__filters button.is-active,
.news__filters button:hover {
	color: var(--color-white);
	background: var(--color-blue);
}

.news__list {
	display: grid;
	gap: 14px;
}

.news-card__link {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 18px;
	align-items: center;
	padding: 0;
}

.news-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--color-sky), var(--color-yellow));
}

.news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--color-white);
	font-weight: 900;
}

.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--color-blue);
	font-size: 12px;
	font-weight: 900;
}

.news-card__meta span {
	padding: 1px 10px;
	border: 1px solid var(--color-blue);
	border-radius: 999px;
}

.news-card h3 {
	margin: 6px 0 0;
	font-size: 15px;
	line-height: 1.55;
}

.news__empty {
	margin: 0;
	font-weight: 800;
}

.clients {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-top: 0;
	padding-top: clamp(70px, 7vw, 96px);
	text-align: center;
	background-color: var(--color-white);
	background-image: var(--grid-bg);
	background-size: 28px 28px;
}

.clients::before {
	content: none;
}

.clients .section__inner {
	position: relative;
	z-index: 1;
}

.clients__marquee {
	width: 100%;
	min-height: 210px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.clients__track {
	--clients-marquee-start: 0px;
	--clients-marquee-end: calc(-50% + var(--clients-marquee-start));
	display: flex;
	align-items: center;
	width: max-content;
	animation: clients-marquee 24s linear infinite;
	will-change: transform;
}

.clients__track--row2 {
	--clients-marquee-start: calc(clamp(160px, 18vw, 240px) * -.5);
	animation-duration: 24s;
	animation-delay: -12s;
}

.clients__item {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	min-width: clamp(160px, 18vw, 240px);
	padding: 22px 34px;
	text-decoration: none;
}

.clients__item img {
	display: block;
	max-width: 170px;
	max-height: 86px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.cta {
	padding: 0;
	background: var(--color-white);
	overflow: hidden;
}

.cta__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(26px, 4.4vw, 54px);
	width: min(100%, 1040px);
	min-height: 184px;
	margin: 0 0 0 auto;
	padding: 34px clamp(38px, 7vw, 112px);
	color: var(--color-white);
	background: var(--color-blue);
	border-radius: 128px 0 0 128px;
	font-size: clamp(30px, 3.8vw, 54px);
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.cta__button i {
	flex: 0 0 auto;
	width: 62px;
	height: 62px;
	display: block;
	font-style: normal;
	line-height: 0;
}

.cta__button i img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cta.js-reveal,
.cta.js-reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: none;
}

.site-footer {
	position: relative;
	padding: 54px 24px 64px;
	color: var(--color-white);
	background: var(--color-navy);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	width: min(100%, 1040px);
	margin: 0 auto;
}

.site-footer__company h2 {
	margin: 0 0 24px;
	font-size: 24px;
}

.site-footer dl {
	display: grid;
	gap: 4px;
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
}

.site-footer dt {
	font-weight: 900;
}

.site-footer dd {
	margin: 0 0 10px;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 12px 34px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 900;
}

.site-footer__list ul {
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}

.site-footer__butterfly {
	position: absolute;
	right: 10vw;
	top: 38px;
	color: #dff3ff;
	font-size: 64px;
	transform: rotate(16deg);
}

.lower-hero {
	padding: 0 24px 80px;
	background-color: var(--color-sky-soft);
}

.lower-hero .section__inner {
	padding-top: calc(var(--site-header-height) + 52px);
}

.lower-hero h1,
.single h1 {
	margin: 0;
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 900;
	line-height: 1.25;
}

.entry {
	background: var(--color-white);
}

.entry img {
	border-radius: 18px;
}

.archive-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.archive-list .news-card__link {
	display: block;
	padding: 18px;
	background: var(--color-white);
	border-radius: 22px;
	box-shadow: var(--shadow);
}

.archive-list .news-card__thumb {
	margin-bottom: 14px;
}

.single {
	padding: 0 24px 100px;
}

.single > .section__inner {
	padding-top: calc(var(--site-header-height) + 52px);
}

.single__meta {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	color: var(--color-blue);
	font-weight: 900;
}

.single__thumb {
	margin: 34px 0;
	overflow: hidden;
	border-radius: 24px;
}

.message-page {
	padding: 0 0 clamp(64px, 8vw, 92px);
	background-color: var(--color-white);
}

.section__inner--message {
	width: min(100%, 800px);
	padding-top: calc(var(--site-header-height) + clamp(42px, 5vw, 64px));
}

.message-page__title {
	margin: 0 0 40px;
	color: var(--color-blue);
	font-size: clamp(32px, 3.4vw, 42px);
	font-weight: 900;
	line-height: 1.28;
	text-align: center;
}

.message-page__lead {
	position: relative;
	display: grid;
	grid-template-columns: 192px minmax(0, 1fr);
	gap: 38px;
	align-items: start;
	margin-bottom: clamp(72px, 8vw, 98px);
}

.message-page__profile {
	position: relative;
	z-index: 2;
	padding-top: 6px;
}

.message-page__role,
.message-page__name {
	margin: 0;
	font-weight: 900;
}

.message-page__role {
	font-size: 13px;
}

.message-page__name {
	font-size: 25px;
}

.message-page__body {
	position: relative;
	z-index: 2;
	font-size: clamp(11px, .86vw, 13px);
}

.message-page__body p {
	margin: 0 0 1.25em;
	font-weight: 700;
	line-height: 1.95;
}

.message-page__photo {
	width: 192px;
	margin: 32px 0 0;
	overflow: hidden;
	border-radius: 50px 50px 9px 9px;
}

.message-page__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4.65;
	object-fit: cover;
}

.message-page__deco {
	position: absolute;
	z-index: 1;
	left: -22px;
	bottom: -48px;
	width: max-content;
	margin: 0;
	color: rgba(17, 103, 196, .24);
	font-size: clamp(40px, 5.8vw, 70px);
	font-weight: 900;
	line-height: 1;
	transform: rotate(-7deg);
	transform-origin: left center;
	pointer-events: none;
}

.philosophy {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 46px;
	align-items: center;
}

.philosophy__diagram {
	position: relative;
	width: 260px;
	height: 220px;
}

.philosophy__circle {
	position: absolute;
	display: grid;
	place-items: center;
	width: 112px;
	height: 112px;
	color: var(--color-white);
	border-radius: 50%;
	font-weight: 900;
	font-size: 14px;
	line-height: 1.3;
	text-align: center;
}

.philosophy__circle--yellow {
	top: 0;
	left: 74px;
	color: var(--color-text);
	background: #f7d332;
}

.philosophy__circle--blue {
	left: 24px;
	bottom: 24px;
	background: var(--color-blue);
}

.philosophy__circle--pink {
	right: 24px;
	bottom: 24px;
	background: var(--color-pink);
}

.philosophy__text h2 {
	margin: 0 0 4px;
	color: var(--color-blue);
	font-size: 18px;
}

.philosophy__text .philosophy__heading--yellow {
	color: #d9b600;
}

.philosophy__text .philosophy__heading--blue {
	color: var(--color-blue);
}

.philosophy__text .philosophy__heading--pink {
	color: var(--color-pink);
}

.philosophy__text p {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.75;
}

.message-page__back {
	display: flex;
	width: fit-content;
	margin: 34px auto 0;
	min-height: 34px;
	padding: 8px 22px;
	font-size: 12px;
}

.contact-page,
.thanks-page {
	padding: 0 24px 86px;
	background: var(--color-blue);
}

.contact-page__inner,
.thanks-page__inner {
	width: min(100%, 780px);
	margin: 0 auto;
	padding-top: calc(var(--site-header-height) + 36px);
}

.contact-page__card,
.thanks-page__card {
	padding: clamp(34px, 5vw, 62px);
	background: var(--color-white);
	border-radius: 34px;
	box-shadow: 0 24px 50px rgba(10, 55, 120, .18);
}

.contact-page h1,
.thanks-page h1 {
	margin: 0 0 18px;
	color: var(--color-blue);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
}

.contact-page__notes,
.thanks-page ul {
	margin: 0 0 30px;
	padding-left: 1.2em;
	color: var(--color-blue-dark);
	font-size: 14px;
	font-weight: 700;
}

.contact-form {
	display: grid;
	gap: 18px;
}

.contact-form__field {
	display: grid;
	gap: 8px;
	font-size: clamp(18px, 2.4vw, 26px);
	font-weight: 900;
}

.contact-form__field em {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 10px;
	color: var(--color-white);
	background: var(--color-pink);
	border-radius: 999px;
	font-size: 12px;
	font-style: normal;
	vertical-align: middle;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 13px 18px;
	background: #e5f4ff;
	border: 0;
	border-radius: 10px;
	font-size: 16px;
}

.contact-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--color-blue) 50%), linear-gradient(135deg, var(--color-blue) 50%, transparent 50%);
	background-position: calc(100% - 22px) 50%, calc(100% - 14px) 50%;
	background-size: 8px 8px, 8px 8px;
	background-repeat: no-repeat;
}

.contact-form textarea,
.wpcf7 textarea {
	resize: vertical;
	min-height: 210px;
}

.contact-form__submit {
	justify-self: center;
	margin-top: 20px;
	min-width: 260px;
	font-size: 28px;
}

.contact-form__submit span {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin-left: 14px;
	border: 1.5px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	vertical-align: middle;
}

.contact-form__submit span::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid var(--color-white);
}

.thanks-page {
	min-height: 72vh;
}

.thanks-page__card {
	min-height: 520px;
	display: grid;
	align-content: center;
}

.thanks-page h1 {
	color: var(--color-text);
}

.thanks-page__logo {
	margin-top: 56px;
	color: var(--color-blue-dark);
	font-size: clamp(46px, 8vw, 84px);
	font-weight: 900;
	text-align: center;
}

.js-reveal,
.js-reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

.js-reveal.is-visible,
.js-reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes rotate-cw {
	to { transform: rotate(360deg); }
}

@keyframes orbit-ccw {
	to { transform: rotate(-360deg); }
}

@keyframes rocket-orbit {
	to { transform: rotate(-360deg); }
}

@keyframes write-text {
	to { clip-path: inset(0 0 0 0); }
}

@keyframes slide-in-right {
	from {
		opacity: 0;
		transform: translateX(64px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes news-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes clients-marquee {
	from {
		transform: translateX(var(--clients-marquee-start, 0));
	}
	to {
		transform: translateX(var(--clients-marquee-end, -50%));
	}
}

@keyframes hero-crown-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(-19deg) scale(1);
	}

	50% {
		transform: translate3d(-4px, -6px, 0) rotate(-13deg) scale(1.04);
	}
}

@keyframes hero-sparkle-float {
	0%,
	100% {
		opacity: .96;
		transform: translate3d(0, 0, 0) rotate(4deg) scale(1);
	}

	50% {
		opacity: 1;
		transform: translate3d(3px, -7px, 0) rotate(14deg) scale(1.08);
	}
}

@keyframes logo-fade {
	to { opacity: 1; }
}

@keyframes loader-playful-bounce {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	45% {
		transform: translateY(-.16em) scale(1.025);
	}
}

@keyframes loader-safety-hide {
	to {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

@media (max-width: 1024px) {
	.hero {
		--hero-mark-size: clamp(460px, 60vw, 620px);
		--hero-mark-left: clamp(8px, 4vw, 42px);
		--hero-mark-top: 76px;
		height: 100vh;
		min-height: 100svh;
	}

	.hero__inner {
		grid-template-columns: 1fr .8fr;
	}

	.hero__copy {
		top: calc(var(--hero-mark-top) + var(--hero-mark-size) * .5);
		left: calc(var(--hero-mark-left) + var(--hero-mark-size) * .535);
		width: calc(var(--hero-mark-size) * .68);
	}

	.hero__title {
		font-size: clamp(34px, 5.8vw, 56px);
	}

	.hero__loader-target {
		font-size: clamp(34px, 5.8vw, 56px);
	}

	.staff__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.business__grid,
	.archive-list__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news__layout {
		grid-template-columns: 1fr;
	}

	.section__inner--message {
		width: min(100%, 760px);
	}

	.message-page__lead {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 32px;
		margin-bottom: 82px;
	}

	.message-page__photo {
		width: 180px;
		margin-left: 0;
	}

	.message-page__body {
		font-size: 11px;
	}

	.message-page__deco {
		bottom: -44px;
		font-size: clamp(38px, 5.4vw, 62px);
	}

	.philosophy {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 36px;
	}

	.philosophy__diagram {
		width: 240px;
		height: 204px;
	}

	.philosophy__circle {
		width: 104px;
		height: 104px;
		font-size: 13px;
	}

	.philosophy__circle--yellow {
		left: 68px;
	}

	.philosophy__circle--blue {
		left: 20px;
		bottom: 20px;
	}

	.philosophy__circle--pink {
		right: 20px;
		bottom: 20px;
	}
}

@media (max-width: 767px) {
	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.hero,
	.message,
	.staff,
	.business,
	.news,
	.clients,
	.cta,
	.site-footer {
		max-width: 100%;
		overflow-x: clip;
	}

	@supports not (overflow-x: clip) {
		.hero,
		.message,
		.staff,
		.business,
		.news,
		.clients,
		.cta,
		.site-footer {
			overflow-x: hidden;
		}
	}

	body {
		--site-header-height: 78px;
		font-size: 15px;
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.section {
		padding: 64px 18px;
	}

	.loader__copy {
		font-size: clamp(30px, 10vw, 48px);
		max-width: 9em;
	}

	.loader__stage {
		width: min(90vw, 520px);
		transform: translateX(clamp(12px, 3vw, 28px));
	}

	.site-header__inner {
		padding: 16px;
	}

	.site-header__logo {
		font-size: 18px;
	}

	.site-header__contact {
		min-height: 36px;
		padding: 6px 16px;
		font-size: 14px;
	}

	.site-header__contact span {
		width: 18px;
		height: 18px;
		font-size: 11px;
	}

	.menu-toggle {
		width: 46px;
		height: 46px;
		gap: 5px;
	}

	.menu-toggle span {
		width: 20px;
		height: 2px;
	}

	.overlay-menu {
		transform-origin: calc(100% - 32px) 32px;
		border-bottom-left-radius: 42px;
	}

	.overlay-menu__butterfly {
		top: 132px;
		right: 32px;
		left: auto;
		bottom: auto;
		z-index: 0;
		font-size: 42px;
		opacity: .34;
	}

	.overlay-menu__nav {
		z-index: 1;
	}

	.overlay-menu__close {
		top: 16px;
		right: 18px;
		width: 50px;
		height: 50px;
	}

	.overlay-menu__close span,
	.overlay-menu__close span::before {
		width: 28px;
		height: 3px;
	}

	.overlay-menu__list ul {
		margin-left: 22px;
	}

	.hero {
		--hero-mark-size: min(112vw, 420px);
		--hero-mark-left: -26px;
		--hero-mark-top: 86px;
		height: 100vh;
		min-height: 100svh;
		padding: 92px 18px 0;
	}

	.hero__slides,
	.hero__slide {
		background-position: center center;
	}

	.hero__slide {
		background-image: var(--hero-slide-sp);
	}

	.hero__inner {
		display: block;
		min-height: calc(100svh - 92px);
	}

	.hero__copy {
		top: calc(var(--hero-mark-top) + var(--hero-mark-size) * .5);
		left: calc(var(--hero-mark-left) + var(--hero-mark-size) * .535);
		width: calc(var(--hero-mark-size) * .68);
		padding: 0;
	}

	.hero__company {
		margin: 0 0 10px 4px;
		font-size: 14px;
	}

	.hero__title {
		font-size: clamp(30px, 9.4vw, 42px);
	}

	.hero__loader-target {
		font-size: clamp(30px, 9.4vw, 42px);
	}

	.hero__circle {
		top: var(--hero-mark-top);
		left: var(--hero-mark-left);
		width: var(--hero-mark-size);
		height: var(--hero-mark-size);
	}

	.hero__circle svg {
		font-size: 33px;
	}

	.hero__deco,
	.hero__deco--under {
		filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(35, 77, 118, .16));
		mix-blend-mode: normal;
		opacity: 1;
	}

	.hero__deco--under {
		display: none;
		animation: none;
	}

	.hero__line--bottom::after {
		content: "";
		position: absolute;
		right: 9%;
		bottom: -96%;
		z-index: 4;
		width: clamp(32px, 3.4vw, 52px);
		aspect-ratio: 1;
		background: var(--color-white);
		-webkit-mask: url("https://typesinc.com/wp-content/uploads/2026/06/1-1.png") center / contain no-repeat;
		mask: url("https://typesinc.com/wp-content/uploads/2026/06/1-1.png") center / contain no-repeat;
		filter: drop-shadow(0 4px 10px rgba(35, 77, 118, .16));
		transform: rotate(4deg);
		transform-origin: center;
		animation: hero-sparkle-float 3.2s ease-in-out infinite;
		pointer-events: none;
	}

	.message {
		margin-top: 0;
		padding-top: 82px;
		padding-bottom: 88px;
	}

	.message__title {
		font-size: clamp(32px, 10vw, 42px);
	}

	.message__title .message__suffix {
		display: block;
	}

	.message__text {
		line-height: 1.85;
	}

	.message__hands {
		top: 8px;
		width: 210vw;
		height: calc(100% - 16px);
	}

	.staff__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.staff-card {
		padding: 14px 10px 16px;
	}

	.staff-card__comment {
		top: -42px;
		right: -34px;
		width: min(190px, 78vw);
		min-height: 118px;
		padding: 34px 28px 30px;
		font-size: 12px;
		line-height: 1.32;
	}

	.staff-card__comment--fluffy,
	.staff-card__comment--jagged,
	.staff-card__comment--kakukaku,
	.staff-card__comment--powapowa {
		top: -46px;
		right: -32px;
		width: min(188px, 76vw);
		min-height: 120px;
		padding: 22px 26px 42px;
	}

	.staff-card__comment--normal {
		padding: 18px 28px 48px;
	}

	.business {
		padding-bottom: 246px;
		background-color: var(--color-white);
		background-image: none;
	}

	.business::before {
		top: -72px;
		width: 220vw;
		height: 720px;
	}

	.business::after {
		inset: 210px 0 0;
	}

	.business__grid {
		gap: 14px;
		margin-inline: -18px;
		padding: 8px 18px 14px;
		scroll-padding-inline: 18px;
	}

	.business-card {
		flex: 0 0 76vw;
		min-height: 280px;
	}

	.news {
		margin-top: -210px;
		padding-top: 56px;
		padding-bottom: 76px;
	}

	.clients {
		padding-top: 72px;
	}

	.news__layout {
		padding: 24px 18px;
	}

	.news__marquee {
		margin: -8px 0 0;
	}

	.news__filters {
		display: flex;
		flex-wrap: wrap;
		width: auto;
	}

	.news-card__link {
		grid-template-columns: 110px 1fr;
		gap: 12px;
	}

	.news-card h3 {
		font-size: 13px;
	}

	.clients__marquee {
		min-height: 180px;
		gap: 8px;
	}

	.clients__track {
		animation-duration: 18s;
	}

	.clients__track--row2 {
		--clients-marquee-start: -75px;
		animation-duration: 18s;
		animation-delay: -9s;
	}

	.clients__item {
		min-width: 150px;
		padding: 18px 24px;
	}

	.clients__item img {
		max-width: 132px;
		max-height: 68px;
	}

	.cta {
		padding: 0;
	}

	.cta__button {
		gap: 20px;
		width: min(100%, 560px);
		min-height: 140px;
		padding: 24px 30px 24px 34px;
		border-radius: 82px 0 0 82px;
		font-size: clamp(28px, 8vw, 38px);
	}

	.cta__button i {
		width: 50px;
		height: 50px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__list {
		grid-template-columns: 1fr;
	}

	.archive-list__grid {
		grid-template-columns: 1fr;
	}

	.single > .section__inner,
	.section__inner--message {
		padding-top: calc(var(--site-header-height) + 34px);
	}

	.section__inner--message {
		width: min(100%, 640px);
	}

	.message-page__title {
		margin-bottom: 30px;
		font-size: clamp(30px, 9vw, 40px);
		text-align: left;
	}

	.message-page__lead {
		display: block;
		margin-bottom: 70px;
	}

	.message-page__body {
		font-size: 13px;
	}

	.message-page__profile {
		padding-top: 0;
		margin-bottom: 40px;
	}

	.message-page__photo {
		width: min(100%, 300px);
		margin: 28px auto 0;
	}

	.message-page__deco {
		position: relative;
		left: auto;
		bottom: auto;
		margin: 14px 0 42px;
		font-size: clamp(38px, 13vw, 62px);
	}

	.philosophy__diagram {
		width: 320px;
		height: 238px;
		max-width: 100%;
		margin: 0 auto;
	}

	.philosophy__circle {
		width: 140px;
		height: 140px;
		font-size: 18px;
	}

	.philosophy__circle--yellow {
		top: 0;
		left: calc(50% - 70px);
	}

	.philosophy__circle--blue {
		left: calc(50% - 126px);
		bottom: 18px;
	}

	.philosophy__circle--pink {
		right: calc(50% - 126px);
		bottom: 18px;
	}

	.philosophy {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.contact-page,
	.thanks-page {
		padding: 0 18px 64px;
	}

	.contact-page__inner,
	.thanks-page__inner {
		padding-top: calc(var(--site-header-height) + 24px);
	}

	.contact-page__card,
	.thanks-page__card {
		border-radius: 24px;
	}
}

@media (max-width: 420px) {
	.staff__grid {
		grid-template-columns: 1fr;
	}

	.news-card__link {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.hero__line span {
		clip-path: none;
	}

	.loader {
		animation: loader-safety-hide .2s 1.1s ease forwards;
	}

	.loader__char,
	.loader.is-assembled .loader__char {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hero__slide {
		animation: none;
	}

	.hero__slide:first-child {
		opacity: 1;
		transform: none;
	}

	.hero__slide:not(:first-child) {
		display: none;
	}

	.news__marquee-track {
		transform: none;
	}

	.clients__track {
		transform: none;
	}

	.js-reveal,
	.js-reveal-item {
		opacity: 1;
		transform: none;
	}
}
