/* ===== ページヒーロー ===== */
.page-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-top: 80px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  display: none;
}
.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 80px);
}
.page-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.page-hero__en {
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .page-hero { height: 200px; }
  .page-hero__title { font-size: clamp(28px, 7vw, 40px); }
}
@media (max-width: 640px) {
  .page-hero { height: 160px; }
  .page-hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }
}
