/* お申し込みフォーム用CSS */
.contact-section {
  background: #ffffff;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

.required {
  color: #e60000;
  margin-left: 6px;
  font-weight: bold;
}

.contact-form .terms-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}

.terms-box {
  width: 100%;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: -30px;
}

.contact-form .checkbox {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.contact-form button[type="submit"] {
  padding: 12px;
  font-size: 1rem;
  background-color: #0ABAB5;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #099e9a;
}
