/* faq
------------------------------------ */
#faq {
  margin: 0 clamp(9rem, 50vw - 512px, 9999rem) 0 clamp(2rem, 50vw - 512px, 9999rem);
  background: #fff;
  border-radius: 15px;
  padding: 6rem 6rem 6rem 0;
  max-width: 1024px;
  margin-bottom: 6rem;
}
#faq section {
  background: #E6F0F5;
  position: relative;
  color: #2370A8;
  border-radius: 1rem;
  display: flow-root;
}
#faq section + * {
  margin-top: 2rem;
}
#faq section hgroup {
  padding: 2rem 6rem 2rem 3rem;
  position: relative;
  cursor: pointer;
}
#faq section hgroup h2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
}
#faq section hgroup h2 span {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  margin-right: 0.2em;
}
#faq section hgroup .mark {
  position: absolute;
  right: 3rem;
  top: 50%;
  width: 1.8rem;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
}
#faq section hgroup .mark span {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background: #2370A8;
  left: 0;
  top: 50%;
  transition: 0.3s;
}
#faq section hgroup .mark span:nth-child(2) {
  transform: rotate(90deg);
}
#faq section.open hgroup .mark span:nth-child(2) {
  transform: rotate(-180deg);
}
#faq section .answer {
  background: #fff;
  position: relative;
  padding: 2.5rem 1rem 2rem 7rem;
  margin: 0 3rem 3rem;
  display: none;
}
#faq section .answer > span:first-child {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  line-height: 1;
}
#faq section .answer p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #faq {
    margin: 0 2rem 3rem 2rem;
    padding: 2rem 2rem 2rem 0rem;
  }
  #faq section hgroup {
    padding: 1rem 3.5rem 1rem 1.5rem;
  }
  #faq section hgroup h2 {
    font-size: 1.6rem;
    font-weight: 500;
  }
  #faq section hgroup h2 span {
    font-size: 2.2rem;
  }
  #faq section hgroup .mark {
    right: 1.5rem;
    width: 1.6rem;
  }
  #faq section .answer {
    padding: 1.5rem 1rem 1.5rem 4rem;
    margin: 0 1.5rem 1.5rem;
  }
  #faq section .answer > span:first-child {
    font-size: 2.2rem;
    left: 1.5rem;
    top: 1.5rem;
  }
  #faq section .answer p {
    font-size: 1.4rem;
  }
}