@charset "utf-8";

/*
  よくある質問
=============================================*/

.faq-area {
  padding: 30px;
  background-color: #eff6fc;
}

.faq-area ul.faq-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}

.faq-area ul.faq-top-list li {
  width: calc( 100% / 3 - 7px);
  margin-bottom: 10px;
  list-style: none;
}

.faq-area ul.faq-top-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 15px 20px;
  background-color: #fff;
  text-decoration: none;
}

.faq-area .faq-block {
  padding: 20px;
  background-color: #fff;
}

  .faq-area .faq-block + .faq-block {
    margin-top: 20px;
  }

.faq-area .faq-block .title,
.faq-area .faq-block .comment {
  position: relative;
  padding-left: 45px;
}

  .faq-area .faq-block .title:before,
  .faq-area .faq-block .comment:before {
    display: inline-block;
    position: absolute;
    left: 0px;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    line-height: 28px;
  }

.faq-area .faq-block .title {
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

  .faq-area .faq-block .title:before {
    content: 'Q';
    top: -1px;
    background-color: #3a5dab;
    color: #fff;
    font-size: 20px;
  }

.faq-area .faq-block .title h3 {
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
  border: none;
  border-bottom: 1px dashed #bbc7d6;
  font-size: 18px;
}

  .faq-area .faq-block .title h3:before {
    display: none;
  }

.faq-area .faq-block .comment {
  font-size: 16px;
}

  .faq-area .faq-block .comment:before {
    content: 'A';
    top: -2px;
    background-color: #eff6fc;
    color: #3a5dab;
    font-size: 18px;
  }

.faq-area .faq-block .comment p {
  margin-bottom: 5px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {

  .faq-area {
    padding: 15px;
  }

  .faq-area .faq-block {
    padding: 15px;
  }

    .faq-area .faq-block + .faq-block {
      margin-top: 15px;
    }

  .faq-area .faq-block .title,
  .faq-area .faq-block .comment {
    padding-left: 40px;
  }

  .faq-area .faq-block .title h3 {
    font-size: 16px;
  }

  .faq-area .faq-block .comment {
    font-size: 14px;
  }

  .faq-area .faq-block .comment p {
    line-height: 1.75;
  }

}