/*!
global > color
------------------------------
*/
/*!
global > content-width
------------------------------
*/
/*!
global > font
------------------------------
*/
/*!
global > mixin
------------------------------
*/
.faq_content {
  padding: 40px 0 113px;
}
.faq_desc {
  margin-bottom: 30px;
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
.faq_list {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq_item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.faq_question {
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background: #8B5E3C;
  transition: 0.4s ease;
  cursor: pointer;
}
.faq_question::after {
  content: "";
  flex-shrink: 0;
  align-self: center;
  justify-self: flex-end;
  width: 22px;
  aspect-ratio: 1/1;
  background: url("../images/common/icon_dropdown.svg") center/100% auto no-repeat;
  rotate: -180deg;
  transition: 0.4s ease;
}
.faq_question.open::after {
  rotate: 0deg;
}
.faq_question__num {
  flex-shrink: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.faq_question__txt {
  flex-grow: 1;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
.faq_answer {
  display: none;
}
.faq_answer__wrapper {
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
}
.faq_answer__num {
  flex-shrink: 0;
  color: #E67339;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .faq_content {
    padding: 43px 0 236px;
  }
  .faq_desc {
    font-size: 1.25rem;
  }
  .faq_list {
    margin-bottom: 100px;
    gap: 50px;
  }
  .faq_question {
    padding: 14px 30px;
    gap: 14px;
  }
  .faq_question::after {
    width: 25px;
  }
  .faq_question__num {
    font-size: 1.25rem;
  }
  .faq_question__txt {
    font-size: 1.25rem;
  }
  .faq_answer__wrapper {
    padding: 16px 30px 15px;
    gap: 17px;
  }
  .faq_answer__num {
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) and (pointer: fine) {
  .faq_question:hover {
    opacity: 0.8;
  }
}
/*# sourceMappingURL=maps/faq.css.map */
