:root {
	--color-ink: #17202a;
	--color-text: #2d3743;
	--color-muted: #637181;
	--color-line: #dce3ea;
	--color-bg: #f5f7f8;
	--color-white: #ffffff;
	--color-blue: #005bac;
	--color-blue-dark: #073c71;
	--color-cyan: #00a3c7;
	--color-green: #1f8a59;
	--color-yellow: #f4b000;
	--shadow: 0 18px 45px rgba(20, 38, 55, 0.14);
	--container: min(1120px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	line-height: 1.8;
	background: var(--color-white);
}

body.nav-open {
	overflow: hidden;
}

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

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

.skip-link {
	position: absolute;
	left: 12px;
	top: -48px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--color-ink);
	color: var(--color-white);
	border-radius: 4px;
}

.skip-link:focus {
	top: 12px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(220, 227, 234, 0.7);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(23, 32, 42, 0.08);
	background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
	width: var(--container);
	min-height: 78px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.site-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-white);
	overflow: hidden;
	box-shadow: 0 0 0 2px rgba(23, 32, 42, 0.08);
}

.site-brand__mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-brand__text {
	display: grid;
	line-height: 1.25;
	color: var(--color-ink);
	font-weight: 800;
}

.site-brand__text small {
	color: var(--color-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-ink);
}

.site-nav__list a {
	position: relative;
	display: inline-flex;
	padding: 8px 0;
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 2px;
	background: var(--color-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after {
	transform: scaleX(1);
}

.header-call {
	display: grid;
	gap: 0;
	padding: 10px 14px;
	border-radius: 4px;
	background: var(--color-blue);
	color: var(--color-white);
	line-height: 1.25;
}

.header-call span {
	font-size: 11px;
	font-weight: 700;
}

.header-call strong {
	font-size: 18px;
	letter-spacing: 0;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background: var(--color-white);
	padding: 10px;
	margin-left: auto;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--color-ink);
	margin: 5px 0;
}

.hero {
	position: relative;
	min-height: 760px;
	display: grid;
	align-items: center;
	padding: 136px max(20px, calc((100vw - 1120px) / 2)) 86px;
	overflow: hidden;
	background: var(--color-bg);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.28) 76%, rgba(255, 255, 255, 0.12) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(0, 91, 172, 0.14));
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 680px;
}

.hero__eyebrow,
.section-kicker {
	margin: 0 0 14px;
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hero h1 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(40px, 6vw, 78px);
	line-height: 1.14;
	letter-spacing: 0;
	font-weight: 900;
}

.hero__lead {
	max-width: 610px;
	margin: 28px 0 0;
	font-size: 18px;
	color: var(--color-text);
}

.hero__actions,
.footer-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 24px;
	border-radius: 4px;
	border: 2px solid transparent;
	font-weight: 800;
	line-height: 1.35;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.button--primary {
	background: var(--color-blue);
	color: var(--color-white);
}

.button--secondary {
	background: var(--color-yellow);
	color: var(--color-ink);
}

.button--light {
	background: var(--color-white);
	color: var(--color-blue-dark);
}

.button--outline-light {
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.72);
}

.hero__panel {
	position: absolute;
	z-index: 2;
	right: max(20px, calc((100vw - 1120px) / 2));
	bottom: 52px;
	width: min(380px, calc(100vw - 40px));
	padding: 24px;
	border-left: 6px solid var(--color-yellow);
	background: var(--color-white);
	box-shadow: var(--shadow);
}

.hero__panel strong {
	display: block;
	color: var(--color-ink);
	font-size: 24px;
	line-height: 1.4;
}

.hero__panel span {
	display: block;
	margin-top: 8px;
	color: var(--color-muted);
}

.section {
	padding: 96px 0;
}

.section--muted {
	background: var(--color-bg);
}

.section--dark {
	background: var(--color-blue-dark);
	color: var(--color-white);
}

.section__head,
.intro,
.warning__grid,
.strength-grid,
.service-list,
.flow-list,
.faq-list,
.site-footer__main,
.site-footer__bottom {
	width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.section__head {
	max-width: 760px;
	margin-bottom: 42px;
	text-align: center;
}

.section__head--wide {
	max-width: 920px;
}

.section__head h2,
.warning__copy h2,
.footer-cta h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.28;
	letter-spacing: 0;
}

.section__head p:not(.section-kicker) {
	margin: 18px 0 0;
	color: var(--color-muted);
}

