.topimage {
  background: url("/contact/images/top-image.jpg") ;
  background-size: cover;
}

.title {
  text-align: justify;
  color: white;
  line-height: 1.5;
  text-shadow: white;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 3vh;
}

/* 本文セクション */
form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}
label {
  display: block;
  margin-bottom: 5px;
}
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.required {
  background-color: red;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-left: 5px;
}
textarea {
  height: 100px;
}
.button-container {
  text-align: center;
  margin-top: 20px;
}
input[type="submit"], input[type="reset"] {
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 10px;
}
input[type="submit"] {
  background-color: #007bff;
  color: white;
  text-align: center;
  width: 120px;
}
input[type="reset"] {
  background-color: #f44336;
  color: white;
  text-align: center;
  width: 120px;
}
.selectbutton{
  display: flex;
  justify-content: center; /* 横方向の中央揃え */
}
.privacy-policy{
  display: flex;
  justify-content: center; /* 横方向の中央揃え */
}
.subtitle{
  display: flex;
  justify-content: center; /* 横方向の中央揃え */
}

/* レスポンシブデザインの調整 */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  form {
    padding: 0 10px;
  }
  input[type="submit"], input[type="reset"] {
    margin: 10px 5px;
  }
}