/*faq*/
.faq {
  padding: 80px 0;
  background-color: #F5F5F5;
}
.faq__wrap {
  width: 100%;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .faq__wrap {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .faq__wrap {
    padding: 0 24px;
  }
}
.faq__title {
  font-size: 3.6rem;
  color: #0050A5;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 32px;
    font-size: 2.4rem;
  }
}
.faq__sub {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faq__sub {
    font-size: 1.8rem;
  }
}
.faq__txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
}
.faq__inline {
  display: flex;
  justify-content: center;
}
.faq__link {
  position: relative;
  display: block;
  background-color: #0050A5;
  border: 1px solid #0050A5;
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.faq__link:hover {
  color: #0050A5;
}
.faq__link:hover::before {
  background: url(/assets/images/icn_arrow_blue.svg) no-repeat;
  background-size: contain;
}
.faq__link:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.faq__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: inline-block;
  margin: auto 0;
  z-index: 10;
  width: 13px;
  height: 11px;
  background: url(/assets/images/icn_arrow_white.svg) no-repeat;
  background-size: contain;
}
.faq__link::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
.faq__link__txt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  z-index: 10;
}
.faq__link.-blank:hover::before {
  background: url(/assets/images/icn_blank_blue.svg) no-repeat;
  background-size: contain;
}
.faq__link.-blank::before {
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
}
.faq__qa__box {
  margin-top: 40px;
}
.faq__qa__box:nth-child(n+1) {
  margin-top: 24px;
}
.faq__qa__q {
  padding: 40px 0 40px 110px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__qa__q {
    padding-left: 63px;
  }
}
.faq__qa__q::before {
  position: absolute;
  content: "";
  width: 31px;
  height: 40px;
  background-image: url(/csr/toki-iku/faq/images/icn_tokiiku_q.svg);
  background-repeat: no-repeat;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq__qa__q::before {
    left: 16px;
  }
}
.faq__qa__q__text {
  font-size: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__qa__q__text {
    padding-right: 104px;
  }
}
@media screen and (max-width: 767px) {
  .faq__qa__q__text {
    padding-right: 55px;
  }
}
.faq__qa__q__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 24px;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  border-color: #0050A5;
  background-color: #0050A5;
}
@media screen and (max-width: 767px) {
  .faq__qa__q__text::before {
    right: 16px;
  }
}
.faq__qa__q__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 24px;
  height: 2px;
  background-color: #0050A5;
}
@media screen and (max-width: 767px) {
  .faq__qa__q__text::after {
    right: 16px;
  }
}
.faq__qa__q.-open .faq__qa__q__text::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq__qa__a {
  padding: 40px 80px 40px 110px;
  background-color: #47AACC;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  display: none;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__qa__a {
    padding: 40px 0 40px 63px;
  }
}
.faq__qa__a::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 40px;
  background-image: url(/csr/toki-iku/faq/images/icn_tokiiku_a.svg);
  background-repeat: no-repeat;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq__qa__a::before {
    left: 17px;
  }
}
.faq__qa__a__text {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .faq__qa__a__text {
    padding-right: 16px;
  }
}
.faq__qa__a .c-link3.-blank .c-link3__inner::before {
  content: url(/csr/toki-iku/assets/images/icon_link_wh.svg);
}
.faq__qa__a .c-link3__text {
  color: #fff;
}
.faq__button__box {
  margin: 40px auto 0;
  width: fit-content;
}