.section--dark .section-kicker,
.section--dark .section__head h2 {
	color: var(--color-white);
}

.intro {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: start;
}

.intro .section__head {
	width: auto;
	margin: 0;
	text-align: left;
}

.intro__body {
	display: grid;
	gap: 18px;
	padding-top: 10px;
	font-size: 17px;
}

.intro__body p {
	margin: 0;
}

.warning__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.warning__copy p:not(.section-kicker) {
	color: var(--color-muted);
}

.check-list {
	display: grid;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.check-list li {
	position: relative;
	padding: 18px 20px 18px 54px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 4px;
	font-weight: 800;
	color: var(--color-ink);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 24px;
	width: 18px;
	height: 10px;
	border-left: 3px solid var(--color-green);
	border-bottom: 3px solid var(--color-green);
	transform: rotate(-45deg);
}

.strength-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.strength-card {
	padding: 34px 28px;
	border: 1px solid var(--color-line);
	border-radius: 4px;
	background: var(--color-white);
	box-shadow: 0 12px 30px rgba(23, 32, 42, 0.06);
}

.strength-card span {
	color: var(--color-cyan);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
}

.strength-card h3,
.service-list h3 {
	margin: 18px 0 12px;
	color: var(--color-ink);
	font-size: 22px;
	line-height: 1.35;
}

.strength-card p,
.service-list p {
	margin: 0;
	color: var(--color-muted);
}

.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-list article {
	min-height: 220px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.08);
}

.service-list h3,
.service-list p {
	color: var(--color-white);
}

.service-list p {
	opacity: 0.82;
}

.flow-list {
	list-style: none;
	counter-reset: flow;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	padding: 0;
}

.flow-list li {
	position: relative;
	padding: 28px 20px;
	border-top: 4px solid var(--color-blue);
	background: var(--color-bg);
	min-height: 210px;
}

.flow-list span {
	display: block;
	color: var(--color-cyan);
	font-size: 14px;
	font-weight: 900;
}

.flow-list strong {
	display: block;
	margin-top: 12px;
	color: var(--color-ink);
	font-size: 19px;
	line-height: 1.35;
}

.flow-list p {
	margin: 12px 0 0;
	color: var(--color-muted);
	font-size: 14px;
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 920px;
}

.faq-list details {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 4px;
}

.faq-list summary {
	cursor: pointer;
	padding: 22px 26px;
	color: var(--color-ink);
	font-weight: 800;
}

.faq-list p {
	margin: 0;
	padding: 0 26px 24px;
	color: var(--color-muted);
}

.footer-cta {
	background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
	color: var(--color-white);
}

.footer-cta__inner {
	width: var(--container);
	margin: 0 auto;
	padding: 76px 0;
}

.footer-cta .section-kicker,
.footer-cta h2 {
	color: var(--color-white);
}

.footer-cta p:not(.section-kicker) {
	max-width: 760px;
	margin: 20px 0 0;
	opacity: 0.9;
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	padding: 56px 0;
}

.site-footer__lead {
	max-width: 520px;
	margin: 20px 0 0;
	color: var(--color-muted);
}

.footer-info dl {
	display: grid;
	gap: 12px;
	margin: 0;
}

.footer-info dl div {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-line);
}

.footer-info dt {
	color: var(--color-muted);
	font-weight: 800;
}

.footer-info dd {
	margin: 0;
	color: var(--color-ink);
	font-weight: 700;
}

.site-footer__bottom {
	padding: 18px 0 26px;
	border-top: 1px solid var(--color-line);
	color: var(--color-muted);
}

.content-page {
	padding: 140px 0 80px;
}

.content-page__inner {
	width: var(--container);
	margin: 0 auto;
}

.entry h1 {
	color: var(--color-ink);
	font-size: 40px;
	line-height: 1.3;
}

.hero--renewal {
	min-height: 820px;
	padding-bottom: 132px;
	background: #eef3f5;
}

.hero--renewal .hero__media::after {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0.06) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 91, 172, 0.08));
}

.hero--renewal .hero__content {
	max-width: 760px;
}

.hero--renewal .hero__eyebrow {
	color: var(--color-green);
}

.hero--renewal h1 {
	font-size: clamp(44px, 7vw, 88px);
	line-height: 1.08;
}

.hero--renewal .hero__lead {
	max-width: 660px;
	font-size: 19px;
}

