@charset "UTF-8";
/* =========================================
  faq.css  (Shapes School)
  - faqページ用のCSS
========================================= */
#child-hero {
  background-image: url(../img/faq-hero.webp);
  background-position: center center;
  height: 100vw;
}
@media screen and (min-width: 768px) {
  #child-hero {
    height: 48vh;
  }
}
@media screen and (min-width: 1024px) {
  #child-hero {
    height: 42vh;
  }
}
#child-hero > div {
  display: grid;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
}
.child-title {
  font-weight: 100;
  text-align: center;
  padding: 1em 0;
}
h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  padding: 12px;
  background-color: var(--c-btn-2);
  color: var(--c-bg);
  font-size: 20px;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  h2 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  h2 {
    padding: 16px;
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.inquiry-lead {
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .inquiry-lead {
    width: fit-content;
  }
}
