/* contact form
--------------------------*/
.wpcf7 form {
  width: 50vw;
}

.wpcf7 label {
  display: block;
  margin-bottom: 2.5%;
}

.wpcf7 label:last-of-type {
  margin-bottom: 5.75%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.75% 1.5%;
  border: 1px solid #ccc;
  border-radius: 7.5px;
  background: #f9f9f9;
  transition: border-color 0.2s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #2BBCC7;
  background: #f4f4f4;
  outline: none;
}

.wpcf7 textarea {
  max-height: 200px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  display: inline-block;
  background-color: #2BBCC7;
  color: #ffffff;
  border: none;
  padding: 1.5% 7.5%;
  border-radius: 7.5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #4D769F;
}

.wpcf7-not-valid-tip {
  color: #2BBCC7;
  display: block;
}

span.required-mark.ja-sm.cl-emerald {
  margin-left: 1.25%;
}


@media screen and (max-width: 768px) {
  .wpcf7 form {
    width: 100%;
  }
  .wpcf7-not-valid-tip {
    line-height: 1.25;
    margin-top: 1.5%;
  }
}