.page-hero {
  position: relative;
  height: 550px;
  width: 100%;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.46;
  z-index: 1;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__panel {
  width: min(680px, calc(100% - 40px));
  padding: 80px 40px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

  background: linear-gradient(
    180deg,
    rgba(138, 35, 35, 0.85) 0%,
    rgba(125, 27, 27, 0.85) 45%,
    rgba(100, 20, 20, 0.85) 100%
  );
}

.page-hero__en {
  margin: 0 0 6px;
  margin-top: -10px;
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #fff;
}

.page-hero__jp {
  margin: 0 0 32px;
  margin-top: -10px;
  font-size: 22px;
  color: #fff;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

.page-hero__lead {
  margin: 0;
  font-size: 20px;
  color: #fff;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .page-hero {
    height: 220px;
    min-height: 220px;
  }

  .page-hero__inner {
    padding: 0 16px;
    height: 100%;
  }

  .page-hero__panel {
    width: min(340px, 100%);
    padding: 18px 18px;
  }

  .page-hero__en {
    font-size: 30px;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-top: 6px;
  }

  .page-hero__jp {
    margin-top: 2px !important;
    margin-bottom: 18px !important;
    font-size: 14px;
  }

  .page-hero__lead {
    margin-top: 0 !important;
    font-size: 13px;
    line-height: 1.7;
  }

  .page-hero__bg {
    background-position: center top;
  }
}
