/* ====== お問い合わせページ ====== */
.contact {
  background: #f6faf7;
  padding: clamp(40px, 6vw, 80px) 0;
}

.contact .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.contact h2 {
  position: relative;
  text-align: center;
  padding-bottom: 12px;
  margin: 0 auto 8px;
  font-size: clamp(22px, 2.5vw, 28px);
}

/* PC用：少し長め */
.contact h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 170px;
  height: 4px;
  background: var(--accent-700);
  border-radius: 999px;
}

@media (max-width: 860px) {
  .contact h2::after {
    width: 160px;
  }
}

.contact .lead {
  text-align: center;
  margin: 16px auto 28px;
  line-height: 1.9;
}

.sp-only {
  display: none;
}

@media (max-width: 860px) {
  .sp-only {
    display: inline;
  }
}

.contact .note{
  margin: 6px auto 18px ;
  font-size: 13px;
  opacity: .75;
}


.contact .form-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}


@media (max-width: 860px){
  .contact .form-wrapper{ padding: 16px; }
}


.section {
    padding: 32px 0;
}

/* Googleフォーム */
.gform {
  width: 100%;
  height: 1100px;
  border: 0;
}

@media (max-width: 860px) {
  .gform {
    height: 1300px;
  }
}