.hero--renewal .hero__panel {
	width: min(420px, calc(100vw - 40px));
	border-left: 0;
	border-top: 6px solid var(--color-yellow);
}

.hero--renewal .hero__panel span {
	margin: 0 0 8px;
	color: var(--color-green);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.hero--renewal .hero__panel small {
	display: block;
	margin-top: 8px;
	color: var(--color-muted);
	font-weight: 800;
}

.hero__statement {
	position: absolute;
	left: max(20px, calc((100vw - 1120px) / 2));
	bottom: 20px;
	z-index: 1;
	margin: 0;
	color: rgba(0, 91, 172, 0.13);
	font-size: clamp(50px, 9vw, 142px);
	font-weight: 900;
	line-height: 0.9;
	white-space: nowrap;
}

.news-strip {
	background: var(--color-ink);
	color: var(--color-white);
}

.news-strip__inner {
	width: var(--container);
	min-height: 76px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 22px;
	align-items: center;
}

.news-strip span,
.news-strip a {
	color: var(--color-yellow);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.news-strip p {
	margin: 0;
	font-weight: 700;
}

.about-renewal {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	gap: 72px;
	align-items: center;
}

.about-renewal__text h2,
.mission-renewal__head h2,
.future-renewal__body h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(34px, 4.8vw, 58px);
	line-height: 1.25;
	letter-spacing: 0;
}

.about-renewal__body {
	display: grid;
	gap: 18px;
	margin-top: 30px;
	max-width: 680px;
	font-size: 17px;
}

.about-renewal__body p {
	margin: 0;
}

.about-renewal__visual {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: var(--color-bg);
}

.about-renewal__visual img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	object-position: 62% center;
}

.about-renewal__visual p {
	position: absolute;
	right: 18px;
	bottom: 12px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
}

.mission-renewal {
	display: grid;
	grid-template-columns: max(300px, calc((100vw - 1120px) / 2 + 390px)) minmax(0, 620px);
	gap: 72px;
	padding-left: max(20px, calc((100vw - 1120px) / 2));
	padding-right: max(20px, calc((100vw - 1120px) / 2));
	align-items: start;
}

.mission-renewal__content {
	display: grid;
	gap: 28px;
	font-size: 17px;
}

.mission-renewal__content p {
	margin: 0;
}

.services-renewal .section__head {
	text-align: left;
}

.service-stack {
	width: var(--container);
	margin: 0 auto;
	border-top: 1px solid var(--color-line);
}

.service-row {
	display: grid;
	grid-template-columns: 110px minmax(260px, 0.9fr) minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 34px 0;
	border-bottom: 1px solid var(--color-line);
}

.service-row > span {
	color: var(--color-blue);
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.service-row div p {
	margin: 0 0 8px;
	color: var(--color-green);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.service-row h3 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(22px, 2.7vw, 34px);
	line-height: 1.32;
}

.service-row > p {
	margin: 0;
	color: var(--color-muted);
}

.future-renewal {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
	padding-left: max(20px, calc((100vw - 1120px) / 2));
	padding-right: max(20px, calc((100vw - 1120px) / 2));
	background:
		linear-gradient(135deg, rgba(7, 60, 113, 0.98), rgba(23, 32, 42, 0.98));
}

.future-renewal__visual {
	min-height: 540px;
	overflow: hidden;
}

.future-renewal__visual img {
	width: 100%;
	height: 100%;
	min-height: 540px;
	object-fit: cover;
}

.future-renewal__body h2,
.future-renewal__body p,
.future-renewal .section-kicker {
	color: var(--color-white);
}

.future-renewal__body > p {
	margin: 26px 0 0;
	opacity: 0.86;
}

.future-renewal__points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: 36px;
	background: rgba(255, 255, 255, 0.18);
}

.future-renewal__points div {
	padding: 22px;
	background: rgba(255, 255, 255, 0.08);
}

.future-renewal__points strong,
.future-renewal__points span {
	display: block;
	color: var(--color-white);
}

.future-renewal__points strong {
	font-size: 22px;
	line-height: 1.3;
}

.future-renewal__points span {
	margin-top: 8px;
	font-size: 13px;
	opacity: 0.78;
}

.flow-renewal .section__head {
	text-align: left;
}

.flow-list--line {
	position: relative;
}

.flow-list--line li {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-top: 4px solid var(--color-blue);
}

