.cont1 .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
}
.cont1 h2 {
  text-align: center;
  margin-bottom: 24px;
}
.cont1 .sub_text {
  text-align: center;
  margin-bottom: 80px;
  word-break: keep-all;
}

.form_wrap h3 {
  text-align: center;
  margin-bottom: 40px;
}

form {
  max-width: 894px;
  margin: 0 auto;
}
form .flex_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 54px;
}

.input_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  width: 100%;
  /*select {
      max-width: 100%;
      border: 1px solid $gray3;
      font-size: 16px;
      line-height: 170%;
      font-family: $font_medium;
      padding: 8px 16px;
      background: url(../images/icon/dropdown_btn1.svg) no-repeat right 16px center / 20px auto;

      option {
          color: initial;
      }

      &:invalid {
          color: $gray3;
      }
  }*/
}
.input_wrap input {
  max-width: 420px;
  border: 1px solid #CFD8DC;
  font-size: 16px;
  line-height: 170%;
  font-family: "suit_medium";
  padding: 8px 16px;
}
.input_wrap input::placeholder {
  color: #9e9e9e;
}
.input_wrap .option_wrap {
  max-width: 100%;
  font-size: 16px;
  line-height: 170%;
  font-family: "suit_medium";
  position: relative;
}
.input_wrap .option_wrap .select {
  cursor: pointer;
  border: 1px solid #CFD8DC;
  padding: 8px 16px;
  background: url(../images/icon/dropdown_btn1.svg) no-repeat right 16px center/20px auto;
}
.input_wrap .option_wrap ul {
  display: none;
  width: 100%;
  position: absolute;
  background: #fff;
  top: 44px;
  left: 0;
  z-index: 2;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
  border: 1px solid #CFD8DC;
}
.input_wrap .option_wrap ul.on {
  display: block;
}
.input_wrap .option_wrap li {
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 1px solid #CFD8DC;
}
.input_wrap .option_wrap li:last-child {
  border-bottom: none;
}
.input_wrap .option_wrap li:hover {
  background: #448aff;
  color: #ffffff;
}
.input_wrap.max100 {
  max-width: 100%;
}

textarea {
  width: 100%;
  padding: 10px 16px;
  box-sizing: border-box;
  border: 1px solid #9e9e9e;
  resize: none;
  height: 152px;
  margin-bottom: 30px;
}
textarea::placeholder {
  color: #9e9e9e;
}

.check_wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.check_wrap input[type=checkbox] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background: #E5EAEC url(../images/icon/check_box_inactive.svg) no-repeat center center/contain;
  border-radius: 50%;
  margin-top: 3px;
  cursor: pointer;
}
.check_wrap input[type=checkbox]:checked {
  background: #448aff url(../images/icon/check_box_active.svg.svg) no-repeat center center/contain;
}
.check_wrap label {
  cursor: pointer;
}

.app_btn {
  display: block;
  width: 100%;
  max-width: 260px;
  height: 59px;
  padding: 14px 0;
  text-align: center;
  background: #9e9e9e;
  margin: 0 auto;
  color: #ffffff;
}
.app_btn.on {
  background: #448aff;
}

@media screen and (max-width: 1024px) {
  .cont1 .inner {
    padding: 60px 20px;
  }
  .cont1 h2 {
    margin-bottom: 20px;
  }
  .cont1 .sub_text {
    margin-bottom: 60px;
  }
  form {
    max-width: 541px;
  }
  form .flex_wrap {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
  }
  .input_wrap {
    max-width: 100%;
  }
  .input_wrap input {
    max-width: 100%;
  }
  .check_wrap label span {
    word-break: keep-all;
  }
  textarea::placeholder {
    word-break: keep-all;
  }
}
@media screen and (max-width: 768px) {
  .input_wrap {
    /*select {
        font-size: 14px;
    }*/
  }
  .input_wrap input {
    font-size: 14px;
  }
  .input_wrap .select {
    font-size: 14px;
  }
}

/*# sourceMappingURL=Inquiry.css.map */
