body {
  background-color: #ffffff; /* 白背景 */
  color: #000;
}

.contact-container {
  width: 400px;
  margin: 60px auto;
  padding: 20px;
}

h2 {
  font-size: 1.6em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

label {
  display: block;
  font-weight: bold;
  margin: 15px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc; /* 🔹枠線をしっかり表示 */
  border-radius: 5px;     /* 🔹角を少し丸く */
  box-sizing: border-box;
  font-size: 14px;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* 🔹フォーカス時の枠線（クリックで反応） */
input:focus,
select:focus,
textarea:focus {
  border-color: #555;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  outline: none;
}

textarea {
  resize: none;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 15px;
}

button:hover {
  background-color: #555;
}