@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,900");
/* -------------------------
  フォーム用base
------------------------- */
/* .logo a {
  pointer-events: none;
} */

.sp-headMenuBtn,
.gnav,
.access,
.footer *:not(.copyright),
#conversion,
.topicpath {
  display: none;
}

.footer::before {
  content: none;
}

/* -------------------------
  layout
------------------------- */
.mw_wp_form {
  margin: 20px 0;
}

.formTable {
  margin-bottom: 40px;
  border: 1px solid #dedede;
  border-width: 1px 0 0 1px;
}

.row {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.row_th, .row_td {
  display: table-cell;
  border: 1px solid #dedede;
  border-width: 0 1px 1px 0;
  padding: 20px;
  vertical-align: top;
}

.row_th {
  width: 30%;
  background: #f5f5f5;
  font-weight: bold;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .mw_wp_form {
    margin: 20px 0;
  }

  .formTable {
    border-width: 0;
    margin: 0;
  }

  .row {
    display: block;
    margin: 0 0 15px;
  }

  .row_th, .row_td {
    display: block;
    width: 100%;
    padding: 15px;
    border-width: 0;
  }
}
/* -------------------------
  policy-check
------------------------- */
.policy-check {
  margin-bottom: 40px;
  padding: 25px;
  background: #f5f5f5;
  border-radius: 5px;
}

.policy-check p {
  text-align: center;
  line-height: 1.8;
}

.policy-check-btn {
  margin: 10px auto;
  list-style: none;
  margin: 10px auto 20px;
}

.policy-btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 8px 40px;
  border: 1px solid #00a0d4;
  border-radius: 100px;
  color: #008dbb;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
.policy-btn::before {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url(../img/form/ic_window.png) no-repeat 0 0/100% auto;
}
.policy-btn:hover {
  background: #00a0d4;
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.policy-btn:hover::before {
  background-position: 0 -12px;
}

.policy-check-agree span {
  line-height: 1.4;
}

.mw_wp_form_confirm .policy-check {
  display: none;
}

@media (max-width: 768px) {
  .policy-check {
    margin: 0 auto 40px;
    padding: 20px 15px;
  }

  .policy-check p {
    font-size: 1.2rem;
  }

  .policy-check-btn {
    margin: 10px auto;
  }

  .policy-btn {
    padding-left: 25px;
    padding-right: 35px;
  }
}
/* -------------------------
  form-flow
------------------------- */
.form-flow {
  margin: 0 auto 20px;
}

.form-flow ol {
  display: table;
  margin: 0 0 0 auto;
}

.form-flow li {
  display: table-cell;
  padding: 0 10px;
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
}

.form-flow li span {
  display: block;
  margin: 0 0 7px;
  padding: 0 9px;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  border-bottom: 2px solid #ccc;
}

.mw_wp_form_input .form-flow-step1,
.mw_wp_form_confirm .form-flow-step2,
.mw_wp_form_complete .form-flow-step3 {
  color: #008dbb;
  font-weight: bold;
}

.mw_wp_form_input .form-flow-step1 span,
.mw_wp_form_confirm .form-flow-step2 span,
.mw_wp_form_complete .form-flow-step3 span {
  border-bottom-color: #00a0d4;
}

/* -------------------------
  他
------------------------- */
/*必須テキスト*/
.required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  color: #fff;
  font-size: 1.1rem;
  background: #d00;
  border-radius: 3px;
}

.required:first-letter {
  padding-right: 2px;
}

.mw_wp_form_confirm .required,
.mw_wp_form_complete .required {
  display: none;
}

/*例文テキスト*/
.form-note {
  display: block;
  margin: 10px 0;
  color: #999;
}

.mw_wp_form_confirm .form-note {
  display: none;
}

/*エラーテキスト*/
.mw_wp_form .form .error {
  display: block;
  margin: 10px 0 0;
  color: #d00;
  background: #ffe5e5;
  padding: 5px;
  border-radius: 2px;
  font-weight: bold;
}

.mw_wp_form .form .error + input {
  margin-top: 5px;
}

/*送信ボタンエリア*/
.form-action {
  text-align: center;
  letter-spacing: -0.5rem;
}

.form-action > input {
  margin: 0 8px;
}

.form-message {
  max-width: 500px;
  padding: 50px 0;
  margin: 0 auto;
  text-align: center;
}

.form-message p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

.form-message-closeBtn {
  margin-top: 100px;
}
.form-message-closeBtn a {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid;
  font-size: 1.4rem;
}

/* -------------------------
  form parts
------------------------- */
.form textarea:placeholder-shown,
.form input:placeholder-shown {
  color: #ccc;
  font-weight: normal;
}
.form textarea::-webkit-input-placeholder,
.form input::-webkit-input-placeholder {
  color: #ccc;
  font-weight: normal;
}
.form textarea:-ms-input-placeholder,
.form input:-ms-input-placeholder {
  color: #ccc;
  font-weight: normal;
}
.form textarea::-moz-placeholder,
.form input::-moz-placeholder {
  color: #ccc;
  font-weight: normal;
}
.form textarea {
  width: 100%;
  min-height: 8em;
}
.form input[type=email],
.form input[type=text],
.form input[type=password],
.form textarea {
  padding: 8px;
  border: 1px #ccc solid;
  border-radius: 3px;
}
.form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 150px;
  margin: 0;
  padding: 8px 25px 8px 8px;
  background: #fff url(../img/form/ic_select.png) center right 9px no-repeat;
  background-size: 9px 9px;
  border: 1px #ccc solid;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.form select::-ms-expand {
  display: none;
}
.form input[type=button] {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #3498db;
  border: none;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: bold;
  -webkit-box-shadow: 0px 1px 4px rgba(44, 62, 80, 0.2);
          box-shadow: 0px 1px 4px rgba(44, 62, 80, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.16s ease-out;
  transition: all 0.16s ease-out;
}
.form input[type=button]:hover {
  -webkit-box-shadow: 0px 6px 24px rgba(44, 62, 80, 0.2);
          box-shadow: 0px 6px 24px rgba(44, 62, 80, 0.2);
}
.form .checkbox-field,
.form .mwform-checkbox-field {
  display: inline-block;
}
.form .checkbox-field input,
.form .mwform-checkbox-field input {
  display: none;
}
.form .checkbox-field-text,
.form .mwform-checkbox-field-text {
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 29px;
}
.form .checkbox-field-text::before,
.form .mwform-checkbox-field-text::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: ' ';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.form input:checked + .checkbox-field-text::before,
.form input:checked + .mwform-checkbox-field-text::before {
  background: #008dbb;
  border-color: #008dbb;
}
.form input:checked + .checkbox-field-text::after,
.form input:checked + .mwform-checkbox-field-text::after {
  position: absolute;
  top: 4px;
  left: 3px;
  content: ' ';
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/form/ic_check.png) no-repeat center/100%;
}
.form .mwform-checkbox-field.horizontal-item {
  margin: 0 20px 0 0;
}
.form .mwform-radio-field {
  display: inline-block;
}
.form .mwform-radio-field input {
  display: none;
}
.form .mwform-radio-field-text {
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 29px;
}
.form .mwform-radio-field-text::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: ' ';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 100%;
}
.form input:checked + .mwform-radio-field-text::after {
  position: absolute;
  top: 6px;
  left: 5px;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  background: #008dbb;
  border-radius: 100%;
}
.form .mwform-radio-field.horizontal-item {
  margin: 0 20px 0 0;
}
.form button[type=submit],
.form input[type=submit] {
  position: relative;
  display: inline-block;
  padding: 15px 100px;
  background-color: #ffd900;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-appearance: none;
  letter-spacing: 0.5rem;
}
.form button[type=submit]:hover,
.form input[type=submit]:hover {
  background-color: #ffbf00;
}
.form button[type=submit][disabled="disabled"],
.form button[type=submit][disabled="disabled"]:hover,
.form input[type=submit][disabled="disabled"],
.form input[type=submit][disabled="disabled"]:hover {
  background-color: #ccc;
  cursor: default;
  color: #fff;
  border-color: #ccc;
}
.form input[name="submitBack"] {
  padding-left: 80px;
  padding-right: 80px;
  background-color: #fff;
  border: 1px solid #ffd900;
  color: #333;
}
.form input[name="submitBack"]:hover {
  border-color: #ffd900;
}
.form input[name="submitConfirm"] {
  background-color: #00a0d4;
  color: #fff;
}
.form input[name="submitConfirm"]:hover {
  background-color: #006bb3;
}

