body{
    margin: 0;        /* ← ここを 0 に */
    font-family:'Figtree',system-ui,sans-serif;
    color:var(--black);
    background:var(--bg);
    padding-top: 93px;
    font-size: 14px;
  }


/* =========================
   FV
========================= */

  .fv {
    background: linear-gradient(to right, #9c1d52, #004035);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
  }
  
  .fv-title {
    font-size: 28px;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .fv {
      padding: 60px 20px;
    }
  
    .fv-title {
      font-size: 20px;
    }
  }

/* =========================
   FAQ
========================= */

.faq-section {
    padding: 30px 20px;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Tabs */
  .faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    flex-direction: row;
  }

  /* タブで切り替えるコンテンツ（非表示のグループは隠す） */
  .faq-group {
    display: none;
  }
  .faq-group.active {
    display: block;
  }
  
  .faq-tabs button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding-bottom: 6px;
    border-bottom: 1px solid #777;
    color: #333 !important;
  }
  
  .faq-tabs button:visited,
  .faq-tabs button:link,
  .faq-tabs button:active {
    color: #333 !important;
  }
  
  .faq-tabs .active {
    font-weight: 600;
    color: #333 !important;
  }
  
  .faq-tabs .active:visited,
  .faq-tabs .active:link,
  .faq-tabs .active:active {
    color: #333 !important;
  }
  
  @media (max-width: 768px) {
    .faq-tabs button {
      font-size: 11px;
    }
  }
  
  /* Title */
  .faq-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
    text-align: left;
  }
  
  @media (max-width: 768px) {
    .faq-title {
      text-align: left !important;
    }
  }
  
  /* FAQ item */
  .faq-item {
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
  }
  
  /* Question */
  .faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    text-align: left;
  }
  
  /* Icon */
  .faq-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
  }
  
/* Answer */
/* Answer outer (高さ制御だけ) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  
  /* 中身だけが padding を持つ */
  .faq-answer-inner {
    padding: 16px 24px 24px;
    box-sizing: border-box;
  }
  
  /* 開いたとき */
  .faq-item.active .faq-answer {
    max-height: 2000px;
  }
  
  .faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: #333;
  }
  
  .faq-answer-inner {
    color: #333;
  }
  
  .faq-answer-inner p {
    color: #333;
  }
  
  .faq-answer-inner * {
    color: #333;
  }
  
  /* リンクの色を維持 */
  .faq-answer-inner a {
    color: #0066cc;
    text-decoration: underline;
  }
  
  .faq-answer-inner a:hover {
    color: #004499;
  }
  


  
  
