/* お問い合わせフォーム共通スタイル */

.contact-content {
    background-color: #fff !important;
    color: #000 !important;
    border-left: 4px solid #f7921d;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); 
}

.contact-content h2{
  color: #333;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

/* フォーム内の入力欄やテキストエリアのスタイル */
.contact-content label{
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #555;
}

.contact-content input[type="text"],
.contact-content input[type="email"],
.contact-content textarea{
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
  resize: vertical;
}

/* ボタンのスタイル */
.contact-content button{
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  background-color: #f7921d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-content button:hover{
  background-color: #086DE2;
}

/* バリデーションエラー */
.form-error {
    color: red;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}



/* レスポンシブ対応 */
@media (max-width: 900px) {
  .contact-content{
    padding: 1rem;
    margin: 1rem auto;
  }
}
