/* ---------------------
  faq
--------------------- */
.s-inner {
  max-width: 1280px;
}

.faq-anchor__wrap {
  margin-bottom: 9rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
@media screen and (max-width: 1100px) {
  .faq-anchor__wrap {
    grid-column-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 834px) {
  .faq-anchor__wrap {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .faq-anchor__wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 5px;
  }
}

.faq-anhor__link {
  position: relative;
  padding: 2.6rem 0;
  text-align: center;
  color: #ff5885;
  border: 1px solid #ff5885;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 834px) {
  .faq-anhor__link {
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .faq-anhor__link {
    padding: 1rem 0;
  }
}
.faq-anhor__link:hover .circle {
  transform: translate(1rem, -50%);
}
.faq-anhor__link .circle {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  height: 30px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1330px) {
  .faq-anhor__link .circle {
    right: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .faq-anhor__link .circle {
    right: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .faq-anhor__link .circle {
    width: 12px;
  }
}

.faq-sec:not(:first-of-type) {
  margin-top: 13rem;
}
@media screen and (max-width: 1100px) {
  .faq-sec:not(:first-of-type) {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .faq-sec:not(:first-of-type) {
    margin-top: 5rem;
  }
}

.faq-ttl {
  margin-bottom: 7rem;
  padding-bottom: 1rem;
  text-align: left;
  font-size: 2.8rem;
  color: #ff5885;
  border-bottom: 2px solid #ff5885;
}
@media screen and (max-width: 1100px) {
  .faq-ttl {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .faq-ttl {
    margin-bottom: 3rem;
    padding-bottom: 0;
    font-size: 2.4rem;
  }
}