/* ===== FAQ (mini) ===== */
  .faq-section {
    background: var(--white);
    padding: 68px 26px 68px;
    position: relative;
    overflow: hidden;
  }

  .faq-section::before {
    content: 'FAQ';
    position: absolute;
    right: -8px; bottom: -16px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(68px, 16vw, 160px);
    font-weight: 700;
    color: rgba(240,62,122,0.05);
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }

  .faq-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap; gap: 12px;
  }

  .faq-header .section-title { margin-bottom: 0; }

  .faq-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
    color: var(--pink-main); text-decoration: none;
    border: 1px solid rgba(240,62,122,0.3);
    padding: 8px 16px; border-radius: 42px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }

  .faq-more:hover { background: rgba(240,62,122,0.07); border-color: var(--pink-main); }

  .faq-list {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 760px;
    position: relative; z-index: 1;
  }

  .faq-item {
    border: 1px solid var(--pink-light);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
  }

  .faq-item:hover { }

  .faq-item[open] {
    border-color: rgba(240,62,122,0.35);
  }

  .faq-q {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 16px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s;
  }

  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::marker { display: none; }
  .faq-q:hover { background: var(--pink-pale); }

  .faq-q-label {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
    color: white;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    letter-spacing: 0.02em;
  }

  .faq-q-text {
    flex: 1;
    font-size: 15px; font-weight: 600;
    color: var(--navy); line-height: 1.5;
  }

  .faq-q-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--pink-pale);
    border: 1px solid var(--pink-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--pink-main);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.2s;
  }

  .faq-item[open] .faq-q-icon {
    transform: rotate(45deg);
    background: var(--pink-main);
    color: white;
    border-color: var(--pink-main);
  }

  .faq-a-wrap {
    overflow: hidden;
  }

  .faq-a {
    padding: 0 16px 16px 62px;
    font-size: 14px; color: var(--gray-text);
    line-height: 1.9;
    border-top: 1px solid var(--pink-pale);
    padding-top: 16px;
  }

  .faq-a a { color: var(--pink-main); text-decoration: underline; }

  /* open/close アニメーション */
  .faq-item:not([open]) .faq-a-wrap {
    display: none;
  }

  /* CTA内ボタン行余白 */
  .cta-section .btn-white {
    margin-top: 0;
  }
  .cta-contacts {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .cta-contact-item {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
  }
  .cta-contact-item:hover {
    background: rgba(255,255,255,0.15);
    color: white;
  }
  @media (max-width: 640px) {
    .cta-contacts { flex-direction: column; align-items: center; gap: 10px; }
  }
