@charset "UTF-8";
/*import
------------------------------------------*/
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
@media only screen and (max-width: 991px) {
  section {
    margin-bottom: 80px;
  }
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/* --------アイコンを作ります-------- */
.icon {
  display: inline-block;
  vertical-align: middle;
  color: #00306D;
  line-height: 1;
  min-width: 24px;
  height: 2px;
  background-color: #00306D;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .icon {
    min-width: 16px;
  }
}
.icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: ease 0.2s;
}

/* アコーディオンが開いた時のスタイル */
details.is-opened .icon::before {
  transform: rotate(0deg);
}

.pageContents {
  /*sec-warking
  ------------------------------------------*/
}
.pageContents .sec-faq {
  max-width: 1200px;
  margin: 0 auto 150px;
}
@media only screen and (max-width: 991px) {
  .pageContents .sec-faq {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .pageContents .sec-faq {
    margin-bottom: 80px;
  }
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq {
  transition: ease 0.3s;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq:last-of-type {
  margin-bottom: 0;
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .question .question_inner {
  padding: 28px 60px;
}
@media only screen and (max-width: 991px) {
  .pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .question .question_inner {
    padding: 15px 20px;
  }
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .question .question_inner .question_ttl {
  font-size: clamp(1.6rem, 0.93vw, 1.8rem);
  position: relative;
  padding-left: 48px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .question .question_inner .question_ttl {
    padding-left: 32px;
    gap: 10px;
  }
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .question .question_inner .question_ttl::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  font-weight: 500;
  transform: translateY(-10px);
  color: #00306D;
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer {
  overflow: hidden;
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner {
  margin: 0 60px;
  padding: 28px 0px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner {
    margin: 0 20px;
    padding: 15px 0px;
  }
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner::before {
  width: 100%;
  height: 1px;
  content: "";
  background-color: rgba(31, 38, 46, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_ttl {
  font-size: clamp(1.6rem, 0.93vw, 1.8rem);
  position: relative;
  padding-left: 48px;
  font-weight: 600;
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_ttl {
    padding-left: 32px;
    margin-bottom: 10px;
  }
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_ttl::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(2.5rem, 1.46vw, 2.8rem);
  font-weight: 500;
  transform: translateY(-10px);
  color: #00306D;
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_copy {
  padding-left: 48px;
  font-size: clamp(1.4rem, 0.93vw, 1.8rem);
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_copy {
    padding-left: 32px;
  }
}
.pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_copy.br {
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .pageContents .sec-faq .sectionWrap .innerWrap .faqWrap details.faq .answer .answer_inner .answer_copy.br {
    margin-bottom: 14px;
  }
}

/*# sourceMappingURL=faq.css.map */
