/* ----------------------------------
    FAQ Accordion
---------------------------------- */
.sec-faq__title {
  margin-top: 48px;
  margin-bottom: 24px;
}
.sec-faq__title:first-child {
  margin-top: 0;
}
.sec-faq ul li {
  border-top: 1px solid #ddd;
}
.sec-faq ul li:last-child {
  border-bottom: 1px solid #ddd;
}
.sec-faq ul .question {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}
.sec-faq ul .question p {
  font-size: 20px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .sec-faq ul .question p {
    font-size: 16px;
  }
}
.sec-faq ul .question::before {
  content: "Q";
  display: inline-block;
  margin-right: 8px;
  min-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 700;
  background-color: #DCEAF8;
  color: #1558A0;
  flex-shrink: 0;
}
.sec-faq ul .question::after {
  content: url("/asset/common/img/arrow.svg");
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}
.sec-faq ul li.active .question::after {
  transform: translateY(-50%) rotate(270deg);
}
.sec-faq ul .answer {
  display: flex;
  padding: 0 24px;
  background: #F2F6FB;
  border-radius: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, margin-bottom 0.3s ease;
}
.sec-faq ul .answer::before {
  content: "A";
  display: inline-block;
  margin-right: 8px;
  min-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 700;
  background-color: #1558A0;
  color: #fff;
  flex-shrink: 0;
}
.sec-faq ul .answer p {
  margin: 0;
}
.sec-faq ul .answer p a {
  text-decoration: underline;
}
.sec-faq ul .answer p a:hover {
  text-decoration: none;
}
.sec-faq ul li.active .answer {
  max-height: 500px;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  margin-bottom: 12px;
}/*# sourceMappingURL=faq.css.map */