@media (max-width: 980px) {
	.site-header__inner {
		min-height: 68px;
	}

	.nav-toggle {
		display: inline-block;
	}

	.site-nav {
		position: fixed;
		left: 0;
		right: 0;
		top: 68px;
		display: none;
		margin: 0;
		padding: 20px;
		background: var(--color-white);
		border-top: 1px solid var(--color-line);
		box-shadow: var(--shadow);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 4px;
	}

	.site-nav__list a {
		display: block;
		padding: 12px 0;
	}

	.header-call {
		display: none;
	}

	.hero {
		min-height: 700px;
	}

	.hero__media::after {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
	}

	.intro,
	.warning__grid,
	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.about-renewal,
	.mission-renewal,
	.future-renewal {
		grid-template-columns: 1fr;
	}

	.mission-renewal,
	.future-renewal {
		gap: 44px;
	}

	.service-row {
		grid-template-columns: 80px 1fr;
	}

	.service-row > p {
		grid-column: 2;
	}

	.strength-grid,
	.service-list {
		grid-template-columns: 1fr 1fr;
	}

	.flow-list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	:root {
		--container: min(100vw - 28px, 1120px);
	}

	.site-brand__mark {
		width: 42px;
		height: 42px;
	}

	.site-brand__text span {
		font-size: 14px;
	}

	.site-brand__text small {
		font-size: 10px;
	}

	.hero {
		min-height: 760px;
		padding-top: 108px;
		padding-bottom: 210px;
	}

	.hero__media img {
		object-position: 62% center;
	}

	.hero h1 {
		font-size: 39px;
	}

	.hero__lead {
		font-size: 16px;
	}

	.hero__actions,
	.footer-cta__actions {
		display: grid;
	}

	.button {
		width: 100%;
		min-height: 56px;
	}

	.hero__panel {
		left: 14px;
		right: 14px;
		bottom: 28px;
		width: auto;
	}

	.hero__statement {
		bottom: 8px;
		font-size: 54px;
	}

	.news-strip__inner {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 18px 0;
	}

	.section {
		padding: 72px 0;
	}

	.section__head {
		text-align: left;
	}

	.section__head h2,
	.warning__copy h2,
	.footer-cta h2 {
		font-size: 30px;
	}

	.strength-grid,
	.service-list,
	.flow-list {
		grid-template-columns: 1fr;
	}

	.about-renewal,
	.mission-renewal,
	.future-renewal {
		gap: 34px;
	}

	.about-renewal__visual,
	.about-renewal__visual img,
	.future-renewal__visual,
	.future-renewal__visual img {
		min-height: 320px;
	}

	.about-renewal__visual p {
		font-size: 28px;
	}

	.service-row {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 28px 0;
	}

	.service-row > p {
		grid-column: auto;
	}

	.future-renewal__points {
		grid-template-columns: 1fr;
	}

	.service-list article {
		min-height: auto;
	}

	.flow-list li {
		min-height: auto;
	}

	.footer-info dl div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}

/* Tabinuki-inspired LP redesign */
body.seito-theme {
	background:
		linear-gradient(180deg, #fff8df 0, #fffef8 620px, #ffffff 100%);
}

.tabi-label,
.tabi-section-title p,
.tabi-service__head p {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin: 0 0 16px;
	padding: 6px 14px;
	border: 2px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	color: #17202a;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.04em;
	box-shadow: 5px 5px 0 #17202a;
}

.tabi-hero {
	position: relative;
	overflow: hidden;
	padding: 132px 0 72px;
	background:
		repeating-linear-gradient(135deg, rgba(0, 91, 172, 0.08) 0 10px, transparent 10px 28px),
		linear-gradient(180deg, #fff1a8 0%, #fff8df 72%, #ffffff 100%);
}

.tabi-hero::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	left: -150px;
	top: 110px;
	border: 28px solid rgba(0, 163, 199, 0.2);
	border-radius: 50%;
	transform: translateY(var(--scroll-shift, 0));
	transition: transform 0.08s linear;
}

.tabi-problem,
.tabi-renewal,
.tabi-three,
.tabi-service,
.tabi-reason,
.tabi-flow {
	position: relative;
	overflow: hidden;
}

.tabi-problem::before,
.tabi-renewal::before,
.tabi-three::before,
.tabi-service::before,
.tabi-reason::before,
.tabi-flow::before,
.faq::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 28px 28px, rgba(23, 32, 42, 0.22) 0 4px, transparent 5px) 0 0 / 28px 28px,
		rgba(244, 176, 0, 0.18);
	transform: translateY(var(--scroll-shift, 0)) rotate(var(--scroll-rotate, 0deg));
	transition: transform 0.08s linear;
	pointer-events: none;
}

