/* Shared animated water-mist canvas. Photo and card surfaces remain opaque. */
body {
	position: relative;
	isolation: isolate;
	background: #f1fafc;
}

body::before {
	position: fixed;
	inset: -12vmax;
	z-index: 0;
	background-color: #edf8fb;
	background-image:
		radial-gradient(ellipse 42% 34% at 21% 19%, rgb(255 255 255 / 94%) 0 24%, rgb(255 255 255 / 28%) 52%, transparent 76%),
		radial-gradient(ellipse 40% 42% at 76% 44%, rgb(255 255 255 / 88%) 0 20%, rgb(255 255 255 / 24%) 54%, transparent 78%),
		radial-gradient(ellipse 46% 34% at 38% 82%, rgb(255 255 255 / 90%) 0 19%, rgb(255 255 255 / 20%) 56%, transparent 80%),
		url("../images/magna-bg-only-1440-1-4177-86-background-pc.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: screen, screen, screen, normal;
	content: "";
	filter: saturate(.88) contrast(.985);
	transform: translate3d(-4%, -2.5%, 0) scale(1.045);
	transform-origin: center;
	animation: mgna-ambient-mist 28s ease-in-out infinite alternate;
	will-change: transform;
	pointer-events: none;
}

.mgna-ambient-particles {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	contain: layout style paint;
	pointer-events: none;
}

.mgna-ambient-particle {
	position: absolute;
	top: -12vh;
	display: block;
	background: linear-gradient(135deg, #98e4f2 10%, #72cde7 55%, #8bd4ea 100%);
	box-shadow: 0 0 18px rgb(104 201 229 / 25%);
	filter: blur(5px);
	opacity: 0;
	will-change: transform;
}

.mgna-ambient-particle--1 { left: 2%; width: 28px; height: 22px; border-radius: 65% 35% 58% 42% / 62% 52% 48% 38%; --mgna-drift: 24px; animation: mgna-particle-fall 18s linear -3s infinite; }
.mgna-ambient-particle--2 { left: 96%; width: 12px; height: 12px; border-radius: 50%; --mgna-drift: -18px; animation: mgna-particle-fall 21s linear -14s infinite; }
.mgna-ambient-particle--3 { left: 88%; width: 14px; height: 14px; border-radius: 52% 48% 65% 35%; --mgna-drift: 13px; animation: mgna-particle-fall 24s linear -7s infinite; }
.mgna-ambient-particle--4 { left: 7%; width: 25px; height: 17px; border-radius: 58% 42% 68% 32%; --mgna-drift: -25px; animation: mgna-particle-fall 20s linear -16s infinite; }
.mgna-ambient-particle--5 { left: 72%; width: 10px; height: 10px; border-radius: 50%; --mgna-drift: 18px; animation: mgna-particle-fall 16s linear -9s infinite; }
.mgna-ambient-particle--6 { left: 18%; width: 13px; height: 11px; border-radius: 48% 52% 63% 37%; --mgna-drift: 31px; animation: mgna-particle-fall 23s linear -19s infinite; }
.mgna-ambient-particle--7 { left: 39%; width: 9px; height: 9px; border-radius: 50%; --mgna-drift: -15px; animation: mgna-particle-fall 17s linear -12s infinite; }
.mgna-ambient-particle--8 { left: 57%; width: 18px; height: 14px; border-radius: 62% 38% 48% 52%; --mgna-drift: 22px; animation: mgna-particle-fall 26s linear -23s infinite; }
.mgna-ambient-particle--9 { left: 82%; width: 8px; height: 8px; border-radius: 50%; --mgna-drift: -28px; animation: mgna-particle-fall 19s linear -5s infinite; }
.mgna-ambient-particle--10 { left: 29%; width: 16px; height: 13px; border-radius: 55% 45% 66% 34%; --mgna-drift: 20px; animation: mgna-particle-fall 22s linear -2s infinite; }
.mgna-ambient-particle--11 { left: 12%; width: 8px; height: 8px; border-radius: 50%; --mgna-drift: -14px; animation: mgna-particle-fall 20s linear -10s infinite; }
.mgna-ambient-particle--12 { left: 48%; width: 12px; height: 10px; border-radius: 60% 40% 48% 52%; --mgna-drift: 19px; animation: mgna-particle-fall 25s linear -18s infinite; }
.mgna-ambient-particle--13 { left: 65%; width: 7px; height: 7px; border-radius: 50%; --mgna-drift: -17px; animation: mgna-particle-fall 18s linear -6s infinite; }
.mgna-ambient-particle--14 { left: 91%; width: 15px; height: 12px; border-radius: 46% 54% 61% 39%; --mgna-drift: -23px; animation: mgna-particle-fall 23s linear -15s infinite; }
.mgna-ambient-particle--15 { left: 35%; width: 10px; height: 10px; border-radius: 50%; --mgna-drift: 14px; animation: mgna-particle-fall 19s linear -1s infinite; }

@keyframes mgna-particle-fall {
	0% { opacity: 0; transform: translate3d(0, -12vh, 0) rotate(-7deg) scale(.88); }
	12% { opacity: .28; }
	82% { opacity: .22; }
	100% { opacity: 0; transform: translate3d(var(--mgna-drift, 16px), 122vh, 0) rotate(18deg) scale(1.08); }
}

@media (min-width: 700px) {
	.mgna-fixed-nav-source {
		visibility: hidden !important;
	}

	.mgna-fixed-header-portal {
		position: fixed;
		left: var(--mgna-fixed-left, 0);
		top: 0;
		z-index: 1000;
		width: var(--mgna-fixed-width, 1440px);
		height: var(--mgna-fixed-height, 92px);
		overflow: visible;
		pointer-events: none;
	}

	.mgna-fixed-header-portal > .mgna-fixed-header-clone {
		position: absolute !important;
		inset: 0 auto auto 0 !important;
		width: 1440px !important;
		height: 92px !important;
		visibility: visible !important;
		transform: scale(var(--mgna-fixed-scale, 1)) !important;
		transform-origin: top left !important;
		pointer-events: none;
	}

	.mgna-fixed-header-clone :where(a, nav) {
		pointer-events: auto;
	}

	.mgna-fixed-header-clone :where(.top-brand--pc, .pc-brand, .customer-voice-brand, .am-brand)::before {
		position: absolute;
		inset: -9px -13px;
		z-index: -1;
		border: 1px solid rgb(255 255 255 / 58%);
		border-radius: 18px;
		background: rgb(255 255 255 / 82%);
		box-shadow: 0 2px 10px rgb(27 102 133 / 12%);
		-webkit-backdrop-filter: blur(7px);
		backdrop-filter: blur(7px);
		content: "";
	}

	.mgna-fixed-header-clone :where(.top-brand--pc, .pc-brand, .customer-voice-brand, .am-brand) {
		isolation: isolate;
	}

	:where(.pc-cta, .am-header-cta, .customer-voice-cta) {
		border-radius: 999px;
		overflow: hidden;
	}

	:where(.pc-header .pc-cta--shop, .am-header-cta--shop, .customer-voice-cta--shop) {
		background: linear-gradient(135deg, #11a3ff 0%, #78cbff 100%);
		box-shadow: 0 2px 3px rgb(0 0 0 / 30%);
	}

	:where(.pc-header .pc-cta--tax, .am-header-cta--tax, .customer-voice-cta--tax) {
		background: linear-gradient(135deg, #009905 0%, #00c907 100%);
		box-shadow: 0 2px 3px rgb(0 0 0 / 18%);
	}

	:where(.pc-header .pc-cta__surface, .am-header-cta img, .customer-voice-cta img) {
		opacity: 1;
	}

	.mgna-fixed-section-nav {
		position: absolute;
		right: var(--mgna-section-nav-right, 62px);
		top: var(--mgna-section-nav-start, 972px);
		z-index: 700;
		display: flex;
		width: 317px;
		flex-direction: column;
		gap: 17px;
		transform: scale(var(--mgna-section-nav-scale, 1));
		transform-origin: right top;
		opacity: 1;
		visibility: visible;
		pointer-events: none;
	}

	.mgna-fixed-section-nav.is-active {
		position: fixed;
		top: 50%;
		transform: translateY(-50%) scale(var(--mgna-section-nav-scale, 1));
		transform-origin: right center;
		opacity: 1;
		visibility: visible;
		pointer-events: none;
		transition: none;
	}

	.mgna-fixed-section-nav.is-stopped {
		position: absolute;
		top: var(--mgna-section-nav-stop, 0);
		transform: scale(var(--mgna-section-nav-scale, 1));
		transform-origin: right top;
	}

	.mgna-fixed-section-nav a {
		position: relative;
		display: flex;
		min-height: 32px;
		align-items: center;
		justify-content: space-between;
		padding: 0 1px 8px;
		color: #454545;
		font-size: 21px;
		font-weight: 700;
		line-height: 1.45;
		white-space: nowrap;
		text-decoration: none;
		pointer-events: auto;
		transition: none;
	}

	.mgna-fixed-section-nav__chevron {
		width: 9px;
		height: 9px;
		margin-right: 4px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-3px);
	}

	.mgna-fixed-section-nav a::after {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 3px;
		background: #0078bd;
		content: "";
		opacity: 0;
		transform: scaleX(.22);
		transform-origin: left center;
		transition: opacity .18s ease, transform .24s ease;
	}

	.mgna-fixed-section-nav a:where(.is-current, [aria-current="location"])::after {
		opacity: 1;
		transform: scaleX(1);
	}

	.mgna-fixed-section-nav a.is-over-media {
		color: #fff;
		text-shadow: 0 1px 5px rgb(0 37 58 / 94%), 0 0 12px rgb(0 37 58 / 72%);
	}

	.mgna-fixed-section-nav a.is-over-media::after {
		box-shadow: 0 1px 5px rgb(0 37 58 / 55%);
		background: #69d6ff;
	}

	.mgna-shared-pc-header__cta,
	.mgna-shared-pc-header__cta span {
		color: #fff !important;
	}

	.mgna-shared-pc-header__nav a {
		color: #454545 !important;
		transition: color .2s ease, opacity .2s ease;
	}

	.mgna-shared-pc-header__nav :where(.current-menu-item, .current_page_item) > a,
	.mgna-shared-pc-header__nav a[aria-current="page"] {
		color: #37b1ff !important;
	}

	.mgna-shared-pc-header__nav a:hover {
		color: #168fcf !important;
		opacity: .78;
	}

}

.mgna-site-footer {
	position: relative;
	z-index: 2;
	width: 100%;
	background: transparent;
	color: #454545;
	font-family: "Zen Old Mincho", serif;
}

.mgna-site-footer__inner {
	position: relative;
	box-sizing: border-box;
	width: min(100%, 1440px);
	min-height: 250px;
	margin-inline: auto;
	padding: 38px max(28px, calc((100% - 1090px) / 2)) 28px;
}

.mgna-site-footer__contacts,
.mgna-site-footer__identity,
.mgna-site-footer__nav { display: flex; align-items: center; }
.mgna-site-footer__identity { gap: 16px; }
.mgna-site-footer__identity img { display: block; width: 231px; height: 46px; }
.mgna-site-footer__identity address { font-size: 16px; font-style: normal; font-weight: 600; line-height: 25px; }
.mgna-site-footer__contacts { position: absolute; right: max(28px, calc((100% - 1090px) / 2)); top: 46px; gap: 38px; }
.mgna-site-footer__contacts a { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; white-space: nowrap; }
.mgna-site-footer__contacts img { width: 38px; height: 38px; }
.mgna-site-footer__mail-sp { display: none; }
.mgna-site-footer__rule { display: block; height: 1px; margin-top: 16px; background: #6ec6f6; }
.mgna-site-footer__nav { gap: 30px; margin-top: 22px; font-size: 20px; font-weight: 600; line-height: 29px; }
.mgna-site-footer__nav a { color: #454545; }
.mgna-site-footer__nav a[aria-current="page"] { color: #37b1ff; }
.mgna-site-footer__badge-link { position: absolute; right: max(28px, calc((100% - 1090px) / 2)); top: 121px; width: 76px; height: 54px; overflow: hidden; border-radius: 8px; }
.mgna-site-footer__badge { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: contain; }
.mgna-site-footer__copyright { margin: 24px 0 0; color: #9da8ad; font-family: Arial, sans-serif; font-size: 14px; text-align: center; }

@media (min-width: 700px) {
	.mgna-site-footer {
		container-type: inline-size;
		width: min(100%, 1440px);
		height: auto;
		aspect-ratio: 1440 / 204;
		margin-inline: auto;
		background: transparent;
		overflow: hidden;
	}

	.mgna-site-footer__inner {
		position: absolute;
		inset: 0 auto auto 0;
		width: 1440px;
		min-height: 0;
		height: 204px;
		margin: 0;
		padding: 0;
		transform: scale(min(1, calc(100cqi / 1440px)));
		transform-origin: top left;
	}

	.mgna-site-footer__identity { position: absolute; left: 175px; top: 0; display: block; width: 534px; height: 53px; }
	.mgna-site-footer__identity address { position: absolute; left: 247px; top: 3px; width: 287px; height: 50px; }
	.mgna-site-footer__contacts { left: 820px; right: auto; top: 15px; gap: 38px; }
	.mgna-site-footer__contacts a:first-child { width: 172px; }
	.mgna-site-footer__contacts a:last-child { width: 238px; }
	.mgna-site-footer__rule { position: absolute; left: 175px; top: 63px; width: 1090px; margin: 0; }
	.mgna-site-footer__nav { position: absolute; left: 175px; top: 90px; gap: 30px; margin: 0; }
	.mgna-site-footer__nav a:nth-child(1) { order: 1; }
	.mgna-site-footer__nav a:nth-child(2) { order: 4; }
	.mgna-site-footer__nav a:nth-child(3) { order: 2; }
	.mgna-site-footer__nav a:nth-child(4) { order: 5; }
	.mgna-site-footer__nav a:nth-child(5) { order: 3; }
	.mgna-site-footer__badge-link { right: auto; left: 1189px; top: 78px; }
	.mgna-site-footer__copyright { position: absolute; left: 513px; top: 166px; width: 415px; height: 38px; margin: 0; color: #bcbcbc; font-size: 16px; line-height: 23px; white-space: nowrap; }

}

.site-main {
	position: relative;
	z-index: 1;
}

/* Let the shared viewport canvas show through all page-sized surfaces. */
.top-page,
.top-artboard,
.faq-page,
.faq-artboard,
.company-page,
.company-artboard,
.customer-voice-page,
.customer-voice-artboard,
.am-page,
.am-artboard,
.am-sp-content,
.customer-voice-sp-content,
.faq-sp-content,
.top-feature--sp {
	background-color: transparent;
}

/* The previous static top-only mist layers are superseded by the shared canvas. */
.pc-bg,
.sp-bg,
.faq-bg,
.faq-sp-bg,
.customer-voice-bg,
.customer-voice-sp-bg,
.am-bg,
.am-sp-mainvisual__bg {
	display: none !important;
}

.top-feature__background {
	display: none !important;
}

@media (min-width: 700px) {
	.pc-breadcrumb,
	.customer-voice-breadcrumb {
		z-index: 800;
	}
}

@keyframes mgna-ambient-mist {
	0% {
		transform: translate3d(-4%, -2.5%, 0) scale(1.045);
	}
	45% {
		transform: translate3d(3.5%, 2%, 0) scale(1.105);
	}
	100% {
		transform: translate3d(-2%, 3.5%, 0) scale(1.07);
	}
}

@media (max-width: 699px) {
	.mgna-site-footer__inner {
		width: min(100%, 375px);
		min-height: 540px;
		padding: 46px 16px 30px;
	}

	.mgna-site-footer__contacts { position: static; display: grid; gap: 12px; }
	.mgna-site-footer__contacts a { min-height: 42px; font-size: 16px; }
	.mgna-site-footer__mail-pc { display: none; }
	.mgna-site-footer__mail-sp { display: inline; }
	.mgna-site-footer__rule { margin-top: 22px; }
	.mgna-site-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 24px 0; font-size: 16px; line-height: 28px; }
	.mgna-site-footer__identity { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid #6ec6f6; }
	.mgna-site-footer__identity address { font-size: 14px; line-height: 23px; }
	.mgna-site-footer__badge-link { right: 24px; top: 375.5px; width: 60px; height: 43px; }
	.mgna-site-footer__copyright { margin-top: 4px; font-size: 11px; }

	.mgna-sp-scroll-nav {
		box-sizing: border-box;
		height: 58px !important;
		overflow: hidden !important;
		border-bottom: 1px solid rgb(69 69 69 / 12%);
		background: transparent;
	}

	.mgna-sp-scroll-nav__track {
		display: flex !important;
		box-sizing: border-box;
		width: 100% !important;
		height: calc(100% - 4px) !important;
		align-items: center !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		padding: 0 15px 4px !important;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}

	.mgna-sp-scroll-nav__track::-webkit-scrollbar { display: none; }
	.mgna-sp-scroll-nav__track > a {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		display: flex !important;
		width: auto !important;
		height: 34px !important;
		flex: 0 0 auto;
		align-items: center !important;
		gap: 5px !important;
		margin: 0 10px 0 0 !important;
		padding: 0 10px 0 0 !important;
		border-right: 1px solid rgb(69 69 69 / 14%) !important;
		font-size: 17px !important;
		font-weight: 700;
		line-height: 25px !important;
		white-space: nowrap;
	}

	.mgna-sp-scroll-nav__track > a > img {
		position: static !important;
		width: 8px !important;
		height: 13px !important;
		transform: rotate(90deg) !important;
	}

	.mgna-sp-scroll-nav__bar,
	.mgna-sp-table-progress {
		position: absolute;
		left: 15px;
		right: 15px;
		bottom: 1px;
		height: 2px;
		border-radius: 999px;
		background: rgb(0 120 189 / 15%);
		opacity: 0;
		pointer-events: none;
	}

	.mgna-sp-scroll-nav__bar.is-scrollable,
	.mgna-sp-table-progress.is-scrollable { opacity: 1; }
	.mgna-sp-scroll-nav__bar i,
	.mgna-sp-table-progress i { display: block; height: 100%; border-radius: inherit; background: #1288c8; transition: width .2s ease; will-change: transform; }

	.mgna-sp-scroll-nav__hint {
		position: absolute;
		left: 50%;
		margin-left: -13px;
		top: 31px;
		bottom: auto;
		z-index: 5;
		display: block;
		width: 26px;
		height: 26px;
		opacity: 0;
		pointer-events: none;
	}

	.mgna-sp-scroll-nav__hand {
		position: absolute;
		inset: 2px;
		background: url("../images/swipe-hand.svg") center / contain no-repeat;
		filter: drop-shadow(0 1px 2px rgb(255 255 255 / 95%));
	}

	.mgna-sp-scroll-nav__hint.is-active,
	.mgna-sp-table-hint.is-active { animation: mgna-scroll-hint-visibility 4.5s ease both; }
	.mgna-sp-scroll-nav__hint.is-active .mgna-sp-scroll-nav__hand,
	.mgna-sp-table-hint.is-active .mgna-sp-scroll-nav__hand { animation: mgna-scroll-hint-hand 1.45s cubic-bezier(.4, 0, .2, 1) .4s 2 both; }
	.mgna-sp-scroll-nav__hint.is-dismissed,
	.mgna-sp-table-hint.is-dismissed { animation: none; opacity: 0; }

	.sp-toc.mgna-sp-scroll-nav { inset: auto !important; left: 0 !important; top: 325px !important; width: 375px; height: 58px !important; }
	.sp-toc :where(.sp-toc__icon, .sp-toc__offcanvas, .sp-toc__divider, .sp-toc__rule, .sp-toc__active-line) { display: none !important; }
	.faq-sp-toc.mgna-sp-scroll-nav { height: 58px; }
	.faq-sp-toc__rule,
	.faq-sp-toc__track a[aria-current="true"]::after { display: none; }
	.customer-voice-sp-mainvisual { height: 558px !important; }
	.customer-voice-sp-section-title { top: 452px !important; }
	.customer-voice-sp-toc { position: absolute; left: 0; top: 325px; z-index: 4; width: 375px; height: 68px !important; color: #006db2; }
	.customer-voice-sp-content { top: 558px !important; }

	.mgna-sp-table-hint {
		position: absolute;
		left: 82px;
		top: 278px;
		z-index: 8;
		display: flex;
		width: 181px;
		height: 68px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 2px;
		padding: 6px 10px;
		box-sizing: border-box;
		border: 1px solid rgb(255 255 255 / 20%);
		border-radius: 8px;
		background: rgb(20 27 31 / 88%);
		box-shadow: 0 7px 22px rgb(0 0 0 / 24%);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		color: #ffffff;
		font-size: 12px;
		font-weight: 700;
		white-space: nowrap;
		opacity: 0;
		pointer-events: none;
	}
	.mgna-sp-table-hint span { order: 1; line-height: 16px; }
	.mgna-sp-table-hint .mgna-sp-scroll-nav__hand { position: relative; inset: auto; order: 2; width: 25px; height: 25px; flex: 0 0 25px; }
	.mgna-sp-table-hint .mgna-sp-scroll-nav__hand { filter: brightness(0) invert(1); }
	.mgna-sp-table-hint.is-active { animation: mgna-table-hint-in .6s cubic-bezier(.22, 1, .36, 1) both; }
	.mgna-sp-table-hint.is-active .mgna-sp-scroll-nav__hand { animation: mgna-scroll-hint-hand 1.45s cubic-bezier(.4, 0, .2, 1) .35s 3 both; }
	.mgna-sp-table-hint.is-dismissed { animation: none; opacity: 0; transition: opacity .25s ease; }
	.mgna-sp-table-hint.is-reduced-motion { opacity: .9; }
	.mgna-sp-table-progress { left: 15px; right: auto; top: 2325px; bottom: auto; width: 345px; }

	.mgna-sp-menu-button {
		position: fixed;
		right: 15px;
		top: 14px;
		z-index: 1200;
		display: grid;
		width: 46px;
		height: 46px;
		place-content: center;
		gap: 5px;
		padding: 0;
		border: 1px solid rgb(255 255 255 / 72%);
		border-radius: 50%;
		background: rgb(255 255 255 / 78%);
		box-shadow: 0 4px 18px rgb(0 72 118 / 16%);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		color: #0576b8;
		cursor: pointer;
	}

	.mgna-sp-menu-button span {
		display: block;
		width: 20px;
		height: 1.5px;
		background: currentColor;
		transition: transform .25s ease, opacity .2s ease;
	}

	.mgna-sp-menu-open .mgna-sp-menu-button { opacity: 0; pointer-events: none; }

	.mgna-sp-menu {
		width: 100%;
		max-width: none;
		height: 100%;
		max-height: none;
		margin: 0;
		padding: 0;
		border: 0;
		background: rgb(0 46 70 / 0%);
		overflow: hidden;
	}

	.mgna-sp-menu::backdrop {
		background: transparent;
	}

	.mgna-sp-menu.is-open { background: rgb(0 46 70 / 38%); }

	.mgna-sp-menu__sheet {
		position: absolute;
		right: 0;
		top: 0;
		display: flex;
		box-sizing: border-box;
		width: min(338px, 88vw);
		height: 100svh;
		flex-direction: column;
		padding: 27px 24px calc(30px + env(safe-area-inset-bottom));
		background:
			radial-gradient(circle at 20% 14%, rgb(255 255 255 / 90%), transparent 37%),
			linear-gradient(155deg, #e9fbff 0%, #c2f1fb 58%, #edfaff 100%);
		box-shadow: -12px 0 36px rgb(0 57 89 / 22%);
	}

	.mgna-sp-menu.is-open .mgna-sp-menu__sheet { right: 0; }

	.mgna-sp-menu__header { display: flex; align-items: center; justify-content: space-between; }
	.mgna-sp-menu__header p { margin: 0; color: #0078bd; font-family: Georgia, serif; font-size: 30px; line-height: 1; letter-spacing: .04em; }
	.mgna-sp-menu__close { position: relative; width: 42px; height: 42px; padding: 0; border: 1px solid rgb(0 120 189 / 34%); border-radius: 50%; background: rgb(255 255 255 / 58%); cursor: pointer; }
	.mgna-sp-menu__close span { position: absolute; left: 11px; top: 20px; width: 19px; height: 1.5px; background: #0078bd; }
	.mgna-sp-menu__close span:first-child { transform: rotate(45deg); }
	.mgna-sp-menu__close span:last-child { transform: rotate(-45deg); }
	.mgna-sp-menu__nav { margin-top: 42px; }
	.mgna-sp-menu__nav ul { margin: 0; padding: 0; list-style: none; }
	.mgna-sp-menu__nav li { border-bottom: 1px solid rgb(0 120 189 / 23%); }
	.mgna-sp-menu__nav a { display: flex; min-height: 55px; align-items: center; justify-content: space-between; color: #244654; font-size: 17px; font-weight: 700; text-decoration: none; }
	.mgna-sp-menu__nav i,
	.mgna-sp-menu__actions a::after,
	.mgna-sp-section-nav li i { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); content: ""; }
	.mgna-sp-menu__actions { display: grid; gap: 10px; margin-top: auto; }
	.mgna-sp-menu__actions a { display: flex; height: 46px; align-items: center; justify-content: center; border-radius: 999px; background: linear-gradient(135deg, #008bce, #11a8e4); box-shadow: 0 3px 8px rgb(0 78 120 / 20%); color: #fff; font-size: 15px; font-weight: 700; text-decoration: none; }
	.mgna-sp-menu__actions a::after { position: absolute; right: 20px; }
	.mgna-sp-menu__actions a { position: relative; }
	.mgna-sp-menu__actions .mgna-sp-menu__tax { background: linear-gradient(135deg, #009c2b, #00bc42); }

	.mgna-sp-section-nav {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: calc(10px + env(safe-area-inset-bottom));
		z-index: 1050;
		font-family: "Zen Old Mincho", serif;
	}

	.mgna-sp-section-nav > button {
		position: relative;
		z-index: 2;
		display: flex;
		width: 100%;
		height: 58px;
		align-items: center;
		justify-content: space-between;
		padding: 8px 20px;
		border: 1px solid rgb(255 255 255 / 80%);
		border-radius: 18px;
		background: rgb(238 252 255 / 86%);
		box-shadow: 0 6px 22px rgb(0 66 100 / 19%);
		-webkit-backdrop-filter: blur(13px);
		backdrop-filter: blur(13px);
		color: #294c5c;
		text-align: left;
		cursor: pointer;
	}

	.mgna-sp-section-nav > button span { display: grid; gap: 1px; }
	.mgna-sp-section-nav > button small { color: #0078bd; font-family: Georgia, serif; font-size: 9px; letter-spacing: .16em; }
	.mgna-sp-section-nav > button b { max-width: 255px; overflow: hidden; font-size: 14px; white-space: nowrap; text-overflow: ellipsis; }
	.mgna-sp-section-nav > button > i { width: 10px; height: 10px; border-right: 2px solid #0078bd; border-bottom: 2px solid #0078bd; transform: rotate(225deg) translate(-2px, -2px); transition: transform .25s ease; }
	.mgna-sp-section-nav.is-open > button > i { transform: rotate(45deg) translate(-2px, -2px); }

	.mgna-sp-section-nav > nav {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 48px;
		max-height: min(58vh, 430px);
		padding: 12px 16px 22px;
		border: 1px solid rgb(255 255 255 / 80%);
		border-radius: 18px 18px 0 0;
		background: rgb(239 252 255 / 94%);
		box-shadow: 0 -10px 30px rgb(0 66 100 / 13%);
		-webkit-backdrop-filter: blur(16px);
		backdrop-filter: blur(16px);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(16px) scale(.98);
		transform-origin: bottom center;
		transition: opacity .22s ease, visibility .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
	}

	.mgna-sp-section-nav.is-open > nav { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
	.mgna-sp-section-nav ul { margin: 0; padding: 0; list-style: none; }
	.mgna-sp-section-nav li + li { border-top: 1px solid rgb(0 120 189 / 13%); }
	.mgna-sp-section-nav li a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; color: #315261; font-size: 14px; font-weight: 700; text-decoration: none; }
	.mgna-sp-section-nav li a.is-current { color: #0078bd; }
	.mgna-sp-section-nav li a.is-current::before { width: 16px; height: 2px; margin-right: 10px; background: currentColor; content: ""; }
	.mgna-sp-section-nav li a.is-current span { margin-right: auto; }

	body::before {
		inset: -18vmax;
		background-image:
			radial-gradient(ellipse 58% 28% at 24% 13%, rgb(255 255 255 / 96%) 0 25%, rgb(255 255 255 / 28%) 58%, transparent 83%),
			radial-gradient(ellipse 62% 36% at 79% 42%, rgb(255 255 255 / 90%) 0 18%, rgb(255 255 255 / 22%) 58%, transparent 82%),
			radial-gradient(ellipse 58% 30% at 31% 77%, rgb(255 255 255 / 92%) 0 20%, rgb(255 255 255 / 21%) 58%, transparent 82%),
			url("../images/magna-bg-only-1440-1-3903-7-background-sp.webp");
		background-size: 165% auto;
		background-repeat: repeat-y;
		background-blend-mode: screen, screen, screen, normal;
	}

	.mgna-ambient-particle { filter: blur(6px); opacity: 0; }
}

@keyframes mgna-scroll-hint-visibility {
	0%, 8%, 100% { opacity: 0; }
	18%, 76% { opacity: .7; }
}

@keyframes mgna-scroll-hint-hand {
	0%, 100% { transform: translate3d(-12px, 0, 0); }
	48%, 65% { transform: translate3d(12px, 0, 0); }
}

@keyframes mgna-table-hint-in {
	from { opacity: 0; transform: translate3d(0, 10px, 0); }
	to { opacity: .92; transform: translate3d(0, 0, 0); }
}

@media (min-width: 700px) {
	.mgna-sp-menu-button,
	.mgna-sp-menu,
	.mgna-sp-section-nav { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
	body::before {
		animation: none;
		transform: none;
		will-change: auto;
	}

	.mgna-ambient-particle,
	.am-sp-toc__swipe-hand,
	.mgna-sp-menu__sheet,
	.mgna-sp-section-nav > nav {
		animation: none !important;
		transition-duration: .01ms !important;
		will-change: auto;
	}

}
