@charset "UTF-8";

.sFaqBodyBody {
  padding: 3rem 0 3.5rem 0;
}

@media screen and (max-width: 540px) {
  .sFaqBodyBody {
    padding: 3rem 0 3rem 0;
  }
}


.sFaqBody {
  padding: 5rem 0 12rem 0;

}

@media screen and (max-width: 600px) {
  .sFaqBody {
    padding: 2.5rem 0 4rem 0;
  }
}


.sFaqBody__items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem
}


@media screen and (max-width: 600px) {
  .sFaqBody__items {
    gap: 16px
  }
}

.sFaqBody__item {
  position: relative;
  padding: 0.875rem 2.8125rem;
}

@media screen and (max-width: 540px) {
  .sFaqBody__item {
    padding: 1.25rem 0.75rem;
  }
}

.bgWhite .sFaqBody__item {
  background: var(--bg-light-blue, #E4E9F3);
}

.bgBlue .sFaqBody__item {
  background: var(--bg-light-gray, #FBFBFB);
}

.sFaqBody__item.active {
  padding-bottom: 1.6rem;
}

.sFaqBody__textLinkBlock {
  text-align: center;
}

.sFaqBody__textLink {}


/* よくある質問|質問
-------------------------*/
.sFaqBody__questionItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sFaqBody__item.active .sFaqBody__questionItem {
  border-bottom: 1px solid #FBFBFB;
}

.bgBlue .sFaqBody__item.active .sFaqBody__questionItem {
  border-bottom: 1px solid #D7D8DD;
}

@media screen and (max-width: 600px) {
  .sFaqBody__item.active .sFaqBody__questionItem {
    padding-bottom: 1rem;
  }

  .sFaqBody__questionItem {
    gap: .5rem;
  }
}

.sFaqBody__icon {
  color: var(--blue, #25599A);
  font-family: Jost;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}


@media screen and (max-width: 540px) {
  .sFaqBody__icon {
    font-size: 1.25rem;
  }
}

.sFaqBody__questionText {
  display: block;
  flex: 1;
  color: #000;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

@media screen and (max-width: 600px) {
  .sFaqBody__questionText {
    flex: none;
    width: 83%;
    font-size: 0.875rem;
    line-height: 160%;
  }
}


/* よくある質問|回答
-------------------------*/
.sFaqBody__answer {
  display: none;
  padding: 1.1rem 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 600px) {
  .sFaqBody__answer {
    padding-top: 1rem;
  }
}

.sFaqBody__item.active .sFaqBody__answer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.1rem;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 540px) {
  .sFaqBody__item.active .sFaqBody__answer {
    gap: .6rem;
  }
}


.sFaqBody__answerText {
  flex: 1;
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.sFaqBody__answerText span {}

@media screen and (max-width: 600px) {
  .sFaqBody__answerText {
    font-size: 0.8125rem;
  }
}




/* よくある質問|ボタン
-------------------------*/

.sFaqBody__toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.33%;
  width: 26px;
  height: 26px;
}

@media screen and (max-width: 600px) {
  .sFaqBody__toggle {
    right: 2%;
    width: 16px;
    height: 16px;
  }
}


.sFaqBody__toggle::before {
  box-sizing: border-box;
  vertical-align: middle;
  position: absolute;
  content: "";
  border-top: 2px solid #000000;
  width: 26px;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  bottom: 0;
}

@media screen and (max-width: 600px) {
  .sFaqBody__toggle::before {
    border-top: 1.5px solid #000000;
    width: 16px;
  }
}

.sFaqBody__item.active .sFaqBody__toggle::after {
  height: 0;
}

.sFaqBody__toggle::after {
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  content: "";
  border-left: 2px solid #000000;
  width: 0;
  height: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: 0.3s;
}

@media screen and (max-width: 600px) {
  .sFaqBody__toggle::after {
    height: 16px;
    ;
  }
}