/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.faq_area {
  width: 90%;
  list-style: none;
  margin: 0 auto;
}
.faq_area li {
  margin: 1em auto 0;
  text-align: left;
}
.faq_area li:first-child {
  margin: 0 auto;
}
.faq_area section {
  background: #F0F9FC;
  border-radius: 10px;
}
.faq_title {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 10px 40px 10px 50px;
  transition: all .5s ease;
}
.faq_title::before {
  position: absolute;
  content: '\f078';
  font-family: FontAwesome;
  font-weight: 400;
  color: #0066DD;
  top: 10px;
  right: 10px;
}
.faq_title.close::before {
  content: '\f077';
}
.faq_title::after {
  position: absolute;
  top: 7px;
  left: 10px;
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0066DD;
  color: #fff;
  line-height: 30px;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  content: 'Q';
  font-size: 1.6rem;
}
/*アコーディオンで現れるエリア*/
.faq_box {
  display: none;
  padding: 0 10px 15px 50px;
}
/* ------------------------------------ */
/* ▼PC用デザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .faq_area {
    max-width: 1100px;
  }
  .faq_area li {
    margin: 1.5em auto 0;
  }
  .faq_title {
    font-size: 1.7rem;
    letter-spacing: 2px;
    padding: 20px 60px 20px 70px;
  }
  .faq_title::before {
    top: 20px;
    right: 20px;
  }
  .faq_title::after {
    top: 16px;
    left: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2rem;
  }
  .faq_box {
    padding: 0 60px 25px 70px;
    line-height: 2;
  }
}