.tabi-problem::before {
	right: -80px;
	top: 70px;
}

.tabi-renewal::before {
	left: -84px;
	top: 140px;
	background:
		radial-gradient(circle at 24px 24px, rgba(23, 32, 42, 0.16) 0 4px, transparent 5px) 0 0 / 24px 24px,
		rgba(0, 91, 172, 0.12);
}

.tabi-three::before {
	left: -78px;
	bottom: 70px;
	background:
		radial-gradient(circle at 26px 26px, rgba(23, 32, 42, 0.18) 0 4px, transparent 5px) 0 0 / 26px 26px,
		rgba(0, 163, 199, 0.14);
}

.tabi-service::before {
	right: -86px;
	bottom: 90px;
	background:
		radial-gradient(circle at 26px 26px, rgba(23, 32, 42, 0.18) 0 4px, transparent 5px) 0 0 / 26px 26px,
		rgba(31, 138, 89, 0.13);
}

.tabi-reason::before {
	left: -92px;
	top: 120px;
}

.tabi-flow::before {
	right: -82px;
	top: 95px;
	background:
		radial-gradient(circle at 24px 24px, rgba(23, 32, 42, 0.18) 0 4px, transparent 5px) 0 0 / 24px 24px,
		rgba(0, 91, 172, 0.12);
}

.faq {
	position: relative;
	overflow: hidden;
}

.faq::before {
	left: -76px;
	bottom: 50px;
}

.tabi-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 28px;
	background: repeating-linear-gradient(90deg, #00a3c7 0 44px, #f4b000 44px 88px, #1f8a59 88px 132px);
}

.tabi-hero__inner {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
	gap: 56px;
	align-items: center;
}

.tabi-hero__copy h1 {
	margin: 0;
	color: #17202a;
	font-size: clamp(38px, 5.7vw, 72px);
	font-weight: 900;
	line-height: 1.14;
	letter-spacing: 0;
}

.tabi-hero__copy h1 span {
	position: relative;
	display: inline;
	background: linear-gradient(transparent 62%, #ffffff 62%, #ffffff 100%);
}

.tabi-hero__copy > p:not(.tabi-label) {
	max-width: 650px;
	margin: 24px 0 0;
	color: #293540;
	font-size: 18px;
	font-weight: 700;
}

.tabi-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.tabi-hero__visual {
	position: relative;
	min-height: 500px;
}

.tabi-hero__photo {
	position: absolute;
	inset: 32px 0 0 38px;
	overflow: hidden;
	border: 5px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 14px 14px 0 #00a3c7;
	transform: rotate(2deg);
}

.tabi-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tabi-bubble {
	position: absolute;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 150px;
	min-height: 116px;
	padding: 14px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	color: #17202a;
	text-align: center;
	font-weight: 900;
	line-height: 1.35;
	box-shadow: 8px 8px 0 #f4b000;
}

.tabi-bubble strong {
	color: #005bac;
	font-size: 28px;
	line-height: 1;
}

.tabi-bubble small {
	display: block;
	margin-top: 7px;
	color: #17202a;
	font-size: 12px;
	line-height: 1.25;
}

.tabi-bubble--top {
	top: 0;
	left: 0;
	transform: rotate(-7deg);
	animation: float-bubble 4.8s ease-in-out infinite;
}

.tabi-bubble--bottom {
	right: 0;
	bottom: 24px;
	transform: rotate(6deg);
	animation: float-bubble-alt 5.2s ease-in-out infinite;
}

.tabi-bubble--area {
	width: 210px;
	min-height: 132px;
	right: -10px;
}

.tabi-bubble--area strong {
	font-size: 25px;
	line-height: 1.16;
}

.tabi-hero__ribbon {
	width: max-content;
	min-width: 100%;
	margin-top: 58px;
	padding: 12px 0;
	background: #17202a;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-align: center;
}

.hero-area-strip {
	position: relative;
	z-index: 2;
	padding: 22px 0;
	background: #ffffff;
	border-top: 4px solid #17202a;
	border-bottom: 4px solid #17202a;
}

.hero-area-strip__inner {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 18px;
	align-items: start;
	padding: 18px 22px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #fff8df;
	box-shadow: 8px 8px 0 #f4b000;
}

.hero-area-strip__inner strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 6px 14px;
	border: 3px solid #17202a;
	border-radius: 999px;
	background: #00a3c7;
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
}

