@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/sky/orange-sky.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 30px #dfdaeb
}

.title h1 {
  font-family: "Train One", system-ui;
  font-size: 32px;
}

.title p {
  font-size: 20px;
  margin-top: 15px;
}

.contact {
  max-width: 1200px;
  margin: 60px auto;
}

.contact h2 {
  font-size: 60px ;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
}

.contact p {
  text-align: center;
  line-height: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.form-area {
  background-color: #f8f8f8;
  border: 1px solid #aaaaaa;
  margin-top: 25px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.form-area dt {
  width: 200px;
  padding: 15px 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
}

.form-area dd {
  width: calc(100% - 200px);
  padding: 15px 0;
}

.form-area dt .required::after {
  content: "必須";
  font-size: 11px;
  color: rgb(223, 52, 52);
  margin-left: 10px;
}

.input-text {
  width: 100%;
  max-width: 280px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  border: double #66a29b;
}

.message {
  width: 100%;
  height: 260px;
  padding: 10px;
  line-height: 1.5;
  border: double #66a29b;
}

.submit-button {
  background-color: #b1eee7;
  display: inline-block;
  min-width: 150px;
  line-height: 48px;
  border-radius: 24px;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #60cabe;
}

.footer {
  margin-top: 100px;
}

