.lp-hero {
  position: relative;
  padding-block: 50px;
  padding-inline: 16px;
}
.lp-hero img {
  max-width: 100%;
}
.lp-hero__layout {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25% 1fr 25%;
  grid-template-rows: auto auto;
  gap: 26px 20px;
  align-items: center;
}

.lp-hero__layout h1 {
  order: 2;
  text-align: center;
  padding: 0;
  margin: 0;
}
.lp-hero__layout .lp-hero__character1 {
  order: 1;
}

.lp-hero__layout .lp-hero__character1 img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.lp-hero__layout .lp-hero__character2 {
  order: 3;
  display: flex;
  gap: 5%;
  aspect-ratio: 1 / 1.05;
}
.lp-hero__layout .lp-hero__character2 .image1 {
  width: 47.5%;
  align-self: flex-end;
}
.lp-hero__layout .lp-hero__character2 .image2 {
  width: 47.5%;
  align-self: flex-start;
}
.lp-hero__text {
  order: 4;
  grid-column: 1 / 4;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 2.25rem;
  line-height: 1.6;
  max-width: 1200px;
  width: fit-content;
  margin: 0 auto;
  color: #2c69ff;
  font-weight: bold;
  position: relative;
  padding-inline: 0.8em;
}

.lp-hero__text::before,
.lp-hero__text::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #2c69ff;
  height: 1.2em;
  top: 46%;
  transform: translateY(-50%);
}
.lp-hero__text::before {
  left: 0.5em;
  rotate: -30deg;
}
.lp-hero__text::after {
  right: 0.5em;
  rotate: 30deg;
}
.lp-hero__copyright {
  position: absolute;
  bottom: 16px;
  left: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  margin: 0;
}

@media screen and (max-width: 1024px), print {
  .lp-hero {
    position: relative;
    padding-block: 3vw 5vw;
  }
  .lp-hero__layout {
    gap: 2vw 2vw;
    grid-template-columns: 23% 1fr 23%;
  }
  .lp-hero__text {
    font-size: 2.6vw;
  }
  .lp-hero__copyright {
    bottom: 4px;
    left: 16px;
    font-size: 1rem;
  }
}