.section__questions {
  margin-top: 100px;
}

.section__questions .questions {
  margin-bottom: 200px;
}

.question__ttl {
  color: #419198;
  font-size: 2.2rem;
  position: relative;
  padding-left: 50px;
  margin-bottom: 80px;
  font-weight: bold;
}

.question__ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background: #419198;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.question {
  font-size: 1.4rem;
  border-bottom: 1px solid darkgray;
  margin-bottom: 55px;
}

.question p {
  margin-right: 30px;
  line-height: 30px;
}

.question label {
  display: block;
}

.question input {
  display: none;
}

.question input:checked ~ .answer__content {
  display: block;
}

.question input:checked ~ .question__content::after {
  content: "";
  background: url(../img/minus-icon.png) no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  color: #ccc;
  right: 0;
  top: 0;
  background-size: contain;
  background-position: center;
}

.question .question__content {
  padding-left: 40px;
  position: relative;
  margin-bottom: 15px;
}

.question .question__content::before {
  content: "Q";
  display: block;
  position: absolute;
  font-family: Abril Fatface;
  color: #419198;
  font-size: 3.0rem;
  left: 0;
  top: -15px;
}

.question .question__content::after {
  content: "";
  background: url(../img/plus-icon.png) no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  color: #ccc;
  right: 0;
  top: 0px;
  background-size: contain;
}

.question .answer__content {
  padding-left: 40px;
  position: relative;
  display: none;
  padding-bottom: 20px;
}

.question .answer__content::before {
  content: "A";
  display: block;
  position: absolute;
  font-family: Abril Fatface;
  color: #E6B97B;
  font-size: 3.0rem;
  left: 0;
  top: -10px;
}
/*# sourceMappingURL=faq.css.map */