@charset "UTF-8";
/*
 Mailform CSS
*/
/*---------------------------------------
	Form [ reset ]
----------------------------------------*/
input, textarea {
  border-radius: 0;
}

button, input, optgroup, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
  font: inherit;
}

textarea {
  overflow: auto;
  resize: vertical;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

#mfp_error {
  width: 100%;
}

form#mailformpro select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  line-height: 1;
  background: #FFF;
  text-indent: 0.01px;
  -o-text-overflow: "";
     text-overflow: "";
}

form#mailformpro select::-ms-expand {
  display: none;
}

/*---------------------------------------
	Form [ base ]
----------------------------------------*/
form#mailformpro button,
form#mailformpro input,
form#mailformpro select,
form#mailformpro textarea {
  width: 100%;
  padding: 5px 2%;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

form#mailformpro input,
form#mailformpro select,
form#mailformpro textarea {
  border: 1px solid #200d06;
  background-color: #FFF;
}

form#mailformpro input:focus,
form#mailformpro select:focus,
form#mailformpro textarea:focus {
  border: 1px solid #850b0c;
  background-color: #FFF;
}

form#mailformpro button {
  border-radius: 0px;
}

/*[setting]
	入力項目ごとの幅設定　*/
form#mailformpro textarea {
  width: 100% !important;
  height: 350px !important;
}

form#mailformpro input.w75 {
  width: 75%;
}

form#mailformpro input.w50 {
  width: 50%;
}

form#mailformpro input.w25 {
  width: 25%;
}

@media only screen and (max-width: 896px) {
  form#mailformpro input.w75,
form#mailformpro input.w50,
form#mailformpro input.w25 {
    width: 100%;
  }
  form#mailformpro textarea {
    height: 10em !important;
  }
}
/*---------------------------------------
	Form [ mailformpro ]
----------------------------------------*/
form#mailformpro {
  width: 100%;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button {
  color: #FFF;
  padding: 20px 0 !important;
  background: #000;
  border: solid 1px #000;
  display: inline-block;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mfp_buttons {
  width: 40%;
  margin: 0 auto;
}

#mfp_overlay_inner .mfp_buttons {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mfp_element_reset {
  color: #000;
  background: #EEE;
  border: solid 1px #EEE;
}

.mfp_element_submit:hover,
.mfp_element_button:hover {
  color: #000;
  background: #FFF;
  border: solid 1px #000;
}

.mfp_element_reset:hover,
#mfp_button_cancel:hover {
  color: #000;
  background: #FFF;
  border: solid 1px #000;
  font-weight: normal;
}

#mfp_overlay_inner .mfp_element_button {
  width: 30%;
  background: #000;
  border: solid 1px #000;
}

#mfp_overlay_inner .mfp_element_button:hover {
  color: #000;
  background: #FFF;
}

#mfp_overlay_inner #mfp_button_cancel {
  color: #000;
  background: #FFF;
}

#mfp_overlay_inner #mfp_button_cancel:hover {
  color: #FFF;
  background: #000;
}

form input[type=text]:focus,
form input[type=password]:focus,
form input[type=email]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=date]:focus,
form textarea:focus {
  outline: none;
  border: 1px solid #666;
}

form#mailformpro .must {
  color: #FFF;
  background-color: inherit;
  border: none;
  display: inline-block;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1em;
  border-radius: 2em;
  margin: 0 5px 0 0;
  padding: 3px 10px;
  background-color: #ff2c2c;
}

form#mailformpro div.mfp_err {
  width: 100%;
  color: #ff2c2c;
}

form#mailformpro div.mfp_err::before {
  content: "\f06a";
  color: #ff2c2c;
  font-weight: 900;
  background: none;
  padding: 0;
}

form#mailformpro dt label,
form#mailformpro dd label {
  cursor: pointer;
}

form#mailformpro dt label {
  margin-top: 0;
}

/* Checkboxes styles */
.type_checkbox input[type=checkbox] {
  display: none;
}

.type_checkbox input[type=checkbox] ~ label.text {
  display: block;
  position: relative;
  padding-left: 35px;
  font: "Open Sans", Arial, sans-serif;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.type_checkbox input[type=checkbox] ~ label.text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.25;
  -webkit-transition: all 0.12s, border-color 0.08s;
  -o-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

.type_checkbox input[type=checkbox]:checked ~ label.text::before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

/* Radio button styles */
.type_radio input[type=radio] {
  display: none;
}

.type_radio label {
  line-height: 2em;
  padding: 0 2em;
  position: relative;
  white-space: unset;
}

.type_radio label::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FFF;
  border: 1px solid #000;
  border-radius: 100%;
  opacity: 0.25;
}

.type_radio label.mfp_checked::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 6px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 100%;
}

input[type=checkbox]:checked ~ .type_radio label {
  display: block;
}

form#mailformpro dl dd ul li,
form#mailformpro dl dd ol li {
  margin-bottom: 1em !important;
}

form#mailformpro dl dd label.select_area {
  position: relative;
  padding: 0;
}

form#mailformpro dl dd label.select_area::before {
  display: block;
  font-size: 1.4rem;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  content: "▼";
  position: absolute;
  top: 13px;
  left: 10px;
  pointer-events: none;
}

form#mailformpro dl dd select.mfp_element_select-one {
  height: 40px;
  min-width: 200px;
  max-width: 320px;
  padding-left: 30px;
  color: #000;
}

form#mailformpro dl dd select.mfp_element_select-one:hover {
  cursor: pointer;
}

@media only screen and (max-width: 896px) {
  form#mailformpro label {
    white-space: normal !important;
  }
  #mfp_overlay_inner table#mfp_confirm_table tr th,
#mfp_overlay_inner table#mfp_confirm_table tr td {
    font-size: 1.4rem;
    padding: 10 5px;
  }
  #mfp_overlay_inner table#mfp_confirm_table tr th {
    white-space: normal;
    width: 30%;
  }
  #mfp_overlay_inner table#mfp_confirm_table tr td {
    width: 70%;
  }
  #mfp_overlay_inner .mfp_element_button {
    width: 45%;
  }
}