@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

.contact-wrap .wide-bnr-wrap {
  background-color: #f2f2f2;
}

.contact-wrap .wide-bnr-wrap .tit,
.contact-wrap .wide-bnr-wrap .sub-tit {
  color: #121212;
  text-transform: uppercase;
}

.form-container .title-wrap {
  padding: 50px 0;
}
.form-container .tit {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: bold;
}

.form-container .sub-tit {
  font-size: 2.8rem;
}
.form-wrap {
  flex-wrap: wrap;
  font-size: 2.2rem;
  width: 100%;
  justify-content: space-between;
}
.form-wrap .width-50 {
  width: 50%;
  padding-right: 2em;
}

.form-wrap .width-100 {
  width: 100%;
}
.form-wrap .width-50,
.form-wrap .width-100 {
  margin-bottom: 1.5em;
}
.form-wrap .label {
  margin-bottom: 0.3em;
}
.form-wrap label {
  width: 100%;
  position: relative;

  padding-right: 0.7em;
  font-weight: bold;
}

.form-wrap .essential label:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #e2590f;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.form-wrap input,
.form-wrap textarea {
  padding: 0.6em 0.3em;
  font-size: 2rem;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
}

.form-wrap textarea {
  border: 1px solid #ccc;
  padding: 1em;
}

.form-wrap input::placeholder,
.form-wrap textarea::placeholder {
  color: #aaa;
}

.form-wrap .text-line {
  text-decoration: underline;
  font-weight: bold;
}
.form-wrap .privacy-wrap {
  align-items: center;
}
.form-wrap .privacy {
  width: 1em;
  height: 1em;
  margin-right: 0.8em;
  border-radius: 50%;
}

.form-wrap .privacy-wrap label {
  cursor: pointer;
}

.form-wrap .privacy-wrap input[type='checkbox'] {
  display: none;
}
.form-wrap .privacy-wrap .label {
  margin-bottom: 0;
  cursor: pointer;
}
.form-wrap .privacy-wrap label {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #ccc;
  position: relative;
  margin-right: 0.5em;
}

.form-wrap .privacy-wrap input[type='checkbox']:checked + label:after {
  content: '\F633';
  font-family: bootstrap-icons;
  font-size: 2rem;
  position: absolute;
  text-align: center;

  font-weight: 900;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.form-wrap .privacy-btn {
  font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
  font-size: 1.6rem;
  border: 1px solid #aaa;
  background-color: transparent;
  margin-left: 1.5em;
  padding: 0.4em 1.5em;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  color: #aaa;
}

.form-wrap .privacy-btn:hover {
  background-color: #e2590f;
  color: #fff;
  font-weight: bold;
  border-color: #e2590f;
}

.form-wrap .submit-btn {
  font-size: 2rem;
  padding: 0.5em 2em;
  margin-top: 2em;
  color: #fff;
  text-align: center;
  border-radius: 0;
  background-color: #e2590f;
  border: 1px solid #e2590f;
}

.popup-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.popup-wrap.on {
  visibility: visible;
}

.popup-wrap .white-bg {
  padding: 2em 3em;
  background-color: #fff;
  border-radius: 10px;
}

.popup-wrap .white-bg .title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  position: relative;
}

.popup-wrap .white-bg .title:after {
  width: 100%;
  height: 1px;
  background-color: #121212;
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  left: 0;
}

.popup-wrap .white-bg li {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}

.popup-wrap .white-bg li .tit {
  font-weight: bold;
  padding-right: 1em;
  font-size: 2.2rem;
}

.popup-wrap .white-bg li .txt {
  padding: 0.5em 0;
}

.popup-wrap .close-btn {
  background-color: #121212;
  color: #fff;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  padding: 0.5em 1em;
}

.submit-wrap .btn-wrap .go-btn {
  font-size: 2rem;
  padding: 0.5em 2em;
  color: #fff;
  background-color: #121212;
}

@media (max-width: 650px) {
  /* form-mail */
  .form-container .tit {
    font-size: 2.8rem;
  }

  .form-container .sub-tit {
    font-size: 1.6rem;
    padding-top: 0.5em;
  }

  .form-wrap .width-50 {
    width: 100%;
    padding-right: 0;
  }

  .form-wrap {
    font-size: 1.6rem;
  }

  .form-wrap input,
  .form-wrap textarea {
    font-size: 1.6rem;
  }

  .form-wrap .privacy-wrap {
    flex-wrap: wrap;
  }

  .form-wrap .privacy-btn {
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 1em;
  }

  .form-wrap .submit-btn {
    display: block;
    width: 100%;
  }

  .form-container {
    min-height: 30vh;
  }

  /* e::form-mail */
}
