@charset "utf-8";
.form_wrap {
    margin: 0 20px 20px;
  }
  .form_title {
    font-size: 6vw;
    font-weight: bold;
    color: #f39800;
    letter-spacing: 1px;
  }
  .formState_items {
    counter-reset: number;
    display: flex;
    justify-content: space-between;
    margin-top: 4vw;
  }
  .formState_item {
    counter-increment: number;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26vw;
    height: 7vw;
    border-radius: 30px;
    background: #ABABAB;
  }
  .formState_item:after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: counter(number);
    color: #ABABAB;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 1vw;
    transform: translateY(-50%);
    width: 5vw;
    height: 5vw;
    font-size: 3.8vw;
    background: #FFF;
    border-radius: 100%;
  }
  .formState_item.active:after {
    color: #f39800;
  }
  .formState_item:not(:first-child):before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10vw;
    transform: translateY(-50%);
    display: block;
    width: 10vw;
    height: 1px;
    background: #ABABAB;
    z-index: -1;
  }
  .formState_item.active {
    background: #f39800;
  }
  .formState_txt {
    margin-left: 2vw;
    font-size: 3.8vw;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 1px;
  }
  .formState_item.active:not(:first-child):before {
    background: #f39800;
  }
  .form_inputTxt {
    margin-top: 8vw;
    font-size: 4.3vw;
  }
  .form_cmpTxt {
    margin-top: 8vw;
    font-size: 4.3vw;
    text-align: center;
  }
  .formCon {
    margin-top: 4vw;
    padding: 0 4vw 8vw;
    background: #FEEDD1;
  }
  .formCon_title {
    display: flex;
    align-items: center;
    display: block;
    padding-top: 8vw;
    font-size: 4vw;
    font-weight: bold;
  }
  .formCon_title--ask {
    margin-left: 2vw;
    padding: .5vw 3vw;
    font-size: 3.8vw;
    color: #FFF;
    background: #f39800;
    border-radius: 30px;
  }
  input[type="text"],
  textarea,
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  
    border: 0;
    outline: none;
    font-size: 4vw;
    letter-spacing: 1px;
    box-shadow: 0 2px 2px -2px #CCC inset;
  }
  .formCon_inputTxt {
    margin-top: 4vw;
    padding: 3vw;
    width: 100%;
    border-radius: 5px;
  }
  .formCon_title--askTxt {
    padding-left: 2vw;
    font-size: 3.4vw;
    font-weight: normal;
  }
  .fomrCon_radioConWrap {
    position: relative;
  }
  input[type="radio"] {
    display: none;
  }
  input[type="radio"] + label {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 4vw;
    font-size: 4.6vw;
    line-height: 1;
  }
  input[type="radio"] + label:before {
    content: "";
    display: block;
    margin-right: 2vw;
    width: 5vw;
    height: 5vw;
    background: #FFF;
    border-radius: 100%;
    box-shadow: 0 2px 2px -2px #CCC inset;
  }
  input[type="radio"]:checked + label:after {
    position: absolute;
    left: 1vw;
    content: "";
    display: block;
    width: 3vw;
    height: 3vw;
    background: #f39800;
    border-radius: 100%;
  }
  .formCon_select {
    position: relative;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: border-box;
  
    padding: 3vw;
    width: 100%;
    border: 0;
    border-radius: 5px;
    outline: none;
    background: #FFF;
    font-size: 4vw;
  }
  .formCon_selectWrap {
    position: relative;
    margin-top: 4vw;
  }
  .formCon_selectWrap:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4%;
    font-size: 4vw;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f078";
  }
  .formCon_consultTxt {
    margin-top: 2vw;
    font-size: 3.8vw;
  }
  input[name="check_consult[]"] {
    display: none;
  }
  input[name="check_consult[]"] + label {
    position: relative;
    display: flex;
    margin-top: 4vw;
    font-size: 4.6vw;
    line-height: 1.4;
  }
  input[name="check_consult[]"] + label:before {
    content: "";
    display: block;
    margin-right: 2vw;
    width: 5vw;
    min-width: 5vw;
    height: 5vw;
    background: #FFF;
    border-radius: 4px;
    box-shadow: 0 2px 2px -2px #CCC inset;
  }
  input[name="check_consult[]"]:checked + label:after {
    position: absolute;
    top: -1vw;
    left: .5vw;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f00c";
    color: #f39800;
  }
  .formCon_contactTextArea {
    width: 100%;
    height: 50vw;
    margin-top: 4vw;
    padding: 3vw;
    border-radius: 5px;
  }
  .formBtnArea {
    margin-top: 8vw;
  }
  .formBtnArea--cmp {
    display: flex;
    width: 30vw;
    margin: 8vw auto 0;
  }
  .formBtnArea_confirmBtn,
  .formBtnArea_editBtn,
  .formBtnArea_cmpBtn {
    width: 100%;
    padding: 2vw 0;
    font-size: 4vw;
    font-weight: bold;
    border-radius: 30px;
    color: #FFF;
    letter-spacing: 1px;
  }
  .formBtnArea_confirmBtn {
    background: #f39800;
    border-bottom: 2px solid #d48400;
  }
  .formBtnArea_editBtn {
    margin-top: 2vw;
    background: #cccaca;
    border-bottom: 2px solid #ABABAB;
  }
  .formBtnArea_cmpBtn {
    text-align: center;
    background: #f39800;
    border-bottom: 2px solid #d48400;
  }
  .formCon_confirmTxt {
    margin-top: 4vw;
    font-size: 4vw;
    letter-spacing: 1px;
    line-height: 1.4;
  }
  .errMsgTxt {
    margin-top: 2vw;
    font-size: 4vw;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #e73a56;
  }
  .form_cmpTxt {
    font-size: 4vw;
    letter-spacing: 1px;
    line-height: 1.4;
  }