@charset "utf-8";
.answer:not(.first) {
  display: none;
}
.question {
  border-bottom: 1px solid #0e468b;
  position: relative;
}
.accordion:first-of-type .question  {
  border-top: 1px solid #0e468b;
}
.question p {
  color: #0f2b4d;
  position: relative;
  line-height: 1.5;
  font-size: 15px;
  padding: 1rem;
  padding-left: 2.75rem;
  padding-right: 2.5rem;
  cursor: pointer;
  position: relative;
}
.question p:hover {
  color: #3c6699;
}
.question p::before {
  position: absolute;
  content: url(../images/faq/faq_Q.png);
  left: 12px;
}
.answer p {
  background-color: #edf5ff;
  font-size: 15px;
  line-height: 1.5;
  padding: 1rem;
  padding-left: 2.75rem;
  position: relative;
  border-bottom: 1px solid #0e468b;
}
.answer p span {
  display: block;
  font-size: 14px;
}
.answer p span:first-of-type {
  margin-top: 8px;
}
.answer p::before {
  position: absolute;
  content: url(../images/faq/faq_A.png);
  left: 12px;
}
.question::before,
.question::after{
  position:absolute;
  content:'';
  top:1px;
  right:16px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#0e468b;
}
.question.first::after {
  transform:rotate(0deg);
  transition:transform 0.3s;
}
.question.first.active::after{
  transform:rotate(-90deg);
}
.question:after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.question.active::after{
  transform:rotate(0deg);
}