.contact-con {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .contact-con {
    max-width: none;
    padding: 0px 20px;
  }
}
.contact-con h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  margin-bottom: 10px;
  color: #e7380d;
}
.contact-con .form {
  margin-bottom: 80px;
}
.contact-con .form h2 {
  color: #231815 !important;
}
.contact-con .form dl {
  display: grid;
  grid-template-columns: 25% 75%;
  border-top: 1px solid #231815;
}
@media screen and (max-width: 599px) {
  .contact-con .form dl {
    grid-template-columns: 100%;
  }
}
.contact-con .form dl dt,
.contact-con .form dl dd {
  border-bottom: 1px solid #231815;
  padding: 20px 20px;
  place-content: center;
}
@media screen and (max-width: 599px) {
  .contact-con .form dl dt,
  .contact-con .form dl dd {
    padding: 15px 20px;
  }
}
.contact-con .form dl dt {
  background-color: #e5e5e6;
  position: relative;
}
.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 #231815;
  padding: 6px 10px;
}
.form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder {
  color: #c8c9ca;
}
.form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder {
  color: #c8c9ca;
}
.form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder {
  color: #c8c9ca;
}
.form input[type=text]::-ms-input-placeholder, .form input[type=email]::-ms-input-placeholder {
  color: #c8c9ca;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder {
  color: #c8c9ca;
}
.form .tel input[type=text] {
  width: 80px;
}
.form textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #231815;
  padding: 6px 10px;
  margin-bottom: 20px;
}
.form button {
  background-color: #b4b4b5;
  color: #ffffff;
  padding: 0px 30px;
  line-height: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 3px 3px 0 #5b5959;
          box-shadow: 3px 3px 0 #5b5959;
  margin-right: 8px;
}