.hero-area-strip__inner p,
.hero-area-strip__inner span {
	margin: 0;
	color: #17202a;
	font-weight: 900;
	line-height: 1.7;
}

.hero-area-strip__inner span {
	grid-column: 2;
	color: #005bac;
	font-size: 14px;
}

.tabi-section-title {
	width: var(--container);
	margin: 0 auto 42px;
	text-align: center;
}

.tabi-section-title--wide {
	max-width: 900px;
}

.tabi-section-title h2,
.tabi-service__head h2 {
	margin: 0;
	color: #17202a;
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
}

.tabi-three .tabi-section-title h2 {
	font-size: clamp(28px, 4.2vw, 48px);
}

.tabi-section-title > span {
	display: block;
	max-width: 760px;
	margin: 18px auto 0;
	color: #2d3743;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
}

.tabi-problem {
	background: #ffffff;
}

.tabi-problem__cards {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}

.tabi-problem__cards article {
	min-height: 190px;
	padding: 28px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #fff8df;
	box-shadow: 8px 8px 0 #dce3ea;
}

.tabi-problem__cards span {
	display: inline-flex;
	margin-bottom: 18px;
	color: #00a3c7;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.tabi-problem__cards p {
	margin: 0;
	color: #17202a;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.55;
}

.tabi-solution {
	position: relative;
	z-index: 1;
	width: min(760px, calc(100vw - 40px));
	margin: 56px auto 0;
	padding: 30px;
	border: 5px solid #17202a;
	border-radius: 8px;
	background: #f4b000;
	text-align: center;
	box-shadow: 12px 12px 0 #17202a;
}

.tabi-solution::before,
.tabi-solution::after {
	content: "";
	position: absolute;
	width: 54px;
	height: 54px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
}

.tabi-solution::before {
	left: -22px;
	top: -22px;
	transform: rotate(14deg);
}

.tabi-solution::after {
	right: -22px;
	bottom: -22px;
	background: #00a3c7;
	transform: rotate(-12deg);
}

.tabi-solution p {
	margin: 0 0 8px;
	color: #17202a;
	font-size: 22px;
	font-weight: 900;
}

.tabi-solution strong {
	display: block;
	color: #17202a;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.1;
}

.tabi-renewal {
	background:
		repeating-linear-gradient(135deg, rgba(0, 91, 172, 0.07) 0 10px, transparent 10px 30px),
		#f7fcff;
}

.renewal-grid {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.renewal-card {
	overflow: hidden;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 8px 8px 0 rgba(0, 91, 172, 0.2);
}

.renewal-card img {
	width: 100%;
	aspect-ratio: 1.08 / 1;
	object-fit: cover;
	display: block;
}

.renewal-card div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px 16px;
	border-top: 3px solid #17202a;
	background: #ffffff;
}

.renewal-card strong {
	color: #17202a;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
}

.renewal-card span {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	min-height: 42px;
	padding: 8px 10px;
	border: 3px solid #17202a;
	border-radius: 999px;
	background: #ff5a49;
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	box-shadow: 4px 4px 0 #f4b000;
}

.tabi-three {
	background:
		linear-gradient(180deg, #ecfbff 0%, #ffffff 100%);
}

.tabi-three__grid {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	position: relative;
	z-index: 1;
}

.tabi-feature {
	position: relative;
	min-height: 320px;
	padding: 34px 28px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 10px 10px 0 #17202a;
	transform-origin: center bottom;
}

.tabi-feature::before {
	content: "";
	display: block;
	width: 74px;
	height: 74px;
	margin-bottom: 24px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: currentColor;
}

.tabi-feature--blue {
	color: #00a3c7;
}

.tabi-feature--yellow {
	color: #f4b000;
}

.tabi-feature--green {
	color: #1f8a59;
}

.tabi-feature span {
	display: inline-flex;
	margin-bottom: 10px;
	color: inherit;
	font-size: 28px;
	font-weight: 900;
}

.tabi-feature h3 {
	margin: 0 0 14px;
	color: #17202a;
	font-size: 28px;
	line-height: 1.35;
}

.tabi-feature p {
	margin: 0;
	color: #2d3743;
	font-weight: 700;
}

.tabi-service {
	background: #fff8df;
}

.tabi-service__head {
	width: var(--container);
	margin: 0 auto 36px;
	position: relative;
	z-index: 1;
}

.tabi-service__list {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	gap: 18px;
	position: relative;
	z-index: 1;
}

.tabi-service__list article {
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) 1fr;
	gap: 28px;
	align-items: center;
	padding: 24px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 8px 8px 0 rgba(0, 91, 172, 0.2);
}

