/* よくあるご質問ページ専用スタイル */



  .faq-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px 56px;
  }

  /* ===== ヘッダ ===== */
  .faq-head {
    text-align: center;
    margin: 24px 0 32px;
    padding-top: 12px;
  }

  .faq-head .eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "YuGothic", sans-serif;
    font-weight: 600;
  }

  .faq-head h1 {
    font-family: "YuMincho", serif;
    font-size: 22px;
    line-height: 1.5;
    color: var(--accent);
    letter-spacing: 0.06em;
    font-weight: 500;
    margin: 0;
  }

  @media(min-width:768px) {
    .faq-head h1 {
      font-size: 26px;
    }
  }

  /* ===== 序文 ===== */
  .faq-intro {
    font-family: "YuMincho", serif;
    font-size: 14px;
    line-height: 1.95;
    color: var(--text);
    letter-spacing: 0.02em;
    margin: 0 0 32px;
  }

  /* ===== カテゴリ章 ===== */
  .faq-section {
    margin-bottom: 36px;
  }

  .faq-section h2 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-family: "YuMincho", serif;
    font-size: 16px;
    color: var(--accent);
    letter-spacing: 0.05em;
    font-weight: 500;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }

  .faq-section h2::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex: 0 0 18px;
  }

  .faq-section h2 .num {
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-family: "YuGothic", sans-serif;
    font-weight: 600;
  }

  /* ===== 個別のQ&Aアイテム ===== */
  .faq-item {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line);
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-q {
    font-family: "YuMincho", serif;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.03em;
    font-weight: 500;
    margin: 0 0 8px;
    display: flex;
    gap: 10px;
    align-items: baseline;
  }

  .faq-q .mark {
    font-family: "YuGothic", sans-serif;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    flex: 0 0 16px;
  }

  .faq-a {
    font-family: "YuMincho", serif;
    font-size: 13px;
    line-height: 1.95;
    color: var(--text);
    letter-spacing: 0.02em;
    margin: 0;
    padding-left: 26px;
    display: flex;
    gap: 10px;
    align-items: baseline;
  }

  .faq-a .mark {
    font-family: "YuGothic", sans-serif;
    font-size: 12px;
    color: var(--text-mute);
    font-weight: 600;
    flex: 0 0 16px;
    margin-left: -26px;
  }

  .faq-a .text {
    flex: 1;
  }

  .faq-a strong {
    font-weight: 600;
    color: var(--accent);
  }

  .faq-a a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ===== フッタ ===== */
  .faq-foot {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: right;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
  }
