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

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

        :root {
            --orange: #FF6600;
            --orange-dark: #D95400;
            --orange-pale: rgba(255, 102, 0, 0.08);
            --dark: #0A0E1A;
            --dark-2: #111628;
            --dark-3: #1C2235;
            --text: #1A1A2E;
            --text-mid: #4B5563;
            --text-muted: #9CA3AF;
            --border: #E5E7EB;
            --bg: #F7F8FC;
            --white: #FFFFFF;
            --nav-h: 72px;
            --max-w: 1280px;
        }

        body {
            font-family: 'Noto Sans JP', 'Inter', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            background: var(--dark);
            padding: 120px 40px 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 900px 600px at 15% 60%, rgba(255, 102, 0, .07) 0%, transparent 60%),
                radial-gradient(ellipse 700px 500px at 85% 40%, rgba(255, 102, 0, .05) 0%, transparent 60%);
        }

        .page-hero-in {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-breadcrumb {
            font-size: .8rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            letter-spacing: .05em;
        }

        .page-breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .page-breadcrumb a:hover {
            color: var(--orange);
        }

        .page-breadcrumb span {
            margin: 0 8px;
        }

        .page-hero h1 {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .page-hero p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* ===== PAGE ANCHOR NAV ===== */
        .page-anav {
            position: sticky;
            top: var(--nav-h);
            background: var(--white);
            border-bottom: 1px solid var(--border);
            z-index: 800;
        }

        .page-anav-in {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            gap: 0;
        }

        .page-anav a {
            padding: 16px 24px;
            font-size: .875rem;
            font-weight: 600;
            color: var(--text-mid);
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: color .2s, border-color .2s;
            white-space: nowrap;
        }

        .page-anav a:hover {
            color: var(--orange);
            border-bottom-color: var(--orange);
        }

        .page-anav a.active {
            color: var(--orange);
            border-bottom-color: var(--orange);
        }

        /* ===== SECTIONS ===== */
        .sec {
            padding: 96px 40px;
        }

        .sec-in {
            max-width: var(--max-w);
            margin: 0 auto;
        }

        .sec-dark {
            background: var(--dark);
        }

        .sec-bg {
            background: var(--bg);
        }

        .sec-eye {
            font-family: 'Inter', sans-serif;
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .sec-h2 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .sec-lead {
            font-size: 1.05rem;
            color: var(--text-mid);
            line-height: 1.9;
        }

        /* reveal */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .6s ease, transform .6s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: none;
        }

        /* ===== CEO MESSAGE ===== */
        .msg-wrap {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 72px;
            align-items: start;
        }

        /* CEO card */
        .ceo-card {
            position: sticky;
            top: calc(var(--nav-h) + 54px);
        }

        .ceo-portrait {
            width: 100%;
            aspect-ratio: 3/4;
            background: var(--dark-3);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            margin-bottom: 0;
        }

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

        .ceo-id {
            margin-top: 18px;
            padding-top: 14px;
            border-top: 2px solid var(--orange);
        }

        .ceo-id-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            letter-spacing: .02em;
        }

        .ceo-id-title {
            font-size: .78rem;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: .04em;
            margin-top: 5px;
            line-height: 1.5;
        }

        /* message body */
        .msg-body {
            padding-top: 8px;
        }

        .msg-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: .75rem;
            font-weight: 800;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 32px;
        }

        .msg-label::before {
            content: '';
            display: block;
            width: 32px;
            height: 2px;
            background: var(--orange);
        }

        .msg-greeting {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 900;
            line-height: 1.35;
            letter-spacing: -0.02em;
            color: var(--dark);
            margin-bottom: 40px;
        }

        .msg-text {
            font-size: 1rem;
            line-height: 2;
            color: var(--text-mid);
        }

        .msg-text p {
            margin-bottom: 1.8em;
        }

        .msg-text p:last-child {
            margin-bottom: 0;
        }

        .msg-text em {
            color: var(--dark);
            font-style: normal;
            font-weight: 700;
        }

        .msg-three,
        .msg-cycle {
            margin: 32px 0;
            padding: 24px 32px;
            border-left: 3px solid var(--orange);
            background: var(--bg);
            border-radius: 0 10px 10px 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .msg-three-item,
        .msg-cycle-item {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.6;
        }

        .msg-cycle {
            background: var(--orange-pale);
            border-left-color: var(--orange);
        }

        .msg-pullquote {
            margin: 48px 0;
            padding: 32px 40px;
            background: var(--dark);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .msg-pullquote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 24px;
            font-size: 8rem;
            line-height: 1;
            color: rgba(255, 102, 0, .15);
            font-family: 'Inter', serif;
            font-weight: 900;
        }

        .msg-pullquote-text {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            font-weight: 700;
            line-height: 1.7;
            color: var(--white);
            position: relative;
        }

        .msg-pullquote-text em {
            color: var(--orange);
            font-style: normal;
        }

        .msg-sign {
            margin-top: 56px;
            padding-top: 40px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: flex-end;
            text-align: right;
        }

        .msg-sign-company {
            font-size: .82rem;
            color: var(--text-muted);
            margin-bottom: 6px;
            letter-spacing: .04em;
        }

        .msg-sign-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: .02em;
        }

        /* ===== COMPANY OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 64px;
            align-items: start;
        }

        .overview-head .sec-h2 {
            color: var(--white);
        }

        .overview-head .sec-lead {
            color: rgba(255, 255, 255, .55);
        }

        .overview-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 10px;
            padding: 20px 24px;
        }

        .stat-num {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-num sup {
            font-size: 1rem;
        }

        .stat-label {
            font-size: .78rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.5;
        }

        .overview-table {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            overflow: hidden;
        }

        .ov-row {
            display: grid;
            grid-template-columns: 140px 1fr;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .ov-row:last-child {
            border-bottom: none;
        }

        .ov-lbl {
            padding: 18px 20px;
            font-size: .82rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .03em;
            background: rgba(255, 255, 255, .02);
            display: flex;
            align-items: center;
        }

        .ov-val {
            padding: 18px 24px;
            font-size: .9rem;
            color: rgba(255, 255, 255, .8);
            line-height: 1.7;
            display: flex;
            align-items: center;
        }

        /* ===== ACCESS ===== */
        .access-grid {
            display: grid;
            grid-template-columns: 1fr 440px;
            gap: 56px;
            align-items: start;
        }

        .map-frame {
            border-radius: 16px;
            overflow: hidden;
            height: auto;
            aspect-ratio: 3 / 2;
            background: var(--bg);
            border: 1px solid var(--border);
        }

        .map-frame img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .access-info {
            padding-top: 8px;
        }

        .access-address {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .access-address small {
            display: block;
            font-size: .8rem;
            font-weight: 400;
            color: var(--text-muted);
            margin-bottom: 4px;
            letter-spacing: .04em;
        }

        .access-rows {
            margin-top: 24px;
            border-top: 1px solid var(--border);
        }

        .access-row {
            display: flex;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: .9rem;
        }

        .access-row-lbl {
            color: var(--text-muted);
            font-weight: 600;
            min-width: 80px;
            flex-shrink: 0;
        }

        .access-row-val {
            color: var(--text-mid);
            line-height: 1.7;
        }

        .access-row-val a {
            color: var(--orange);
            text-decoration: none;
        }

        .access-row-val a:hover {
            text-decoration: underline;
        }

        /* ===== BUZ MEMBER INTERVIEW ===== */
        .bm-grid {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 64px;
            align-items: start;
            margin-top: 56px;
        }

        .bm-photo-col {
            position: sticky;
            top: calc(var(--nav-h) + 60px);
        }

        .bm-photo {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            position: relative;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
        }

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

        .bm-id {
            margin-top: 18px;
            padding-top: 14px;
            border-top: 2px solid var(--orange);
        }

        .bm-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            letter-spacing: .02em;
        }

        .bm-role {
            font-size: .78rem;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: .04em;
            margin-top: 5px;
            line-height: 1.5;
        }

        .bm-passages {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .bm-passage {
            background: var(--white);
            border-radius: 14px;
            padding: 26px 30px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: box-shadow .3s;
        }

        .bm-passage:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
        }

        .bm-passage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--orange);
        }

        .bm-theme {
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .16em;
            color: var(--orange);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .bm-passage p {
            font-size: .92rem;
            color: var(--text-mid);
            line-height: 1.95;
        }

        .bm-passage p strong {
            color: var(--text);
            font-weight: 700;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1060px) {
            .msg-wrap {
                grid-template-columns: 220px 1fr;
                gap: 48px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .access-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .bm-photo-col {
                position: static;
            }

            .bm-photo {
                aspect-ratio: 4 / 3;
                max-height: 360px;
            }

        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 100px 24px 48px;
            }

            .page-anav-in {
                padding: 0 16px;
                overflow-x: auto;
            }

            .page-anav a {
                padding: 14px 16px;
                font-size: .82rem;
            }

            .sec {
                padding: 64px 24px;
            }

            .msg-wrap {
                grid-template-columns: 1fr;
            }

            .ceo-card {
                position: static;
            }

            .ceo-portrait {
                aspect-ratio: 4/3;
                max-height: 360px;
            }

            .msg-pullquote {
                padding: 24px 28px;
            }

        }

        @media (max-width: 640px) {
            .sec {
                padding: 64px 16px;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }

        }

        /* Extracted from inline style attributes */
        .u-inline-001 {
            transition-delay: .12s;
        }

        .u-inline-002 {
            color: var(--orange);
        }

        .u-inline-003 {
            color: var(--white);
        }

        .u-inline-004 {
            color: rgba(255, 255, 255, .55);
        }

        .u-inline-005 {
            flex-direction: column;
            gap: 4px;
            align-items: flex-start;
        }

        .u-inline-006 {
            color: var(--orange);
            text-decoration: none;
        }

        .u-inline-007 {
            color: rgba(255, 255, 255, .3);
            font-size: .8rem;
            margin-left: 8px;
        }

        .u-inline-008 {
            margin-bottom: 48px;
            text-align: center;
        }

        .u-inline-009 {
            font-size: .82rem;
            color: var(--text-muted);
        }