.faqCategoryArea {
  display: flex;
  flex-wrap: wrap;
}
.faqCategoryArea .categoryList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #D1D1D1;
}
.faqCategoryArea .categoryList .text {
  color: #808080;
  font-weight: bold;
}
.faqCategoryArea .categoryList .arrow {
  background: url(../../shared/images/arrow_black_under.svg) center center no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 767px) {
  .faqCategoryArea {
    -moz-column-gap: 2%;
         column-gap: 2%;
    row-gap: 4px;
    padding: 0 0 40px 0;
  }
  .faqCategoryArea .categoryList {
    width: 49%;
    padding: 6px 0;
  }
  .faqCategoryArea .categoryList .text {
    width: calc(100% - 20px);
    font-size: 13px;
  }
  .faqCategoryArea .categoryList .arrow {
    width: 18px;
  }
}
@media print, screen and (min-width: 768px) {
  .faqCategoryArea {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 14px;
    padding: 0 0 80px 0;
  }
  .faqCategoryArea .categoryList {
    width: clamp(200px, 24%, 260px);
    padding: 12px 0;
  }
  .faqCategoryArea .categoryList .text {
    width: calc(100% - 32px);
    font-size: clamp(14px, 1.25vw, 18px);
  }
  .faqCategoryArea .categoryList .arrow {
    width: 25px;
  }
}
.secFaq {
  background: #EEEEEE;
}
.secFaq .faqCatWrap .catTitle {
  text-align: center;
  color: #808080;
  font-weight: bold;
  border-bottom: solid 2px #808080;
}
.secFaq .faqCatWrap .faqList .faqItem {
  background: #ffffff;
}
.secFaq .faqCatWrap .faqList .faqItem .questionRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.secFaq .faqCatWrap .faqList .faqItem .questionRow .head {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.secFaq .faqCatWrap .faqList .faqItem .questionRow .title {
  font-weight: 500;
}
.secFaq .faqCatWrap .faqList .faqItem .questionRow .arrow {
  background: url(../../shared/images/arrow_black_under.svg) center center no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  transition: transform 0.5s;
}
.secFaq .faqCatWrap .faqList .faqItem .answerRow {
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  max-height: 0;
  opacity: 0;
}
.secFaq .faqCatWrap .faqList .faqItem .answerRow .answerRowIn {
  border-top: solid 2px #D1D1D1;
  line-height: 1.25;
  font-weight: 500;
}
.secFaq .faqCatWrap .faqList .faqItem.on .questionRow .arrow {
  transform: rotateX(180deg);
}
.secFaq .faqCatWrap .faqList .faqItem.on .answerRow {
  max-height: 600px;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .secFaq {
    padding: 50px 2.7% 10px;
  }
  .secFaq .faqCatWrap .catTitle {
    font-size: clamp(14px, 4.62vw, 18px);
    padding: 0 0 8px 0;
    margin: 0 0 26px 0;
  }
  .secFaq .faqCatWrap .faqList {
    padding: 0 0 32px 0;
  }
  .secFaq .faqCatWrap .faqList .faqItem {
    padding: 0 5%;
    margin: 0 0 16px 0;
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow {
    padding: 5px 0;
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow .head {
    width: clamp(34px, 14.5%, 42px);
    font-size: clamp(19px, 8.21vw, 32px);
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow .title {
    width: calc(100% - clamp(34px, 14.5%, 42px) - 25px);
    padding-right: 6px;
    font-size: 13px;
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow .arrow {
    width: 25px;
  }
  .secFaq .faqCatWrap .faqList .faqItem .answerRow .answerRowIn {
    padding: 20px 0 22px 0;
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .secFaq {
    padding: 60px 2.9% 40px;
  }
  .secFaq .faqCatWrap .catTitle {
    font-size: clamp(14px, 1.39vw, 20px);
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
  }
  .secFaq .faqCatWrap .faqList {
    padding: 0 0 20px 0;
  }
  .secFaq .faqCatWrap .faqList .faqItem {
    padding: 0 3.14%;
    margin: 0 0 20px 0;
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow {
    padding: 5px 0;
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow .head {
    width: clamp(50px, 6.3%, 62px);
    font-size: clamp(25px, 2.92vw, 42px);
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow .title {
    width: calc(100% - clamp(50px, 6.3%, 62px) - 36px);
    padding-right: 12px;
    font-size: clamp(14px, 1.53vw, 22px);
  }
  .secFaq .faqCatWrap .faqList .faqItem .questionRow .arrow {
    width: 36px;
  }
  .secFaq .faqCatWrap .faqList .faqItem .answerRow .answerRowIn {
    padding: 18px 0 22px 0;
    font-size: clamp(14px, 1.25vw, 18px);
  }
}/*# sourceMappingURL=style.css.map */