@charset "utf-8";
/* reset *************************************/
div#mfp_loading {
  display: none;
}
div#mfp_loading_screen {
  display: none;
}
div#mfp_overlay_background {
  display: none;
}
div#mfp_hidden {
  display: none !important;
}
div#mfp_OperationCheck {
  display: none !important;
}

/* form ***********************************/
input[type="tel"],
input[type="email"],
input[type="text"],
select {
  width: 100%;
  height: 45px;
  padding: 5px 5px 5px 1em;
  box-sizing: border-box;
  border: solid 1px #ccc;
  font-family: "Zen Kaku Gothic New", "游ゴシック", "Lucida Sans Unicode",
    "Lucida Grande", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ＭＳ Ｐゴシック", sans-serif;
  border-radius: 5px;
  margin-bottom: 10px;
}
/* checkbox */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + label {
  background: #3890ab;
  color: #ffffff;
}
/* textarea */
textarea {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  max-height: 250px;
  min-height: 150px;
  height: 200px;
  padding: 1em;
  box-sizing: border-box;
  border: solid 1px #ccc;
  font-family: "Zen Kaku Gothic New", "游ゴシック", "Lucida Sans Unicode",
    "Lucida Grande", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ＭＳ Ｐゴシック", sans-serif;
  border-radius: 5px;
  margin-bottom: 10px;
}
/* button */
input[type="submit"] {
  width: 150px;
  max-width: 96%;
  height: 50px;
  border: solid 1px #000;
  font-family: "Zen Kaku Gothic New", "游ゴシック", "Lucida Sans Unicode",
    "Lucida Grande", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ＭＳ Ｐゴシック", sans-serif;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: ease 0.5s;
}
input[type="submit"]:hover {
  opacity: 0.5;
}

/* error */
.mfp_err {
  color: red;
  font-size: 0.85em;
  margin: 2px 0 5px;
}
@media screen and (max-width: 768px) {
  /* form ***********************************/
  input[type="tel"],
  input[type="email"],
  input[type="text"],
  select {
    height: 50px;
    line-height: 50px;
  }
  /* checkbox */
  input[type="checkbox"] {
    display: none;
  }
  .formCbox {
    border-radius: 15px;
    padding: 5px 15px;
  }
  /* textarea */
  textarea {
    max-height: 350px;
    min-height: 200px;
    height: 250px;
  }
  /* button */
  .formBtn {
    margin: 50px auto 0;
  }
  /* error */
  .mfp_err {
    color: red;
    font-size: 0.85em;
    margin: 2px 0 5px;
  }
}
