@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;
}
/* layout ***********************************/
.formCnt100 {
  width: 100%;
  box-sizing: border-box;
}
.formCnt49 {
  width: 49%;
  box-sizing: border-box;
}
.formClear {
  width: 2%;
}
.formRow {
  width: 100%;
  height: auto;
  margin: 0 0 25px;
  box-sizing: border-box;
  align-items: baseline;
}
.formTitle {
  width: 100%;
  margin: 0 0 10px;
  line-height: 1;
  font-weight: bold;
  color: #1a1a1a;
  padding: 0 0 0 10px;
  position: relative;
  font-size: 0.9em;
}
.formTitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #000;
}
.must {
  font-size: 0.75em;
  background: #ff8c7a;
  padding: 2px 8px;
  box-sizing: border-box;
  color: #fff;
  margin: 0 0 0 6px;
}
.formLine {
  margin: 25px 0;
  border-top: dotted 1px #1a1a1a;
  border-bottom: none;
}
/* form ***********************************/
.formRow input[type="tel"],
.formRow input[type="email"],
.formRow input[type="text"],
.formRow select {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 2px 5px;
  box-sizing: border-box;
  color: #1a1a1a;
  border: solid 1px #ddd;
  border-radius: 5px;
  font-family: "游ゴシック", "Lucida Sans Unicode", "Lucida Grande", Arial,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
    sans-serif;
}
.formRow input[type="tel"] {
  width: 100% !important;
}
/* checkbox */
input[type="checkbox"] {
  display: none;
}
.formCbox {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #1a1a1a;
  border: 1px solid #ddd;
  border-radius: 12px;
  line-height: 1.5;
  margin: 0 5px 5px;
  padding: 2px 12px;
  box-sizing: border-box;
  font-size: 0.9em;
  background-color: #fff;
}

input[type="checkbox"]:checked + label {
  background: #3890ab;
  color: #ffffff;
}
/* textarea */
.formRow textarea {
  width: 100%;
  min-width: 100%;
  max-height: 250px;
  min-height: 150px;
  height: 200px;
  padding: 2px 5px;
  box-sizing: border-box;
  color: #1a1a1a;
  border: solid 1px #ddd;
  border-radius: 5px;
  font-family: "游ゴシック", "Lucida Sans Unicode", "Lucida Grande", Arial,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
    sans-serif;
}
/* button */
.formBtn {
  margin: 50px auto 0;
  text-align: center;
}
.formBtn button {
  max-width: 220px;
  min-width: 200px;
  width: 100%;
  height: 50px;
  padding: 2px 5px;
  box-sizing: border-box;
  color: #1a1a1a;
  border: solid 1px #ddd;
  border-radius: 5px;
  font-family: "游ゴシック", "Lucida Sans Unicode", "Lucida Grande", Arial,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
    sans-serif;
  margin: 0 auto;
  background: #5991a2;
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.16);
}
.formBtn button:hover {
  opacity: 0.8;
}
.formBtn i {
  margin: 0 0 0 5px;
}
.formBtn a {
  color: #999;
  font-size: 0.9em;
  margin: 10px 0 0 0;
  display: inline-block;
  text-decoration: underline;
}
/* error */
.mfp_err {
  color: red;
  font-size: 0.85em;
  margin: 2px 0 5px;
}
@media screen and (max-width: 768px) {
  /* layout ***********************************/
  .formCnt49 {
    width: 100%;
    margin: 0 0 30px;
  }
  .formClear {
    width: auto;
  }
  .formRow {
    margin: 0 0 0;
  }
  .formLine {
    margin: 0 0 30px;
  }
  /* form ***********************************/
  .formRow input[type="tel"],
  .formRow input[type="email"],
  .formRow input[type="text"],
  .formRow select {
    height: 50px;
    line-height: 50px;
  }
  /* checkbox */
  input[type="checkbox"] {
    display: none;
  }
  .formCbox {
    border-radius: 15px;
    padding: 5px 15px;
  }
  /* textarea */
  .formRow 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;
  }
}
