  /* FAQページ専用 */
  
.faqp__page *, .faqp__page *::before, .faqp__page *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* ======= LAYOUT ======= */
    .faqp__page {
      min-height: 100vh;
      background: #ffffff;
      color: #1a1a2e;
      font-family: 'Noto Sans JP', 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    .faqp__hero {
      background: #ffffff;
      border-bottom: 1px solid #e8eaf0;
      padding: 56px 24px 40px;
      text-align: center;
    }

    .faqp__hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #2563eb;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      border-radius: 0;
      padding: 4px 14px;
      margin-bottom: 18px;
    }

    .faqp__hero-title {
      font-size: clamp(26px, 5vw, 42px);
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.02em;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .faqp__hero-sub {
      color: #64748b;
      font-size: 15px;
      max-width: 520px;
      margin: 0 auto 28px;
    }

    /* Search */
    .faqp__search-wrap {
      max-width: 520px;
      margin: 0 auto;
      position: relative;
    }

    .faqp__search-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      pointer-events: none;
    }

    .faqp__search-input {
      width: 100%;
      padding: 13px 16px 13px 44px;
      border: 1.5px solid #e2e8f0;
      border-radius: 0;
      font-size: 15px;
      font-family: inherit;
      color: #1a1a2e;
      background: #f8fafc;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .faqp__search-input:focus {
      border-color: #2563eb;
      background: #ffffff;
    }

    .faqp__search-input::placeholder {
      color: #b0b8c8;
    }

    /* ======= MAIN CONTENT ======= */
    .faqp__main {
      max-width: 860px;
      margin: 0 auto;
      padding: 48px 24px 80px;
    }

    /* ======= SECTION NAV ======= */
    .faqp__section-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      gap: 8px;
      margin-bottom: 40px;
    }

    .faqp__section-nav-btn {
      flex: 1;
      text-align: center;
      font-family: inherit;
      font-size: 14px;
      font-weight: 500;
      color: #64748b;
      background: #f1f5f9;
      border: 1.5px solid transparent;
      border-radius: 0;
      padding: 6px 14px;
      cursor: pointer;
      transition: all 0.18s;
      white-space: nowrap;
    }

    .faqp__section-nav-btn:hover {
      background: #e0e7ff;
      color: #2563eb;
    }

    .faqp__section-nav-btn.faqp__active {
      background: #2563eb;
      color: #fff;
      border-color: #2563eb;
    }

    /* ======= BLOCK ======= */
    .faqp__block {
      margin-bottom: 52px;
      animation: faqp-fadeup 0.4s ease both;
    }

    .faqp__block:last-child {
      margin-bottom: 0;
    }

    @keyframes faqp-fadeup {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .faqp__block-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 2px solid #e8eaf0;
    }

    .faqp__block-icon {
      width: 36px;
      height: 36px;
      border-radius: 0;
      background: #eff6ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 17px;
    }

    .faqp__block-title {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.01em;
    }

    .faqp__block-count {
      margin-left: auto;
      font-size: 12px;
      color: #94a3b8;
      white-space: nowrap;
    }

    /* ======= ACCORDION ======= */
    .faqp__item {
      border: 1.5px solid #e8eaf0;
      border-radius: 0;
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faqp__item:last-child {
      margin-bottom: 0;
    }

    .faqp__item.faqp__open {
      border-color: #bfdbfe;
    }

    .faqp__item-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      transition: background 0.15s;
    }

    .faqp__item-q:hover {
      background: #f8fafc;
    }

    .faqp__item.faqp__open .faqp__item-q {
      background: #f0f7ff;
    }

    .faqp__q-badge {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 0;
      background: #dbeafe;
      color: #1d4ed8;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }

    .faqp__item.faqp__open .faqp__q-badge {
      background: #2563eb;
      color: #fff;
    }

    .faqp__q-text {
      flex: 1;
      font-size: 16px;
      font-weight: 600;
      color: #0f172a;
      line-height: 1.5;
    }

    .faqp__chevron {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: #94a3b8;
      transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
    }

    .faqp__item.faqp__open .faqp__chevron {
      transform: rotate(180deg);
      color: #2563eb;
    }

    /* Answer panel */
    .faqp__item-a {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faqp__item.faqp__open .faqp__item-a {
      grid-template-rows: 1fr;
    }

    .faqp__item-a-inner {
      overflow: hidden;
    }

    .faqp__item-a-body {
      padding: 4px 18px 20px 60px;
      font-size: 15px;
      color: #374151;
      line-height: 1.75;
    }

    @media (max-width: 600px) {
      .faqp__item-a-body {
        padding: 4px 16px 18px 16px;
      }
    }

    /* Answer content styles */
    .faqp__ans-lead {
      font-weight: 700;
      color: #1e40af;
      font-size: 16px;
      margin-bottom: 12px;
      display: block;
    }

    .faqp__ans-list {
      list-style: none;
      padding: 0;
      margin: 10px 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faqp__ans-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .faqp__ans-list li::before {
      content: '・';
      color: #2563eb;
      flex-shrink: 0;
    }

    .faqp__ans-badge {
      display: inline-block;
      font-weight: 700;
      font-size: 12px;
      padding: 1px 7px;
      border-radius: 0;
      margin-right: 4px;
    }

    .faqp__ans-badge--agv {
      background: #fef3c7;
      color: #92400e;
    }

    .faqp__ans-badge--amr {
      background: #dcfce7;
      color: #166534;
    }

    .faqp__ans-note {
      margin-top: 12px;
      padding: 10px 14px;
      background: #f0f9ff;
      border-left: 3px solid #0ea5e9;
      border-radius: 0;
      font-size: 14px;
      color: #0369a1;
    }

    .faqp__ans-table-wrap {
      overflow-x: auto;
      margin-top: 12px;
    }

    .faqp__ans-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14.5px;
    }

    .faqp__ans-table th {
      background: #f1f5f9;
      color: #475569;
      font-weight: 700;
      padding: 9px 14px;
      text-align: left;
      border: 1px solid #e2e8f0;
      font-size: 12px;
      letter-spacing: 0.04em;
    }

    .faqp__ans-table td {
      padding: 9px 14px;
      border: 1px solid #e2e8f0;
      color: #374151;
    }

    .faqp__ans-table tr:nth-child(even) td {
      background: #f8fafc;
    }

    /* ======= NO RESULTS ======= */
    .faqp__no-results {
      text-align: center;
      padding: 60px 24px;
      color: #94a3b8;
      font-size: 14px;
      display: none;
    }

    .faqp__no-results-icon {
      font-size: 36px;
      margin-bottom: 12px;
    }

    /* ======= EXPAND ALL ======= */
    .faqp__block-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-bottom: 12px;
    }

    .faqp__expand-all-btn {
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      color: #2563eb;
      background: none;
      border: 1px solid #bfdbfe;
      border-radius: 0;
      padding: 4px 12px;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }

    .faqp__expand-all-btn:hover {
      background: #eff6ff;
    }

    /* ======= FOOTER ======= */
    .faqp__footer {
      border-top: 1px solid #e8eaf0;
      padding: 28px 24px;
      text-align: center;
    }

    .faqp__footer-text {
      font-size: 14px;
      color: #94a3b8;
    }

    .faqp__footer-text a {
      color: #2563eb;
      text-decoration: none;
    }

    .faqp__footer-text a:hover {
      text-decoration: underline;
    }

    /* ======= RESPONSIVE ======= */
    @media (max-width: 480px) {
      .faqp__hero {
        padding: 40px 16px 32px;
      }
      .faqp__main {
        padding: 32px 16px 60px;
      }
      .faqp__block-title {
        font-size: 16px;
      }
      .faqp__item-q {
        gap: 10px;
        padding: 14px 14px;
      }
      .faqp__q-text {
        font-size: 14.5px;
      }
    }

    /* Hidden by search */
    .faqp__item.faqp__hidden {
      display: none;
    }

    .faqp__block.faqp__all-hidden {
      display: none;
    }