.faq-item-wrap:first-of-type {
  border-top: 1px solid #fa4c06;
}
.faq-item-wrap {
  padding: 0 20px;
  border-bottom: 1px solid #fa4c06;
  transition: background 0.5s ease;
}
/* .faq-item-wrap.active {
	background: rgba(211, 235, 246, .4);
} */
.faq-item-preview {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 28px;
  color: #003594;
  padding: 20px 0;
  transition: padding 0.5s ease;
  margin: unset;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.faq-item-preview.active {
  padding-bottom: 15px;
}
.faq-item-name-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-basis: fit-content;
  padding-right: 10px;
}
.faq-item-count {
  margin-right: 20px;
}

.faq-item-name {
  flex-basis: fit-content;
  font-family: "SF";
  font-weight: 600;
  line-height: 125%;
  color: #003594;
}
.faq-item-toggle {
  max-width: 38px;
  width: 100%;
  height: 38px;

  background-image: url("/local/templates/atopic_2023/img/icon-arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}
.faq-item-toggle.active {
  transform: rotate(180deg);
}
.faq-item-detail {
  display: none;
  padding: 0 60px 20px 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  color: #6e7685;
}

.faq-item-detail li::marker {
  color: rgba(41, 114, 166, 1);
}

@media (max-width: 767px) {
  .faq-item-wrap {
    padding: 0 10px;
  }
  .faq-item-preview {
    font-size: 1.2rem;
    padding: 20px 0;
  }
  .faq-item-name-wrap {
    align-items: center;
  }
  .faq-item-count {
    margin-right: 10px;
  }
  .faq-item-name {
    font-size: 2.2rem;
  }
  .faq-item-toggle {
    max-width: 32px;
    height: 32px;
  }
  .faq-item-detail {
    padding: 0 0 10px 0;
    font-size: 1.4rem;
    line-height: 150%;
  }
}
@media (max-width: 500px) {
  .faq-item-name {
    font-size: 3rem;
  }
  .faq-item-detail {
    font-size: 3rem;
  }
}
