@media screen and (min-width: 769px) {
  .faq-section {
    padding: 60px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 0 60px;
  }
}

.faq-section__inner {
  max-width: 950px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.faq-section__item {
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #F5F5F5;
}
.faq-section__item:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .faq-section__item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .faq-section__item {
    padding: 0 10px;
  }
}

.faq-section__itemTitle {
  padding: 20px 30px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.faq-section__itemTitle:before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #064EA2;
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .faq-section__itemTitle:before {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    font-size: 22px;
  }
  .faq-section__itemTitle:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .faq-section__itemTitle {
    font-size: 15px;
  }
  .faq-section__itemTitle:before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 17px;
  }
}
@media screen and (min-width: 769px) {
  .faq-section__itemTitle span {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .faq-section__itemTitle span {
    width: calc(100% - 30px);
  }
}

.faq-section__switch {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-section__switch:before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #064EA2;
}
.faq-section__switch:after {
  content: "";
  width: 2px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #064EA2;
}
.faq-section__switch.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section__itemData {
  padding: 20px 0 30px;
  display: none;
  border-top: 1px solid #C7C7C7;
}
.faq-section__itemData:before {
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  border-radius: 100px;
  background-color: #064EA2;
}
.faq-section__itemData.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .faq-section__itemData:before {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .faq-section__itemData {
    font-size: 15px;
  }
  .faq-section__itemData:before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 17px;
  }
}
@media screen and (min-width: 769px) {
  .faq-section__itemData span {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .faq-section__itemData span {
    width: calc(100% - 30px);
  }
}