.qanda-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.qanda-nav li a {
  display: block;
  text-decoration: none;
  background: #FFF;
  border: 2px solid #26346E;
  color: #26346E;
  padding: 1em;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
}

.qanda-block {
  background: #FFF;
  margin-bottom: 64px;
  border-radius: 10px;
  border: solid 1px rgba(0, 0, 0, .15);
}

@media screen and (min-width: 768px) {
  .qanda-block:not(:last-child) {
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 767px) {
  .qanda-block:not(:last-child) {
    margin-bottom: 32px;
  }
}

.qanda-block .p-block-h {
  background: #26346E;
  color: #FFF;
  padding: 1em;
  text-align: center;
  margin: 0;
  border-radius: 10px 10px 0 0;
}

.qanda-block dl,
.qanda-block dt,
.qanda-block dd {
  margin: 0;
}

.qanda-block dl {
  padding: 1em;
  font-weight: bold;
  position: relative;

}

.qanda-block dt {
  position: relative;
  display: flex;
  align-items: center;
}

.qanda-block dt::after {
  content: url(../images/arrow-down.svg);
  position: absolute;
  right: 5px;
  color: #26346E;
}

.qanda-block dt.is-active::after {
  content: url(../images/arrow-up.svg);
  position: absolute;
}

.qanda-block dl:not(:last-child) {
  border-bottom: 1px solid #EEEEEE;
}

.qanda-block dt {
  cursor: pointer;
}

.qanda-block dt,
.qanda-block dd {
  padding-right: 3em;
}

.qanda-block dt::before,
.qanda-block dd::before {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 24px;
  display: block;
  line-height: 1;

}

.qanda-block dt::before {
  content: "Q.";
  color: #26346E;
}

.qanda-block dd::before {
  content: "A.";
  color: #EB1428;
}

.qanda-block dd {
  margin-top: 1.5em;
  align-items: flex-start;
}

.qanda-block dt span,
.qanda-block dd span {
  display: block;
  margin-left: 1.5em;
}

.qanda-block h4 {
  padding-left: 1em;
  color: #26346E;
}


/* アコーディオン　
ーーーーーーーーーーーーーーーーーー */

.jsAccordionTitle:hover {
  cursor: pointer;
}

.accordion-content {
  display: none;

}

.accordion-content.is-open {
  display: flex;
}