.error {
  display: block;
  padding: 5px 10px;
  margin: 10px 0px;
  background-color: #ffffff;
}

.page-ttl {
  background-image: url(../img/contact/main.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.contact-con {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .contact-con {
    max-width: none;
    padding: 0px 20px;
  }
}
.contact-con .form {
  margin-bottom: 80px;
}
.contact-con .form dl {
  display: grid;
  grid-template-columns: 25% 75%;
  border-top: 1px solid #ffffff;
}
@media screen and (max-width: 599px) {
  .contact-con .form dl {
    grid-template-columns: 100%;
  }
}
.contact-con .form dl dt,
.contact-con .form dl dd {
  padding: 20px 20px;
  place-content: center;
}
@media screen and (max-width: 599px) {
  .contact-con .form dl dt {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .contact-con .form dl dd {
    padding: 20px 20px;
  }
}
.contact-con .form dl dt {
  color: #231815;
  background-color: #bbaf97;
  position: relative;
  border-bottom: 1px solid #ffffff;
}
.contact-con .form dl dd {
  border-bottom: 1px dashed #ffffff;
}
.contact-con .contact-flow {
  display: grid;
  grid-template-columns: 25% 75%;
  border-top: 1px solid #231815;
}
@media screen and (max-width: 599px) {
  .contact-con .contact-flow {
    grid-template-columns: 100%;
  }
}
.contact-con .contact-flow dt,
.contact-con .contact-flow dd {
  border-bottom: 1px solid #231815;
  height: 80px;
  padding: 0px 20px;
  place-content: center;
}
@media screen and (max-width: 599px) {
  .contact-con .contact-flow dt,
  .contact-con .contact-flow dd {
    padding: 15px 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.contact-con .contact-flow dt {
  background-color: #dbd4b2;
  line-height: 80px;
  position: relative;
  padding-left: 60px;
}
@media screen and (max-width: 599px) {
  .contact-con .contact-flow dt {
    line-height: 30px;
  }
}
.contact-con .contact-flow dt span {
  position: absolute;
  display: block;
  font-size: 24px;
  left: 20px;
  top: 0;
}
@media screen and (max-width: 599px) {
  .contact-con .contact-flow dt span {
    line-height: 60px;
  }
}
.contact-con .contact-flow dd {
  line-height: 1.4em;
}

.form input[type=text],
.form input[type=email] {
  width: 100%;
  border: 1px solid #ffffff;
  padding: 6px 20px;
  border-radius: 4px;
}
.form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder {
  color: #ffffff;
}
.form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder {
  color: #ffffff;
}
.form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder {
  color: #ffffff;
}
.form input[type=text]::-ms-input-placeholder, .form input[type=email]::-ms-input-placeholder {
  color: #ffffff;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder {
  color: #ffffff;
}
.form .tel input[type=text] {
  width: 90px;
}
.form textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #ffffff;
  padding: 6px 10px;
}
.form button {
  margin-top: 20px;
  background-color: #ffffff;
  color: #231815;
  padding: 0px 30px;
  line-height: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 0 #5b5959;
          box-shadow: 2px 2px 0 #5b5959;
  margin-right: 8px;
}