@charset "UTF-8";
/* ========================================
   Vision Foot — 白波形 + 白背景 + CTA + まちイラスト
   Figma PC: 579:466 / SP: 504:3425
======================================== */
.vision-foot {
  position: relative;
}

.vision-foot__bg {
  position: absolute;
  inset: 0;
  background-color: #fff;
  -webkit-mask-image: url("../../../../assets/wave-white.svg"), linear-gradient(#000, #000);
  mask-image: url("../../../../assets/wave-white.svg"), linear-gradient(#000, #000);
  -webkit-mask-size: 1470px 76px, 100% calc(100% - 53px);
  mask-size: 1470px 76px, 100% calc(100% - 53px);
  -webkit-mask-position: left top, left 53px;
  mask-position: left top, left 53px;
  -webkit-mask-repeat: repeat-x, no-repeat;
  mask-repeat: repeat-x, no-repeat;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

.vision-foot__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 40px 0;
}

.vision-foot__cta-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  color: #000;
  margin-bottom: 40px;
}

.vision-foot__pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.vision-foot__pdf-button {
  min-width: 275px;
  max-width: 275px;
}

.vision-foot__illustration {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto -76px;
}
.vision-foot__illustration img {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .vision-foot__bg {
    -webkit-mask-size: 760px 55px, 100% calc(100% - 39px);
    mask-size: 760px 55px, 100% calc(100% - 39px);
    -webkit-mask-position: left top, left 39px;
    mask-position: left top, left 39px;
  }
  .vision-foot__inner {
    padding: 0 17px;
  }
  .vision-foot__cta-heading {
    font-size: 22px;
    line-height: 28px;
    max-width: 235px;
    margin: 0 auto 24px;
  }
  .vision-foot__pdf {
    flex-direction: column;
    gap: 8px;
  }
}