@charset "UTF-8";
/* ▼▼▼ faq ▼▼▼ */
#faq .faq_menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  margin-top: 24px;
}
@media screen and (max-width: 999px) {
  #faq .faq_menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #faq .faq_menu {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
}
#faq .faq_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  padding-block: 8px 12px;
  padding-inline: 16px;
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (max-width: 767px) {
  #faq .faq_menu a {
    max-width: 500px;
  }
}
@media screen and (max-width: 374px) {
  #faq .faq_menu a {
    gap: 8px;
  }
}
#faq .faq_menu a span {
  width: 100%;
  border-right: 1px solid var(--Line-Primary);
  padding-right: 13px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 374px) {
  #faq .faq_menu a span {
    padding-right: 8px;
  }
}
#faq .faq_menu a::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/network/icon_arrow_bottom.svg) no-repeat center center/contain;
}
@media (any-hover: hover) {
  #faq .faq_menu a:hover {
    opacity: 1;
    color: var(--Brand-color-Primary);
    border-color: var(--Brand-color-Primary);
  }
  #faq .faq_menu a:hover span {
    border-color: var(--Brand-color-Primary);
  }
}
#faq .faq_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  counter-reset: number 0;
}
#faq .faq_content {
  counter-increment: number;
  padding: 32px;
  border: 1px solid var(--Line-Primary);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  #faq .faq_content {
    padding: 24px;
  }
}
#faq .faq_item_wrap {
  margin-top: 16px;
}
#faq .faq_item {
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  #faq .faq_item {
    padding: 16px 8px;
  }
}
#faq .faq_item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  list-style: 1.4;
}
@media screen and (max-width: 767px) {
  #faq .faq_item_title {
    font-size: 16px;
  }
}
#faq .faq_item_title::before {
  content: "Q";
  color: var(--Brand-color-Primary);
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}
#faq .faq_item_body {
  padding-left: 15px;
  border-left: 1px solid var(--Brand-color-Primary);
  margin-top: 24px;
}
#faq .faq_item_text {
  line-height: 1.6;
}
#faq .faq_item_text a {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#faq .faq_item_text a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_arrow_external.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#faq .faq_item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}
#faq .faq_item_list li {
  line-height: 1.5625;
  padding-left: 29px;
  position: relative;
}
#faq .faq_item_list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--Line-Quarterly);
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 9px;
}