@charset "utf-8";

.main {
  font-family: 'josefin slab', serif;
}

.contact {
  align-items: center;
  flex-direction: column;
  gap: 1ch;
  justify-content: center;
  margin: 0 auto;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 700px;
}

.contact h1 {
  color: #fff;
  font-size: 45px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-shadow: 1px 1px 10px #4b2c14;
  text-align: center;
}

.contact h1::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 3px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  width: 48px;
}

.contact p {
  color: #fff;
  font-size: 15px;
  font-family: 'josefin slab', serif;
  font-weight: bold;
  line-height: 2;
  text-shadow: 1px 1px 10px #4b2c14;
}

.contact dt {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.form-area {
  display: block;
  font-family: 'josefin slab', serif;
  padding: 15px;
}

.form-area dt {
  line-height: 20px;
  font-size: 15px;
  font-weight: bold;
  padding: 8px;
}

.form-area dt .required::after {
  content: '必須';
  color: #eb4f32;
  font-size: 11px;
  margin-left: 10px;
}

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

.input-text {
  height: 25px;
  max-width: 280px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

.select-box {
  height: 30px;
  width: 80px;
}

.message {
  line-height: 1.5;
  height: 150px;
  padding: 10px;
  width: 90%;
}

.confirm-text {
  font-size: 14px;
  line-height: 22px;
  margin-top: 5px;
  padding: 8px;
}

.submit-button {
  background-color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  font-family: 'josefin slab', serif;
  font-size: 14px;
  font-weight: bold;
  height: 25px;
  min-width: 80px;
  text-align: center;
}

.submit-button:hover {
  background-color: rgb(194, 189, 189);
}

a {
  color: #000;
}

a:hover,
a:active {
  text-decoration: none;
}

.footer {
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
}

.inner {
  padding-top: 25px;
}

@media screen and (max-width: 900px) {

  .contact h1 {
    font-size: 35px;
  }

  .forem-area dt,
  .forem-area dd {
    font-size: 16px;
    width: 100%;
  }

}