@charset "UTF-8";
#xet-page {
  word-break: keep-all;
  font-size: 16px;
  color: #111;
  /** 타이틀 */
  /** contact form */
}
#xet-page * {
  box-sizing: border-box;
}
#xet-page ::placeholder {
  color: #ababab;
  opacity: 1;
}
#xet-page :-ms-input-placeholder {
  color: #ababab;
}
#xet-page ::-ms-input-placeholder {
  color: #ababab;
}
#xet-page p {
  margin: 0;
}
#xet-page a {
  text-decoration: none;
  color: inherit;
}
#xet-page img {
  max-width: 100%;
}
#xet-page .page__title-wrp {
  margin-bottom: 40px;
}
#xet-page .page__title-wrp .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}
#xet-page .page__title-wrp .desc {
  font-size: 18px;
  margin-top: 20px;
}
#xet-page .contact-form {
  margin: 0;
  /** 개인정보수집내용 */
}
#xet-page .contact-form .input-group + .input-group {
  margin-top: 5px;
}
#xet-page .contact-form input[type=text],
#xet-page .contact-form input[type=email],
#xet-page .contact-form textarea,
#xet-page .contact-form select {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 10px;
  margin: 0;
  border-radius: 0;
  appearance: none;
  box-shadow: none;
  border: 1px solid #cbcbcb;
  background: #fff;
  color: #111;
}
#xet-page .contact-form textarea {
  height: 200px;
  padding: 10px;
  resize: vertical;
}
#xet-page .contact-form input[type=text]:focus,
#xet-page .contact-form input[type=email]:focus,
#xet-page .contact-form textarea:focus {
  border-color: #111;
  color: #111;
}
#xet-page .contact-form select {
  position: relative;
  padding-right: 40px;
  color: #ababab;
  background: url(./arrow_down_icon.svg) no-repeat;
  background-position: calc(100% - 5px) 50%;
  background-size: 20px;
}
#xet-page .contact-form select.selected {
  color: #111;
}
#xet-page .contact-form select option[value=""][disabled] {
  display: none;
}
#xet-page .contact-form .input-submit {
  margin-top: 20px;
  text-align: right;
}
#xet-page .contact-form .input-submit .submit {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  border: 0;
  background: #111;
  color: #fff;
}
#xet-page .contact-form .agree-privacy {
  display: none;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}

/* responsive 
-------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  #xet-page {
    font-size: 14px;
    /** 타이틀 */
    /** contact form */
  }
  #xet-page .page__title-wrp .title {
    font-size: 36px;
  }
  #xet-page .contact-form input[type=text],
#xet-page .contact-form input[type=email],
#xet-page .contact-form textarea,
#xet-page .contact-form select {
    font-size: 14px;
  }
  #xet-page .contact-form .input-submit {
    margin-top: 15px;
    text-align: right;
  }
  #xet-page .contact-form .input-submit .submit {
    width: 200px;
  }
  #xet-page .contact-form .input-submit .submit:hover {
    background: #2b2b2b;
  }
}