/* CSS Document */
/*------------------------------
break point
------------------------------*/
/*------------------------------
faq
------------------------------*/
#bg {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100lvh;
}

.mv {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 36rem;
}
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
  }
}
.mv_title {
  display: flex;
  align-items: flex-end;
  padding-left: 13.5rem;
  color: var(--color-sub02);
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv_title {
    padding-left: 0;
    padding-block: 10rem 8rem;
    margin-inline: auto;
  }
}
.mv_title p {
  font-size: 7rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-block: -0.125lh;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .mv_title p {
    font-size: 5.4rem;
  }
}
.mv_title h1 {
  font-weight: 700;
  margin-left: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mv_title h1 {
    margin-left: 0.5rem;
  }
}
.mv_title::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  width: 6.8rem;
  height: 6.8rem;
  background: linear-gradient(to top, #74bce5, #b2ddad);
  overflow: hidden;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  translate: -50% -25%;
}
@media screen and (max-width: 767px) {
  .mv_title::before {
    width: 8rem;
    height: 8rem;
    translate: -50% 0;
  }
}

.faq {
  padding-bottom: 12rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-bottom: 6rem;
  }
}
.faq_item {
  width: 100%;
}
.faq_question {
  padding-block: 6rem 2rem;
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: var(--color-sub02) solid 1px;
}
@media screen and (max-width: 767px) {
  .faq_question {
    padding-block: 4rem 2rem;
  }
}
.faq_question-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1.2rem;
  font-size: 4rem;
  color: var(--color-sub02);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq_question-icon {
    width: 3rem;
    height: 3rem;
    font-size: 3rem;
    margin-right: 1rem;
  }
}
.faq_question-text {
  font-weight: 500;
  margin-block: var(--leading-trim);
  font-size: 2rem;
  padding-top: 1.2rem;
  color: var(--color-sub02);
}
@media screen and (max-width: 767px) {
  .faq_question-text {
    font-size: 1.8rem;
    padding-top: 0.7rem;
    padding-right: 4rem;
    line-height: 1.4;
  }
}
.faq_question-btn {
  position: absolute;
  top: 6rem;
  right: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .faq_question-btn {
    width: 3rem;
    height: 3rem;
    top: 4rem;
  }
}
.faq_question-btn::before {
  content: "";
  width: 1px;
  height: 2.8rem;
  background-color: var(--color-sub02);
  position: absolute;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq_question-btn::before {
    height: 2.4rem;
  }
}
.faq_question-btn::after {
  content: "";
  width: 2.8rem;
  height: 1px;
  background-color: var(--color-sub02);
  position: absolute;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq_question-btn::after {
    width: 2.4rem;
  }
}
.faq_question.close .faq_question-btn::before {
  transform: rotate(90deg);
}
.faq_question.close .faq_question-btn::after {
  transform: rotate(-180deg);
}
.faq_answer {
  width: 100%;
  padding: 4rem 6rem 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq_answer {
    padding: 3rem 3rem 0 3rem;
  }
}
.faq_answer-text p {
  line-height: 1.75;
  margin-block: var(--leading-trim);
  text-align: justify;
  padding-bottom: 3rem;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #dfe4eb;
}
/*# sourceMappingURL=faq.css.map */