@charset "UTF-8";
/* ========================================
   CONTACT Section — Pattern A: CSS mask-image (top-only wave)
   Figma: 606:609 (波形〜, viewBox 1625x76), 606:611 (ピンク背景), 606:612 (ドットマスク)
   2レイヤーマスク: Layer1=波SVG repeat-x / Layer2=ソリッド
   mask-composite: add で合成
======================================== */
.contact {
  position: relative;
  z-index: 2;
  background-color: #ff7777;
  text-align: center;
  padding: 120px 40px 80px;
  margin-bottom: -80px;
  -webkit-mask-image: url("../../../assets/wave-red.svg"), linear-gradient(#000, #000);
  mask-image: url("../../../assets/wave-red.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;
}

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

.contact__content {
  position: relative;
  z-index: 2;
  padding-bottom: 107px;
}

.contact__header {
  margin-bottom: 17px;
}

.title--contact {
  color: #fff;
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 275px;
  padding: 20px 40px;
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: normal;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact__cta:hover {
  opacity: 0.8;
}

@media (max-width: 960px) {
  .contact {
    padding: 106px 20px;
    margin-bottom: -50px;
    -webkit-mask-size: 760px 55px, 100% calc(100% - 53px);
    mask-size: 760px 55px, 100% calc(100% - 53px);
  }
  .contact__content {
    padding-bottom: 80px;
  }
}