@charset "utf-8";
/* =========================================
   下層見出し
   ========================================= */
.page-header {
  padding-top: calc(var(--header-height-pc) + 60px);
  padding-bottom: 60px;
  background-color: #f9f9f9;
  text-align: center;
}
.page-header__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 10px;
}
.page-header__sub {
  font-family: 'Lato', sans-serif;
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .page-header {
    padding-top: calc(var(--header-height-sp) + 40px);
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 568px) {
  .page-header__title {
    font-size: 1.8rem;
  }
}