@charset "utf-8";
/* CSS Document */
/* 初期状態：非表示 */
#faq {
  margin: 0 !important;
}
#faq .left_ttl {
  font-size: clamp(19px, 3.5vw, 30px);
  color: #0d4394;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 20px;
}
#faq .left_ttl::before {
  content: "";
  background-color: #0d4394;
  border-radius: 3px;
  width: 8px;
  height: 35px;
  flex: 0 0 8px;
}
#faq section {
  margin-bottom: 5rem;
}
#faq section:last-of-type {
  margin-bottom: 0;
}
.js-acc-target {
  display: none;
}
.faq__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0 65px;
  box-sizing: border-box;
  font-size: 1.8rem;
}
@media (max-width:767px) {
  .faq__container {
    padding: 5rem 0;
  }
}
.faq__item {
  box-sizing: border-box;
  background: #fff;
  border-radius: 1.5rem;
  position: relative;
  border: 2px solid #0d4394;
}
@media (max-width:767px) {
  .faq__item {
    border-radius: 1rem;
  }
}
.faq__item + li {
  margin-top: 2rem;
}
.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 96%;
  margin: 0 auto;
  padding: 25px 0;
  border: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
  transition: opacity .3s;
}
@media (max-width:767px) {
  .faq__question {
    padding: 1rem;
    margin: 0;
  }
}
.faq__question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  padding-top: 2px;
  padding-bottom: 5px;
  font-weight: bold;
  color: #fff;
  background: #0d4394;
  flex: none;
  box-sizing: border-box;
}
@media (max-width:767px) {
  .faq__question-icon {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }
}
.faq__question-txt {
  margin-left: 20px;
  font-weight: bold;
  text-align: left;
  padding-right: 1.5em;
  transition: .3s;
  color: #0d4394;
}
@media (max-width:767px) {
  .faq__question-txt {
    margin-left: 1rem;
    font-size: 1.4rem;
  }
}
/* 右上のアイコン */
.faq__item--icon {
  position: absolute;
  top: 28px;
  right: 20px;
  cursor: pointer;
}
@media (max-width:767px) {
  .faq__item--icon {
    top: 10px;
    right: 10px;
  }
}
.faq__item--icon .circle {
  width: 27px;
  height: 27px;
  position: relative;
  border: none;
  border-radius: 0;
}
@media (max-width:767px) {
.faq__item--icon .circle {
  width: 21px;
	height: 21px;
}
}
/* 下向きのV */
.faq__item--icon .circle::before, .faq__item--icon .circle::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 10px;
  height: 2px;
  background: #0d4394;
  transition: .25s;
}
@media (max-width:767px) {
.faq__item--icon .circle::before, .faq__item--icon .circle::after {
  width: 7px;
}
}
.faq__item--icon .circle::before {
  left: 5px;
  transform: rotate(45deg);
}
.faq__item--icon .circle::after {
  right: 5px;
  transform: rotate(-45deg);
}
/* 開いたら ∧ に反転（is-openは親：.js-acc-scope） */
.js-acc-scope.is-open .faq__item--icon .circle::before {
  transform: rotate(-45deg);
}
.js-acc-scope.is-open .faq__item--icon .circle::after {
  transform: rotate(45deg);
}
.faq__answer {
  background: rgba(213, 236, 252, .3);
  border-radius: 0 0 1.5rem 1.5rem;
}
@media (max-width:767px) {
  .faq__answer {
    border-radius: 0 0 .5rem .5rem;
  }
}
.faq__answer__wrapper {
  display: flex;
  align-items: center;
  width: 96%;
  /*margin: 0 auto;*/
	padding: 1rem;
}
.faq__answer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  padding-bottom: 3px;
  padding-left: 1px;
  font-weight: bold;
  color: #0d4394;
  background: #fff;
  flex: none;
  box-sizing: border-box;
}
@media (max-width:767px) {
  .faq__answer-icon {
    width: 24px;
    height: 24px;
    font-size: 1.4285714286rem;
    padding-bottom: 1.3333333333vw;
  }
}
.faq__answer-txt {
  padding: 26px 20px;
  box-sizing: border-box;
}
@media (max-width:767px) {
  .faq__answer-txt {
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 0 0 .5rem .5rem;
  }
}
