/* ----------------------------------------
   Page Hero（全下層ページ共通バナー）
---------------------------------------- */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-primary);
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--container-pad);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: 0.45em;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-hero-text {
  font-family: var(--font-serif);
  line-height: 2.5;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.05em;
  br {
    @media(max-width:640px){
     display: none;
    }
  }
}

@media (max-width: 640px) {
  .page-hero {
    height: 260px;
  }

  .page-hero-title {
    font-size: var(--fs-xl);
    letter-spacing: 0.25em;
  }
}
