/* faqページタイトル */
.faq-title {
  color: #0D265A;
  border-bottom: 2px solid #18367D;
  padding-bottom: 15px;
}

/* ページ内リンク */
#faq-categorySelect {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/* ページ内リンクのズレ調整 */
section.faq-contentBlock {
  padding-top: 45px;
  margin-top: -45px;
}

.faq-categoryLink {
  display: inline-flex;
  padding: 5px 10px;
  background: #F6F6F6;
  border-radius: 2px;
  color: #2873A1;
  text-decoration: none;
}
.faq-categoryLink::after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-bottom: solid 2px #2873A1;
  border-right: solid 2px #2873A1;
  margin-top: 4px;
  margin-left: 8px;
  transform: rotate(45deg);
}

/* inner */
.faq-contentList__item__inner {
  padding: 0;
}

/* faq項目 */
.faq-contentList__title {
  margin: 0;
  padding: 5px 0 6px 40px;
}
.faq-contentList__title.is-active {
    background: #f1f5ff;
    border-bottom: 1px solid #18367D;
  }
.faq-contentList__title:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #0D265A;
  border-right: solid 2px #0D265A;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
  transform: rotate(45deg);
  transition: transform 150ms 0s ease;
}
.faq-contentList__title.is-active:after {
  transform: rotate(-135deg);
  margin-top: -1px;
}

/* faq内容 */
.faq-contentList__text {
  display: none;
  padding: 5px 0 6px 34px;
}
.is-active + .faq-contentList__text {
  display: block;
}
.faq-contentList__text.is-display {
    border-top: 1px solid #18367D;
    display: block;
}

/* Qアイコン */
.faq-contentList__title .faq-contentList__questionIcon {
    background-color: #0D265A;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

/* ボタン */
.faq-contentButton__link {
    color: #0D265A;
    background: transparent;
    border: 1px solid #0D265A;
    border-radius: 5px;
    margin: 0px 20px;
}
.faq-contentButton__link::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #0D265A;
  border-right: solid 2px #0D265A;
  top: 50%;
  margin-top: -4px;
  margin-right: 35px;
  transform: rotate(45deg);
}