.tabi-service__list div {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	align-items: center;
}

.tabi-service__list span {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 3px solid #17202a;
	border-radius: 8px;
	background: #00a3c7;
	color: #ffffff;
	font-weight: 900;
}

.tabi-service__list h3 {
	margin: 0;
	color: #17202a;
	font-size: 24px;
	line-height: 1.35;
}

.tabi-service__list p {
	margin: 0;
	color: #2d3743;
	font-weight: 700;
}

.tabi-reason {
	background: #ffffff;
}

.tabi-reason__wrap {
	width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
	gap: 46px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.tabi-reason__photo {
	overflow: hidden;
	border: 5px solid #17202a;
	border-radius: 8px;
	box-shadow: 12px 12px 0 #1f8a59;
}

.tabi-reason__photo img {
	width: 100%;
	height: 460px;
	object-fit: cover;
}

.tabi-reason ul {
	list-style: none;
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
}

.tabi-reason li {
	padding: 18px 20px;
	border: 3px solid #17202a;
	border-radius: 8px;
	background: #ecfbff;
}

.tabi-reason strong,
.tabi-reason span {
	display: block;
}

.tabi-reason strong {
	color: #17202a;
	font-size: 21px;
	line-height: 1.35;
}

.tabi-reason span {
	margin-top: 6px;
	color: #2d3743;
	font-size: 15px;
	font-weight: 700;
}

.tabi-flow {
	background:
		repeating-linear-gradient(90deg, rgba(31, 138, 89, 0.08) 0 12px, transparent 12px 34px),
		#ecfbff;
}

.tabi-flow ol {
	width: var(--container);
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
	z-index: 1;
}

.tabi-flow li {
	padding: 24px;
	border: 4px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 8px 8px 0 #f4b000;
}

.tabi-flow li span {
	display: block;
	color: #00a3c7;
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
}

.tabi-flow li strong {
	display: block;
	margin-top: 14px;
	color: #17202a;
	font-size: 20px;
	line-height: 1.35;
}

.tabi-flow li p {
	margin: 12px 0 0;
	color: #2d3743;
	font-size: 14px;
	font-weight: 700;
}

.tabi-theme .faq,
.faq {
	background: #ffffff;
}

.site-footer .footer-cta {
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 10px, transparent 10px 30px),
		#005bac;
}

.vertical-copy {
	position: absolute;
	z-index: 1;
	margin: 0;
	padding: 14px 9px;
	border: 3px solid #17202a;
	border-radius: 8px;
	background: #ffffff;
	color: #17202a;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: clamp(18px, 2.5vw, 34px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.08em;
	box-shadow: 7px 7px 0 #f4b000;
}

.vertical-copy--hero {
	top: 132px;
	right: max(16px, calc((100vw - 1160px) / 2));
	animation: vertical-sway 5.5s ease-in-out infinite;
}

.vertical-copy--left {
	left: max(10px, calc((100vw - 1260px) / 2));
	top: 92px;
	transform: rotate(2deg);
}

.vertical-copy--right {
	right: max(10px, calc((100vw - 1260px) / 2));
	top: 92px;
	transform: rotate(-2deg);
	box-shadow: 7px 7px 0 #00a3c7;
}

.is-inview .vertical-copy--left,
.is-inview .vertical-copy--right,
.is-inview .vertical-copy--hero {
	animation-play-state: running;
}

.reveal-up,
.reveal-slide,
.reveal-pop {
	opacity: 0;
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: opacity, transform;
}

.reveal-up {
	transform: translateY(52px) rotate(-1deg);
}

.reveal-slide {
	transform: translateX(-56px) rotate(-1.5deg);
}

.reveal-pop {
	transform: translateY(20px) scale(0.94) rotate(-1deg);
}

