:root {
            --bg: #ffffff;
            --fg: #111;
            --line: rgba(17, 17, 17, .12);
            --overlay: rgba(0, 0, 0, .34);
            --max: 100%;
            --gutter: clamp(18px, 3vw, 44px);
            --accent: #7f8f86;
            --accent-strong: #5f6f67;
            --accent-hero-soft: rgba(198, 214, 205, .34);
            --accent-hero: rgba(224, 236, 230, .9);
            --ui-blue: #3D6AE2;
            --ui-blue-dark: #2347cc;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
        }

        html {
            scrollbar-gutter: stable;
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
            color: var(--fg);
            background: var(--bg);
            line-height: 1.75;
            letter-spacing: .01em;
            font-size: 15px;
        }

        body.is-loading {
            overflow: hidden;
        }

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

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .topbar {
            position: fixed;
            inset: 0 0 auto 0;
            height: 84px;
            display: flex;
            align-items: center;
            z-index: 50;
            background: rgba(255, 255, 255, .06);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, .16);
            transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
        }

        .topbar--scrolled {
            background: rgba(255, 255, 255, .28);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom-color: rgba(17, 17, 17, .1);
        }

        @media (min-width: 861px) {
            .topbar--scrolled {
                background: rgba(255, 255, 255, .94);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border-bottom-color: rgba(17, 17, 17, .12);
            }
        }

        .siteIntro {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: grid;
            place-items: center;
            background: radial-gradient(circle at 50% 38%, #3a3a3a 0%, #222 52%, #171717 100%);
            opacity: 1;
            visibility: visible;
            transition: opacity .7s ease, visibility .7s ease;
        }

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

        .siteIntro__logo {
            width: min(22vw, 180px);
            min-width: 96px;
            opacity: 0;
            transform: translateY(8px) scale(.98);
            animation: introLogoIn .7s ease forwards;
        }

        @keyframes introLogoIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @media (max-width: 768px) {
            .siteIntro__logo {
                width: min(40vw, 240px);
                min-width: 132px;
            }
        }

        .mobileQuickActions {
            display: none;
        }

        .topbarQuickActions {
            display: none;
        }

        .topbarRight {
            display: none;
        }

        .topbar__inner {
            width: min(var(--max), 100%);
            margin: 0 auto;
            padding: 0 var(--gutter);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 180px;
            position: relative;
        }

        .brand__mark {
            width: 100px;
            height: 100px;
            object-fit: contain;
            transition: opacity .24s ease;
        }

        .brand__mark--dark {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            pointer-events: none;
        }

        .topbar--scrolled .brand__mark--light {
            opacity: 0;
        }

        .topbar--scrolled .brand__mark--dark {
            opacity: 1;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 33px;
            font-family: "Inter", system-ui, sans-serif;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            font-size: 12px;
            color: rgba(255, 255, 255, .92);
            transition: color .24s ease;
        }

        .topbar--scrolled .nav {
            color: rgba(17, 17, 17, .88);
        }

        .nav a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            opacity: .85;
        }

        .nav a::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: currentColor;
            opacity: .9;
            flex-shrink: 0;
        }

        .nav a:hover {
            opacity: 1;
        }

        .nav a:hover::before {
            opacity: 1;
        }

        .heroWrapper {
            position: relative;
            height: 200vh;
        }

        @media (max-width: 860px) {
            .heroWrapper {
                height: auto;
            }
        }

        .heroAnchor {
            position: absolute;
            top: 65vh;
            left: 0;
            width: 1px;
            height: 0;
            overflow: hidden;
            pointer-events: none;
            scroll-margin-top: 90px;
        }

        .hero {
            position: sticky;
            top: 0;
            min-height: 100vh;
            padding-top: 72px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, .08) 42%, rgba(0, 0, 0, .22) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero__bgPicture {
            position: absolute;
            inset: 0;
            z-index: 0;
            margin: 0;
            display: block;
        }

        .hero__bgPicture--mobile {
            display: none;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero__bg--video {
            z-index: 1;
            display: none;
            opacity: 0;
            pointer-events: none;
        }

        @media (min-width: 861px) {
            .hero__bg--video-desktop.is-playing {
                display: block;
                animation: heroBgVideoFadeIn 0.8s ease forwards;
            }
        }

        @media (max-width: 860px) {
            .hero__bgPicture--mobile {
                display: block;
            }

            .hero__bgPicture--desktop {
                display: none;
            }

            .hero__bg--video-mobile.is-playing {
                display: block;
                animation: heroBgVideoFadeIn 0.8s ease forwards;
            }
        }

        @keyframes heroBgVideoFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero__bg--video {
                display: none !important;
                animation: none !important;
            }
        }

        .hero__center {
            position: relative;
            z-index: 2;
            min-height: 88vh;
            display: grid;
            place-items: center;
            padding: 72px 20px 64px;
            text-align: center;
        }

        .hero__dim {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, .28);
            z-index: 1;
            opacity: 0;
            transition: opacity .6s ease;
            pointer-events: none;
        }

        .hero__contentPrimary {
            transition: opacity .7s ease, transform .7s ease;
            margin-top: clamp(8px, 1.6vw, 18px);
        }

        .hero__contentPrimaryCopy {
            transition: opacity .7s ease, transform .7s ease;
        }

        .hero__conceptBtn {
            display: none;
        }

        .hero__contentVertical {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(50% - 165px);
            height: 500px;
            box-sizing: border-box;
            z-index: 4;
            pointer-events: none;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity .8s ease, transform .8s ease;
        }

        @keyframes heroVerticalMarquee {
            0% {
                transform: translate3d(calc(-100% + 140px), 0, 0);
                opacity: 0;
            }

            7.4% {
                transform: translate3d(calc(-100% + 140px), 0, 0);
                opacity: 1;
            }

            72% {
                transform: translate3d(var(--hero-marquee-end-x, 90px), 0, 0);
                opacity: 1;
            }

            85.2% {
                transform: translate3d(var(--hero-marquee-end-x, 90px), 0, 0);
                opacity: 1;
            }

            90.8% {
                transform: translate3d(var(--hero-marquee-end-x, 90px), 0, 0);
                opacity: 0;
            }

            100% {
                transform: translate3d(var(--hero-marquee-end-x, 90px), 0, 0);
                opacity: 0;
            }
        }

        .hero__verticalSlider {
            display: flex;
            flex-direction: row-reverse;
            align-items: flex-start;
            justify-content: flex-start;
            gap: clamp(0.65em, 2.2vw, 1.35em);
            width: 100%;
            height: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            box-sizing: border-box;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, .35) transparent;
        }

        @media (min-width: 861px) {
            .hero__verticalMarqueeTrack {
                display: contents;
            }

            .hero__verticalSlider {
                justify-content: center;
                padding-inline: clamp(16px, 5%, 80px);
                gap: clamp(4.4rem, 9.6vw, 8.8rem);
            }
        }

        .hero__verticalSlider::-webkit-scrollbar {
            height: 4px;
        }

        .hero__verticalSlider::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .35);
            border-radius: 999px;
        }

        .hero__verticalSlide {
            display: flex;
            flex-direction: row-reverse;
            align-items: flex-start;
            justify-content: flex-start;
            gap: clamp(0.35em, 1.8vw, 0.85em);
            flex: 0 0 auto;
            box-sizing: border-box;
        }

        .hero__verticalCopy {
            flex: 0 0 auto;
            width: max-content;
            max-width: none;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            color: rgba(255, 255, 255, .9);
            font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
            font-weight: 300;
            font-size: clamp(18px, 2.2vw, 28px);
            line-height: 2.3;
            letter-spacing: .18em;
            margin: 0;
            text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
        }

        .hero__verticalSlide .hero__verticalCopy:first-child {
            margin-right: 0;
        }

        @media (min-width: 769px) {
            .hero__verticalCopy {
                font-size: clamp(17px, 1.85vw, 24px);
            }
        }

        @media (min-width: 861px) {
            .hero__contentVertical {
                top: calc(50% - 220px);
                height: 530px;
            }

            .hero__verticalCopy {
                font-size: clamp(14px, 1.45vw, 19px);
            }

            .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone) {
                opacity: 0;
                transform: translateY(18px);
                transition: opacity 0.85s ease, transform 0.85s ease;
                transition-delay: 0s;
            }

            .hero--phase2 .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone):nth-child(1) {
                opacity: 1;
                transform: translateY(0);
                transition-delay: 0.1s;
            }

            .hero--phase2 .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone):nth-child(2) {
                opacity: 1;
                transform: translateY(0);
                transition-delay: 0.38s;
            }

            .hero--phase2 .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone):nth-child(3) {
                opacity: 1;
                transform: translateY(0);
                transition-delay: 0.66s;
            }
        }

        @media (max-width: 860px) {
            .heroWrapper {
                height: auto;
                --hero-marquee-end-x: 118px;
            }

            .hero {
                min-height: var(--app-vh-max, 100lvh);
                height: var(--app-vh-max, 100lvh);
                max-height: var(--app-vh-max, 100lvh);
                padding-top: 0;
                box-sizing: border-box;
            }

            .hero__bgPicture,
            .hero__bg,
            .hero__bg--video-mobile.is-playing,
            .hero::before,
            .hero__dim {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                min-height: 100%;
            }

            .hero__lead {
                margin: clamp(18px, 5.2vw, 36px) auto 0;
            }

            .hero__bg {
                object-position: center center;
            }

            .hero__contentVertical {
                top: calc(64px + env(safe-area-inset-top, 0px) + 8px);
                left: 0;
                right: 0;
                bottom: clamp(108px, 17vh, 140px);
                height: auto;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
            }

            .hero--phase2 .hero__contentVertical {
                opacity: 1;
                pointer-events: auto;
                transform: none;
                z-index: 5;
                justify-content: flex-start;
                padding-top: clamp(28px, 5vh, 44px);
                bottom: clamp(92px, 14.5vh, 122px);
                overflow: visible;
                touch-action: pan-y;
                cursor: grab;
                -webkit-user-select: none;
                user-select: none;
                -webkit-tap-highlight-color: transparent;
                -webkit-touch-callout: none;
                outline: none;
            }

            .hero--phase2 .hero__contentVertical.is-dragging {
                cursor: grabbing;
                touch-action: none;
            }

            .hero__verticalSlider {
                display: flex;
                flex: 1 1 auto;
                flex-direction: row;
                align-items: flex-start;
                justify-content: flex-end;
                width: min(100vw, 590px);
                max-width: 590px;
                height: 100%;
                max-height: none;
                min-height: 0;
                margin: 0 auto;
                padding: 0;
                box-sizing: border-box;
                overflow-x: hidden;
                overflow-y: visible;
                gap: 0;
                scrollbar-width: none;
                pointer-events: none;
            }

            .hero--phase2 .hero__verticalSlider {
                align-items: flex-start;
                justify-content: center;
                padding-top: clamp(12px, 2.4vh, 22px);
                padding-bottom: clamp(4px, 0.8vh, 10px);
                pointer-events: none;
            }

            .hero--phase2 .hero__verticalMarqueeTrack.is-scrubbing {
                animation: none !important;
                opacity: 1 !important;
                transition: none !important;
            }

            .hero__verticalMarqueeTrack,
            .hero__verticalMarqueeTrack * {
                pointer-events: none;
            }

            .hero__verticalMarqueeTrack {
                display: flex;
                flex-direction: row-reverse;
                align-items: flex-start;
                justify-content: flex-start;
                gap: clamp(1.85rem, 5.25vw, 3.35rem);
                width: max-content;
                min-width: 0;
                will-change: transform, opacity;
                animation: none;
                opacity: 1;
                transform: none;
            }

            .hero--phase2 .hero__verticalMarqueeTrack {
                animation: heroVerticalMarquee 19.5s linear infinite;
                animation-play-state: running;
                animation-delay: 0s;
                animation-fill-mode: backwards;
                opacity: 1;
            }

            .hero__verticalSlide {
                flex: 0 0 auto;
                width: auto;
                min-width: 0;
                min-height: 0;
                padding: clamp(8px, 2vw, 14px) clamp(8px, 3vw, 14px);
                justify-content: flex-start;
                box-sizing: border-box;
            }

            .hero__verticalSlide .hero__verticalCopy:first-child {
                margin-right: clamp(6px, 3vw, 16px);
            }

            .hero__verticalCopy {
                font-size: clamp(14px, 2.85vw, 15px);
                line-height: 2.15;
                padding-bottom: 0.22em;
                box-sizing: border-box;
            }
        }

        @media (max-width: 860px) and (min-width: 375px) {
            .hero__verticalCopy {
                line-height: 2.05;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero__verticalSlider {
                scroll-behavior: auto;
            }

            @media (max-width: 860px) {
                .hero__verticalMarqueeTrack {
                    animation: none !important;
                    transform: none !important;
                    opacity: 1;
                }

                .hero--phase2 .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone) {
                    opacity: 1;
                }
            }

            @media (min-width: 861px) {
                .hero__verticalMarqueeTrack {
                    animation: none !important;
                    transform: none !important;
                }

                .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone) {
                    transition: none !important;
                }

                .hero--phase2 .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone) {
                    opacity: 1;
                    transform: none;
                }

                .hero:not(.hero--phase2) .hero__verticalMarqueeTrack>.hero__verticalSlide:not(.hero__verticalSlide--clone) {
                    opacity: 0;
                }
            }
        }

        .hero--phase2 .hero__contentPrimaryCopy {
            opacity: 0;
            transform: translateY(-40px);
            pointer-events: none;
        }

        .hero--phase2 .hero__contentPrimary {
            opacity: 1;
            pointer-events: auto;
        }

        .hero--phase2 .hero__contentVertical {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .hero--phase2 .hero__dim {
            opacity: 1;
        }

        .hero__subtitle {
            font-family: "Inter", system-ui, sans-serif;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-size: clamp(18px, 2.8vw, 40px);
            color: rgba(255, 255, 255, .92);
            margin: 0 0 20px 0;
            line-height: 1.35;
            text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
        }

        @media (max-width: 860px) {
            .hero__subtitle {
                font-size: clamp(26px, 6.8vw, 36px);
            }
        }

        @media (min-width: 861px) {
            .hero__subtitle {
                font-size: clamp(22px, 3.2vw, 48px);
                margin-bottom: 10px;
                line-height: 1.2;
            }
        }

        .hero__lead {
            max-width: 54ch;
            margin: clamp(22px, 3.8vw, 54px) auto 0;
            color: rgba(255, 255, 255, .86);
            font-size: 14px;
            line-height: 1.85;
        }

        @media (min-width: 861px) {
            .hero__lead {
                font-size: clamp(16px, 1.2vw, 20px);
                line-height: 1.65;
                margin-top: clamp(12px, 1.6vw, 24px);
            }
        }

        .hero__cta {
            margin-top: 18px;
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            min-width: 160px;
            padding: 0 22px;
            border-radius: 999px;
            font-family: "Inter", system-ui, sans-serif;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            font-size: 10px;
            border: 1px solid rgba(255, 255, 255, .4);
            color: #fff;
            background: rgba(0, 0, 0, .08);
            transition: background .2s ease, color .2s ease;
        }

        .btn:hover {
            background: rgba(255, 255, 255, .16);
        }

        .btn--solid {
            background: rgba(255, 255, 255, .92);
            color: #111;
            border-color: rgba(255, 255, 255, .92);
        }

        .btn--solid:hover {
            background: #fff;
        }

        .btn,
        .drawerBtn,
        .wbIntro__btn,
        .performanceHubCard__cta,
        .eventDetailBtn,
        .sectionMore a,
        .form button {
            font-size: 14px !important;
        }

        .form button[type="submit"] {
            font-size: 14px !important;
        }

        .hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border: none;
            border-radius: 0;
            background: transparent;
            cursor: pointer;
            position: relative;
            transition: opacity .24s ease;
        }

        .hamburger i,
        .hamburger i::before,
        .hamburger i::after {
            content: "";
            position: absolute;
            left: 50%;
            width: 19px;
            height: 1px;
            background: rgba(255, 255, 255, .94);
            transform: translateX(-50%);
            transition: transform .34s cubic-bezier(.22, .76, .22, 1), top .34s cubic-bezier(.22, .76, .22, 1), opacity .24s ease;
            border-radius: 2px;
        }

        .topbar--scrolled .hamburger {
            border: none;
            background: transparent;
        }

        .topbar--scrolled .hamburger i,
        .topbar--scrolled .hamburger i::before,
        .topbar--scrolled .hamburger i::after {
            background: rgba(17, 17, 17, .84);
        }

        .hamburger i {
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
        }

        .hamburger i::before {
            display: none;
        }

        .hamburger i::after {
            top: 7px;
        }

        .hamburger.is-open i {
            opacity: 1;
        }

        .hamburger.is-open i {
            transform: translateX(-50%) translateY(-50%) rotate(45deg) scaleX(1.02);
            background: rgba(17, 17, 17, .9);
        }

        .hamburger.is-open i::before {
            display: none;
        }

        .hamburger.is-open i::after {
            top: 0;
            transform: translateX(-50%) rotate(-90deg) scaleX(1.02);
            background: rgba(17, 17, 17, .9);
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .38);
            opacity: 0;
            pointer-events: none;
            transition: opacity .22s ease;
            z-index: 48;
        }

        .overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: min(78vw, 320px);
            height: 100vh;
            height: 100dvh;
            max-height: 100vh;
            max-height: 100dvh;
            background: rgba(247, 247, 247, .98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transform: translateX(100%);
            transition: transform .26s ease;
            z-index: 49;
            padding-top: calc(88px + env(safe-area-inset-top, 0px));
            border-left: 1px solid rgba(0, 0, 0, .08);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .drawer.is-open {
            transform: translateX(0);
        }

        .drawer__scroll {
            flex: 1 1 auto;
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            display: flex;
            flex-direction: column;
        }

        .drawer__inner {
            padding: 0 22px 22px;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            gap: 0;
            font-family: "Inter", system-ui, sans-serif;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-size: 13px;
            color: rgba(17, 17, 17, .92);
        }

        .drawer a {
            opacity: .9;
        }

        .drawer a:hover {
            opacity: 1;
        }

        .drawer__inner .drawerLink {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(17, 17, 17, .08);
        }

        .drawer__inner .drawerLink::after {
            content: "く";
            font-family: "Inter", system-ui, sans-serif;
            font-size: 12px;
            transform: rotate(180deg);
            color: rgba(17, 17, 17, .62);
        }

        .drawer__footer {
            margin-top: auto;
            flex-shrink: 0;
            padding: 0 22px 24px;
            padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px) + 12px);
            border-top: 1px solid rgba(0, 0, 0, .08);
        }

        .drawer__actions {
            display: grid;
            gap: 8px;
            margin: 16px 0 14px;
        }

        .drawerBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            border-radius: 999px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .1em;
            text-transform: uppercase;
            border: 1px solid rgba(17, 17, 17, .2);
            color: rgba(17, 17, 17, .9);
            background: rgba(255, 255, 255, .78);
        }

        .drawerBtn--primary {
            background: rgba(255, 255, 255, .78);
            border-color: rgba(17, 17, 17, .2);
            color: rgba(17, 17, 17, .9);
        }

        .drawerBtn:hover,
        .drawerBtn:focus-visible,
        .drawerBtn:active {
            background: var(--ui-blue);
            border-color: var(--ui-blue);
            color: #fff;
            outline: none;
        }

        .drawerSocial {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 2px;
        }

        .drawerSocial .socialIcon {
            width: 26px;
            height: 26px;
            border-color: rgba(17, 17, 17, .24);
            color: rgba(17, 17, 17, .8);
            background: rgba(255, 255, 255, .6);
        }

        .drawerSocial .socialIcon:hover {
            color: #fff;
            border-color: var(--ui-blue);
            background: var(--ui-blue);
        }

        @media (max-width: 860px) {
            .drawer {
                padding-top: calc(64px + env(safe-area-inset-top, 0px) + 20px);
            }

            .drawer__inner {
                padding-top: 6px;
                padding-bottom: 14px;
            }

            .drawer__inner .drawerLink {
                padding: 9px 0;
            }
        }

        @media (max-width: 860px) {
            .nav {
                display: none;
            }

            .topbar__inner {
                justify-content: space-between;
            }

            .topbarRight {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-right: 0px;
            }

            .hamburger {
                display: inline-block;
                transform: translateY(-5px);
            }

            .brand__mark {
                width: 64px;
                height: 64px;
            }

            .topbar {
                height: 64px;
            }

            .hero__center {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                min-height: 100%;
                padding-top: calc(64px + env(safe-area-inset-top, 0px));
                padding-bottom: clamp(114px, 17vh, 152px);
                box-sizing: border-box;
            }

            body {
                padding-bottom: 0;
            }

            .mobileQuickActions {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 46;
                display: none;
                grid-template-columns: 1fr 1fr;
                gap: 1px;
                background: rgba(17, 17, 17, .24);
                border-top: 1px solid rgba(17, 17, 17, .16);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                transition: transform .24s ease, opacity .24s ease;
            }

            .mobileQuickActions .siteTab {
                box-sizing: border-box;
                display: grid;
                place-items: center;
                writing-mode: horizontal-tb;
                text-orientation: mixed;
                width: auto;
                min-height: 58px;
                border: none;
                background: rgba(255, 255, 255, .92);
                color: #111;
                font-family: "Inter", system-ui, sans-serif;
                letter-spacing: .08em;
                font-size: 11px;
                text-decoration: none;
                transition: background .2s ease, color .2s ease;
            }

            .topbarQuickActions {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .topbarQuickLink {
                display: inline-flex;
                align-items: center;
                font-family: "Inter", system-ui, sans-serif;
                font-weight: 600;
                letter-spacing: .08em;
                text-transform: uppercase;
                text-decoration: none;
                color: rgba(255, 255, 255, .92);
                font-size: 12px;
                white-space: nowrap;
            }

            .topbarQuickLink::before {
                content: "・";
                margin-right: 2px;
                opacity: .95;
            }

            .topbar--scrolled .topbarQuickLink {
                color: rgba(17, 17, 17, .88);
            }

            .mobileQuickActions .siteTab:hover,
            .mobileQuickActions .siteTab:focus-visible {
                background: var(--ui-blue);
                color: #fff;
            }

            body.is-loading .mobileQuickActions {
                opacity: 0;
                transform: translateY(10px);
                pointer-events: none;
            }

            @media (max-width: 460px) {
                .brand {
                    min-width: 160px;
                }

                .topbarQuickActions {
                    gap: 8px;
                }

                .topbarQuickLink {
                    font-size: 11px;
                    letter-spacing: .06em;
                }

                .topbarQuickLink::before {
                    margin-right: 2px;
                }
            }

            @media (max-width: 375px) {
                .brand {
                    min-width: 140px;
                }

                .topbarQuickActions {
                    gap: 6px;
                    margin-left: -20px;
                }

                .topbarQuickLink {
                    font-size: 11px;
                    letter-spacing: .06em;
                }

                .topbarQuickLink::before {
                    margin-right: 2px;
                }
            }

        }

        .section {
            padding: clamp(76px, 8vw, 116px) 20px;
            border-top: 1px solid rgba(17, 17, 17, .09);
        }

        @media (max-width: 860px) {
            .section {
                padding: clamp(51px, 8vw, 91px) 0px;
            }
        }

        .section.reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
            will-change: opacity, transform;
        }

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

        .container {
            width: min(var(--max), 100%);
            margin: 0 auto;
            padding-inline: var(--gutter);
        }

        .section__eyebrow {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--accent-strong);
            margin: 0 0 14px;
        }

        .section__title {
            margin: 0;
            font-size: clamp(24px, 3.2vw, 40px);
            line-height: 1.24;
            letter-spacing: .01em;
            font-weight: 600;
        }

        .section__lead {
            margin: 22px 0 0;
            max-width: 60ch;
            font-size: clamp(13px, 1.2vw, 15px);
            color: rgba(17, 17, 17, .74);
        }

        #wb-intro.section {
            position: relative;
            overflow: hidden;
            background: #525861;
            border-top: none;
        }

        #wb-intro .wbIntro__reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1);
            will-change: opacity, transform;
        }

        #wb-intro.is-visible .wbIntro__reveal {
            opacity: 1;
            transform: translateY(0);
        }

        #wb-intro.is-visible .wbIntro__copy > .wbIntro__reveal:nth-child(1) {
            transition-delay: .05s;
        }

        #wb-intro.is-visible .wbIntro__copy > .wbIntro__reveal:nth-child(2) {
            transition-delay: .13s;
        }

        #wb-intro.is-visible .wbIntro__copy > .wbIntro__reveal:nth-child(3) {
            transition-delay: .21s;
        }

        #wb-intro.is-visible .wbIntro__copy > .wbIntro__reveal:nth-child(4) {
            transition-delay: .29s;
        }

        #wb-intro.is-visible .wbIntro__copy > .wbIntro__reveal:nth-child(5) {
            transition-delay: .37s;
        }

        #wb-intro.is-visible .wbIntro__btn.wbIntro__reveal {
            transition-delay: .45s;
        }

        .wbIntro__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 0;
            background-color: #525861;
            transition: opacity .75s ease .35s;
        }

        #wb-intro.is-visible .wbIntro__bg {
            opacity: 1;
        }

        .wbIntro__bgFallback {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            margin: 0;
        }

        .wbIntro__bgVideo,
        .wbIntro__bgFallback img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .wbIntro__bgVideo {
            display: none;
            pointer-events: none;
        }

        .wbIntro__bg.is-video-playing .wbIntro__bgFallback {
            display: none;
        }

        .wbIntro__bg.is-video-playing .wbIntro__bgVideo {
            display: block;
        }

        .wbIntro__bgScrim {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background: rgba(82, 88, 97, 0.28);
        }

        #wb-intro .wbIntro {
            position: relative;
            z-index: 1;
        }

        .wbIntro__inner {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: clamp(28px, 4vw, 56px);
            align-items: center;
        }

        .wbIntro__copy {
            min-width: 0;
        }

        .wbIntro__text {
            margin: clamp(28px, 3.2vw, 40px) 0 0;
            font-size: clamp(13px, 1.15vw, 15px);
            line-height: 2;
            letter-spacing: .03em;
            color: rgba(17, 17, 17, .72);
            max-width: 38em;
        }

        .wbIntro__text + .wbIntro__text {
            margin-top: clamp(18px, 2.8vw, 28px);
        }

        .wbIntro__btn,
        .performanceHubCard__cta {
            box-sizing: border-box;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 158px;
            height: 42px;
            min-height: 42px;
            padding: 0 20px;
            border-radius: 999px;
            border: 1px solid var(--ui-blue);
            background: var(--ui-blue);
            color: #fff;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 14px !important;
            font-weight: 400;
            line-height: 1;
            letter-spacing: .1em;
            text-transform: uppercase;
            transition: background .2s ease, border-color .2s ease, transform .2s ease;
        }

        .wbIntro__btn {
            grid-column: 1;
            align-self: start;
            justify-self: start;
            width: max-content;
            max-width: 100%;
            text-decoration: none;
        }

        .wbIntro__btn:hover,
        .performanceHubCard:hover .performanceHubCard__cta {
            background: var(--ui-blue-dark);
            border-color: var(--ui-blue-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .wbIntro__btn:focus-visible {
            outline: 2px solid var(--ui-blue);
            outline-offset: 3px;
        }

        @media (min-width: 861px) {
            #wb-intro .wbIntro__bgVideo {
                inset: auto;
                top: 50%;
                left: 50%;
                width: auto;
                height: auto;
                min-width: 100%;
                min-height: 100%;
                max-width: none;
                object-fit: cover;
                object-position: 72% 44%;
                transform: translate(-38%, -52%);
            }

            #wb-intro .wbIntro__bgFallback img {
                inset: 0;
                width: 100%;
                height: 100%;
                min-width: 0;
                min-height: 0;
                max-width: none;
                transform: none;
                object-fit: cover;
                object-position: center center;
            }

            #wb-intro::after {
                content: "";
                position: absolute;
                inset: 0;
                z-index: 1;
                pointer-events: none;
                background: linear-gradient(
                    90deg,
                    rgba(58, 63, 71, 0.9) 0%,
                    rgba(58, 63, 71, 0.72) 28%,
                    rgba(58, 63, 71, 0.34) 52%,
                    rgba(82, 88, 97, 0.08) 78%,
                    transparent 100%
                );
            }

            #wb-intro .wbIntro__bgScrim {
                background: transparent;
            }

            #wb-intro .wbIntro {
                z-index: 2;
            }

            #wb-intro .section__eyebrow {
                color: rgba(255, 255, 255, 0.72);
            }

            #wb-intro .section__title {
                color: #fff;
            }

            #wb-intro .wbIntro__text {
                color: rgba(255, 255, 255, 0.88);
            }

            .wbIntro__inner {
                min-height: clamp(380px, 42vw, 560px);
            }
        }

        @media (max-width: 860px) {
            #wb-intro.section {
                padding-bottom: clamp(40px, 7vw, 64px);
            }

            #wb-intro .wbIntro__bgVideo,
            #wb-intro .wbIntro__bgFallback img {
                inset: 0;
                width: 100%;
                height: 100%;
                min-width: 0;
                min-height: 0;
                transform: none;
                object-fit: cover;
                object-position: 42% center;
                filter: brightness(0.84) contrast(1.02);
            }

            .wbIntro__inner {
                grid-template-columns: 1fr;
                gap: 0;
                align-items: stretch;
            }

            .wbIntro__text {
                margin: clamp(43px, 3.2vw, 40px) 0 0;
            }

            .wbIntro__copy {
                order: 1;
                position: relative;
                z-index: 2;
                padding-bottom: 10px;
            }

            .wbIntro__copy .wbIntro__text:last-child {
                margin-bottom: 0;
            }

            #wb-intro .section__eyebrow {
                color: rgba(255, 255, 255, 0.72);
            }

            #wb-intro .section__title {
                color: #fff;
            }

            #wb-intro .wbIntro__text {
                color: rgba(255, 255, 255, 0.88);
            }

            #wb-intro .wbIntro__bgScrim {
                background: transparent;
            }

            .wbIntro__inner {
                min-height: clamp(420px, 96vw, 620px);
                padding-bottom: clamp(8px, 2vw, 16px);
            }

            .wbIntro__btn {
                order: 2;
                grid-column: 1;
                justify-self: center;
                position: relative;
                z-index: 2;
                margin-top: clamp(32px, 7vw, 44px);
                margin-bottom: 0;
            }
        }

        #performance {
            border-top: none;
        }

        #performance.section.reveal .performanceHubCard {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1), border-color .22s ease, box-shadow .22s ease;
        }

        #performance.section.reveal.is-visible .performanceHubCard:nth-child(1) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: .06s;
        }

        #performance.section.reveal.is-visible .performanceHubCard:nth-child(2) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: .16s;
        }

        #performance.section.reveal.is-visible .performanceHubCard:nth-child(3) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: .26s;
        }

        #performance.section.reveal.is-visible .performanceHubCard:nth-child(4) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: .36s;
        }

        #performance.section.reveal.is-visible .performanceHubCard:hover {
            transform: translateY(-2px);
        }

        @media (prefers-reduced-motion: reduce) {
            #performance.section.reveal .performanceHubCard,
            #performance.section.reveal.is-visible .performanceHubCard {
                opacity: 1;
                transform: none;
                transition-delay: 0s !important;
            }
        }

        #plans {
            background: #f7f7f7;
            border-top: none;
        }

        #news {
            border-top: none;
        }

        #events {
            background: #f7f7f7;
        }

        @keyframes airflowCameraSway {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            6% {
                transform: translateY(-2px) rotate(-1.6deg);
            }

            12% {
                transform: translateY(0) rotate(1.2deg);
            }

            18% {
                transform: translateY(0) rotate(0deg);
            }

            60% {
                transform: translateY(0) rotate(0deg);
            }

            66% {
                transform: translateY(-2px) rotate(-1.4deg);
            }

            72% {
                transform: translateY(0) rotate(1deg);
            }

            78% {
                transform: translateY(0) rotate(0deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        #concept-about {
            position: relative;
            --conceptAbout-floatOpacity: .85;
            --conceptAbout-aromaHomeScale: 0.74;
            --conceptAbout-aromaMidScale: calc(var(--conceptAbout-aromaHomeScale) * 0.8636363636);
            --conceptAbout-aromaDesktopEndX: 130%;
            --conceptAbout-aromaDesktopEndY: -162%;
            --conceptAbout-aromaMobileEndX: 84%;
            --conceptAbout-aromaMobileEndY: -142%;
            --conceptAbout-aromaMobileEndScale: calc(var(--conceptAbout-aromaHomeScale) * 0.992);
            --conceptAbout-aromaMobileHomeNudgeLeft: -4px;
            --conceptAbout-aromaMobileHomeNudgeDown: 24px;
            --conceptAbout-aromaDesktopHomeNudgeLeft: 0px;
            --conceptAbout-aromaHomeNudgeDown: 0px;
        }

        @media (min-width: 769px) {
            #concept-about {
                --conceptAbout-aromaHomeScale: 0.66;
                --conceptAbout-aromaMidScale: calc(var(--conceptAbout-aromaHomeScale) * 0.992);
                --conceptAbout-aromaHomeNudgeDown: 16px;
                --conceptAbout-aromaDesktopHomeNudgeLeft: 8px;
                --conceptAbout-aromaMobileHomeNudgeLeft: 0px;
                --conceptAbout-aromaMobileHomeNudgeDown: 0px;
            }
        }

        @keyframes conceptAboutFloatWrapFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .conceptAbout__floatIconWrap {
            position: absolute;
            inset: 0;
            display: block;
            pointer-events: none;
            opacity: 0;
        }

        .conceptAbout__floatIconWrap--moisture {
            z-index: 1;
        }

        .conceptAbout__floatIconWrap--aroma {
            z-index: 2;
        }

        #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__plusWbStack .conceptAbout__floatIconWrap,
        #concept-about.is-visible .conceptAbout__desktopBadges .conceptAbout__badgeRightStack .conceptAbout__floatIconWrap {
            animation: conceptAboutFloatWrapFadeIn 0.65s cubic-bezier(.2, .7, .2, 1) 1.2s forwards;
        }

        .conceptAbout__container {
            display: block;
        }

        .conceptAbout__desktopBadges {
            display: none;
        }

        .conceptAbout__eggs {
            margin-top: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(14px, 2.8vw, 20px);
            position: relative;
            padding-bottom: clamp(26px, 3vw, 40px);
        }

        .conceptAbout__egg {
            width: clamp(84px, 10vw, 124px);
            height: auto;
            display: block;
            flex: 0 1 auto;
            opacity: 0;
            transform: translateY(-14px);
            transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
        }

        .conceptAbout__mitasu {
            position: absolute;
            left: 50%;
            bottom: 0;
            --mitasu-end-shift: 35%;
            transform: translate(-50%, calc(var(--mitasu-end-shift) - 10%));
            display: inline-block;
            font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
            font-size: clamp(28px, 3.4vw, 44px);
            letter-spacing: .08em;
            line-height: 1;
            color: #3A3A3A;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 1.35s ease, transform 1.35s cubic-bezier(.2, .7, .2, 1);
            transition-delay: .72s;
        }

        .conceptAbout__eggs>*:nth-child(1) {
            transition-delay: .08s;
        }

        .conceptAbout__eggs>*:nth-child(2) {
            transition-delay: .24s;
        }

        .conceptAbout__eggs>*:nth-child(3) {
            transition-delay: .4s;
        }

        .conceptAbout__eggs>*:nth-child(4) {
            transition-delay: .72s;
        }

        .conceptAbout__plusWb {
            margin-top: clamp(10px, 1.6vw, 18px);
            width: min(100%, 320px);
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transition: opacity .7s ease;
        }

        .conceptAbout__plusWbReveal {
            width: 100%;
            transform: translateY(16px);
            transition: transform .7s cubic-bezier(.2, .7, .2, 1);
        }

        .conceptAbout__plusWbStack {
            position: relative;
            width: 78%;
            margin-left: auto;
            margin-right: auto;
        }

        .conceptAbout__plusWbImage {
            display: block;
            width: 100%;
            height: auto;
        }

        .conceptAbout__plusWbColumn {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            min-width: 0;
        }

        .conceptAbout__moistureDrop--mobile {
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-138%, calc(-22% - 44px)) scale(0.65);
            width: 22%;
            height: auto;
            pointer-events: none;
            opacity: 0;
            will-change: transform, opacity, left;
        }

        .conceptAbout__cookingAroma--mobile {
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
            width: 22%;
            height: auto;
            pointer-events: none;
            opacity: 0;
            will-change: transform, opacity, left;
        }

        .conceptAbout__moistureDrop--desktop,
        .conceptAbout__cookingAroma--desktop {
            display: none;
        }

        #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__moistureDrop--mobile {
            animation: conceptAboutMoistureMobileCycle 14s linear infinite;
            animation-delay: 1.2s;
        }

        #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__cookingAroma--mobile {
            animation: conceptAboutCookingAromaMobileCycle 14s linear infinite;
            animation-delay: 1.2s;
        }

        .conceptAbout__plusWbColumn .conceptAbout__badgeRightCaption {
            margin: clamp(10px, 1.2vw, 16px) 0 0;
            padding: 0 clamp(8px, 3vw, 20px);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
            font-size: clamp(14px, 3.8vw, 17px);
            letter-spacing: .08em;
            line-height: 1.35;
            color: #3A3A3A;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
            transition-delay: .12s;
        }

        #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__plusWbColumn .conceptAbout__badgeRightCaption {
            opacity: 1;
            transform: translateY(0);
        }

        #concept-about.is-visible .conceptAbout__egg {
            opacity: 1;
            transform: translateY(0);
            transform-origin: 50% 55%;
            animation: airflowCameraSway 4.4s cubic-bezier(.18, .85, .22, 1) infinite;
        }

        #concept-about.is-visible .conceptAbout__eggs .conceptAbout__egg:nth-child(1) {
            animation-delay: 1.05s;
        }

        #concept-about.is-visible .conceptAbout__eggs .conceptAbout__egg:nth-child(2) {
            animation-delay: 1.22s;
        }

        #concept-about.is-visible .conceptAbout__eggs .conceptAbout__egg:nth-child(3) {
            animation-delay: 1.39s;
        }

        #concept-about.is-visible .conceptAbout__mitasu {
            opacity: 1;
            transform: translate(-50%, var(--mitasu-end-shift));
        }

        .conceptAbout__plusWb.is-visible {
            opacity: 1;
        }

        .conceptAbout__plusWb.is-visible .conceptAbout__plusWbReveal {
            transform: translateY(0);
        }

        @media (min-width: 521px) and (max-width: 768px) {
            .conceptAbout__container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                column-gap: clamp(20px, 4vw, 40px);
                row-gap: clamp(24px, 4vw, 36px);
            }

            .conceptAbout__text {
                flex: 1 1 280px;
                min-width: min(100%, 260px);
                text-align: center;
            }

            .conceptAbout__text .section__eyebrow {
                font-size: 11px;
                margin-bottom: 12px;
            }

            .conceptAbout__text .section__title {
                font-size: clamp(26px, 3.8vw, 34px);
                line-height: 1.22;
            }

            .conceptAbout__eggs {
                flex: 0 1 460px;
                box-sizing: border-box;
                min-width: min(100%, 360px);
                max-width: min(100%, 520px);
                margin-top: 0;
                margin-left: auto;
                margin-right: auto;
                justify-content: center;
            }

            .conceptAbout__egg {
                width: clamp(104px, 13.5vw, 138px);
                flex: 0 0 auto;
            }

            .conceptAbout__mitasu {
                position: absolute;
                left: 54%;
                bottom: 0;
                --mitasu-end-shift: 35%;
                transform: translate(-50%, calc(var(--mitasu-end-shift) - 10%));
                display: inline-block;
                font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
                font-size: clamp(18px, 2.4vw, 44px);
                letter-spacing: .08em;
                line-height: 1;
                color: #3A3A3A;
                white-space: nowrap;
                pointer-events: none;
                opacity: 0;
                transition: opacity 1.35s ease, transform 1.35s cubic-bezier(.2, .7, .2, 1);
                transition-delay: .72s;
            }

            .conceptAbout__plusWb {
                flex: 0 1 460px;
                box-sizing: border-box;
                min-width: min(100%, 360px);
                max-width: min(100%, 520px);
                margin-top: 8px;
                margin-left: auto;
                margin-right: auto;
            }

            .conceptAbout__plusWbStack {
                width: 68%;
            }
        }

        @media (min-width: 769px) {
            .conceptAbout__container {
                display: grid;
                
                grid-template-columns: 1fr;
                gap: clamp(36px, 4.5vw, 56px);
                align-items: center;
            }

            .conceptAbout__text {
                width: 100%;
                min-width: 0;
            }

            .conceptAbout__eggs {
                margin-top: 0;
                width: 100%;
                justify-content: center;
                gap: clamp(12px, 1.8vw, 24px);
            }

            .conceptAbout__mitasu {
                position: absolute;
                left: 52%;
                bottom: 0;
                --mitasu-end-shift: 35%;
                transform: translate(-50%, calc(var(--mitasu-end-shift) - 10%));
                display: inline-block;
                font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
                font-size: clamp(22px, -0.6vw, 30px);
                letter-spacing: .08em;
                line-height: 1;
                color: #3A3A3A;
                white-space: nowrap;
                pointer-events: none;
                opacity: 0;
                transition: opacity 1.35s ease, transform 1.35s cubic-bezier(.2, .7, .2, 1);
                transition-delay: .72s;
            }

            .conceptAbout__plusWb {
                grid-column: 2;
                width: 100%;
                max-width: 460px;
                margin-top: 8px;
            }

            .conceptAbout__container .specGraph {
                margin-top: 0;
                max-width: none;
                margin-left: auto;
                margin-right: auto;
            }

            .conceptAbout__container .specGraph__item {
                width: 116px;
                height: 116px;
            }

            .conceptAbout__container .specGraph__itemValue {
                font-size: 18px;
            }

            .conceptAbout__container .specGraph__feature {
                width: 200px;
                height: 200px;
            }

            .conceptAbout__container .specGraph__featureValue {
                font-size: clamp(18px, 2vw, 24px);
            }

            .conceptAbout__container .specGraph__baseline {
                gap: 20px;
            }
        }

        @keyframes conceptAboutMoistureDesktopCycle {
            0% {
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                opacity: var(--conceptAbout-floatOpacity);
            }

            40% {
                left: calc(50% - 46px);
                top: 50%;
                transform: translate(-146%, -128%) scale(0.7);
                opacity: var(--conceptAbout-floatOpacity);
            }

            48% {
                left: calc(50% - 46px);
                top: 50%;
                transform: translate(-146%, -128%) scale(0.7);
                opacity: var(--conceptAbout-floatOpacity);
            }

            50% {
                left: calc(50% - 46px);
                top: 50%;
                transform: translate(-146%, -128%) scale(0.7);
                opacity: 0;
            }

            50.5% {
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                opacity: 0;
            }

            71.93% {
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                opacity: 0;
            }

            72% {
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                opacity: 0;
            }

            74% {
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                opacity: var(--conceptAbout-floatOpacity);
            }

            100% {
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                opacity: var(--conceptAbout-floatOpacity);
            }
        }

        @keyframes conceptAboutCookingAromaDesktopCycle {
            0% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            40% {
                left: calc(50% + 14px);
                top: 50%;
                transform: translate(var(--conceptAbout-aromaDesktopEndX), var(--conceptAbout-aromaDesktopEndY)) scale(var(--conceptAbout-aromaMidScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            48% {
                left: calc(50% + 14px);
                top: 50%;
                transform: translate(var(--conceptAbout-aromaDesktopEndX), var(--conceptAbout-aromaDesktopEndY)) scale(var(--conceptAbout-aromaMidScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            50% {
                left: calc(50% + 14px);
                top: 50%;
                transform: translate(var(--conceptAbout-aromaDesktopEndX), var(--conceptAbout-aromaDesktopEndY)) scale(var(--conceptAbout-aromaMidScale));
                opacity: 0;
            }

            50.5% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: 0;
            }

            71.93% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: 0;
            }

            72% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: 0;
            }

            74% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            100% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: var(--conceptAbout-floatOpacity);
            }
        }

        @keyframes conceptAboutMoistureMobileCycle {
            0% {
                left: 50%;
                top: 50%;
                transform: translate(-138%, calc(-22% - 32px)) scale(0.65);
                opacity: var(--conceptAbout-floatOpacity);
            }

            40% {
                left: calc(50% - 38px);
                top: 50%;
                transform: translate(-146%, -112%) scale(0.7);
                opacity: var(--conceptAbout-floatOpacity);
            }

            48% {
                left: calc(50% - 38px);
                top: 50%;
                transform: translate(-146%, -112%) scale(0.7);
                opacity: var(--conceptAbout-floatOpacity);
            }

            50% {
                left: calc(50% - 38px);
                top: 50%;
                transform: translate(-146%, -112%) scale(0.7);
                opacity: 0;
            }

            50.5% {
                left: 50%;
                top: 50%;
                transform: translate(-138%, calc(-22% - 32px)) scale(0.65);
                opacity: 0;
            }

            71.93% {
                left: 50%;
                top: 50%;
                transform: translate(-138%, calc(-22% - 32px)) scale(0.65);
                opacity: 0;
            }

            72% {
                left: 50%;
                top: 50%;
                transform: translate(-138%, calc(-22% - 32px)) scale(0.65);
                opacity: var(--conceptAbout-floatOpacity);
            }

            100% {
                left: 50%;
                top: 50%;
                transform: translate(-138%, calc(-22% - 32px)) scale(0.65);
                opacity: var(--conceptAbout-floatOpacity);
            }
        }

        @keyframes conceptAboutCookingAromaMobileCycle {
            0% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            40% {
                left: calc(50% + 14px);
                top: 50%;
                transform: translate(var(--conceptAbout-aromaMobileEndX), var(--conceptAbout-aromaMobileEndY)) scale(var(--conceptAbout-aromaMobileEndScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            48% {
                left: calc(50% + 14px);
                top: 50%;
                transform: translate(var(--conceptAbout-aromaMobileEndX), var(--conceptAbout-aromaMobileEndY)) scale(var(--conceptAbout-aromaMobileEndScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            50% {
                left: calc(50% + 14px);
                top: 50%;
                transform: translate(var(--conceptAbout-aromaMobileEndX), var(--conceptAbout-aromaMobileEndY)) scale(var(--conceptAbout-aromaMobileEndScale));
                opacity: 0;
            }

            50.5% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: 0;
            }

            71.93% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: 0;
            }

            72% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: 0;
            }

            74% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: var(--conceptAbout-floatOpacity);
            }

            100% {
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                opacity: var(--conceptAbout-floatOpacity);
            }
        }

        @media (min-width: 769px) {
            .conceptAbout__desktopBadges {
                margin-top: clamp(18px, 9vw, 55px);
                display: flex;
                align-items: flex-end;
                justify-content: center;
                gap: clamp(14px, 1.6vw, 22px);
                flex-wrap: nowrap;
                
                width: min(100%, max(980px, 68vw));
                margin-left: auto;
                margin-right: auto;
            }

            .conceptAbout__desktopBadgesLeftGroup {
                flex: 0 1 45%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: clamp(10px, 1.2vw, 16px);
                min-width: 0;
            }

            .conceptAbout__desktopBadgesLeft {
                display: flex;
                align-items: center;
                gap: clamp(12px, 1.4vw, 20px);
                min-width: 0;
            }

            .conceptAbout__desktopMitasu {
                font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
                letter-spacing: .08em;
                line-height: 1.2;
                color: #3A3A3A;
                text-align: center;
                font-size: clamp(15px, 1.35vw, 18px);
                opacity: 0;
                transform: translateY(10px);
                transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
                transition-delay: .12s;
            }

            .conceptAbout__desktopBadge {
                flex: 0 0 auto;
                height: auto;
                display: block;
                max-width: 100%;
                opacity: 0;
                transform: translateY(10px);
                transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
            }

            .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge {
                flex: 1 1 0;
                width: 100%;
                min-width: 0;
            }

            .conceptAbout__badgeRightColumn {
                flex: 0 1 40%;
                display: flex;
                flex-direction: column;
                align-items: center;
                min-width: 0;
                margin: 0 0 0 30px;
            }

            .conceptAbout__badgeRightStack {
                position: relative;
                width: 100%;
                min-width: 0;
                margin: 0;
            }

            .conceptAbout__badgeRightStack .conceptAbout__desktopBadge--right {
                display: block;
                width: 100%;
                margin: 0;
            }

            .conceptAbout__badgeRightColumn .conceptAbout__badgeRightCaption {
                margin: clamp(10px, 1.2vw, 16px) 0 0;
                padding: 0 0 0 60px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
                font-size: clamp(15px, 1.35vw, 18px);
                letter-spacing: .08em;
                line-height: 1.2;
                color: #3A3A3A;
                text-align: center;
                opacity: 0;
                transform: translateY(10px);
                transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
                transition-delay: .12s;
            }

            #concept-about.is-visible .conceptAbout__badgeRightColumn .conceptAbout__badgeRightCaption {
                opacity: 1;
                transform: translateY(0);
            }

            .conceptAbout__moistureDrop--mobile,
            .conceptAbout__cookingAroma--mobile {
                display: none !important;
            }

            .conceptAbout__moistureDrop--desktop {
                display: block;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
                width: 22%;
                height: auto;
                pointer-events: none;
                opacity: 0;
                will-change: transform, opacity, left;
            }

            .conceptAbout__cookingAroma--desktop {
                display: block;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
                width: 22%;
                height: auto;
                pointer-events: none;
                opacity: 0;
                will-change: transform, opacity, left;
            }

            #concept-about.is-visible .conceptAbout__moistureDrop--desktop {
                animation: conceptAboutMoistureDesktopCycle 14s linear infinite;
                animation-delay: 1.2s;
            }

            #concept-about.is-visible .conceptAbout__cookingAroma--desktop {
                animation: conceptAboutCookingAromaDesktopCycle 14s linear infinite;
                animation-delay: 1.2s;
            }

            .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge {
                transition-delay: .12s;
            }

            .conceptAbout__desktopBadge--right {
                transition-delay: .42s;
            }

            #concept-about.is-visible .conceptAbout__desktopBadge {
                opacity: 1;
                transform: translateY(0);
            }

            #concept-about.is-visible .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge {
                transform-origin: 50% 55%;
                animation: airflowCameraSway 4.4s cubic-bezier(.18, .85, .22, 1) infinite;
            }

            #concept-about.is-visible .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge:nth-child(1) {
                animation-delay: 1.05s;
            }

            #concept-about.is-visible .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge:nth-child(2) {
                animation-delay: 1.22s;
            }

            #concept-about.is-visible .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge:nth-child(3) {
                animation-delay: 1.39s;
            }

            #concept-about.is-visible .conceptAbout__desktopMitasu {
                opacity: 1;
                transform: translateY(0);
            }

            .conceptAbout__eggs,
            .conceptAbout__plusWb {
                display: none;
            }
        }

        .specGraph {
            margin-top: 40px;
            max-width: 560px;
        }

        .specGraph__group {
            margin-bottom: 28px;
        }

        .specGraph__group:last-child {
            margin-bottom: 0;
        }

        .specGraph__label {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(17, 17, 17, .5);
            margin-bottom: 10px;
        }

        .specGraph__baseline {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            justify-items: center;
        }

        .specGraph__item {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(17, 17, 17, .06);
            border: 1px solid rgba(17, 17, 17, .1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 12px;
        }

        .specGraph__itemName {
            font-size: 10px;
            color: rgba(17, 17, 17, .55);
            margin-bottom: 2px;
        }

        .specGraph__itemValue {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-strong);
        }

        .specGraph__feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 160px;
            height: 160px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
            padding: 20px;
            text-align: center;
            color: #fff;
            border: none;
        }

        .specGraph__featureLabel {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .18em;
            text-transform: uppercase;
            opacity: .9;
            margin-bottom: 6px;
        }

        .specGraph__featureValue {
            font-size: clamp(16px, 1.8vw, 20px);
            font-weight: 600;
            letter-spacing: .02em;
        }

        @media (max-width: 520px) {
            .specGraph__baseline {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .specGraph__item {
                width: 88px;
                height: 88px;
            }

            .conceptAbout__eggs {
                gap: clamp(12px, 3.5vw, 18px);
                justify-content: center;
            }

            .conceptAbout__egg {
                width: clamp(76px, 23vw, 110px);
            }

            .conceptAbout__mitasu {
                font-size: clamp(15px, -4vw, 22px);
                --mitasu-end-shift: 28%;
            }

            .conceptAbout__plusWb {
                margin-top: clamp(28px, 1.6vw, 18px);
                width: min(100%, 320px);
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .conceptAbout__egg,
            .conceptAbout__mitasu {
                transition: none;
                opacity: 1;
            }

            .conceptAbout__egg {
                transform: none;
                animation: none !important;
            }

            .conceptAbout__mitasu {
                transform: translate(-50%, var(--mitasu-end-shift));
            }

            .conceptAbout__plusWb {
                transition: none;
                opacity: 1;
            }

            .conceptAbout__plusWbReveal {
                transform: none;
            }

            .conceptAbout__floatIconWrap {
                animation: none !important;
            }

            #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__plusWbStack .conceptAbout__floatIconWrap,
            #concept-about.is-visible .conceptAbout__desktopBadges .conceptAbout__badgeRightStack .conceptAbout__floatIconWrap {
                opacity: 1;
            }

            #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__moistureDrop--mobile {
                animation: none !important;
                opacity: var(--conceptAbout-floatOpacity);
                left: 50%;
                top: 50%;
                transform: translate(-138%, calc(-22% - 44px)) scale(0.65);
            }

            #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__cookingAroma--mobile {
                animation: none !important;
                opacity: var(--conceptAbout-floatOpacity);
                left: 50%;
                top: 50%;
                transform: translate(calc(-138% + 52% + 70px + var(--conceptAbout-aromaMobileHomeNudgeLeft)), calc(-22% - 44px + var(--conceptAbout-aromaMobileHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
            }

            .conceptAbout__plusWbColumn .conceptAbout__badgeRightCaption,
            #concept-about.is-visible .conceptAbout__plusWb.is-visible .conceptAbout__plusWbColumn .conceptAbout__badgeRightCaption {
                transition: none;
                opacity: 1;
                transform: none;
            }
        }

        @media (prefers-reduced-motion: reduce) and (min-width: 769px) {
            .conceptAbout__badgeRightColumn .conceptAbout__badgeRightCaption,
            #concept-about.is-visible .conceptAbout__badgeRightColumn .conceptAbout__badgeRightCaption {
                transition: none;
                opacity: 1;
                transform: none;
            }

            #concept-about.is-visible .conceptAbout__moistureDrop--desktop {
                animation: none !important;
                opacity: var(--conceptAbout-floatOpacity);
                left: 50%;
                top: 50%;
                transform: translate(-88%, calc(-44% - 60px)) scale(0.65);
            }

            #concept-about.is-visible .conceptAbout__cookingAroma--desktop {
                animation: none !important;
                opacity: var(--conceptAbout-floatOpacity);
                left: 50%;
                top: 50%;
                transform: translate(calc(-88% + 52% + 70px + var(--conceptAbout-aromaDesktopHomeNudgeLeft)), calc(-44% - 60px + var(--conceptAbout-aromaHomeNudgeDown))) scale(var(--conceptAbout-aromaHomeScale));
            }

            #concept-about.is-visible .conceptAbout__desktopBadgesLeft .conceptAbout__desktopBadge {
                animation: none !important;
            }
        }

        .grid-2 {
            margin-top: 44px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .card {
            border: 1px solid rgba(17, 17, 17, .12);
            padding: clamp(24px, 3vw, 34px);
            background: #fff;
            border-radius: 18px;
        }

        .card h3 {
            margin: 0 0 14px;
            font-size: 16px;
            font-weight: 600;
        }

        .card p {
            margin: 0;
            color: rgba(17, 17, 17, .72);
        }

        .list {
            margin: 16px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
            color: rgba(17, 17, 17, .72);
        }

        .list li {
            padding-left: 16px;
            position: relative;
        }

        .list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .72em;
            width: 7px;
            height: 1px;
            background: var(--accent);
        }

        .placeholder {
            text-align: center;
            color: rgba(17, 17, 17, .58);
            padding: 10px 0 0;
            margin: 0;
            font-size: 13px;
        }

        .stats {
            margin-top: 44px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .stat {
            border: 1px solid rgba(17, 17, 17, .12);
            padding: 20px 18px;
            border-radius: 16px;
        }

        .stat strong {
            display: block;
            font-family: "Inter", system-ui, sans-serif;
            font-size: clamp(20px, 2.6vw, 30px);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: .03em;
            color: var(--accent-strong);
        }

        .performanceHub__lead {
            margin: 18px 0 0;
            max-width: 40em;
            color: rgba(17, 17, 17, .68);
            font-size: clamp(14px, 1.35vw, 16px);
            line-height: 1.75;
        }

        .performanceHub__grid {
            margin-top: clamp(28px, 5vw, 48px);
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(14px, 2.4vw, 22px);
        }

        .performanceHubCard {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-height: clamp(240px, 30vw, 300px);
            padding: clamp(22px, 3.2vw, 30px);
            border: 1px solid rgba(17, 17, 17, .12);
            border-radius: 20px;
            background: #fff;
            text-align: left;
            transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
        }

        .performanceHubCard--thermal,
        .performanceHubCard--seismic,
        .performanceHubCard--air,
        .performanceHubCard--care {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .performanceHubCard--thermal {
            background-image: linear-gradient(rgba(0, 0, 0, .26), rgba(0, 0, 0, .26)), url("./images/thermal_image.webp?v=20260727-3");
        }

        .performanceHubCard--seismic {
            background-image: linear-gradient(rgba(0, 0, 0, .26), rgba(0, 0, 0, .26)), url("./images/seismic-image.webp?v=20260727-3");
        }

        .performanceHubCard--air {
            background-image: linear-gradient(rgba(0, 0, 0, -0.74), rgba(0, 0, 0, 0.26)), url("./images/air-image.webp?v=20260727-3");
        }

        .performanceHubCard--care {
            background-image: linear-gradient(rgba(0, 0, 0, .26), rgba(0, 0, 0, .26)), url("./images/maintenance-image.webp?v=20260727-3");
        }

        .performanceHubCard--thermal .performanceHubCard__eyebrow,
        .performanceHubCard--thermal .performanceHubCard__title,
        .performanceHubCard--seismic .performanceHubCard__eyebrow,
        .performanceHubCard--seismic .performanceHubCard__title,
        .performanceHubCard--air .performanceHubCard__eyebrow,
        .performanceHubCard--air .performanceHubCard__title,
        .performanceHubCard--care .performanceHubCard__eyebrow,
        .performanceHubCard--care .performanceHubCard__title {
            color: #fff;
        }

        .performanceHubCard--thermal .performanceHubCard__eyebrow,
        .performanceHubCard--seismic .performanceHubCard__eyebrow,
        .performanceHubCard--air .performanceHubCard__eyebrow,
        .performanceHubCard--care .performanceHubCard__eyebrow {
            font-size: 11px;
            letter-spacing: .18em;
        }

        .performanceHubCard--thermal .performanceHubCard__title,
        .performanceHubCard--seismic .performanceHubCard__title,
        .performanceHubCard--air .performanceHubCard__title,
        .performanceHubCard--care .performanceHubCard__title {
            font-size: clamp(21px, 2.05vw, 25px);
            letter-spacing: .04em;
        }

        @media (min-width: 769px) {
            .performanceHubCard--thermal .performanceHubCard__eyebrow,
            .performanceHubCard--seismic .performanceHubCard__eyebrow,
            .performanceHubCard--air .performanceHubCard__eyebrow,
            .performanceHubCard--care .performanceHubCard__eyebrow {
                font-size: 12px;
                letter-spacing: .2em;
            }

            .performanceHubCard--thermal .performanceHubCard__title,
            .performanceHubCard--seismic .performanceHubCard__title,
            .performanceHubCard--air .performanceHubCard__title,
            .performanceHubCard--care .performanceHubCard__title {
                font-size: clamp(24px, 2.2vw, 28px);
                letter-spacing: .05em;
            }
        }

        .performanceHubCard:hover {
            border-color: rgba(17, 17, 17, .2);
            box-shadow: 0 14px 36px rgba(17, 17, 17, .08);
            transform: translateY(-2px);
        }

        .performanceHubCard:focus-visible {
            outline: 2px solid var(--accent-strong, #5f6f67);
            outline-offset: 3px;
        }

        .performanceHubCard__eyebrow {
            margin: 0 0 10px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(17, 17, 17, .48);
        }

        .performanceHubCard__title {
            margin: 0 0 15px;
            font-size: clamp(20px, 1.95vw, 24px);
            font-weight: 600;
            line-height: 1.35;
            color: #111;
        }

        .performanceHubCard__cta {
            margin-top: auto;
            align-self: flex-start;
        }

        #performance-thermal-anchor,
        #performance-thermal-cta-anchor,
        #performance-seismic-cta-anchor,
        #performance-air-cta-anchor,
        #performance-care-cta-anchor {
            scroll-margin-top: 96px;
        }

        @media (max-width: 995px) {
            #performance-thermal-anchor,
            #performance-thermal-cta-anchor,
            #performance-seismic-cta-anchor,
            #performance-air-cta-anchor,
            #performance-care-cta-anchor {
                scroll-margin-top: 78px;
            }
        }

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

            .performanceHubCard {
                align-items: flex-start;
                text-align: left;
            }
        }

        @media (min-width: 769px) {
            .performanceHub__grid {
                gap: clamp(24px, 3.2vw, 40px);
            }
        }

        @media (min-width: 1850px) {
            .performanceHub__grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        .sectionHead {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 18px;
        }

        .sectionHead .section__title {
            margin-bottom: 0;
        }

        .carouselControls {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .carouselBtn {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            border: 1px solid rgba(17, 17, 17, .18);
            background: rgba(255, 255, 255, .9);
            color: #111;
            display: grid;
            place-items: center;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            transition: background .2s ease, color .2s ease, border-color .2s ease;
        }

        .carouselBtn__glyph {
            display: inline-block;
            line-height: 1;
            transform: translateX(-1px);
        }

        .carouselBtn--next .carouselBtn__glyph {
            transform: rotate(180deg) translateX(-1px);
        }

        .carouselBtn:hover {
            background: #5f6f67;
            border-color: #5f6f67;
            color: #fff;
        }

        
        .plansIntro {
            margin-bottom: 18px;
        }

        .plansIntro__leadRow {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: clamp(14px, 2.5vw, 28px);
            margin-top: clamp(16px, 2.2vw, 22px);
        }

        .plansIntro__leadCopy {
            flex: 1;
            min-width: 0;
        }

        .plansIntro__leadCopy .section__lead {
            margin-top: 0;
        }

        .plansIntro__leadCopy .section__lead + .section__lead {
            margin-top: clamp(16px, 2.2vw, 24px);
        }

        .plansIntro__leadBrand {
            white-space: nowrap;
        }

        .plansIntro__leadRow .carouselControls {
            align-self: flex-end;
        }

        @media (min-width: 861px) {
            .plansIntro__leadRow {
                margin-top: clamp(28px, 3vw, 42px);
            }
        }

        .plansCarousel {
            margin-top: 44px;
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 4px;
            padding-right: 14px;
            scroll-padding-left: 0;
        }

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

        .planTile {
            border: 1px solid rgba(17, 17, 17, .12);
            aspect-ratio: 4 / 5;
            flex: 0 0 auto;
            width: min(500px, calc((100% - 32px) / 2.5));
            max-width: 500px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            color: #fff;
            border-radius: 18px;
            scroll-snap-align: start;
        }

        .planTile::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .12) 50%, transparent 100%);
        }

        .planTile--plain::before {
            display: none;
        }

        .planTile--comingSoon {
            cursor: default;
        }

        .planTile--comingSoon::before {
            display: none;
        }

        .planTile__placeholder {
            position: absolute;
            inset: 0;
            z-index: 0;
            display: grid;
            place-items: center;
            background: #bfbdb8;
        }

        .planTile__comingSoon {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(17, 17, 17, .42);
        }

        .planTile__imageRotator {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .planTile__imageRotator .planTile__image {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .7s ease, transform .35s ease;
        }

        .planTile__imageRotator .planTile__image.is-active {
            opacity: 1;
        }

        .planTile:hover .planTile__imageRotator .planTile__image.is-active {
            transform: scale(1.05);
        }

        .planTile__image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transform: scale(1.02);
            transition: transform .35s ease;
        }

        .planTile:hover .planTile__image {
            transform: scale(1.05);
        }

        .planTile > *:not(.planTile__image):not(.planTile__imageRotator):not(.planTile__placeholder) {
            position: relative;
            z-index: 2;
        }

        .planTile span {
            font-family: "Inter", system-ui, sans-serif;
    font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .8);
        }

        .planTile h3 {
            margin: 4px 0 0;
            font-size: 22px;
            font-weight: 600;
            line-height: 1.35;
            text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
        }

        .planTile--plain h3,
        .planTile--comingSoon h3 {
            text-shadow: none;
        }

        .news {
            margin-top: 44px;
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 4px;
            padding-right: 14px;
            scroll-padding-left: 0;
        }

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

        .newsCard {
            border: 1px solid rgba(17, 17, 17, .12);
            border-radius: 18px;
            padding: 22px 20px;
            background: #fff;
            flex: 0 0 auto;
            width: min(500px, calc((100% - 32px) / 2.5));
            max-width: 500px;
            scroll-snap-align: start;
        }

        .newsCard--hasMedia {
            padding: 0;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            color: inherit;
            text-decoration: none;
        }

        .newsCard__media {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            border-radius: 0;
        }

        .newsCard__img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .newsCard__body {
            padding: 24px 6px 20px;
        }

        .newsCard--hasMedia .newsCard__body {
            padding-left: 14px;
        }

        @media (max-width: 768px) {
            .newsCard--hasMedia .newsCard__body {
                padding-top: 16px;
            }
        }

        .newsCard__date {
            margin: 0 0 10px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 11px;
            letter-spacing: .08em;
            color: rgba(17, 17, 17, .56);
        }

        .newsCard h3 {
            margin: 0 0 8px;
            font-size: 15px;
            line-height: 1.45;
        }

        .newsCard p {
            margin: 0;
            color: rgba(17, 17, 17, .68);
            font-size: 13px;
        }

        .newsCarouselNotice {
            margin: 0;
            max-height: 0;
            overflow: hidden;
            font-size: 13px;
            line-height: 1.5;
            color: rgba(17, 17, 17, .52);
            text-align: right;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition:
                opacity .7s ease,
                transform .7s ease,
                max-height .55s ease,
                margin .55s ease,
                visibility 0s linear .55s;
        }

        .newsCarouselNotice.is-visible {
            margin: 12px 0 0;
            max-height: 48px;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition:
                opacity .7s ease,
                transform .7s ease,
                max-height .55s ease,
                margin .55s ease,
                visibility 0s;
        }

        @media (prefers-reduced-motion: reduce) {
            .newsCarouselNotice,
            .newsCarouselNotice.is-visible {
                transform: none;
                transition: opacity .2s ease, visibility 0s linear .2s;
            }

            .newsCarouselNotice.is-visible {
                transition: opacity .2s ease, visibility 0s;
            }
        }

        .section__subtitle {
            margin: 0;
            font-size: clamp(12px, 1.4vw, 14px);
            line-height: 1.4;
            font-weight: 500;
            letter-spacing: .06em;
            color: rgba(17, 17, 17, .48);
        }

        .eventCatalogBlock {
            margin-top: clamp(36px, 5vw, 56px);
            margin-bottom: clamp(32px, 4.5vw, 48px);
        }

        .eventCatalogBlock__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }

        .eventBanners {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 4px;
            padding-right: 14px;
        }

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

        .eventBannerCard {
            flex: 0 0 auto;
            width: min(500px, calc((100% - 32px) / 2.5));
            max-width: 500px;
            scroll-snap-align: start;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .eventBannerCard__media {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            aspect-ratio: 1920 / 1280;
            display: grid;
            place-items: center;
            background: #eceae6;
        }

        .eventBannerCard__media:not(.eventBannerCard__media--blank)::after {
            content: none;
        }

        .eventBannerCard__img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 70% center;
            transform: scale(1.08);
            transform-origin: 33% center;
        }

        .eventBannerCard__schedule {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            padding: 7px 15px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .06em;
            line-height: 1.2;
            color: rgba(255, 255, 255, .95);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .92);
            text-shadow: none;
        }

        .eventBannerCard__media--blank .eventBannerCard__schedule {
            color: rgba(17, 17, 17, .78);
            border-color: rgba(17, 17, 17, .28);
        }

        .eventBannerCard__copy {
            position: absolute;
            bottom: clamp(14px, 2.4vw, 22px);
            left: clamp(14px, 2.4vw, 22px);
            z-index: 2;
            display: grid;
            gap: 8px;
            max-width: calc(100% - clamp(28px, 4.8vw, 44px));
        }

        .eventBannerCard__title {
            margin: 0;
            font-size: clamp(18px, 2.6vw, 26px);
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: .02em;
            color: #fff;
            text-shadow: none;
        }

        .eventBannerCard__subtitleEn {
            margin: 0;
            font-family: "Inter", system-ui, sans-serif;
            font-size: clamp(8px, 1.05vw, 10px);
            font-weight: 500;
            letter-spacing: .24em;
            text-transform: uppercase;
            line-height: 1.2;
            color: rgba(255, 255, 255, .84);
            text-shadow: none;
        }

        .eventBannerCard__media--blank .eventBannerCard__copy {
            position: static;
            place-self: center;
            text-align: center;
            padding: 0 20px;
        }

        .eventBannerCard__media--blank .eventBannerCard__title {
            color: rgba(17, 17, 17, .78);
        }

        .eventBannerCard__media--blank .eventBannerCard__subtitleEn {
            color: rgba(17, 17, 17, .5);
            text-shadow: none;
        }

        .eventBannerCard__media--blank {
            background: linear-gradient(135deg, #d8d5d0 0%, #eceae6 48%, #d0cdc8 100%);
        }

        .eventBannerCard__placeholderTitle {
            padding: 0 20px;
            text-align: center;
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 600;
            line-height: 1.45;
            color: rgba(17, 17, 17, .72);
        }

        .eventBannerCard__label {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.45;
        }

        .eventCalendar {
            margin-top: 28px;
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
            gap: 14px;
        }

        .calendarPane,
        .eventDetailPane {
            border: 1px solid rgba(17, 17, 17, .12);
            border-radius: 18px;
            background: #fff;
            padding: 18px;
        }

        .calendarHead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .calendarTitle {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 13px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(17, 17, 17, .78);
        }

        .calendarGrid {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 6px;
        }

        .calendarWeekday {
            text-align: center;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .08em;
            color: rgba(17, 17, 17, .52);
            padding-bottom: 4px;
        }

        .calendarDay {
            position: relative;
            min-height: 54px;
            border-radius: 10px;
            border: 1px solid rgba(17, 17, 17, .08);
            background: #fff;
            appearance: none;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 8px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 11px;
            color: rgba(17, 17, 17, .84);
            cursor: pointer;
        }

        .calendarDay--empty {
            cursor: default;
            border-color: transparent;
            background: transparent;
        }

        .calendarDay--hasEvent::after {
            content: "";
            position: absolute;
            right: 7px;
            bottom: 7px;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--ui-blue);
        }

        .calendarDay--selected {
            border-color: var(--ui-blue);
            box-shadow: inset 0 0 0 1px var(--ui-blue);
            background: rgba(47, 91, 255, .05);
        }

        .eventDetailPane h3 {
            margin: 0 0 8px;
            font-size: 16px;
        }

        .eventDetailDate {
            margin: 0 0 12px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 11px;
            letter-spacing: .08em;
            color: rgba(17, 17, 17, .58);
        }

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

        .slotItem {
            border: 1px solid rgba(17, 17, 17, .12);
            border-radius: 10px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .slotItem__time {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 12px;
            color: rgba(17, 17, 17, .85);
        }

        .slotItem__status {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(17, 17, 17, .6);
        }

        .slotItem--booked {
            background: rgba(17, 17, 17, .04);
        }

        .slotItem--open {
            border-color: rgba(47, 91, 255, .32);
            background: rgba(47, 91, 255, .05);
        }

        .eventDetailActions {
            margin-top: 14px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .eventDetailBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid var(--ui-blue);
            color: var(--ui-blue);
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .eventDetailBtn:hover {
            background: var(--ui-blue);
            color: #fff;
        }

        .reserveBox {
            margin-top: 14px;
            border-top: 1px solid rgba(17, 17, 17, .08);
            padding-top: 12px;
            display: grid;
            gap: 8px;
        }

        .reserveBox label {
            font-size: 11px;
            color: rgba(17, 17, 17, .62);
        }

        .reserveBox input,
        .reserveBox select {
            width: 100%;
            height: 36px;
            border: 1px solid rgba(17, 17, 17, .14);
            border-radius: 8px;
            padding: 0 10px;
            font: inherit;
        }

        .reserveBox .eventDetailBtn {
            width: fit-content;
            background: var(--ui-blue);
            color: #fff;
        }

        .reserveBox .eventDetailBtn:hover {
            background: var(--ui-blue-dark);
            border-color: var(--ui-blue-dark);
        }

        .eventHint {
            margin: 0;
            font-size: 12px;
            color: rgba(17, 17, 17, .56);
        }

        .sectionMore {
            margin-top: 22px;
            display: flex;
            justify-content: center;
        }

        .sectionMore a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #fff;
            background: var(--ui-blue);
            border: 1px solid var(--ui-blue);
            min-width: 158px;
            height: 42px;
            padding: 0 20px;
            border-radius: 999px;
            transition: background .2s ease, border-color .2s ease, transform .2s ease;
        }

        .sectionMore a:hover {
            background: var(--ui-blue-dark);
            border-color: var(--ui-blue-dark);
            transform: translateY(-1px);
        }

        
        .section.contact {
            background: #fff;
            color: #111;
        }

        .contactServiceArea {
            margin: 18px 0 0;
        }

        .contactServiceArea__trigger {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
            padding: 0;
            border: 0;
            background: transparent;
            color: #111;
            font: inherit;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        .contactServiceArea__triggerEn {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 9px;
            font-weight: 500;
            letter-spacing: .16em;
            line-height: 1.2;
            color: rgba(17, 17, 17, .42);
            transition: color .2s ease;
        }

        .contactServiceArea__triggerLabel {
            display: inline-block;
            padding-bottom: 3px;
            border-bottom: 1px solid rgba(17, 17, 17, .22);
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .06em;
            line-height: 1.35;
            transition: border-color .2s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .contactServiceArea__trigger:hover .contactServiceArea__triggerEn {
                color: rgba(17, 17, 17, .58);
            }

            .contactServiceArea__trigger:hover .contactServiceArea__triggerLabel {
                border-bottom-color: #111;
            }
        }

        .contactServiceAreaModal {
            position: fixed;
            inset: 0;
            z-index: 1300;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(16px, 4vw, 28px);
            box-sizing: border-box;
        }

        .contactServiceAreaModal[hidden] {
            display: none;
        }

        .contactServiceAreaModal__overlay {
            position: absolute;
            inset: 0;
            background: rgba(17, 17, 17, .56);
        }

        .contactServiceAreaModal__panel {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            width: min(100%, 640px);
            max-height: min(88vh, 720px);
            border-radius: 18px;
            border: 1px solid rgba(17, 17, 17, .1);
            background: #fff;
            box-shadow: 0 24px 64px rgba(17, 17, 17, .18);
            overflow: hidden;
        }

        .contactServiceAreaModal__close {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            width: 36px;
            height: 36px;
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(17, 17, 17, .06);
            color: #111;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            transition: background-color .2s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .contactServiceAreaModal__close:hover {
                background: rgba(17, 17, 17, .12);
            }
        }

        .contactServiceAreaModal__scrollWrap {
            position: relative;
            flex: 1 1 auto;
            min-height: 0;
            display: flex;
            flex-direction: column;
        }

        .contactServiceAreaModal__scroll {
            flex: 1 1 auto;
            min-height: 0;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            padding: clamp(28px, 4vw, 36px) clamp(22px, 4vw, 32px) clamp(24px, 3.5vw, 32px);
        }

        .contactServiceAreaModal__scrollHint {
            display: none;
        }

        .contactServiceAreaModal__footer {
            flex: 0 0 auto;
            padding: 14px clamp(22px, 4vw, 32px) clamp(18px, 3vw, 22px);
            border-top: 1px solid rgba(17, 17, 17, .1);
            text-align: center;
        }

        .contactServiceAreaModal__closeBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            height: 42px;
            padding: 0 24px;
            border: 1px solid rgba(17, 17, 17, .16);
            border-radius: 999px;
            background: transparent;
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .06em;
            color: #111;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            transition: background-color .2s ease, border-color .2s ease, color .2s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .contactServiceAreaModal__closeBtn:hover {
                background: #111;
                border-color: #111;
                color: #fff;
            }
        }

        .contactServiceAreaModal__eyebrow {
            margin: 0 0 10px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: rgba(17, 17, 17, .42);
        }

        .contactServiceAreaModal__title {
            margin: 0 0 10px;
            font-size: clamp(20px, 2.6vw, 24px);
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: .02em;
        }

        .contactServiceAreaModal__lead {
            margin: 0 0 20px;
            font-size: 14px;
            line-height: 1.7;
            color: rgba(17, 17, 17, .68);
        }

        .contactServiceAreaModal__list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px 16px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .contactServiceAreaModal__list li {
            font-size: 14px;
            line-height: 1.5;
            color: rgba(17, 17, 17, .82);
        }

        .contactServiceAreaModal__consult {
            margin-top: clamp(24px, 3.5vw, 32px);
            padding-top: clamp(20px, 3vw, 24px);
            border-top: 1px solid rgba(17, 17, 17, .1);
        }

        .contactServiceAreaModal__consultTitle {
            margin: 0 0 8px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            color: rgba(17, 17, 17, .78);
        }

        .contactServiceAreaModal__consultNote {
            margin: 0 0 14px;
            font-size: 12px;
            line-height: 1.7;
            color: rgba(17, 17, 17, .56);
        }

        .contactServiceAreaModal__list--consult {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        html.contactServiceAreaModal-open {
            scrollbar-gutter: auto;
            scroll-behavior: auto;
        }

        body.contactServiceAreaModal-open {
            overflow: hidden;
            overscroll-behavior: none;
        }

        @media (max-width: 860px) {
            body.contactServiceAreaModal-open .heroWrapper {
                height: 0;
                max-height: 0;
                overflow: hidden;
                visibility: hidden;
            }

            body.contactServiceAreaModal-open .hero {
                position: absolute;
                width: 0;
                height: 0;
                min-height: 0;
                max-height: 0;
                overflow: hidden;
                visibility: hidden;
                pointer-events: none;
            }

            body.contactServiceAreaModal-open .hero__bg--video {
                display: none !important;
                opacity: 0 !important;
            }
        }

        @media (max-width: 560px) {
            .contactServiceAreaModal {
                padding-top: max(10px, env(safe-area-inset-top));
                padding-bottom: max(10px, env(safe-area-inset-bottom));
                padding-left: 10px;
                padding-right: 10px;
            }

            .contactServiceAreaModal__panel {
                width: 100%;
                max-height: min(62svh, calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 20px));
            }

            .contactServiceAreaModal__scroll {
                padding-top: 42px;
                padding-bottom: 12px;
            }

            .contactServiceAreaModal__scrollHint {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 2;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 4px;
                padding: 32px 16px 8px;
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 42%, #fff 100%);
                pointer-events: none;
                opacity: 0;
                visibility: hidden;
                transition: opacity .25s ease, visibility .25s ease;
            }

            .contactServiceAreaModal__scrollWrap.is-scrollable:not(.is-scrolled-end) .contactServiceAreaModal__scrollHint {
                opacity: 1;
                visibility: visible;
            }

            .contactServiceAreaModal__scrollHintText {
                font-family: "Noto Sans JP", system-ui, sans-serif;
                font-size: 11px;
                font-weight: 500;
                letter-spacing: .1em;
                line-height: 1.3;
                color: rgba(17, 17, 17, .52);
            }

            .contactServiceAreaModal__scrollHintIcon {
                font-family: "Inter", system-ui, sans-serif;
                font-size: 12px;
                line-height: 1;
                color: rgba(17, 17, 17, .42);
                animation: contactServiceAreaScrollBounce 1.6s ease-in-out infinite;
            }

            @keyframes contactServiceAreaScrollBounce {
                0%,
                100% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(4px);
                }
            }

            @media (prefers-reduced-motion: reduce) {
                .contactServiceAreaModal__scrollHintIcon {
                    animation: none;
                }
            }

            .contactServiceAreaModal__footer {
                padding-top: 10px;
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }

            .contactServiceAreaModal__list,
            .contactServiceAreaModal__list--consult {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .form {
            position: relative;
            margin-top: 34px;
            display: grid;
            gap: 14px;
            width: 100%;
            max-width: 700px;
            min-width: 0;
        }

        .form__hp {
            position: absolute;
            left: -10000px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .contactNotice {
            margin: 0 0 18px;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 14px;
            line-height: 1.65;
            max-width: 700px;
        }

        .contactNotice--ok {
            background: rgba(34, 140, 72, .08);
            border: 1px solid rgba(34, 140, 72, .35);
            color: #1a5c32;
        }

        .contactNotice--err {
            background: rgba(200, 60, 60, .08);
            border: 1px solid rgba(200, 60, 60, .35);
            color: #8b2828;
        }

        .catalogPrepNotice {
            position: relative;
            margin: clamp(24px, 3vw, 32px) 0 24px;
            padding: clamp(28px, 4vw, 38px) clamp(30px, 5vw, 44px);
            max-width: 760px;
            border-radius: 16px;
            border: 1px solid rgba(148, 178, 210, .45);
            background: linear-gradient(180deg, #f6f9fc 0%, #eaf1f8 100%);
            box-shadow: 0 8px 24px rgba(40, 72, 110, .08);
            opacity: 0;
            transform: translateY(16px) scale(0.985);
            transition:
                opacity .65s cubic-bezier(.22, 1, .36, 1),
                transform .65s cubic-bezier(.22, 1, .36, 1),
                box-shadow .65s cubic-bezier(.22, 1, .36, 1);
        }

        .catalogPrepNotice.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            box-shadow: 0 14px 36px rgba(40, 72, 110, .12);
        }

        .catalogPrepNotice[hidden] {
            display: none;
        }

        @media (prefers-reduced-motion: reduce) {
            .catalogPrepNotice {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .catalogPrepNotice.is-visible {
                box-shadow: 0 8px 24px rgba(40, 72, 110, .08);
            }
        }

        .catalogPrepNotice__close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 32px;
            height: 32px;
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(74, 98, 120, .1);
            color: #5a7088;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            transition: background .2s ease, color .2s ease;
        }

        @media (hover: hover) {
            .catalogPrepNotice__close:hover {
                background: rgba(74, 98, 120, .18);
                color: #3d5568;
            }
        }

        .catalogPrepNotice__text {
            margin: 0;
            padding-right: 28px;
            font-size: clamp(15px, 1.8vw, 17px);
            line-height: 1.9;
            letter-spacing: .04em;
            color: #5a7088;
        }

        .form label {
            font-size: 11px;
            letter-spacing: .05em;
            color: rgba(17, 17, 17, .76);
        }

        .formLabel__required {
            margin-left: 8px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.06em;
            color: rgba(17, 17, 17, .42);
        }

        .formFieldNote {
            margin: 8px 0 0;
            font-size: 11px;
            line-height: 1.7;
            letter-spacing: .02em;
            color: rgba(17, 17, 17, .4);
        }

        .formAddress {
            display: grid;
            gap: 14px;
            min-width: 0;
        }

        .formAddress #postalCode {
            max-width: 220px;
        }

        .formDatetime__legend .formLabel__required {
            margin-left: 10px;
        }

        .form input,
        .form select,
        .form textarea {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            border: 1px solid rgba(17, 17, 17, .2);
            background: #fff;
            color: #111;
            padding: 13px 14px;
            border-radius: 10px;
            font: inherit;
        }

        .form select option {
            color: #111;
            background: #fff;
        }

        .form textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form textarea::placeholder {
            color: rgba(17, 17, 17, .38);
        }

        .form button[type="submit"] {
            margin-top: 8px;
            width: 180px;
            border: 1px solid var(--ui-blue);
            background: var(--ui-blue);
            color: #fff;
            padding: 13px 24px;
            font-family: "Inter", system-ui, sans-serif;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .2s ease, color .2s ease, border-color .2s ease;
            border-radius: 999px;
        }

        .form button[type="submit"]:hover {
            background: var(--ui-blue-dark);
            border-color: var(--ui-blue-dark);
            color: #fff;
        }

        .formDatetime {
            margin: 0;
            padding: 0;
            border: 0;
            min-width: 0;
            min-inline-size: 0;
            width: 100%;
            max-width: 100%;
            display: grid;
            gap: 10px;
        }

        .formDatetime[hidden],
        #formContactMethod[hidden] {
            display: none !important;
        }

        .formDatetime__legend {
            margin: 0;
            padding: 0;
            font-size: 11px;
            letter-spacing: .05em;
            color: rgba(17, 17, 17, .76);
        }

        .formDatetime__row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .formDatetime__field {
            display: grid;
            gap: 6px;
            min-width: 0;
        }

        .formDateWrap {
            position: relative;
            display: block;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            min-height: calc(13px * 2 + 1.25em);
            overflow: hidden;
            border: 1px solid rgba(17, 17, 17, .2);
            background: #fff;
            border-radius: 10px;
        }

        .formDateWrap__display {
            position: relative;
            display: flex;
            align-items: center;
            min-height: calc(13px * 2 + 1.25em);
            padding: 13px 44px 13px 14px;
            pointer-events: none;
        }

        .formDateWrap__placeholder {
            font-size: inherit;
            line-height: 1.25;
            color: rgba(17, 17, 17, .38);
        }

        .formDateWrap.has-value .formDateWrap__placeholder {
            display: none;
        }

        .formDateWrap__value {
            display: none;
            font-size: inherit;
            line-height: 1.25;
            color: #111;
        }

        .formDateWrap.has-value .formDateWrap__value {
            display: block;
        }

        .formDateWrap__icon {
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            display: grid;
            place-items: center;
            width: 18px;
            height: 18px;
            color: rgba(17, 17, 17, .42);
        }

        .formDateWrap__icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .form .formDateWrap__input {
            position: absolute;
            inset: 0;
            z-index: 2;
            width: 100%;
            height: 100%;
            min-width: 0;
            max-width: none;
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: transparent;
            opacity: 0.01;
            cursor: pointer;
            color-scheme: light;
            -webkit-tap-highlight-color: transparent;
        }

        @media (min-width: 769px) {
            .formDateWrap__display {
                display: none;
            }

            .form .formDateWrap__input {
                position: relative;
                inset: auto;
                z-index: 1;
                display: block;
                width: 100%;
                height: auto;
                min-height: calc(13px * 2 + 1.25em);
                padding: 13px 14px;
                opacity: 1;
                color: #111;
                line-height: 1.25;
            }

            .form .formDateWrap__input::-webkit-calendar-picker-indicator {
                cursor: pointer;
            }
        }

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

            .formDateWrap {
                min-height: calc(13px * 2 + 1.25 * 16px);
            }

            .formDateWrap__display {
                min-height: calc(13px * 2 + 1.25 * 16px);
            }

            .formDateWrap__input,
            .formDatetime__field select,
            .form input,
            .form select,
            .form textarea {
                font-size: 16px;
            }
        }

        .footer {
            padding: 34px 20px 18px;
            background: #111;
            color: rgba(255, 255, 255, .7);
            border-top: 1px solid rgba(255, 255, 255, .16);
            font-size: 11px;
            letter-spacing: .04em;
        }

        .footer .footer__grid {
            display: grid;
            grid-template-columns: minmax(200px, 1.25fr) repeat(2, minmax(0, 1fr));
            gap: 22px 24px;
            align-items: stretch;
        }

        .footer__intro {
            grid-column: 1;
            grid-row: 1;
            align-self: stretch;
            min-width: 0;
        }

        .footer__col--nav {
            grid-column: 2;
            grid-row: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .footer__col--sitemap {
            grid-column: 3;
            grid-row: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .footer__navMain,
        .footer__sitemapMain {
            flex: 1 1 auto;
            min-height: 0;
        }

        .footer__socialBridge {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
            width: 100%;
            min-width: 0;
        }

        .footer__socialBridge .socialRow {
            margin-top: 0;
            width: 100%;
            flex-wrap: wrap;
            row-gap: 8px;
        }

        @media (min-width: 901px) {
            .footer__col--nav .footer__socialBridge--desktop {
                margin-top: 44px;
            }
        }

        .footer__socialStrip--mobile {
            display: none;
        }

        .footer__col {
            min-width: 0;
        }

        .footer__navLead {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
        }

        .footer__navTitle {
            margin: 0;
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            color: rgba(255, 255, 255, .92);
            line-height: 1.45;
        }

        .footer__navTitle--mobile {
            display: none;
        }

        .footer__navRule {
            margin: 0;
            height: 0;
            border: none;
            border-top: 1px solid rgba(255, 255, 255, .22);
        }

        .footer__col--sitemap .footer__navLead ~ .footer__navLead {
            margin-top: 18px;
        }

        .footer__contactBtns {
            display: grid;
            gap: 8px;
            margin-top: 0;
        }

        .footer__col--sitemap .footer__contactBtns {
            flex: 0 0 auto;
            margin-top: 22px;
        }

        .footerBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .32);
            background: rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .92);
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 11px;
            letter-spacing: .04em;
            text-decoration: none;
            transition: background .2s ease, border-color .2s ease, color .2s ease;
            box-sizing: border-box;
        }

        .footerBtn:hover {
            background: var(--ui-blue);
            border-color: var(--ui-blue);
            color: #fff;
        }

        .footer__brand {
            font-family: "Inter", system-ui, sans-serif;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .92);
            margin: 0 0 10px;
            display: inline-flex;
            align-items: center;
        }

        .footer__brandLogo {
            display: block;
            width: min(112px, 28vw);
            height: auto;
        }

        .footer__text {
            margin: 0;
            color: rgba(255, 255, 255, .58);
            line-height: 1.8;
        }

        .footer__address {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 32px 0 0;
            font-style: normal;
        }

        .footer__phone {
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-top: 0;
        }

        .footer__phoneLabel {
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .06em;
            line-height: 1.4;
            color: rgba(255, 255, 255, .55);
        }

        .footer__phoneKind {
            margin-top: 8px;
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: .06em;
            line-height: 1.4;
            color: rgba(255, 255, 255, .72);
        }

        .footer__phoneNum {
            margin-top: 4px;
            font-family: "Inter", system-ui, sans-serif;
            font-size: clamp(30px, 3.8vw, 42px);
            font-weight: 600;
            letter-spacing: .05em;
            line-height: 1.1;
            color: rgba(255, 255, 255, .94);
            text-decoration: none;
            transition: color .2s ease;
        }

        .footer__phoneNum:hover {
            color: #fff;
        }

        .footer__phoneHours {
            margin: 2px 0 0;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: .04em;
            line-height: 1.5;
            color: rgba(255, 255, 255, .48);
        }

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

        .footerLinks a {
            color: rgba(255, 255, 255, .7);
        }

        .footerLinks a:hover {
            color: #fff;
        }

        .footerLinks [aria-current="page"] {
            color: rgba(255, 255, 255, .7);
            font-weight: inherit;
        }

        .footerPrivacyLink[aria-current="page"] {
            color: rgba(255, 255, 255, .95);
        }

        .socialRow {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .socialIcon {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .28);
            color: rgba(255, 255, 255, .76);
            display: grid;
            place-items: center;
            transition: color .2s ease, border-color .2s ease, background .2s ease;
        }

        .socialIcon svg {
            width: 13px;
            height: 13px;
            fill: currentColor;
            display: block;
        }

        .socialIcon:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, .55);
            background: rgba(255, 255, 255, .08);
        }

        .footerPrivacyLink {
            font-family: "Noto Sans JP", system-ui, sans-serif;
            font-size: 11px;
            letter-spacing: .04em;
            color: rgba(255, 255, 255, .7);
            line-height: 1.5;
            transition: color .2s ease;
        }

        .footerPrivacyLink:hover {
            color: #fff;
        }

        .footer__socialBridge .footerPrivacyLink {
            margin-left: 10px;
            padding-left: 14px;
            border-left: 1px solid rgba(255, 255, 255, .22);
            align-self: center;
            white-space: nowrap;
        }

        .footerBottom {
            display: block;
            margin-top: 22px;
            padding-top: 14px;
            border-top: 1px solid rgba(255, 255, 255, .14);
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            text-align: center;
        }

        .footer .footerBottom {
            display: block;
            grid-template-columns: none;
            justify-items: center;
            justify-content: center;
        }

        @media (min-width: 901px) {
            .footerBottom {
                margin-top: 40px;
            }
        }

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

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

            .sectionHead {
                align-items: center;
                margin-bottom: 14px;
            }

            .sectionHead .section__title {
                font-size: clamp(22px, 6.2vw, 30px);
            }

            .planTile,
            .newsCard {
                flex: 0 0 auto;
                width: min(500px, 72%);
                max-width: 500px;
            }

            .plansCarousel,
            .news {
                gap: 18px;
            }

            .planTile,
            .eventBannerCard,
            .newsCard {
                flex: 0 0 auto;
                width: min(500px, calc((100% - 18px) / 1.55));
                max-width: 500px;
            }

            .planTile {
                aspect-ratio: 4 / 5;
                min-height: 0;
            }

            .eventBanners {
                gap: 18px;
            }

            .newsCard {
                min-height: 210px;
            }

            .newsCard--hasMedia {
                min-height: 0;
            }

            .newsCard h3 {
                font-size: 14px;
            }

            .newsCard p {
                font-size: 12px;
            }

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

            .calendarDay {
                min-height: 48px;
            }

            .footer .footer__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 20px 10px;
                align-items: start;
            }

            .footer__intro {
                grid-column: 1 / -1;
                grid-row: 1;
                padding-bottom: 20px;
            }

            .footer__address {
                margin-top: 48px;
            }

            .footer__col--nav {
                grid-column: 1;
                grid-row: 2;
            }

            .footer__col--sitemap {
                grid-column: 2;
                grid-row: 2;
            }

            .footer__navTitle--desktop {
                display: none;
            }

            .footer__navTitle--mobile {
                display: block;
            }

            .footer__socialStrip--mobile {
                display: block;
                margin-top: 40px;
            }

            .footer__socialBridge--desktop {
                display: none !important;
            }

            .footer__socialBridge--mobileBand {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

            .footer__socialBridge--mobileBand .socialRow {
                justify-content: center;
                flex-wrap: nowrap;
                width: auto;
                max-width: 100%;
                margin-inline: auto;
            }

            .footer__socialBridge--mobileBand .footerPrivacyLink {
                white-space: nowrap;
            }

            .footer {
                padding-inline: 0;
            }

            .footerBottom {
                padding-bottom: 0;
            }
        }

        @media (max-width: 640px) {
            .planTile,
            .eventBannerCard,
            .newsCard {
                flex: 0 0 auto;
                width: min(500px, 78%);
                max-width: 500px;
            }

            .planTile {
                aspect-ratio: 4 / 5;
                min-height: 0;
            }
        }

        .hero__foot {
            position: absolute;
            left: var(--gutter);
            right: var(--gutter);
            bottom: 28px;
            z-index: 3;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            pointer-events: none;
        }

        .hero__foot>* {
            pointer-events: auto;
        }

        .scrollCue--bar {
            position: relative;
            left: auto;
            bottom: auto;
            transform: translateY(10px);
            z-index: 1;
            opacity: 0;
            transition: opacity .45s ease, transform .45s ease;
            transition-delay: .2s;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            width: auto;
            height: auto;
            flex-shrink: 0;
        }

        body.is-ready .scrollCue--bar {
            opacity: .95;
            transform: translateY(0);
        }

        .heroNews {
            max-width: min(420px, 46vw);
            transition: opacity .45s ease, visibility .45s ease;
        }

        .heroNews__link {
            display: block;
            text-decoration: none;
            color: inherit;
            background: rgba(255, 255, 255, .12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .22);
            border-radius: 14px;
            padding: 10px 14px;
            transition: background .2s ease, border-color .2s ease;
        }

        .heroNews__link:hover {
            background: rgba(255, 255, 255, .2);
            border-color: rgba(255, 255, 255, .35);
        }

        @media (min-width: 861px) {
            .hero__foot {
                right: clamp(48px, 5vw, 50px);
            }

            .heroNews {
                flex: 0 0 auto;
                width: min(520px, 52vw);
                max-width: min(520px, 52vw);
            }

            .heroNews__link {
                margin: 0;
                width: 100%;
                box-sizing: border-box;
            }
        }

        .heroNews__eyebrow {
            display: block;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 9px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 6px;
        }

        .heroNews__viewport {
            height: 60px;
            overflow: hidden;
        }

        .heroNews__track {
            display: flex;
            flex-direction: column;
            transition: transform .55s cubic-bezier(.32, .72, .2, 1);
            will-change: transform;
        }

        .heroNews__slide {
            flex: 0 0 60px;
            min-height: 60px;
            max-height: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            box-sizing: border-box;
        }

        .heroNews__date {
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .08em;
            color: rgba(255, 255, 255, .65);
            margin: 0;
        }

        .heroNews__title {
            margin: 0;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
            color: rgba(255, 255, 255, .95);
            display: -webkit-box;
            line-clamp: 2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hero--phase2 .heroNews {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        @media (max-width: 860px) {
            .hero__contentPrimary {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-top: 0;
                transform: translateY(clamp(-8px, -0.8vh, -4px));
                transition: opacity .65s ease;
            }

            .hero__contentPrimaryCopy {
                transition: opacity .65s ease;
            }

            .hero--phase2 .hero__contentPrimaryCopy {
                opacity: 0;
                transform: none;
                pointer-events: none;
            }

            .hero__contentVertical {
                transform: none;
                transition: opacity .65s ease;
            }

            .hero--conceptResetting .hero__contentPrimary,
            .hero--conceptResetting .hero__contentPrimaryCopy {
                transition: none;
            }

            .hero--conceptResetting .hero__contentPrimaryCopy {
                opacity: 0;
                transform: none;
            }

            .hero__conceptBtn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0;
                min-height: 0;
                margin-top: clamp(36px, 8.5vw, 52px);
                padding: 0;
                border: none;
                border-radius: 0;
                font: inherit;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: .04em;
                color: #fff;
                background: transparent;
                cursor: pointer;
                transition: opacity .2s ease, transform .2s ease;
                -webkit-tap-highlight-color: transparent;
            }

            .hero__conceptBtn:active {
                background: transparent;
            }

            .hero__conceptBtn:hover,
            .hero__conceptBtn:focus-visible {
                outline: none;
                background: transparent;
                transform: translateY(-1px);
            }

            .hero--conceptPinned .hero__contentPrimary {
                position: absolute;
                top: auto;
                bottom: clamp(44px, 9svh, 64px);
                left: 50%;
                transform: translateX(-50%);
                margin-top: 0;
                z-index: 6;
                width: max-content;
                max-width: calc(100% - 40px);
                transition: none;
            }

            .hero--conceptPinned.hero--phase2 .hero__contentPrimary {
                transform: translateX(-50%);
            }

            .hero--conceptPinned .hero__contentPrimaryCopy {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: 0;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
                opacity: 0;
                pointer-events: none;
            }

            .hero__conceptBtnPilot {
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }

            .hero__conceptBtnPulse {
                position: relative;
                width: 32px;
                height: 32px;
                flex-shrink: 0;
                display: grid;
                place-items: center;
            }

            .hero__conceptBtnRipple {
                position: absolute;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                border: 1px solid rgba(56, 189, 248, .55);
                box-shadow:
                    0 0 10px rgba(56, 189, 248, .45),
                    0 0 22px rgba(59, 130, 246, .25);
                animation: heroConceptToggleRipple 2.4s cubic-bezier(.22, 1, .36, 1) infinite;
                pointer-events: none;
            }

            .hero__conceptBtnRipple:nth-child(2) {
                animation-delay: 1.2s;
            }

            .hero__conceptBtnDot {
                position: relative;
                z-index: 2;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: linear-gradient(145deg, #7dd3fc 0%, #38bdf8 45%, #0ea5e9 100%);
                box-shadow:
                    0 0 10px rgba(56, 189, 248, .95),
                    0 0 22px rgba(59, 130, 246, .4);
                animation: heroConceptToggleDotBlink 1.75s ease-in-out infinite;
            }

            .hero__conceptBtnLabel {
                font-family: "Inter", system-ui, sans-serif;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: .28em;
                text-transform: lowercase;
                color: rgba(255, 255, 255, .82);
            }

            .hero__conceptBtn.is-active .hero__conceptBtnRipple {
                animation-play-state: paused;
                opacity: 0;
                transition: opacity .35s ease;
            }

            .hero__conceptBtn.is-active .hero__conceptBtnDot {
                animation-play-state: paused;
                opacity: .55;
                box-shadow: 0 0 8px rgba(56, 189, 248, .35);
            }

            .hero--phase2 .scrollCue--bar {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            #concept-about {
                scroll-margin-top: calc(64px + env(safe-area-inset-top, 0px));
                padding-top: clamp(36px, 5vw, 52px);
            }

            #concept-about .conceptAbout__text .section__eyebrow,
            #concept-about .conceptAbout__text .section__title {
                opacity: 1;
                transform: none;
            }
        }

        @keyframes heroConceptToggleRipple {
            0% {
                transform: scale(.45);
                opacity: .95;
            }

            100% {
                transform: scale(2.85);
                opacity: 0;
            }
        }

        @keyframes heroConceptToggleDotBlink {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .28;
                transform: scale(.88);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero__conceptBtnRipple,
            .hero__conceptBtnDot {
                animation: none !important;
            }

            .hero__conceptBtnRipple {
                display: none;
            }

            .hero__conceptBtnDot {
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .heroNews__track {
                transition: none;
            }
        }

        .scrollCue--bar .scrollCue__track {
            position: relative;
            width: 2px;
            height: 44px;
            background: var(--accent-hero-soft);
            border-radius: 999px;
            overflow: hidden;
        }

        .scrollCue--bar .scrollCue__track::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 12px;
            background: var(--accent-hero);
            transform: translate(-50%, -16px);
            border-radius: 999px;
            animation: cueBarDown 1.6s cubic-bezier(.3, .55, .22, 1) infinite;
        }

        @keyframes cueBarDown {
            0% {
                transform: translate(-50%, -16px);
                opacity: 0;
            }

            20% {
                opacity: 1;
            }

            62% {
                transform: translate(-50%, 24px);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, 52px);
                opacity: 0;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .scrollCue--bar .scrollCue__track::after {
                animation: none;
                top: 55%;
                opacity: 1;
            }

            .scrollCue--bar {
                transition: none;
                transition-delay: 0s;
            }

            .section.reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            #wb-intro .wbIntro__reveal,
            #wb-intro.is-visible .wbIntro__reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            #wb-intro .wbIntro__bg,
            #wb-intro.is-visible .wbIntro__bg {
                opacity: 1;
                transition: none;
            }

            #wb-intro .wbIntro__bg.is-video-playing .wbIntro__bgVideo {
                display: none;
            }
        }

        .scrollCue__label {
            display: block;
            margin-bottom: 0;
            font-family: "Inter", system-ui, sans-serif;
            font-size: 10px;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--accent-hero);
            text-align: center;
            pointer-events: none;
        }

        @media (min-width: 769px) {
            .scrollCue__label {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .hero__foot {
                left: var(--gutter);
                right: var(--gutter);
                bottom: clamp(42px, 8.5vh, 62px);
                flex-direction: column-reverse;
                align-items: center;
                justify-content: flex-end;
                gap: 16px;
            }

            .scrollCue--bar {
                transform: translateY(16px);
            }

            .heroNews {
                order: 3;
            }

            body.is-ready .scrollCue--bar {
                transform: translateY(16px);
            }

            .heroNews {
                max-width: 100%;
                width: min(100%, 360px);
            }

            .heroNews__link {
                padding: 6px 10px;
                border-radius: 12px;
            }

            .heroNews__eyebrow {
                margin-bottom: 4px;
                font-size: 8px;
            }

            .heroNews__viewport {
                height: 48px;
            }

            .heroNews__slide {
                flex: 0 0 48px;
                min-height: 48px;
                max-height: 48px;
                gap: 3px;
                justify-content: center;
            }

            .heroNews__date {
                display: block;
                font-size: 9px;
                letter-spacing: .06em;
            }

            .heroNews__title {
                font-size: 11px;
                font-weight: 600;
                line-height: 1.25;
                line-clamp: 1;
                -webkit-line-clamp: 1;
            }
        }
