/*--------------------
top
--------------------*/
@media screen and (max-width: 600px) {
  #top h1::after {
    content: "Questions\A& Answers";
    white-space: pre;
  }
}



/*--------------------
faqs (common)
--------------------*/
.faqs {
  margin-top: 80px;
  max-width: 916px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.faq_box {
  border-bottom: 1px dashed #fff;
  padding-top: 6px;
  padding-bottom: 6px;
}
.faq_box:first-child {
  border-top: 1px dashed #fff;
}
.question_box,
.answer_box {
  padding: 24px 16px;
}
.question_box {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.answer_box {
  display: none;
  background-color: rgba(139, 205, 255, 0.5);
  margin-top: 6px;
}
.question_box h3,
.answer_box p {
  display: flex;
}
.question_box h3 {
  display: flex;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
.question_box h3::before,
.answer_box p::before {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-family: "Federo", sans-serif;
  font-weight: 400;
  line-height: 2;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 32px;
}
.question_box h3::before {
  content: "Q";
}
.answer_box p::before {
  content: "A";
}
.question_box h3::after {
  content: "";
  width: 35px;
  height: 35px;
  background-image: url(../img/faq/arrow.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  margin-left: auto;
}
.question_box h3::after {
  transition: transform 0.3s ease;
}
.question_box.open h3::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 600px) {
  .faqs {
    margin-top: 55px;
    padding-left: 0;
    padding-right: 0;
  }
  .question_box,
  .answer_box {
    padding: 16px;
  }
  .question_box h3::before,
  .answer_box p::before {
    margin-right: 16px;
  }
  .question_box h3::after {
    padding-left: 16px;
  }
}



/*--------------------
sustainability
--------------------*/
#sustainability .inner {
  margin-bottom: 114px;
}