@charset "UTF-8";
/* ========================================
   Vision Page Hero
   2つのブロックに分離:
     1. __wave — 白背景 + 波形底辺（wave-white-bottom.svg マスク）
     2. __main — 写真背景(::before) + テキスト + キャラクター
   __main の構造は vision-section（ホーム）と同じ
   Figma PC: 579:466 / SP: 504:3425
======================================== */
.vision-hero__wave {
  position: relative;
  z-index: 2;
  height: 216px;
  background-color: #fff;
  -webkit-mask-image: linear-gradient(#000, #000), url("../../../../assets/wave-white-bottom.svg");
  mask-image: linear-gradient(#000, #000), url("../../../../assets/wave-white-bottom.svg");
  -webkit-mask-size: 100% calc(100% - 74px), 1470px 76px;
  mask-size: 100% calc(100% - 74px), 1470px 76px;
  -webkit-mask-position: left top, left bottom;
  mask-position: left top, left bottom;
  -webkit-mask-repeat: no-repeat, repeat-x;
  mask-repeat: no-repeat, repeat-x;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

.vision-hero__main {
  position: relative;
  min-height: 1020px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
  overflow: visible;
}

.vision-hero__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1020px;
  background: url("images/visionpage-hero.png") center bottom/cover no-repeat;
  z-index: 0;
}

.vision-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.vision-hero__inner {
  max-width: 708px;
  margin: -180px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-hero__text {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 45px;
}
.vision-hero__text p {
  line-height: 45px;
}

.vision-hero__character {
  position: absolute;
  right: 5%;
  top: -6%;
  width: 244px;
  height: 244px;
}

.vision-hero__manhole {
  position: absolute;
  left: 8%;
  top: -60%;
  transform: translateY(-50%);
  width: 185px;
  height: 195px;
}
.vision-hero__manhole img {
  object-fit: none;
}

@media (max-width: 1200px) {
  .vision-hero__wave {
    height: 154px;
    -webkit-mask-size: 100% calc(100% - 53px), 760px 55px;
    mask-size: 100% calc(100% - 53px), 760px 55px;
  }
  .vision-hero__main {
    min-height: 1053px;
    padding: 0 17px 60px;
  }
  .vision-hero__main::before {
    background: url("images/visionpage-hero-sp.png") center/cover no-repeat;
    height: 1053px;
  }
  .vision-hero__main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/visionpage-hero-star-sp.png") center 20%/contain no-repeat;
    z-index: 1;
    pointer-events: none;
    max-width: 350px;
    margin: 0 auto;
    top: 5%;
  }
  .vision-hero__container {
    max-width: 360px;
  }
  .vision-hero__inner {
    margin: -72px auto 0;
  }
  .vision-hero__text p {
    line-height: 39px;
  }
  .vision-hero__manhole {
    display: none;
  }
}
@media (max-width: 1200px) and (min-width: 961px) {
  .vision-hero__character {
    width: 142px;
    height: 142px;
    right: -38%;
    top: -28%;
  }
}
@media (max-width: 960px) {
  .vision-hero__character {
    width: 142px;
    height: 142px;
    right: 6%;
    top: -40%;
  }
}