@charset "UTF-8";
/* object/project/_hero.scss */
.p-hero__content {
  position: relative;
}
.p-hero__image {
  width: 100%;
  max-height: 90vh;
  min-height: 40vh;
  aspect-ratio: 16/9; /* 例：16:9。実画像に合わせて調整 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  grid-area: 1/1;
}
@media (max-width: 575px) {
  .p-hero__image {
    min-height: 40vh;
  }
}
.p-hero__image--niigata {
  background-image: url(../images/image-hero-niigata.jpg);
}
.p-hero__silhouette-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 2;
}
.p-hero__silhouette {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 575px) {
  .p-hero__silhouette {
    width: 90%;
  }
}
.p-hero__message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 3;
}
.p-hero__message-main {
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .p-hero__message-main {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  .p-hero__message-main {
    font-size: 1.8rem;
  }
}
.p-hero__message-sub {
  font-size: 1.2rem;
}
@media (min-width: 1200px) {
  .p-hero__message-sub {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  .p-hero__message-sub {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=hero.css.map */
