@charset "utf-8";

#faq-list-wrap {
  margin-bottom: 1.5em;
}

h3 {
  width: 100%;
  margin-bottom: 0;
  padding: 0.6em 1em;
  background-color: #033826;
  color: #fff;
  font-size: clamp(12px, 3.6vw, 22px);
  font-weight: 700;
}

h5 {
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: solid 2px #033826;
  font-size: clamp(12px, 3.6vw, 18px);
  font-weight: 700;
}

.common-content li {
  margin-left: 0;
}

.faq-list li  {
  margin: 0;
}

.faq-list .question {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.2em 2.6em 1.2em 3em;
  border: solid 1px #033826;
  border-bottom: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.faq-list .question::before {
  position: absolute;
  content: "Q";
  color: #033826;
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  top: 2rem;
  left: 0.8em;
}

.faq-list li:last-child .question,
.faq-list .question.open {
  border-bottom: solid 1px #033826;
}

.faq-list .question::after,
.faq-list .question.close::after {
  position: absolute;
  content: "+";
  width: fit-content;
  height: fit-content;
  font-size: 3rem;
  color: #7c7c7c;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 1.2rem;
  text-align: center;
  transition: all .4s;
}

.faq-list .question.open::after {
  transform: rotate(45deg);
}

.faq-list .answer {
  display: none;
  gap: 2em;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  padding: 2em 1em 2em 3em;
}

.faq-list .answer::before {
  position: absolute;
  content: "A";
  color: #033826;
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  top: 2rem;
  left: 0.8em;
}


/*////////// 1000px over //////////*/

@media screen and (min-width:1000px) {


}

/*////////// PC //////////*/

@media screen and (min-width:750px) {

  .faq-list .question::before {
    top: 0.5em;
  }

}

@media screen and (min-width:751px) and (max-width:980px){


}