.is-visible.reveal-up,
.is-visible.reveal-slide,
.is-visible.reveal-pop {
	opacity: 1;
	transform: translate(0, 0) scale(1) rotate(0deg);
}

.reveal-delay-1 {
	transition-delay: 0.08s;
}

.reveal-delay-2 {
	transition-delay: 0.16s;
}

.reveal-delay-3 {
	transition-delay: 0.24s;
}

.reveal-delay-4 {
	transition-delay: 0.32s;
}

.tabi-hero__photo {
	animation: photo-sway 6s ease-in-out infinite;
}

.tabi-hero__ribbon {
	background-image:
		linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.12) 20px 34px, transparent 34px 54px);
	animation: ribbon-slide 18s linear infinite;
}

@keyframes float-bubble {
	0%,
	100% {
		transform: translateY(0) rotate(-7deg);
	}
	50% {
		transform: translateY(-12px) rotate(-4deg);
	}
}

@keyframes float-bubble-alt {
	0%,
	100% {
		transform: translateY(0) rotate(6deg);
	}
	50% {
		transform: translateY(10px) rotate(3deg);
	}
}

@keyframes vertical-sway {
	0%,
	100% {
		transform: translateY(0) rotate(2deg);
	}
	50% {
		transform: translateY(12px) rotate(-2deg);
	}
}

@keyframes photo-sway {
	0%,
	100% {
		transform: rotate(2deg) translateY(0);
	}
	50% {
		transform: rotate(1deg) translateY(-8px);
	}
}

@keyframes ribbon-slide {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 420px 0;
	}
}

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

	.reveal-up,
	.reveal-slide,
	.reveal-pop {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 980px) {
	.tabi-hero__inner,
	.tabi-reason__wrap {
		grid-template-columns: 1fr;
	}

	.tabi-hero__visual {
		min-height: 430px;
	}

	.tabi-problem__cards,
	.renewal-grid,
	.tabi-three__grid,
	.tabi-flow ol {
		grid-template-columns: 1fr 1fr;
	}

	.tabi-service__list article {
		grid-template-columns: 1fr;
	}

	.vertical-copy {
		font-size: 20px;
	}

	.vertical-copy--hero {
		top: 96px;
		right: 14px;
	}

	.vertical-copy--left,
	.vertical-copy--right {
		display: none;
	}
}

@media (max-width: 640px) {
	.tabi-hero {
		padding-top: 104px;
	}

	.vertical-copy--hero {
		top: 92px;
		right: 10px;
		padding: 10px 7px;
		font-size: 16px;
		box-shadow: 5px 5px 0 #f4b000;
	}

	.tabi-hero__copy h1 {
		font-size: 36px;
	}

	.tabi-hero__copy > p:not(.tabi-label) {
		font-size: 16px;
	}

	.tabi-hero__actions {
		display: grid;
	}

	.tabi-hero__visual {
		min-height: 360px;
	}

	.tabi-hero__photo {
		inset: 28px 8px 0 12px;
		box-shadow: 8px 8px 0 #00a3c7;
	}

	.tabi-bubble {
		width: 124px;
		min-height: 96px;
		font-size: 13px;
	}

	.tabi-bubble strong {
		font-size: 22px;
	}

	.tabi-bubble--bottom {
		bottom: 0;
	}

	.tabi-bubble--area {
		width: 160px;
		min-height: 112px;
		right: 4px;
	}

	.tabi-bubble--area strong {
		font-size: 19px;
	}

	.tabi-bubble--area small {
		font-size: 10px;
	}

	.hero-area-strip__inner {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.hero-area-strip__inner span {
		grid-column: auto;
	}

	.tabi-hero__ribbon {
		font-size: 12px;
		text-align: left;
		padding-left: 16px;
	}

	.tabi-section-title {
		text-align: left;
	}

	.tabi-problem__cards,
	.renewal-grid,
	.tabi-three__grid,
	.tabi-flow ol {
		grid-template-columns: 1fr;
	}

	.tabi-problem__cards article,
	.renewal-card,
	.tabi-feature,
	.tabi-service__list article,
	.tabi-reason li,
	.tabi-flow li {
		box-shadow: 6px 6px 0 #17202a;
	}

	.tabi-service__list div {
		grid-template-columns: 1fr;
	}

	.renewal-card div {
		display: grid;
	}

	.renewal-card span {
		width: max-content;
	}

	.tabi-reason__photo img {
		height: 320px;
	}
}
