/* お問い合わせセクション全体 */
#contact {
  background-color: var(--bg-light); /* 全体の背景と統一 */
  padding: 10rem 0;
  text-align: center;
}

#contact .container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* セクションタイトル */
#contact h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* 説明文 */
#contact p {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Googleフォーム iframe */
.google-form-iframe {
  width: 100%;
  height: 1600px;
  border: none;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  #contact {
    padding: 6rem 1.5rem;
  }

  .google-form-iframe {
    height: 1200px;
  }

  #contact h2 {
    font-size: 2.2rem;
  }

  #contact p {
    font-size: 1.4rem;
  }
}
