.contact-section {
  
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.submit-button {
  background-color: #c40000;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.submit-button:hover {
  background-color: #a00000;
}

/* ヘッダーがfixedな場合に下に空間をつくるためのダミー */
.header-spacer {
  height: 300px; /* 実際のヘッダーの高さに合わせて調整 */
}

/* ヘッダー固定指定がある場合の一例（あれば調整） */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

