:root {
  --hero-container-width: 1280;
  --hero-container-height: 806;
}
.p-hero {
  display: grid;
  place-items: center;
  padding-block: clamp(9.5px, calc((100vw / var(--hero-container-width)) * 19), 19px) clamp(40px, calc((100vw / var(--hero-container-width)) * 80), 80px);
}
.p-hero__inner {
  aspect-ratio: var(--hero-container-width) / var(--hero-container-height);
  text-align: center;
  position: relative;
  max-width: calc(var(--hero-container-width) * 1px);
  width: 100%;
}
.p-hero__title {
  color: var(--genki-brown);
  font-size: clamp(32px, calc((100vw / var(--hero-container-width)) * 64), 64px);
  font-weight: var(--font-weight-bold);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: calc(80 / var(--hero-container-width) * 100%);
  top: calc(281 / var(--hero-container-height) * 100%);
  align-items: flex-start;
  white-space: nowrap;
}

.p-hero__title span {
  display: block;
  font-size: inherit;
  border-bottom: 3px solid var(--genki-brown);
}

.p-hero__title span:nth-child(2) {
  margin-left: calc(180 / var(--hero-container-width) * 100%);

}
.p-hero__title.is-shown {
  opacity: 1;
  transform: translateY(0);
}


.p-hero__image {
  border-radius: var(--border-radius-default);
  position: absolute;
}

.p-hero__image--1 {
  right: 0;
  top: calc(70 / var(--hero-container-height) * 100%);
  width: calc(500 / var(--hero-container-width) * 100%);
}

.p-hero__image--2 {
  left: calc(142 / var(--hero-container-width) * 100%);
  top: calc(0 / var(--hero-container-height) * 100%);
  width: calc(240 / var(--hero-container-width) * 100%);
}

.p-hero__image--3 {
  left: calc(462 / var(--hero-container-width) * 100%);
  top: calc(105 / var(--hero-container-height) * 100%);
  width: calc(172 / var(--hero-container-width) * 100%);
}

.p-hero__image--4 {
  left: calc(279 / var(--hero-container-width) * 100%);
  top: calc(530 / var(--hero-container-height) * 100%);
  width: calc(368 / var(--hero-container-width) * 100%);
}

.p-hero__image--5 {
  left: 0;
  top: calc(617 / var(--hero-container-height) * 100%);
  width: calc(172 / var(--hero-container-width) * 100%);
}


@media screen and (max-width: 767px) {
  .p-hero {
  }
  .p-hero__inner {
    aspect-ratio: 4 / 5;
  }
  .p-hero__image--1 {
    right: 16px;
    top: 0;
    width: 30%;
  }
  .p-hero__image--2 {
    width: 22%;
    left: 16px;
  }
  .p-hero__image--3 {
    left:calc(432 / var(--hero-container-width) * 100%);
    width: 25%;

  }
  .p-hero__image--4 {
    left: auto;
    width: 40%;
    top: calc(510 / var(--hero-container-height) * 100%);
  }
  .p-hero__image--5 {
    left: 10%;
    width: 35%;
    top: calc(557 / var(--hero-container-height) * 100%);
  }
}
