    .faq-demo {
      max-width: 980px;
      margin: 0 auto;
      padding: 56px 24px 72px;
    }

    .faq-heading {
      margin: 0 0 38px;
      text-align: center;
      font-size: 40px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: #1f2328;
    }

    .faq-list {
      display: grid;
      gap: 18px;
    }

    .faq-item {
      background: #f7f7f5;
      border: 1px solid #222;
      box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .faq-item.is-open {
      background: #fbfbf8;
    }

    .faq-trigger {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      color: inherit;
    }

    .faq-trigger:hover {
      background: rgba(255, 199, 0, 0.06);
    }

    .faq-badge,
    .faq-answer-badge {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 38px;
      font-weight: 800;
      font-size: 23px;
      line-height: 1;
    }

    .faq-badge {
      background: rgba(11, 159, 94, 1);
      color: #fff;
    }

    .faq-answer-badge {
      width: 28px;
      height: 28px;
      flex-basis: 28px;
      background: #5e596d;
      color: #fff;
      font-size: 18px;
      margin-top: 4px;
    }

    .faq-question {
      flex: 1 1 auto;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.03em;
      line-height: 1.6;
    }

    .faq-icon {
      position: relative;
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      margin-left: 8px;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 2px;
      background: #d2aa00;
      border-radius: 999px;
      transform-origin: center;
      transition: transform 0.22s ease;
    }

    .faq-icon::before {
      transform: translate(-6px, -50%) rotate(45deg);
    }

    .faq-icon::after {
      transform: translate(-1px, -50%) rotate(-45deg);
    }

    .faq-item.is-open .faq-icon::before {
      transform: translate(-6px, -50%) rotate(-45deg);
    }

    .faq-item.is-open .faq-icon::after {
      transform: translate(-1px, -50%) rotate(45deg);
    }

    .faq-panel {
      display: none;
      padding: 0 30px 30px 30px;
    }

    .faq-item.is-open .faq-panel {
      display: block;
    }

    .faq-answer {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding-left: 2px;
    }

    .faq-answer-body {
      flex: 1 1 auto;
      font-size: 15px;
      color: #2e2f33;
    }

    .faq-answer-body p {
      margin: 0;
    }

    .faq-answer-body p + p {
      margin-top: 12px;
    }

    .faq-answer-body ul {
      margin: 14px 0 0;
      padding-left: 1.2em;
    }

    .faq-answer-body li + li {
      margin-top: 8px;
    }

    .faq-cta {
      margin-top: 24px;
      display: flex;
      justify-content: center;
    }

    .faq-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-width: 320px;
      padding: 15px 28px;
      border-radius: 999px;
      background: #f3c400;
      color: #111;
      text-decoration: none;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.04em;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .faq-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    }

    .faq-link-arrow {
      font-size: 18px;
      line-height: 1;
    }

/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

@media screen and (max-width: 480px) {
/*/////////////SP用のCSSをここに作成してください。/////////////*/
/*/////////////必ず中括弧の中に作成してください。/////////////*/

   .faq-demo {
        padding: 40px 16px 56px;
      }

      .faq-heading {
        font-size: 30px;
        margin-bottom: 28px;
      }

      .faq-trigger {
        padding: 18px 16px;
        gap: 12px;
      }

      .faq-question {
        font-size: 15px;
      }

      .faq-panel {
        padding: 0 16px 22px;
      }

      .faq-answer {
        gap: 12px;
      }

      .faq-answer-body {
        font-size: 14px;
      }

      .faq-link {
        width: 100%;
        min-width: 0;
        padding: 14px 20px;
      }
}