.qa {
  padding: 10rem 0 5rem;
}
.qa__title span {
  font-size: inherit;
}
@media only screen and (min-width: 992px) {
  .qa__title span {
    display: block;
    margin-top: 1.6rem;
    font-weight: 500;
    font-size: 1.8rem;
    color: #051322;
  }
}
.qa__wrap {
  margin: 4.6rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media only screen and (min-width: 992px) {
  .qa__wrap {
    margin: 5.8rem auto 0;
  }
}
.qa__item {
  border-radius: 2rem;
  border: 1px solid transparent;
}
@supports (corner-shape: squircle) {
  .qa__item {
    corner-shape: squircle;
    border-radius: 4rem;
  }
}
.qa__item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4.8rem);
  height: 1px;
  background-color: #edecf5;
  transition: 0.2s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .qa__item:not(:first-child)::after {
    width: calc(100% - 8.4rem);
  }
}
@media only screen and (min-width: 992px) {
  .qa__item:hover {
    border: 1px solid #f3f2fd;
    background: #f3f2fd;
  }
}
.qa__item-head {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 2.6rem 2.4rem;
  transition: padding 0.2s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .qa__item-head {
    padding: 2.6rem 4.2rem;
  }
  .qa__item-head:hover {
    padding: 2.6rem 3.2rem;
  }
}
.qa__item-icon {
  width: 3rem;
  height: auto;
  display: flex;
  margin-left: 2rem;
  transition: 0.2s ease-in-out;
}
.qa__item-icon svg {
  width: 100%;
  height: auto;
}
.qa__item-icon svg .transformRotate {
  transition: 0.2s ease-in-out;
  transform: rotate(0deg);
  transform-origin: center;
}
.qa__item.show {
  border: 1px solid #f3f2fd;
  background: #f3f2fd;
}
@media only screen and (min-width: 992px) {
  .qa__item.show .qa__item-head {
    padding: 2.6rem 3.2rem;
  }
}
.qa__item.show .qa__item-icon svg .transformRotate {
  transform: rotate(90deg);
}
.qa__item-question {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  max-width: 106.4rem;
  margin-right: auto;
  color: #051322;
  flex: 1;
}
@media only screen and (min-width: 992px) {
  .qa__item-question {
    font-size: 2.4rem;
  }
}
.qa__item-answer {
  display: flex;
  align-items: flex-start;
  display: none;
  margin: 0.8rem 2.4rem 2.6rem;
}
@media only screen and (min-width: 992px) {
  .qa__item-answer {
    margin: 0.8rem 3.2rem 2.6rem;
    align-items: center;
  }
}
.qa__item-answer__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 0;
  color: #051322;
  flex: 1;
}
@media only screen and (min-width: 992px) {
  .qa__item-answer__text {
    font-size: 1.8rem;
  }
}
.qa__item-answer__text ul {
  padding: 0 2rem;
}
.qa__item-answer__text ul li {
  list-style: disc;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.qa__item-answer__text ol {
  padding: 0 2rem;
}
.qa__item-answer__text ol li {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.qa__item-answer__text a {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  color: inherit;
}
.qa__item-answer[style*="display: block"] {
  display: flex !important;
}