/* 
  contact.css
  -- コンタクトページ特有のデザインを追加する想定
  -- 必要に応じてstyle.cssを上書き or 補完
*/

/* コンテナ全体 */
.contact-section {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* 見出しや説明文 */
.contact-content {
  margin-bottom: 2rem;
}

.contact-text {
  margin: 1rem auto 2rem;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
}

/* フォーム全体 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 各入力フォームのグループ */
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #666;
  outline: none;
}

/* 送信ボタン */
.btn-submit {
  display: inline-block;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.btn-submit:hover {
  background-color: #555;
  opacity: 0.9;
}

.btn-submit.disabled {
  background-color: #aaa !important;
  cursor: not-allowed;
  opacity: 0.8;
}

/* レスポンシブ対応（必要に応じて） */
@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem;
  }
  .contact-content {
    margin-bottom: 1.5rem;
  }
  .contact-text {
    margin-bottom: 1.5rem;
  }
}