@media (max-width: 768px) {
  .form button, .form input, .form select, .form textarea {
    font-size: 16px;
  }
  .form textarea {
    width: 100%;
  }
  .form input[type=email],
  .form input[type=text],
  .form input[type=password],
  .form textarea {
    width: 100%;
    padding: 10px;
    -webkit-appearance: none;
  }
  .form input[type=radio] {
    margin: 0;
  }
  .form select {
    min-width: 0;
    width: 100%;
    padding: 10px 25px 10px 10px;
  }
  .form input[type=button] {
    padding: 6px;
  }
  .form button[type=submit],
  .form input[type=submit] {
    min-width: 0;
    width: 48%;
    padding: 10px;
  }
  .form .mwform-radio-field {
    padding: 5px 0;
  }
  .form input {
    vertical-align: middle;
  }
  .form .mwform-checkbox-field-text,
  .form .mwform-radio-field-text {
    vertical-align: middle;
  }
  .form .mwform-tel-field input {
    width: 90px;
    max-width: calc(100% / 3 - 1em);
  }
  .form .mwform-zip-field input:nth-child(1) {
    width: 90px;
    max-width: calc(100% / 2 - 1em);
  }
  .form .mwform-zip-field input:nth-child(2) {
    width: 140px;
    max-width: calc(100% / 2 - 1em);
  }
  .form .checkbox-field-text,
  .form .mwform-checkbox-field-text {
    font-size: 1.5rem;
  }
  .form .mwform-radio-field-text {
    font-size: 1.5rem;
  }
  .form button[type=submit],
  .form input[type=submit] {
    display: block;
    width: 70%;
    margin: 0 auto 10px;
    font-size: 1.6rem;
  }
}
