@charset "UTF-8";
/* CSS Document */
/* ----- faq ----- */
.faqlist h3.ttl {
  margin-bottom: 25px;
}
.faqlist dl {
  margin: 0 0 15px 0;
  padding: 0 10px;
  overflow: hidden;
}
.faqlist dl dt,
.faqlist dl dd .a-wrap {
  display: flex;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 16px !important;
  line-height: 1.6;
  align-items: center;
  cursor: pointer;
}
.faqlist dl dt:hover span {
  text-decoration: underline;
}
.faqlist dl dt span,
.faqlist dl dd span {
  width: 90%;
  margin: 0 0 0 20px;
  padding: 0;
}
.faqlist dl dt:before,
.faqlist dl dd .a-wrap:before {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
  padding: 10px;
  text-align: center;
  font-family: 'Cabin', sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}
.faqlist dl dt:before {
  content: "Q";
  background-color: #D21100;
}
.faqlist dl dd .a-wrap:before {
  content: "A";
}
.faqlist dl dt:after,
.faqlist dl dd .a-wrap:after {
  display: block;
  position: absolute;
  left: 70px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
}
.faqlist dl dt:after {
  border-color: transparent transparent transparent #d21200;
}
.faqlist dl dd {
  display: none;
}
.faqlist dl dd span {
  display: block;
}
@media only screen and (max-width: 480px) {
  .faqlist dl dt:after,
  .faqlist dl dd .a-wrap:after {
    display: none;
  }
}
