@charset "utf-8";
main {
  position: relative;
}

main .circle {
  position: absolute;
  top: -265px;
  right: min(48px, calc((48 + 96) * ((100vw - 769px) / (1280 - 769)) - 96px));
  width: 480px;
}

@media (max-width: 768px) {
  main .circle {
    top: -25px;
    right: -95px;
    width: 217px;
  }
}

main .circle img {
  animation: circle 26s linear 0s infinite;
}

@media (max-width: 768px) {
  main .circle img {
    animation: circle 18s linear 0s infinite;
  }
}
/* ↓↓↓ fv ↓↓↓ */
.fv {
  position: relative;
  padding: 200px min(4.296875vw, 55px) 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .fv {
    padding: 160px 22px 0;
  }
}

.fv .page-ttl {
  position: relative;
  max-width: 1012px;
  margin: 0 auto;
  container-type: inline-size;
}

.fv .page-ttl .sub-ttl {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.fv .page-ttl .ttl {
  font-family: var(--text-josefin);
  font-size: 9.48617cqw;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .fv .page-ttl .ttl {
    font-size: min(9.6rem, 16.91844cqw);
    margin-top: 10px;
  }
}
/* ↑↑↑ fv ↑↑↑ */

/* ↓↓↓ faq ↓↓↓ */
.content {
  max-width: 1280px;
  margin: max(-45px, -3.5156vw) auto 230px;
  padding: 120px min(4.296875vw, 55px);
  border-radius: 160px;
  background-color: #F0F0F0;
  display: grid;
}

@media (max-width: 768px) {
  .content {
    margin: -35px auto 194px;
    padding: 90px 22px 64px;
    border-radius: 80px;
  }
}

.content .faq-wrap {
  position: relative;
  width: 86.496%;
  margin: 0 auto 15px;
  padding: 24px 0;
  background-color: #ffffff;
  cursor: pointer;
  transition: box-shadow 300ms 0s ease;
}
@media screen and (min-width: 769px) {
  .content .faq-wrap:hover {
    box-shadow: 0 0 10px rgba(0, 0, 24, .1);
  }
}

@media (max-width: 768px) {
  .content .faq-wrap {
    width: 99.7%;
    text-align: justify;
    word-break: break-all;
  }
}

.content .faq-wrap::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 9px;
  background: url(../img/faq/faq-arrow.svg) no-repeat;
  transform-origin: center center;
  rotate: 180deg;
  top: 34px;
  right: 13px;
  z-index: 1;
  transition: rotate 0.3s ease;
}

@media (max-width: 768px) {
  .content .faq-wrap::before {
    top: 30px;
    right: 9px;
  }
}

.content .faq-wrap.active::before {
  rotate: 360deg;
}

.content .faq-wrap::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: var(--light-green);
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .content .faq-wrap::after {
    width: 32px;
  }
}

.content .faq-wrap .question {
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0 87px 0 calc(40px + 4.2rem);
  text-indent: -4.2rem;
  .en {
    font-family: var(--text-josefin);
    font-weight: 400;
    color: var(--light-green);
    font-size: 2.8rem;
    letter-spacing: 0.5rem;
    margin-right: 3px;
    line-height: 1;
  }
}

@media (max-width: 768px) {
  .content .faq-wrap .question {
    font-size: 1.5rem;
    padding: 0 57px 0 calc(16px + 3.2rem);
    text-indent: -3.2rem;
    .en{
      font-size: 2.0rem;
      margin-right: 0px;
    }
  }
}

.content .faq-wrap .answer {
  display: none;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 16px 87px 0 calc(40px + 4.2rem);
  text-indent: -4.2rem;

  .en {
    font-family: var(--text-josefin);
    font-weight: 400;
    color: var(--light-green);
    font-size: 2.6rem;
    letter-spacing: 1.0rem;
    line-height: 1;
  }
}

@media (max-width: 768px) {
  .content .faq-wrap .answer {
    font-size: 1.5rem;
    padding: 24px 57px 0 calc(16px + 3.2rem);
    text-indent: -2.8rem;
    .en{
      font-size: 2.0rem;
      letter-spacing: 0.5rem;
    }
  }
}

/* ↑↑↑ faq ↑↑↑ */

