@charset "utf-8";

/*
  File Name   : faq.css
  Description : コンテンツエリア関係 他
*/

/* faq-accordion
============================================================ */
.faq-accordion-list li + li {
  margin-top: 40px;
}
.faq-accordion {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 80px;
  background-color: #363636;
  color: #fff;
  font-size: 20px;
}
.faq-accordion span {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  background-color: #4a4a4a;
}
.faq-accordion-target {
  display: none;
}
.faq-accordion-close-btn {
  position: relative;
  top: -2px;
  width: 12px;
  height: 12px;
  transform: rotate(135deg);
  transition: all 0.2s;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.faq-accordion.active .faq-accordion-close-btn {
  top: 2px;
  transform: rotate(-45deg);
}
.faq-accordion-target {
  position: relative;
  padding: 20px 20px 20px 80px;
  background-color: #fff;
}
.faq-accordion-target span {
  position: absolute;
  top: 17px;
  left: 24px;
  color: var(--required-color);
  font-size: 20px;
  font-weight: bold;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .faq-accordion-list li + li {
    margin-top: 30px;
  }
  .faq-accordion {
    padding-left: 60px;
    font-size: 18px;
  }
  .faq-accordion span {
    width: 48px;
    font-size: 18px;
  }
  .faq-accordion-close-btn {
    width: 10px;
    height: 10px;
  }
  .faq-accordion-target {
    padding-left: 60px;
  }
  .faq-accordion-target span {
    top: 16px;
    left: 19px;
    font-size: 18px;
  }
}
