
  .static-hero {
    background: linear-gradient(135deg, #0d2555 0%, #1a3a7c 100%);
    padding: 16px 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;
    margin-bottom: 24px;
  }

  .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;
    line-height: 1.3;
    margin-bottom: 8px;
    text-align: center;
  }

  .static-hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 24px;
  }

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

  /* お問い合わせカード */
  .contact-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-icon {
    font-size: 52px;
    margin-bottom: 16px;
  }

  .contact-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .email-display {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-accent-light);
    border: 1.5px solid #c5d4f0;
    border-radius: var(--radius-md);
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--c-accent);
    text-decoration: none;
    transition: all .15s;
    word-break: break-all;
  }

  .email-display:hover {
    background: #d4e2f5;
    border-color: var(--c-accent);
    text-decoration: none;
  }

  /* ガイドリスト */
  .guide-list {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
  }

  .guide-list h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .guide-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7;
  }

  .guide-item:last-child {
    margin-bottom: 0;
  }

  .guide-num {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
  }

  /* 注意書き */
  .notice-box {
    background: var(--c-warn-bg);
    border: 1px solid #f5c842;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--c-warn);
    line-height: 1.7;
  }
