@charset "UTF-8";

.container .normalTxt {
  margin-bottom: 40px;
}
.error-text-wrap .normalTxt {
  color: #bc2e2e;
  font-weight: bold;
}

/* -------------------------- */
/* content */
/* -------------------------- */

.formList {
  margin: 30px 0;
  border-top: 1px solid #ddd;
  text-align: left;
}
.formList dt,
.formList dd {
  padding: 15px 0;
  font-size: 1.4rem;
}
.formList dt {
  position: relative;
  padding-bottom: 0;
  font-weight: bold;
}
.formList dd {
  border-bottom: 1px solid #ddd;
}
.formList dd .txt_note {
  display: block;
  font-weight: bold;
}
.formList dd .txt_caution {
  padding-top: 5px;
  color: #bc2e2e;
  display: block;
  font-weight: bold;
}
.formList_inputItem {
  width: 100%;
}
.formList_inputItem02 {
  width: 100%;
  height: 150px;
}
.formList_inputItem03 {
  width: 100%;
}
.formList_inputItem04 {
  width: 70px;
}

/* submitBox */
.submitBox {
  width: 80%;
  margin: 30px auto 0;
  position: relative;
}
.submitBox input {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
  background-color: #ff7800;
  border: 0;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}
.submitBox input:hover {
  opacity: 0.6;
}

.submitBox .blue-btn {
  background: #fff;
  border: 1px solid #0d3896;
  color: #0d3896;
}

.submitBox-flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px 20px;
  width: 80%;
  margin: 30px auto 0;
  position: relative;
}

/* -------------------------- */
/* form */
/* -------------------------- */

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 13px;
  border: 0;
  box-sizing: border-box;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  background-color: #f1f1f1;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
}
label {
  margin: 10px 25px 5px 0;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
label input[type="radio"] {
  display: none;
  position: relative;
}
label input[type="radio"] + span {
  padding-left: 45px;
}
label input[type="radio"] + span::before {
  width: 33px;
  height: 33px;
  border: 1px solid #c1bdba;
  background: #fff;
  border-radius: 23px;
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
label input[type="radio"]:checked + span::after {
  width: 18px;
  height: 18px;
  background: #0d3896;
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none transparent;
  text-indent: 0.01px;
  text-overflow: "";
  height: 35px;
  padding: 0 35px 0 0;
  border: 1px solid #e2e5c6;
  border-radius: 0;
  text-indent: 0.01px;
  background: #fff url(/images/icon/icon_select.jpg) no-repeat right;
  background-size: auto 25px;
}

@media only screen and (min-width: 768px) {
  select {
    height: 38px;
    padding: 3px 47px 3px 8px;
    text-indent: 0.01px;
    background-size: auto 35px;
  }
}
select::-ms-expand {
  display: none;
}
select:not(:target) {
  appearance: pop-up-menu\9;
  background: none transparent\9;
  background-color: #fff\9;
  height: auto\9;
  padding: 5px 10px\9;
  text-indent: 0\9;
}
@media all and (-ms-high-contrast: none) {
  select:not(:target) {
    appearance: none;
    height: 36px;
    padding: 4px 50px 4px 8px;
    background: #fff url(/images/icon/icon_select.jpg) no-repeat right;
  }
}

/* images */
.ajax-file-upload {
  width: 150px;
  padding: 7px 0;
  background-color: #a49b95;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #666), color-stop(0, #ccc));
  background: -webkit-linear-gradient(#ccc, #666);
  background: -moz-linear-gradient(#ccc, #666);
  background: -o-linear-gradient(#ccc, #666);
  background: -ms-linear-gradient(#ccc, #666);
  background: linear-gradient(#ccc, #666);
  background-color: #666;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 1px solid #999;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.ajax-file-upload-statusbar {
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.required {
  position: absolute;
  top: auto;
  bottom: auto;
  right: 7px;
  margin-top: -2px;
  padding: 2px 10px;
  background-color: #d34b4b;
  border-radius: 3px;
  color: #fff;
  font-size: 1.4rem;
}

.error {
  margin-bottom: 30px;
  border: 1px solid #dc0101;
}
.error .strongTitle {
  margin-bottom: 0;
  padding: 15px;
  background-color: #dc0101;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
}

.error .errorTxt {
  padding: 15px;
  color: #dc0101;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4em;
}

.errorTxt_bottom {
  padding: 15px;
  color: #dc0101;
  line-height: 1.4em;
}

/* ================================================================================================================================================================================== */
/* pc */
/* ================================================================================================================================================================================== */

@media only screen and (min-width: 768px) {
  .error {
    margin-bottom: 40px;
  }
  .error .strongTitle {
    font-size: 1.6rem;
  }
  .error .errorTxt {
    font-size: 1.6rem;
  }

  .submitBox-flex {
    justify-content: center;
    align-items: center;
    flex-direction: unset;
  }
}

/* ================================================================================================================================================================================== */
/* pc */
/* ================================================================================================================================================================================== */

@media only screen and (min-width: 1024px) {
  /* -------------------------- */
  /* content */
  /* -------------------------- */

  .formList {
  }
  .formList dt,
  .formList dd {
    font-size: 1.6rem;
  }
  .formList dt {
    padding: 30px 0 0;
    clear: both;
    float: left;
    width: 250px;
  }
  .confirmList dt {
    padding: 20px 0 0;
  }
  .formList dd {
    min-height: 85px;
    padding: 30px 0 20px 270px;
  }
  .formList dd .txt_note {
    padding-bottom: 3px;
  }
  .formList dd .txt_caution {
    padding: 0 0 3px;
  }
  .formList_inputItem {
    width: 35%;
  }

  /* submitBox */
  .submitBox {
    width: 320px;
  }
  .submitBox input {
    padding: 30px 0;
    font-size: 1.6rem;
    letter-spacing: 5px;
  }

  .submitBox-flex {
    width: 80%;
  }

  /* -------------------------- */
  /* form */
  /* -------------------------- */

  form {
    margin: 0 10%;
  }

  .required {
    padding: 3px 15px;
    font-size: 1.6rem;
  }

  .error {
    margin-bottom: 30px;
  }
  .error .errorTxt {
    font-size: 1.8rem;
  }
}
