/* ============================================================
   Contact section: "お問い合わせ"
   Shared header/inner/title/lead come from section.css.
   CTA links to an external Google Form.
   ============================================================ */
.contact {
  background: #f5f7fa;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(16px, 2vw, 22px) clamp(36px, 5vw, 56px);
  background: var(--brand-blue);
  color: #ffffff;
  border-radius: 9999px;
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 18px 40px -16px rgba(46, 146, 214, 0.55),
              0 4px 10px -2px rgba(46, 146, 214, 0.25);
  transition: transform 0.1s ease;
}

.contact-cta__btn::after {
  content: "↗";
  font-size: 1.25em;
  line-height: 1;
}

.contact-cta__btn:active {
  transform: translateY(1px);
}

.contact-cta__note {
  font-size: 12px;
  font-weight: 500;
  color: #5b6776;
  letter-spacing: 0.04em;
}
