@font-face {
  font-family: 'SEBANG_Gothic_Bold';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NEXON Lv1 Gothic OTF Light';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NEXON Lv1 Gothic OTF Bold';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.form {
  padding: 100px 0px;
  color: #000;
  background-color: #fffef0;
  font-family: 'NEXON Lv1 Gothic OTF Light';
}

.form h2 {
  font-size: 60px;
  color: #000;
  text-align: center;
  margin-bottom: 25px;
  font-family: 'SEBANG_Gothic_Bold';
}

.form h2 {
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.form form {
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: all .5s .2s;
  transition: all .5s .2s;
}

.form ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.form ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form ul li label {
  font-size: 20px;
  width: 150px;
}

.form ul li input, .form ul li .select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
}

.form ul li input {
  border: 1px solid #e8e8e8;
  line-height: 50px;
  padding: 0px 15px;
  font-size: 20px;
  color: #666;
  width: 100%;
}

.form ul li .select {
  position: relative;
}

.form ul li .select select {
  width: 100%;
  background: none !important;
  border: 1px solid #e8e8e8;
  color: #666;
  line-height: 50px;
  padding: 0px 15px;
  font-size: 20px;
}

.form ul li .select i {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #666;
  font-size: 20px;
}

.form .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
}

.form .content label {
  font-size: 20px;
  width: 150px;
}

.form .checkBox{
  display: grid;
  grid-template-columns: 150px 1fr;
  margin-top: 20px;
  padding: 20px 0px;
}
.form .checkBox .title{
  font-size: 20px;
}
.form .checkBox .ck{
  width: 100%;
  white-space: nowrap;
}
.form .checkBox .ck label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
.form .checkBox .ck label input{
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}
.form .checkBox .ck label span{
  font-size: 24px;
}

.form .content textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: none;
  border: 1px solid #e8e8e8;
  color: #666;
  height: 200px;
  resize: none;
  padding: 15px;
  font-size: 20px;
  background-color: #fff;
}

.form .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.form .check input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
}

.form .check i {
  font-size: 30px;
  margin-right: 10px;
  color: #666;
  cursor: pointer;
}

.form .check input:checked ~ i {
  color: #ff7f00;
}

.form .check p {
  margin: 0;
  font-size: 20px;
}

.form .check a {
  color: #666;
  border: 1px solid #666;
  padding: 5px 15px;
  margin-left: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.form .check .infoConsent {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 200;
  background-color: #00000066;
  width: 100%;
  height: 100%;
  display: none;
}

.form .check .infoConsent div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.form .check .infoConsent div p {
  color: #000;
  font-size: 16px;
  width: 400px;
  height: 400px;
  background-color: #fff;
  overflow-y: scroll;
  padding: 15px 20px 15px 5px;
}

.form .check .infoConsent span {
  text-align: right;
  display: block;
  padding: 5px 0px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
}

.form .check .infoConsent.on {
  display: block;
}

.form .center {
  text-align: center;
  margin-top: 30px;
}

.form .center .button {
  display: inline-block;
  position: relative;
}

.form .center .button input {
  font-size: 30px;
  color: #fff;
  background-color: #373737;
  border: 0;
  padding: 15px 50px 15px 30px;
}

.form .center .button i {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
}

.form.on h2 {
  top: 0px;
  opacity: 1;
}

.form.on form {
  top: 0px;
  opacity: 1;
}

@media (max-width: 1100px) {
  .form h2 {
    font-size: 50px;
  }
}

@media (max-width: 900px) {
  .form ul {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .form .checkBox .ck{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 10px;
  }
  .form .checkBox .ck label{
    justify-content: start;
  }
}

@media (max-width: 600px) {
  .form .checkBox .ck label input{
    width: 16px;
    height: 16px;
  }
  .form .checkBox .ck label span{
    font-size: 16px;
  }
  .form .check i {
    font-size: 22px;
  }
  .form .check p {
    font-size: 14px;
  }
  .form .check a {
    padding: 3px 10px;
    font-size: 14px;
  }
}

@media (max-width: 550px) {
  .form h2 {
    font-size: 40px;
  }
}

@media (max-width: 500px) {
  .form h2 {
    font-size: 30px;
  }
  .form ul li label {
    font-size: 18px;
    width: 120px;
  }
  .form .content label {
    font-size: 18px;
    width: 120px;
  }
  .form .checkBox{
    grid-template-columns: 80px 1fr;
  }
  .form .checkBox .title{
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .form ul li input {
    line-height: 40px;
  }
  .form ul li .select select {
    line-height: 40px;
  }
  .form .content textarea {
    height: 130px;
  }
  .form .check .infoConsent div {
    width: 95%;
  }
  .form .check .infoConsent div p {
    width: 100%;
  }
  .form .checkBox .ck label {
    margin-right: 10px;
  }
  .form .checkBox .ck label input{
    width: 14px;
    height: 14px;
  }
  .form .checkBox .ck label span{
    font-size: 14px;
  }
}