@charset "UTF-8";
/* ========================================
   Involved — ファネル図 + CTA + PDF
   セクションヘッダー: 共通 .section_header--center + .section_header--dark を使用
   ボタン: 共通 .button を使用、サイズのみ固有オーバーライド
   Figma PC: 603:496-603:505 / SP: 799:2852-799:2872
======================================== */
.about-involved {
  position: relative;
  z-index: 0;
  padding: 106px 40px 76px;
}

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

.about-involved__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.about-involved__description {
  font-size: 16px;
  font-weight: 700;
  line-height: 33px;
  color: #000;
  max-width: 766px;
  margin: 16px auto 40px;
}

.about-involved__image {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.about-involved__image img {
  width: 100%;
  height: auto;
}

.about-involved__footer {
  position: relative;
  z-index: 1;
  background-color: #65cddb;
  padding: 119px 40px 150px;
  margin-bottom: -76px;
  -webkit-mask-image: url("../../../../assets/wave-blue.svg"), linear-gradient(#000, #000);
  mask-image: url("../../../../assets/wave-blue.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;
}

.about-involved__footer-dots {
  position: absolute;
  inset: 0;
  background-image: url("../../../../assets/dots-pattern.png");
  background-repeat: repeat;
  background-size: 1002px 1002px;
  opacity: 0.5;
  pointer-events: none;
}

.about-involved__footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-involved__footer .button {
  min-width: 275px;
  max-width: 275px;
  line-height: 61px;
  padding: 3px 48px;
  border: none;
}

.about-involved__pdf-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
  max-width: 200px;
}

@media (max-width: 960px) {
  .about-involved {
    padding: 80px 17px 60px;
  }
  .about-involved__bg {
    -webkit-mask-size: 800px 55px, 100% calc(100% - 53px);
    -webkit-mask-position: left top, left 53px;
    mask-size: 800px 55px, 100% calc(100% - 53px);
    mask-position: left top, left 53px;
  }
  .about-involved__description {
    font-size: 14px;
    line-height: 27px;
  }
  .about-involved__image {
    max-width: 321px;
  }
  .about-involved__pdf-link {
    max-width: 100%;
  }
  .about-involved__footer {
    padding: 76px 17px 110px;
    -webkit-mask-size: 800px 55px, 100% calc(100% - 53px);
    mask-size: 800px 55px, 100% calc(100% - 53px);
  }
  .about-involved__footer-inner {
    flex-direction: column;
    gap: 0;
  }
  .about-involved__footer .button {
    min-width: 193px;
    max-width: 193px;
    padding: 3px 16px;
    border: none;
    margin-left: 0; /* SP のみ中央寄せ。about-involved__pdf-link消したらこれも消す */
  }
}