/* Q&AのCTボックス*/
.FaqBox {
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 10px;
  background-color: #f6f8fc;
}

/* Q見出し*/
.FaqBox .FaqQ{
  position: relative;
  margin-bottom: 0;
  padding-left: 35px;
  padding-right: 35px;
  cursor: pointer;
  background: url(/img/fm/nd02/faq/faq-q.png) 0 0/ 24px no-repeat;
}
/* Qの矢印 */
.FaqBox .FaqQ::after{
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 2px #ec5486;
  border-right: solid 2px #ec5486;
  transform: rotate(135deg);
  display: inline-block;
  position: absolute;
  right: 0;
  top: 3%;
  transition: 0.3s;
}
.FaqBox .FaqQ.open::after{
  transform: rotate(-45deg);
}
.FaqBox .FaqQ h2{
  font-size: 16px;
  font-weight: normal;
}

/* Aテキスト */
.FaqBox .FaqA{
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  padding-left: 35px;
  border-top: 1px solid #d8d8d8;
  background: url(/img/fm/nd02/faq/faq-a.png) 0 20px/ 24px no-repeat;
}
.FaqBox .FaqA.open{
  display: block;
}
@media (max-width: 767px){
  .FaqBox {
    margin-bottom: 20px;
  }
}
