  .qa-wrap {
     /*  min-height: 100vh;*/
    padding: 0px 0px 0px;
  }

  .qa-title {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 28px;
  }

  .filter-panel {
   
    margin: 0 auto 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 20px 24px;
  }
  .filter-row {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    flex-wrap: wrap;
  }
  .filter-row:last-child { border-bottom: none; }
  .filter-row-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    width: 90px;
    flex-shrink: 0;
    letter-spacing: .05em;
  }
  .filter-row-options { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }

  .filter-chip {
    padding: 6px 16px;
    border-radius: 16px;
    border: 1.5px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.05);
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
  }
  .filter-chip:not(.active):not(.disabled):hover {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.12);
  }
  .filter-chip.active {
    background: #58a89d !important;
    border-color: #58a89d !important;
    color: #fff !important;
  }
  .filter-chip.disabled {
    background: rgba(255,255,255,.03) !important;
    border-color: rgba(255,255,255,.12) !important;
    color: rgba(255,255,255,.3) !important;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,.2);
  }

  .filter-result-count {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,.6);
    margin: 4px auto 12px;
  }

  .qa-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .qa-card {
    display: flex;
    gap: 28px;
  margin-bottom: 4rem;
     
transition: opacity 0.9s ease;
  opacity: 1;
  }
.qa-card.hidden-card {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.qa-card.fading-out { opacity: 0; transform: scale(.97); }
.qa-hidden-area {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.1s ease-in-out;
}
  .qa-face-col {
    flex-shrink: 0;
    width: 130px;
    text-align: left;
  }
  .qa-face-wrap {
    width: 130px;
    height: auto;
    border-radius: 5%;
    overflow: hidden;
    background: rgba(255,255,255,.12);
    margin-bottom: 14px;
  }
  .qa-face-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .qa-face-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px; color: rgba(255,255,255,.5);
  }
  .qa-meta-year { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; font-weight: 500}
  .qa-meta-name { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6;font-weight: 500 }

  .qa-content-col { flex: 1; min-width: 0; }

  .qa-block { margin-bottom: 36px; }
  .qa-block:last-child { margin-bottom: 0; }

  .qa-question-label {
    display: inline-block;
    background: #1e2a6e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  .qa-answer-heading {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .qa-answer-body {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.9;
  }

  .qa-more-wrap { text-align: center; margin-top: 8px; }
  .qa-more-btn {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 22px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background .15s ease;
  }
  .qa-more-btn:hover { background: rgba(255,255,255,.1); }
  .qa-extra-blocks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 3.6s ease;
  }
  .qa-extra-blocks.open { /*max-height: 4000px;*/ }

  .no-result {
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    padding: 60px 0;
    display: none;
  }
  .no-result.show { display: block; }

  @media (max-width: 680px) {
    .filter-row { flex-direction: column; align-items: flex-start; }
    .filter-row-label { width: auto; margin-bottom: 4px; font-size: 16px;}
       .filter-chip {
    padding: 3px 8px;

  }
      .filter-panel {
    padding: 10px 24px;
          margin-bottom: 20px;
  }
       .filter-row {
    padding: 10px 0;
    }
       .qa-list {
    gap: 0px;
  }
  }
  @media (max-width: 700px) {
        .qa-question-label {
  
    border-radius: 8px;
   
  }
   .qa-card { flex-direction: column; gap: 16px;margin-bottom: 3rem;padding-bottom: 3rem;border-bottom: 1px solid rgba(254,254,254,0.80) }
  .qa-face-col {
    width: 100%;
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "img  name"
      "img  year1"
      "img  year2";
    align-items: center;
    column-gap: 14px;
    row-gap: 2px;
  }
  .qa-face-wrap {
    grid-area: img;
    width: 64px;
    height: auto;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .qa-face-placeholder { font-size: 24px; }
  .qa-meta-name {
    grid-area: name;
    display: block;
    font-size: 13px;
      font-weight: 700;
  }
  .qa-meta-year {
    display: block;
    font-size: 13px;
         font-weight: 700;
  }
  .qa-meta-year:nth-of-type(1) { grid-area: year1; }
  .qa-meta-year:nth-of-type(2) { grid-area: year2; }
  .qa-answer-heading { font-size: 17px; }
  }
.show-more-wrap {
  display: none;
  text-align: center;
  margin-top: 32px;
}

.show-more-wrap.is-visible {
  display: block;
}


