
  .static-hero {
    background: linear-gradient(135deg, #0d2555 0%, #1a3a7c 100%);
    padding: 40px 20px 64px;
    position: relative;
  }

  .static-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 32px;
    background: var(--c-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .static-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    color: #fff;
  }

  .static-hero-bread {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .static-hero-bread a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
  }

  .static-hero-bread a:hover {
    color: #fff;
  }

  .static-hero h1 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 8px;
  }

  .static-hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
  }

  .static-wrap {
    max-width: 720px;
    margin: -28px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
  }

  /* ポリシー本文 */
  .policy-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1px;
  }

  .policy-card:first-of-type {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .policy-card:last-of-type {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 16px;
  }

  .policy-card:only-of-type {
    border-radius: var(--radius-lg);
  }

  .policy-h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-accent);
    display: flex;
    align-items: center;
    gap: 8px;
    counter-increment: section;
  }

  .policy-h2::before {
    content: counter(section);
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .policy-body {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.9;
    counter-reset: section;
  }

  .policy-body p {
    margin-bottom: 12px;
  }

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

  .policy-body ul {
    margin: 10px 0 10px 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .policy-body li {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7;
  }

  .policy-body strong {
    color: var(--c-text);
    font-weight: 600;
  }

  .policy-body a {
    color: var(--c-accent);
  }

  .policy-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 13px;
  }

  .policy-body th,
  .policy-body td {
    padding: 8px 12px;
    border: 1px solid var(--c-border);
    text-align: left;
  }

  .policy-body th {
    background: var(--c-bg);
    font-weight: 700;
    color: var(--c-text);
  }

  .policy-body td {
    color: var(--c-muted);
  }

  .updated-note {
    font-size: 12px;
    color: var(--c-muted);
    text-align: right;
    margin-bottom: 16px;
  }

  @media (max-width: 560px) {
    .policy-card {
      padding: 22px 18px;
    }
  }
