/* ===========================
   ページコンテナ
   =========================== */
.page-contact {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===========================
   説明文セクション
   =========================== */
.contact-description {
  padding: 72px 0 40px;
}

.contact-description .content-wrap {
  text-align: center;
}

.contact-description p {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 28px;
  font-family: 'M PLUS 1', sans-serif;
  overflow-wrap: break-word;
}

/* ===========================
   フォームセクション
   =========================== */
.contact-form-section {
  padding: 30px 0 80px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ===========================
   送信ボタン（button要素のリセット）
   =========================== */
button.btn {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--cyan);
  color: inherit;
  cursor: pointer;
}

button.btn:hover {
  background: var(--cyan);
}

/* ===========================
   レスポンシブ: 767px以下
   =========================== */
@media (max-width: 767px) {
  .contact-description {
    padding: 48px 0 24px;
  }

  .contact-description p {
    font-size: 14px;
  }
}
