@charset "UTF-8";
/* =====================
	よくある質問
 ======================= */
.faq .faq-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
}

.faq .faq-anchor > li a {
  display: block;
  text-align: center;
  background: var(--c_navy);
  color: var(--c_wht);
  border-radius: 100px;
  position: relative;
  padding: 1em 3.25em;
  min-width: 13em;
}

.faq .faq-anchor > li a:after {
  content: "";
  width: 1em;
  height: 0.7em;
  background: url(../img/faq/anchor.png) no-repeat center/contain;
  position: absolute;
  right: 1.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.faq .faq-anchor > li a:hover {
  background: #264F90;
}

.faq .faq-anchor > li a:hover:after {
  -webkit-transform: translateY(0.2em);
          transform: translateY(0.2em);
}

.faq .faq-section {
  padding-top: 8.333%;
}

.faq .faq-list-item {
  margin-bottom: 1.5em;
  border-radius: 0.5em;
  background: var(--c_wht);
  overflow: hidden;
}

.faq .faq-list-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list-item-q {
  padding: 1em 6.85em 1em 4.25em;
  position: relative;
  cursor: pointer;
}

.faq .faq-list-item-q:before {
  content: "Q";
  position: absolute;
  left: 2.5em;
  top: 1em;
}

.faq .faq-list-item-q:after {
  content: "+";
  position: absolute;
  right: 2.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq .faq-list-item-q.is-open:after {
  content: "−";
}

.faq .faq-list-item-a {
  border-top: 2px solid #CBD5E4;
  padding: 1em 6.85em 1em 4.25em;
  position: relative;
  display: none;
}

.faq .faq-list-item-a:before {
  content: "A";
  position: absolute;
  left: 2.5em;
  top: 1em;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  .faq .faq-anchor {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .faq .faq-anchor > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 8px) / 2);
            flex: 0 1 calc((100% - 8px) / 2);
  }
  .faq .faq-anchor > li a {
    font-size: 14px;
    min-width: auto;
    padding: 4px 16px;
  }
  .faq .faq-anchor > li a:after {
    width: 12px;
    height: 12px;
    right: 16px;
  }
  .faq .faq-section {
    padding-top: 50px;
  }
  .faq .faq-list-item {
    border-radius: 8px;
  }
  .faq .faq-list-item-q {
    padding: 8px 36px;
  }
  .faq .faq-list-item-q:before {
    left: 12px;
    top: 8px;
  }
  .faq .faq-list-item-q:after {
    right: 12px;
  }
  .faq .faq-list-item-a {
    border-width: 1px;
    padding: 8px 36px;
  }
  .faq .faq-list-item-a:before {
    left: 12px;
    top: 8px;
  }
}
