
    :root {
      --gold: #C9A84C; --gold-light: #E8C96A; --gold-dark: #9A7A2E;
      --navy: #0D1B2A; --navy-mid: #1A2F45; --navy-light: #243B55;
      --white: #FFFFFF; --off-white: #F5F3EF; --light-gray: #E8E6E2;
      --text-dark: #1A1A1A; --text-mid: #4A4A4A; --text-light: #7A7A7A;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: "Noto Sans JP", sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

    /* HEADER */
    header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 100px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img { height: 70px; width: auto; }
    nav { display: flex; align-items: center; gap: 36px; }
    nav a { color: var(--text-mid); text-decoration: none; font-size: 15px; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s; }
    nav a:hover { color: var(--navy); }
    nav a.active { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
    .nav-contact { display: flex !important; align-items: center; background: var(--gold) !important; color: var(--navy) !important; padding: 0 32px !important; height: 100px; font-size: 15px !important; font-weight: 700 !important; letter-spacing: 0.05em; transition: background 0.2s !important; margin-right: -40px; }
    .nav-contact:hover { background: var(--gold-light) !important; color: var(--navy) !important; border-bottom: none !important; }
    .burger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1100; }
    .burger span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all 0.3s ease; transform-origin: center; }
    .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-drawer { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .nav-drawer.open { display: block; opacity: 1;  pointer-events: auto; }
    .nav-drawer-inner { position: absolute; top: 0; right: 0; width: 280px; height: 100%; background: #fff; padding: 120px 36px 40px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.12); }
    .nav-drawer.open .nav-drawer-inner { transform: translateX(0); }
    .nav-drawer-inner a { display: block; font-size: 16px; font-weight: 500; color: var(--text-dark); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--light-gray); letter-spacing: 0.05em; transition: color 0.2s; }
    .nav-drawer-inner a:hover { color: var(--gold-dark); }
    .nav-drawer-contact { margin-top: 24px !important; background: var(--gold) !important; color: var(--navy) !important; text-align: center; padding: 16px !important; font-weight: 700 !important; border-bottom: none !important; }

    /* PAGE HERO */
    .page-hero { position: relative; height: 360px; background: var(--navy); display: flex; align-items: flex-end; overflow: hidden; margin-top: 100px; }
    .page-hero-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,27,42,0.85) 50%, rgba(13,27,42,0.4) 100%), url('../img/4122.JPG') 40% 45%/130% auto no-repeat; }
    .page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
    .page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px 120px; width: 100%; }
    .page-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .page-label::before { content: ""; display: block; width: 40px; height: 1px; background: var(--gold); }
    .page-label span { font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; }
    .page-title { font-family: "Noto Serif JP", serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white); line-height: 1.3; }

    /* BREADCRUMB */
    .breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--light-gray); padding: 14px 0; }
    .breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 8px; }
    .breadcrumb a { font-size: 13px; color: var(--text-light); text-decoration: none; transition: color 0.2s;  padding: 8px 4px; }

    .breadcrumb a:hover { color: var(--gold-dark); }
    .breadcrumb span { font-size: 13px; color: var(--text-light); }
    .breadcrumb-current { font-size: 13px; color: var(--text-dark); }

    /* CONTENT */
    .content { padding: 100px 0 120px; }
    .content-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* SECTION LABEL */
    .section-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .section-label::before { content: ""; display: block; width: 32px; height: 1px; background: var(--gold); }
    .section-label span { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
    .section-title { font-family: "Noto Serif JP", serif; font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 16px; }
    .section-desc { font-size: 16px; line-height: 2; color: var(--text-mid); margin-bottom: 64px; }

    /* CATEGORY */
    .category { margin-bottom: 80px; }
    .category:last-child { margin-bottom: 0; }
    .category-title {
      font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 700;
      color: var(--navy); margin-bottom: 24px; padding: 20px 28px;
      border-left: 4px solid var(--gold); background: var(--off-white);
    }

    /* EQUIPMENT TABLE */
    .eq-table { width: 100%; border-collapse: collapse; }
    .eq-table thead tr { background: var(--light-gray); }
    .eq-table thead th { padding: 14px 20px; font-size: 13px; font-weight: 500; color: var(--text-mid); letter-spacing: 0.08em; text-align: left; }
    .eq-table thead th:last-child { text-align: center; width: 80px; }
    .eq-table thead th:first-child { width: 60px; text-align: center; }
    .eq-table tbody tr { border-bottom: 1px solid var(--light-gray); transition: background 0.2s; }
    .eq-table tbody tr:last-child { border-bottom: none; }
    
    .eq-table tbody td { padding: 20px; font-size: 15px; color: var(--text-dark); line-height: 1.6; }
    .eq-table tbody td:first-child { text-align: center; }
    .eq-table tbody td:last-child { text-align: center; color: var(--text-mid); }
    .eq-num { color: var(--text-light); font-size: 13px; }

    /* CTA */
    .cta { background: var(--navy); padding: 100px 0; }
    .cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 60px; }
    .cta-title { font-family: "Noto Serif JP", serif; font-size: clamp(24px, 2.5vw, 34px); font-weight: 700; color: var(--white); line-height: 1.5; margin-bottom: 16px; }
    .cta-desc { font-size: 16px; line-height: 2; color: rgba(255,255,255,0.6); }
    .cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
    .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy); padding: 16px 36px; font-size: 16px; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; transition: all 0.3s ease; border-radius: 6px; }
    .btn-primary::after { content: "→"; transition: transform 0.3s ease; }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
    .btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 16px 36px; font-size: 16px; font-weight: 400; text-decoration: none; transition: all 0.3s ease; border-radius: 6px; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* FOOTER */
    footer { background: #ffffff; padding: 60px 0 32px; border-top: 1px solid rgba(0,0,0,0.08); }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
    .footer-top { display: flex; flex-direction: column; gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .footer-brand img { height: 56px; margin-bottom: 12px; }
    .footer-brand p { font-size: 14px; line-height: 1.5; color: var(--text-mid); max-width: 400px; }
    .footer-nav-group { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0 32px; align-items: center; }
    .footer-nav-group h4 { display: none; }
    .footer-nav-group a { display: inline-block; font-size: 14px; color: var(--text-mid); text-decoration: none; padding: 8px 0; transition: color 0.2s; white-space: nowrap; }
    .footer-nav-group a:hover { color: var(--gold-dark); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 11px; color: var(--text-light); letter-spacing: 0.1em; }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { font-size: 11px; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--gold-dark); }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .content-inner { padding: 0 28px; }
    }
    @media (max-width: 768px) {
      .page-hero-bg { background-size: auto, cover; }
      .header-inner { padding: 0 20px; height: 70px; }
      nav { display: none; }
      .burger { display: flex; }
      .page-hero { height: 280px; margin-top: 70px; }
      .page-hero-content { padding: 0 40px 120px; } .breadcrumb-inner, .content-inner, .cta-inner, .footer-inner { padding: 0 24px; }
      .eq-table thead th, .eq-table tbody td { padding: 14px 12px; font-size: 13px; }
      .cta-inner { flex-direction: column; }
      .nav-contact { height: 70px !important; }
    }
    @media (max-width: 480px) {
      .header-inner { height: 64px; padding: 0 16px; }
      .logo img { height: 52px; }
      .nav-contact { height: 64px !important; padding: 0 20px !important; font-size: 13px !important; }
      .page-hero { height: 240px; margin-top: 64px; }
      .page-hero-content { padding: 0 40px 120px; } .breadcrumb-inner, .content-inner, .cta-inner, .footer-inner { padding: 0 16px; }
      .content { padding: 40px 0 60px; }
      .eq-table { font-size: 12px; }
      .footer-nav-group { display: none; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
  