/*---------------------------
contact
----------------------------*/
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #contact .inner {
    /*tablet*/
    width: 94%;
  }
}
@media screen and (max-width: 640px) {
  #contact .inner {
    /*sp*/
    width: 90%;
  }
}
#contact .inner dl > div {
  border-bottom: 1px solid #ccc;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  text-align: left;
}
#contact .inner dl > div dt {
  width: 25%;
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  #contact .inner dl > div dt {
    /*sp*/
    width: 100%;
    padding: 15px 0 0 0;
  }
}
#contact .inner dl > div dd {
  width: 70%;
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  #contact .inner dl > div dd {
    /*sp*/
    width: 100%;
  }
}
#contact .inner dl > div dd input {
  border: 1px solid #ccc;
  padding: 0.8em;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  #contact .inner dl > div dd input[type="text"],
  #contact .inner dl > div dd input[type="email"],
  #contact .inner dl > div dd input[type="tel"] {
    /*sp*/
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #contact .inner dl > div dd .mwform-tel-field input[type="text"] {
    /*sp*/
    width: 25%;
  }
}
#contact .inner dl > div dd textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #ccc;
  padding: 0.8em;
  border-radius: 5px;
}
#contact .inner dl > div p {
  display: none;
}
#contact .inner .btn {
  padding: 3.0em 0 1.0em 0;
  text-align: center;
}
#contact .inner .btn input[type="submit"] {
  background: #0081BD;
  color: #fff;
  padding: 1.0em 6.0em;
  border: none;
  border-radius: 5px;
}
