        *,
        *::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 800px 500px at 20% 50%, rgba(255, 102, 0, .08) 0%, transparent 60%),
                radial-gradient(ellipse 600px 400px at 80% 50%, 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-hero-date {
            margin-top: 16px;
            font-size: .85rem;
            color: var(--text-muted);
        }

        .page-hero-date span {
            background: rgba(255, 102, 0, .15);
            color: var(--orange);
            border: 1px solid rgba(255, 102, 0, .3);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: .8rem;
            font-weight: 600;
        }

        /* ===== MAIN CONTENT ===== */
        .privacy-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 72px 40px 96px;
        }

        /* intro */
        .privacy-intro {
            background: var(--bg);
            border-left: 4px solid var(--orange);
            border-radius: 0 8px 8px 0;
            padding: 24px 28px;
            margin-bottom: 56px;
            font-size: .95rem;
            line-height: 1.9;
            color: var(--text-mid);
        }

        /* section */
        .p-section {
            margin-bottom: 56px;
        }

        .p-section h2 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .p-section h2 .num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--orange);
            color: var(--white);
            border-radius: 50%;
            font-size: .75rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .p-section p {
            font-size: .95rem;
            line-height: 1.9;
            color: var(--text-mid);
            margin-bottom: 12px;
        }

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

        .p-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .p-section ul li {
            font-size: .95rem;
            line-height: 1.9;
            color: var(--text-mid);
            padding: 6px 0 6px 20px;
            position: relative;
        }

        .p-section ul li::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 16px;
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
        }

        /* table */
        .p-table {
            width: 100%;
            border-collapse: collapse;
            font-size: .9rem;
            margin-top: 16px;
        }

        .p-table th,
        .p-table td {
            border: 1px solid var(--border);
            padding: 14px 18px;
            text-align: left;
            vertical-align: top;
        }

        .p-table th {
            background: var(--bg);
            font-weight: 700;
            color: var(--dark);
            white-space: nowrap;
            width: 200px;
        }

        .p-table td {
            color: var(--text-mid);
            line-height: 1.8;
        }

        /* contact box */
        .p-contact-box {
            background: var(--dark);
            border-radius: 12px;
            padding: 32px 36px;
            color: var(--white);
        }

        .p-contact-box h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .p-contact-box table {
            width: 100%;
            border-collapse: collapse;
        }

        .p-contact-box table th,
        .p-contact-box table td {
            padding: 8px 0;
            font-size: .9rem;
            vertical-align: top;
        }

        .p-contact-box table th {
            color: var(--text-muted);
            font-weight: 500;
            width: 140px;
            white-space: nowrap;
        }

        .p-contact-box table td {
            color: rgba(255, 255, 255, .85);
        }

        .p-contact-box .p-contact-link {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 28px;
            background: var(--orange);
            color: var(--white);
            border-radius: 6px;
            font-weight: 700;
            font-size: .9rem;
            text-decoration: none;
            transition: background .2s;
        }

        .p-contact-box .p-contact-link:hover {
            background: var(--orange-dark);
        }

        /* revision */
        .p-revision {
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
        }

        .p-revision p {
            font-size: .85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .p-revision .company-sign {
            text-align: right;
        }

        .p-revision .company-sign strong {
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }

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

            .privacy-wrap {
                padding: 48px 24px 64px;
            }

            .p-contact-box {
                padding: 24px 20px;
            }

            .p-revision {
                flex-direction: column;
                align-items: flex-start;
            }

            .p-revision .company-sign {
                text-align: left;
            }

        }

        @media (max-width: 640px) {}

/* Extracted from inline style attributes */
.u-inline-001 { color:var(--orange); }
