
    :root {
      --gold: #C9A84C; --gold-light: #E8C96A; --gold-dark: #9A7A2E;
      --navy: #0D1B2A; --navy-mid: #1A2F45;
      --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-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.9) 60%, rgba(13,27,42,0.6) 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(28px, 3.5vw, 44px); 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: 800px; margin: 0 auto; padding: 0 40px; }

    /* POLICY */
    .policy-lead { font-size: 16px; line-height: 2.2; color: var(--text-mid); margin-bottom: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--light-gray); }
    .policy-section { margin-bottom: 56px; }
    .policy-section:last-child { margin-bottom: 0; }
    .policy-h2 { font-family: "Noto Serif JP", serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding: 14px 20px; background: var(--off-white); border-left: 4px solid var(--gold); }
    .policy-h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 24px 0 12px; }
    .policy-text { font-size: 15px; line-height: 2.2; color: var(--text-mid); }
    .policy-list { margin: 12px 0 12px 20px; display: flex; flex-direction: column; gap: 8px; }
    .policy-list li { font-size: 15px; line-height: 2; color: var(--text-mid); }

    /* 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); }

    /* RESPONSIVE */
    @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: 220px; margin-top: 70px; }
      .page-hero-content { padding: 0 40px 120px; } .breadcrumb-inner, .content-inner, .footer-inner { padding: 0 24px; }
      .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, .footer-inner { padding: 0 16px; }
      .content { padding: 40px 0 60px; }
      .footer-nav-group { display: none; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
  