@charset "UTF-8";
.c-page-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 /9;
  height: 100vh;
  width: 100%;
}

.c-page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}

.c-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-page-hero__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.c-page-hero__titleBox {
  margin-left: auto;
  width: 100%;
  background: linear-gradient(90deg, #8C1A25, #b30000 );
  padding: 10px 20% 20px 0;;
  display: flex;
  justify-content: right;
  z-index: -1;

}

.c-page-hero__title {
  color: #fff;
  text-align: center;
}

.c-page-hero__title--jp {
  display: block;
  font-size: clamp(36px, 3.75vw, 72px);
  letter-spacing: 0.2em;
  position: relative;
  text-shadow: 0 0 2px #fff, 0 0 10px #fff, 0 0 10px #dc143c, 0 0 30px #bf272d;
}

.c-page-hero__title--jp::after {
  content: "";
  display: block;
  width: clamp(100px, 10.42vw, 200px);
  height: 4px;
  background: #fff;
  margin: -10px auto 0;
}

.c-page-hero__title--en {
  display: block;
  font-size: clamp(18px, 1.88vw, 36px);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-shadow: 0 0 2px #fff, 0 0 10px #fff, 0 0 10px #dc143c, 0 0 30px #bf272d;
}