section#qa {
  padding-top: 0;
}

.qaContent {
  width: calc(100% - 35%);
}
@media (max-width: 768px) {
  .qaContent {
    width: 100%;
  }
  section#qa .titleBox {
    text-align: center;
    width: 100%;
  }
}
.qaContent_block {
  margin-bottom: 20px;
  padding-right: 0px;
  box-sizing: border-box;

  border-bottom: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .qaContent_block {
    margin-bottom: 20px;
  }
}
.qaContent_block:last-child {
  margin-bottom: 0px;
}

.qaContent_block dl {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .qaContent_block dl {
    padding-bottom: 20px;
    padding-right: 70px;
  }
}
.qaContent_block dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 90px;
}
.qaContent_block dl dt p {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/qa_frame.png) no-repeat;
  background-size: 100%;
}
@media (max-width: 1099px) {
  .qaContent_block dl dt p {
      width: 40px;
      height: 40px;
      font-size: 22px;
  }
}
.qaContent_block dl dd {
  padding: 0;
  width: 80%;

  padding-left: 20px;
}
@media (max-width: 768px) {
.qaContent_block dl dd {
    width: 95%;
  }
}
.qaContent_block .answer dl dt {
  width: 50px;
  height: 50px;
  border: 1px solid #BFB59C;
}
@media (max-width: 1099px) {
  .qaContent_block .answer dl dt {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
.qaContent_block .answer dl dd {
  padding-right: 30px;
  font-weight: normal;

  padding-top: 13px;
}
@media (max-width: 1099px) {
  .qaContent_block .answer dl dd {
    padding-top: 0;
    padding-right: 50px;
  }
}

/*-- アコーディオン --*/
.qaContent_block .toggle {
  display: none;
}
.qaContent_block .Label {/*タイトル*/
  display: block;
}
.qaContent_block .Label::after {/*タイトル横の矢印*/
  content:"";
  width: 30px;
  height: 30px;
  background: url(../images/plus.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 20%;
  right: 0px;
}
@media (max-width: 1099px) {
  .qaContent_block .Label::after {/*タイトル横の矢印*/
    width: 25px;
    height: 25px;
    top: 8%;
  }
}
.qaContent_block .Label,
.qaContent_block .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.qaContent_block .content {/*本文*/
  height: 0;
  overflow: hidden;
}
.qaContent_block .toggle:checked + .Label + .content {/*開閉時*/
  height: auto;
  padding-bottom: 0px;
  transition: all .3s;
  margin-bottom: 20px;
  padding: 30px;
  background: #F7F8FA;
}

.qaContent_block .toggle:checked + .Label {
  padding-bottom: 0px;
}
.qaContent_block .toggle:checked + .Label::after {
  background: url(../images/minus.png) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 4px;
  top: 33%;
}
@media (max-width: 1099px) {
  .qaContent_block .toggle:checked + .Label::after {
    width: 25px;
    height: 3px;
  }
}


/*********************************/
/*        SP Responsive          */
/*********************************/
@media screen and (max-width: 768px) {
  section#qa .titleBox h2::before {
    width: 36%;
    height: 120px;
  }
  .qaContent_block dl dt img {
    width: 50%;
  }

  .qaContent {
    padding: 0px;
  }
  .qaContent_block {
    padding: 0px;
  }
  .qaContent_block .Label::after {
    top: -15px;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
  .qaContent_block .toggle:checked + .Label::after {
    top: -15px;
  }
  .qaContent_block .Label,
  .qaContent_block .content {
    align-items: flex-start;
  }
  .qaContent_block dl dd {
    padding-left: 10px;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  section#qa .titleBox h2::before {
    width: 50%;
    height: 100px;
  }
}