body {
  max-width: 100%;
  width: 900px;
  margin: 40px auto 0;
  padding: 0 16px;
}

h1 {
  font-size: 32px;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.bl_deatailsTag {
  border-top: 2px dotted #cdcdcd;
  padding-top: 24px;
  margin-top: 80px;
}

.bl_faqCotents {
  margin-bottom: 16px;
}

.bl_faqCotents dt {
  padding: 8px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  font-weight: 700;
}

.bl_faqCotents dt::before {
  content: 'Q, ';
}

.bl_faqCotents dt::after {
  content: '+';
  position: absolute;
  right: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.bl_faqCotents dd {
  padding: 8px 0;
  display: none;
}

.bl_faqCotents dd::before {
  content: 'A, ';
}

.bl_faqCotents.appear dd {
  display: block;
  -webkit-animation: fadeIn .4s;
          animation: fadeIn .4s;
}

.bl_faqCotents.appear dt::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/*# sourceMappingURL=accordion.css.map */