
  .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: 720px;
    margin: -28px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
  }

  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .faq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background .12s;
  }

  .faq-question:hover {
    background: var(--c-bg);
  }

  .faq-q-icon {
    width: 28px;
    height: 28px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .faq-question-text {
    flex: 1;
    line-height: 1.5;
  }

  .faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--c-muted);
  }

  .faq-item.open .faq-arrow {
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    padding: 0 20px 18px 60px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.9;
    border-top: 1px solid var(--c-border);
    padding-top: 14px;
  }

  .faq-item.open .faq-answer {
    display: block;
  }

  .faq-a-icon {
    display: inline-block;
    background: var(--c-success-bg);
    color: var(--c-success);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
  }

  /* お問い合わせバナー */
  .contact-banner {
    background: var(--c-accent-light);
    border: 1px solid #c5d4f0;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .contact-banner-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .contact-banner-text p {
    font-size: 13px;
    color: var(--c-muted);
  }
