@charset "utf-8";

/*  formTable
/* ------------------------------------------------------------------------ */
.formTable {
  width: 100%;
}

.formTable th {
  width: 260px;
  text-align: left;
  border-right: #ccc 1px solid;
  padding: 15px 40px 0 0;
  vertical-align: middle;
}

.formTable th .hissu {
  color: #E50003;
  font-size: 12px;
}

.formTable th .nini {
  color: #888;
  font-size: 12px;
}

.formTable td {
  padding: 15px 0 15px 40px;
  text-align: left;
  vertical-align: middle;
}

@media (max-width:767px) {
  .formTable {
    width: 100%;
    display: block;
  }

  .formTable tr,
  .formTable tbody {
    width: 100%;
    display: block;
  }

  .formTable th {
    width: 100%;
    display: block;
    padding: 15px 0 0 0;
    border: none;
  }

  .formTable tr:first-child th {
    padding-top: 0;
  }

  .formTable td {
    width: 100%;
    display: block;
    padding: 15px 0 15px 0;
  }
}


/*  formParts
/* ------------------------------------------------------------------------ */
/* --- input --- */
input {
  width: 100%;
  border: 1px solid #cccccc;
  padding: 10px 10px;
  font-size: 15px;
  background: #f7f7f7;
  -webkit-appearance: none;
  outline: none;
}


/* --- textarea --- */
textarea {
  font-family: arial, "Hiragino Kaku Gothic Pro", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, MS PGothic, sans-serif;
  background: #f7f7f7;
  width: 100%;
  border: 1px solid #cccccc;
  padding: 10px 10px;
  min-height: 200px;
  -webkit-appearance: none;
  outline: none;
}


/* --- name --- */
.name input[name="lastname"],
.name input[name="firstname"] {
  width: 140px;
  margin: 0 0 0 8px;
}

.name input[name="lastname"] {
  margin-right: 15px;
}

@media (max-width:767px) {

  .name input[name="lastname"],
  .name input[name="firstname"] {
    width: 110px;
  }
}


/* --- kana --- */
.kana input[name="lastname_kana"],
.kana input[name="firstname_kana"] {
  width: 140px;
  margin: 0 0 0 8px;
}

.kana input[name="lastname_kana"] {
  margin-right: 15px;
}

@media (max-width:767px) {

  .kana input[name="lastname_kana"],
  .kana input[name="firstname_kana"] {
    width: 110px;
  }
}


/* --- email --- */
input[name="email"] {
  width: 500px;
}

@media (max-width:767px) {
  input[name="email"] {
    width: 100%;
    max-width: 400px;
  }
}

/* --- tel --- */
.tel input[name="tel1"],
.tel input[name="tel2"],
.tel input[name="tel3"] {
  width: 110px;
  margin-right: 10px;
}

.tel input[name="tel2"],
.tel input[name="tel3"] {
  margin-left: 10px;
}

@media (max-width:767px) {

  .tel input[name="tel1"],
  .tel input[name="tel2"],
  .tel input[name="tel3"] {
    width: 90px;
    margin-right: 5px;
  }

  .tel input[name="tel2"],
  .tel input[name="tel3"] {
    margin-left: 5px;
  }
}


form.wpcf7-form .bt {
  margin-top: 30px;
  text-align: center
}

form.wpcf7-form .bt span {
  display: inline-block;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #eee;
}
form.wpcf7-form .bt.submit span {
  background: #666;
}

form.wpcf7-form .bt span:hover {
  opacity: 0.7;
}

form.wpcf7-form .bt span:after {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  font-size: 11px;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}

form.wpcf7-form .bt.previous span:after {
  left: 10px;
  right: auto;
  margin-top: -5px;
  content: '\e915';
}

form.wpcf7-form .bt.submit span:after {
  color: #fff;
}

form.wpcf7-form .bt input {
  width: 100%;
  border: none;
  padding: 14px 30px 14px 25px;
  font-size: 14px;
  background-color: transparent;
  width: auto;
  min-width: 200px;
  cursor: pointer;
}

form.wpcf7-form .bt.submit input {
  color: #fff;
}
form.wpcf7-form .bt.previous input {
  padding: 14px 25px 14px 30px;
}


.wpcf7 form .wpcf7-response-output {
  border-color: #E50003 !important;
  margin: 3em 0 !important;
  padding: 2em 2em !important;
}
.custom_error .wpcf7-not-valid-tip {
  display: none;
}
.custom_error .custom_error_message {
  display: none;
}
.custom_error:has(.wpcf7-not-valid-tip) .custom_error_message {
  display: block;
}
.wpcf7-not-valid-tip,
.custom_error .custom_error_message {
  color: #E50003;
  margin-top: 0.5em;
  font-size: 1em;
  font-weight: normal;
}

.wpcf7-spinner {
  display: none !important;
}