@charset "UTF-8";
@layer page {
  .p-page-hdr.-faq .p-page-hdr__en {
    color: var(--blue);
  }
  .faq {
    padding: 5rem 0 2.5rem;
  }
  @media screen and (min-width: 1200px) {
    .faq {
      max-width: 62.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .faq {
      padding: 12.5vw 0 2.5vw;
    }
  }
  .faq__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3.75rem;
  }
  @media screen and (max-width: 767px) {
    .faq__tabs {
      gap: 1.25vw;
      margin-bottom: 10vw;
    }
  }
  .faq__tabs .tab {
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 100rem;
    outline: none;
    border: none;
    padding: 0.375rem 1.25rem;
    background-color: #fff;
    color: var(--blue);
    transition-duration: 0.2s;
    transition-property: background-color, color;
  }
  @media (hover: hover) {
    .faq__tabs .tab:hover {
      color: #fff;
      background-color: var(--blue);
    }
  }
  @media screen and (max-width: 767px) {
    .faq__tabs .tab {
      font-size: 3.25vw;
      padding: 2vw 3.5vw;
    }
  }
  .faq__tabs .tab.active {
    background-color: var(--blue);
    color: #fff;
  }
  .faq-hdr {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .faq-hdr {
      margin-bottom: 4.5vw;
      gap: 2.5vw;
    }
  }
  .faq-hdr__icon-wrap {
    background-color: var(--blue);
    border-radius: 0.625rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .faq-hdr__icon-wrap {
      width: 12.5vw;
      height: 12.5vw;
    }
  }
  .faq-hdr__icon-wrap img {
    filter: brightness(0) invert(1);
  }
  @media screen and (max-width: 767px) {
    .faq-hdr__icon-wrap img {
      width: 10vw;
      height: 10vw;
    }
  }
  .faq-hdr__ttl {
    font-size: 2rem;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .faq-hdr__ttl {
      font-size: 6vw;
      line-height: 1.2;
    }
  }
  .faq-hdr__en {
    font-size: 1.5rem;
    font-family: var(--en-sans);
    color: var(--blue);
    font-weight: 500;
  }
  @media screen and (max-width: 767px) {
    .faq-hdr__en {
      font-size: 4vw;
    }
  }
  .faq__items {
    position: relative;
  }
  .faq__item {
    display: none;
    opacity: 0;
    margin-bottom: 5rem;
  }
  @media screen and (max-width: 767px) {
    .faq__item {
      margin-bottom: 12.5vw;
    }
  }
  .faq__item.is-show {
    display: block;
  }
  .faq__item.is-fadein {
    opacity: 1;
  }
  @media screen and (max-width: 767px) {
    .p-faq__body {
      padding-left: 0;
      padding-right: 0;
      margin-top: 4.5vw;
    }
  }
  .p-faq-item__q {
    align-items: flex-start;
    padding-right: 5rem;
  }
  @media screen and (max-width: 767px) {
    .p-faq-item__q {
      padding-right: 15vw;
    }
  }
  .p-faq-item__q-ttl {
    line-break: strict;
    line-height: 1.2;
  }
  .p-faq-item__content p {
    line-break: strict;
  }
  .p-faq-item__content .notes {
    font-size: 0.75rem;
    line-height: 1.5;
    text-indent: -1em;
    padding-left: 1em;
  }
  .p-faq-item__content .list li {
    position: relative;
    padding-left: 1rem;
  }
  .p-faq-item__content .list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .p-faq-item__content ol {
    list-style-type: decimal;
    list-style-position: inside;
  }
  .p-faq-item__content .p-faq-item__a-icon {
    line-height: 1.2;
  }
  .p-faq-item__content a {
    color: var(--blue);
    text-decoration: underline;
  }
  @media (hover: hover) {
    .p-faq-item__content a:hover {
      text-decoration: none;
    }
  }
}