@charset "UTF-8";
.faq {
  background-color: #f1f5fb;
  width: 70%;
  margin: auto;
  max-width: 1200px;
  padding: 3% 5%;
}
@media screen and (max-width: 767px) {
  .faq {
    width: 100%;
    padding: 8% 5% 10%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .faq {
    width: 85%;
  }
}
.faq h1 {
  color: #113c70;
  font-size: 320%;
  text-align: center;
  padding: 2% 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .faq h1 {
    font-size: 170%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .faq h1 {
    font-size: 260%;
  }
}
.faq .table {
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 3%;
  width: 80%;
  margin: 5% auto;
}
@media screen and (max-width: 767px) {
  .faq .table {
    width: 100%;
  }
}
.faq .table h2 {
  font-size: 115%;
  padding-left: 20px;
  position: relative;
  margin-bottom: 2%;
}
@media screen and (max-width: 767px) {
  .faq .table h2 {
    font-size: 110%;
  }
}
.faq .table h2::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/common/pc_title_icon_1.png");
  background-size: contain; /* アイコンのサイズを調整 */
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
}
.faq .list h3 {
  font-weight: bold;
  font-size: 115%;
  padding: 30px 0 10px;
}
.faq .list .list-one {
  padding-bottom: 2%;
}
.faq .accordion-content {
  display: none;
}
.faq .accordion-header {
  background-color: #406eb5;
  padding: 20px 45px 20px 20px;
  margin: 10px 0 0;
  cursor: pointer;
  position: relative;
  color: white;
  border-radius: 10px;
  line-height: 150%;
}
.faq .accordion-header::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: #fff 3px solid;
  border-right: #fff 3px solid;
  transform: rotate(135deg);
  position: absolute;
  right: 2%;
  top: 4px;
  bottom: 15%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faq .accordion-header::after {
    right: 4%;
  }
}
.faq .accordion-header::after {
  transition: transform 0.3s;
}
.faq .accordion-header.active::after {
  transform: rotate(-45deg);
}
.faq .accordion-content {
  background-color: #fff;
  padding: 20px 20px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.faq .accordion-header span,
.faq .accordion-content span {
  padding-left: 25px;
  position: relative;
}
.faq .accordion-header span::before {
  position: absolute;
  content: "Q: ";
  top: -2px;
  left: 0;
  color: white;
  font-size: 17px;
}
.faq .accordion-content span::before {
  position: absolute;
  content: "A:";
  top: 0px;
  left: 0;
  color: #151e2f;
  font-size: 17px;
}