@charset "utf-8";

@media screen, print {
  .qa-list {
    counter-reset: qa-counter;
  }

  .qa-item {
    counter-increment: qa-counter;
  }

  .qa-item + .qa-item {
    margin-top: 2rem;
  }

  .qa-question {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
  }

  .qa-question::before {
    content: "Q" counter(qa-counter) "\ff1a";
    font-size: 1.5rem;
    text-align: end;
    width: 4.5rem;
  }

  .qa-question::after {
    align-items: center;
    aspect-ratio: 1 / 1;
    background-color: var(--clr-blue);
    border-radius: 50%;
    /* content: "\e946"; */
    color: #fff;
    content: "\ead0";
    display: flex;
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    font-variation-settings:
      'FILL' 0,
      'wght' 300,
      'GRAD' 0,
      'opsz' 24;
    height: 25px;
    justify-content: center;
    line-height: 1;
    margin-left: auto;
    width: auto;
  }

  .qa-details[open] {
    .qa-question::after {
    /* content: "\e944"; */
    content: "\e5cd";
    }
  }

  .quest-para {
    font-size: 1.5rem;
    font-weight: var(--fwght-5med);
    line-height: 1.8;
    width: calc(100% - 8.5rem);
  }

  .qa-answer {
  }

  .qa-answer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 5rem;
  }

  .qa-answer::before {
    content: "A" counter(qa-counter) "\ff1a";
    text-align: end;
    width: 4.5rem;
  }

  .ans-cont {
    width: calc(100% - 45px);
  }

  .ans-para {
    line-height: 1.8;
  }

  .ans-block {
    padding-top: 1rem;
  }

  .ans-block + .ans-block {
    margin-top: 3rem;
  }

  .ans-heading {
    font-weight: var(--fwght-5med);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .ans-subblock + .ans-subblock {
    margin-top: 1rem;
  }

  .ans-imglist {
    counter-reset: ans-img-counter;
    display: grid;
    margin-left: auto;
    margin-right: auto;
    width: 21rem;
  }

  .ans-imgitem {
    counter-increment: ans-img-counter;
  }

  .ans-imgitem + .ans-imgitem {
    margin-top: 2rem;
  }

  .imgitem-heading {
    font-weight: var(--fwght-5med);
    text-align: center;
  }

  .imgitem-heading::before {
    content: counter(ans-img-counter) "."
  }

  .imgitem-img {
    margin-bottom: .5rem;
  }

  .imgitem-figcap {
    line-height: 1.6;
  }

  .ans-item {
    line-height: 1.8;
    /* padding-left: 1em;
    text-indent: -1em; */
  }

  .ans-item + .ans-item {
    margin-top: 1rem;
  }

  ul.ans-list {
    .ans-item::before {
      content: '\30FB';
    }
  }

  ol.ans-list {
    counter-reset: ans-counter;

    .ans-item {
      counter-increment: ans-counter;
    }

    .ans-item-heading::before {
      content: counter(ans-counter) '.';
      margin-right: .2rem;
    }

    .ans-item-para {
      line-height: 1.8;
    }
  }
}

/*** SP BP ***/
@media screen and (min-width: 480px) {
  .ans-imglist {
    gap: 6vw;
    grid-template-columns: repeat(2, minmax(0, 21rem));
    justify-content: center;
    width: 100%;
  }

  .ans-imgitem + .ans-imgitem {
    margin-top: 0; /* reset */
  }
}

/*** TB ***/
@media screen and (min-width: 640px) {
  .ans-imglist {
    gap: 3rem;
    grid-template-columns: repeat(3, minmax(0, 21rem));
    width: 100%;
  }
}

/** SP BP **/
@media screen and (min-width: 768px) {
  .ans-imglist {
    gap: 3rem 2rem;
  }
}

/** TB tblg **/
@media screen and (min-width: 800px) {
}

/*** PC ***/
@media screen and (min-width: 960px) { 
}

/** PC pclg **/
@media screen and (min-width: 1280px) {
}

/*****************/
/***   Print   ***/
/*****************/
@media print {
}
