@charset "UTF-8";

#faq .faq-list .item {
  border-top: dashed 1px #E5E5E5;
}
#faq .faq-list .item:last-child {
  border-bottom: dashed 1px #E5E5E5;
}
#faq .faq-list .item dt {
  display: flex;
  color: #003577;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0 20px 70px;
  line-height: 1.6;
  position: relative;
}
#faq .faq-list .item dt::before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #01459A;
  position: absolute;
  top: 50%;
  left: 20px;
}
#faq .faq-list .item dt::after {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #01459A;
  position: absolute;
  top: calc(50% - 8px);
  left: 28.5px;
}
#faq .faq-list .item dt.active::after {
  content: none;
}
#faq .faq-list .item dt.active + dd {
  margin-bottom: 20px;
}
#faq .faq-list .item dd {
  background-color: #FFF9D8;
  font-size: 15px;
  font-weight: 300;
  padding: 25px 35px;
  line-height: 1.8;
  text-align: justify;
  display: none;
}
#faq .faq-list .item dd a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #faq .faq-list .item dt {
    font-size: 16px;
    padding: 15px 0 15px 30px;
  }
  #faq .faq-list .item dt::before {
    width: 15px;
    height: 2px;
    left: 0;
  }
  #faq .faq-list .item dt::after {
    width: 2px;
    height: 15px;
    top: calc(50% - 6px);
    left: 6.5px;
  }
  #faq .faq-list .item dd {
    padding: 15px;
    line-height: 1.6;
  }
}