#ct_menu {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ct_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

#ct_menu ul li {
  font-family: "SHN_R";
  font-weight: normal;
  font-size: 15px;
  margin-right: 50px;
}

#ct_menu ul li:last-of-type {
  margin-right: 0;
}

#ct_menu ul li:hover {
  font-family: "SHN_B";
  font-weight: bold;
}

@media (max-width: 1200px) {
  #ct_menu ul {
    display: none;
  }
}

#sec_01 {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#sec_01 .text {
  width: auto;
  height: auto;
}

#sec_01 .text h2 {
  font-family: "SHN_B";
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 5px;
}

#sec_01 .text h3 {
  font-family: "SHN_M";
  font-weight: normal;
  font-size: 20px;
}

#sec_01 form {
  width: 100%;
  max-width: 978px;
  height: auto;
}

#sec_01 form .input_wrap {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bdbdbd;
  padding: 0 40px;
}

#sec_01 form .input_wrap label {
  display: block;
  padding-left: 10px;
  font-family: "SHN_M";
  font-weight: normal;
  font-size: 15px;
  position: relative;
}

#sec_01 form .input_wrap label::after {
  content: "";
  width: 5px;
  height: 5px;
  background: url(../img/common/star.png) no-repeat center / cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#sec_01 form .input_wrap input {
  width: 100%;
  max-width: 720px;
  height: 25px;
  font-size: 15px;
  font-family: "SHN_M";
  font-weight: normal;
  background: none;
  border: none;
}

#sec_01 form .input_wrap input[type=file] {
  height: 30px;
  position: relative;
}

#sec_01 form .input_wrap input[type=file]:after {
  content: "첨부파일은 10MB까지 등록이 가능합니다.";
  font-family: "SHN_R";
  font-weight: normal;
  font-size: 12px;
  color: #bdbdbd;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#sec_01 form .text_wrap {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #bdbdbd;
  padding: 15px 40px;
}

#sec_01 form .text_wrap label {
  display: block;
  padding-left: 10px;
  font-family: "SHN_M";
  font-weight: normal;
  font-size: 15px;
  position: relative;
}

#sec_01 form .text_wrap textarea {
  width: 100%;
  max-width: 720px;
  height: 100%;
  font-size: 15px;
  font-family: "SHN_M";
  font-weight: normal;
  background: none;
  border: none;
}

#sec_01 form .check_box {
  width: 100%;
  height: auto;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_01 form .check_box input {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

#sec_01 form .check_box label {
  font-family: "SHN_R";
  font-weight: normal;
  font-size: 20px;
}

#sec_01 form input[type=submit] {
  width: 157px;
  height: 40px;
  border: 1px solid #000;
  display: block;
  margin: 0 auto 100px;
  font-family: "SHN_M";
  font-weight: normal;
  font-size: 20px;
}

@media (max-width: 1200px) {
  #sec_01 {
    max-width: 90%;
    justify-content: center;
    flex-wrap: wrap;
  }

  #sec_01 .text {
    width: 100%;
    margin-bottom: 50px;
  }

  #sec_01 form {
    width: 100%;
  }

  #sec_01 form .input_wrap label {
    width: 30%;
  }

  #sec_01 form .input_wrap input {
    max-width: 70%;
  }

  #sec_01 form .text_wrap label {
    width: 30%;
  }

  #sec_01 form .text_wrap textarea {
    max-width: 70%;
  }
}

@media (max-width: 700px) {
  #sec_01 form .input_wrap label {
    width: 20%;
    font-size: 14px;
  }

  #sec_01 form .input_wrap input {
    max-width: 80%;
    font-size: 14px;
  }

  #sec_01 form .text_wrap label {
    width: 20%;
    font-size: 14px;
  }

  #sec_01 form .text_wrap textarea {
    max-width: 80%;
    font-size: 14px;
  }

  #sec_01 form .input_wrap {
    padding: 0 20px;
  }

  #sec_01 form .text_wrap {
    padding: 15px 20px;
  }

  #sec_01 form .input_wrap input[type=file] {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  #sec_01 form .input_wrap input[type=file]:after {
    display: none;
  }

  #sec_01 .text h2 {
    font-size: 20px;
  }

  #sec_01 .text h3 {
    font-size: 16px;
  }

  #sec_01 form .input_wrap {
    padding: 0;
  }

  #sec_01 form .input_wrap label {
    width: 30%;
    font-size: 12px;
  }

  #sec_01 form .input_wrap input {
    max-width: 70%;
    font-size: 12px;
  }

  #sec_01 form .text_wrap {
    padding: 15px 0;
  }

  #sec_01 form .text_wrap label {
    width: 30%;
    font-size: 12px;
  }

  #sec_01 form .text_wrap textarea {
    max-width: 70%;
    font-size: 12px;
  }

  #sec_01 form .check_box input {
    width: 20px;
    height: 20px;
  }

  #sec_01 form .check_box label {
    font-size: 16px;
  }

  #sec_01 form input[type=submit] {
    width: 120px;
    height: 35px;
    font-size: 16px;
  }
}