/* ========================================
   FAQ Page Styles
   ======================================== */

/* ----------------------------------------
   FAQ Section (Page specific styles)
   ---------------------------------------- */
.l-section--faq {
  padding: 60px 0 150px;
}

/* ----------------------------------------
   FAQ Contact Section
   ---------------------------------------- */

.l-faq-contact {
  max-width: 730px;
  background: #fff;
  margin: 0 auto;
  margin-top: 305px;
  padding: 35px 20px 15px;
  text-align: center;
}

.c-text--faq-contact {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 19px;
  margin-bottom: 20px;
}

.l-faq-contact__button {
  text-align: center;
}

.c-btn--contact-page {
  background-color: #fff;
  color: #d2bb42;
  border: 1px solid #d2bb42;
  border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 9px;
  display: inline-block;
  transition: all 0.3s ease;
  width: 200px;
}

.c-btn--contact-page:hover {
  background-color: #d2bb42;
  color: #fff;
  opacity: 0.9;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
  .l-section--faq {
    padding: 60px 0;
  }

  .l-faq-contact {
    margin-top: 150px;
  }

  .c-text--faq-contact {
    font-size: 14px;
  }

  .c-btn--contact-page {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .l-faq-contact {
    padding: 30px 15px;
  }
}

