a {
  color: #333;
  text-decoration: none;
}
.container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.notScroll {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  touch-action: none;
}

/* placeholder 초기화 */
input::-webkit-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
input:-ms-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
textarea::-webkit-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
textarea:-ms-input-placeholder {
  color: #aaa;
  font-style: normal;
  font-weight: 100;
}
input::placeholder {
  font-weight: 400;
  color: #aaa;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 9999s ease-out;
  -webkit-box-shadow: 0 0 0px 1000px none inset !important;
}

/* header */
header {
  background: #ecf5fe;
  padding: 20px 0;
}
header .logo {
  display: inline-block;
  width: 200px;
}
header .logo img {
  width: 100%;
}

/* section1 */
.section1 {
  background: #ecf5fe;
  padding: 10px 0 0;
}
.section1 .title_container {
  display: flex;
  justify-content: space-between;
}
.section1 .title_wrap {
  padding-top: 35px;
  text-align: center;
}
.section1 .title_wrap p {
  font-size: 32px;
  letter-spacing: -1.5px;
  color: #555;
  margin-bottom: 30px;
}
.section1 .title_wrap h1 {
  width: 650px;
}
.section1 .title_wrap h1 img {
  width: 100%;
}
.section1 .img_wrap img {
  width: 500px;
}

/* section2*/
.section2 {
  background: #fcfcfc;
  padding: 45px 0;
}
.section2 .container {
  display: flex;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
}
.section2 .date_wrap {
  width: fit-content;
  min-width: fit-content;
  padding-right: 25px;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 280px;
}
.section2 .date_wrap .title_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.section2 .date_wrap .title_wrap img {
  width: 20px;
}
.section2 .date_wrap .title_wrap p {
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.3;
  color: #777;
}
.section2 .date_wrap .calendar_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section2 .date_wrap .calendar_wrap img {
  width: 160px;
}
.section2 .date_wrap .calendar_wrap .text_wrap {
  border: 1px solid #ddd;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  background: #fff;
}
.section2 .date_wrap .calendar_wrap .text_wrap h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  letter-spacing: -1px;
  padding-bottom: 13px;
  border-bottom: 1px solid #ddd;
}
.section2 .date_wrap .calendar_wrap .text_wrap p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0074e7;
  padding-top: 13px;
  white-space: nowrap;
}

.section2 .form_wrap {
  padding-left: 30px;
  flex-grow: 1;
}
.section2 .form_wrap form {
  display: flex;
  align-items: center;
  gap: 25px;
}
.section2 .form_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.section2 .form_wrap ul li {
  display: flex;
  align-items: center;
}
.section2 .form_wrap ul li .title_label {
  min-width: 75px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #333;
  text-align: right;
  margin-right: 20px;
}
.section2 .form_wrap ul li .gender_wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 32px;
}
.section2 .form_wrap ul li .gender_wrap .gender_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section2 .form_wrap ul li .gender_wrap .gender_box input[type="radio"] {
  margin: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.section2 .form_wrap ul li .gender_wrap .gender_box label {
  font-size: 22px;
  color: #888;
  cursor: pointer;
}
.section2 .form_wrap ul li input[type="text"],
.section2 .form_wrap ul li input[type="tel"],
.section2 .form_wrap ul li select {
  width: 100%;
  font-size: 22px;
  padding: 16px 22px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: "Pretendard";
  letter-spacing: -1px;
  outline: none;
}
.section2 .form_wrap ul li select {
  width: 100px;
  appearance: none;
  background: #fff url("./arrow_tel.png") no-repeat calc(100% - 10px) 50% / 20px;
}
.section2 .form_wrap ul li .tel_box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100%;
  position: relative;
}
.section2 .form_wrap ul li .tel_box::before {
  content: "";
  width: 1px;
  height: 60%;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 86px;
  transform: translateY(-50%);
}
.section2 .form_wrap ul li.name_wrap input[type="text"] {
  width: 200px;
}
.section2 .form_wrap ul li.tel_wrap input[type="tel"],
.section2 .form_wrap ul li.tel_wrap select {
  border: 0;
}
.section2 .form_wrap .btn_submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0074e7;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  width: 100%;
  height: 205px;
  border-radius: 15px;
}
.section2 .form_wrap .btn_submit img {
  display: block;
  width: 35px;
  margin-bottom: 12px;
}
.section2 .form_wrap .privacy_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  margin-left: 95px;
  gap: 10px;
}
.section2 .form_wrap .privacy_wrap .privacy_box {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.section2 .form_wrap .privacy_wrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 9;
}
.section2 .form_wrap .privacy_wrap i {
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.section2 .form_wrap .privacy_wrap input[type="checkbox"] + i::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid white;
  transform: rotate(45deg);
}
.section2 .form_wrap .privacy_wrap input[type="checkbox"]:checked + i::before {
  border: solid #0074e7;
  border-width: 0 3px 3px 0;
}
.section2 .form_wrap .privacy_wrap label {
  font-size: 18px;
  letter-spacing: -1px;
  color: #888;
  cursor: pointer;
}
.section2 .form_wrap .privacy_wrap button {
  font-size: 18px;
  letter-spacing: -1px;
  color: #888;
}

/* section3 */
.section3 {
  padding: 80px 0 40px;
}
.section3 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section3 h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #1e1e1e;
}
.section3 .sequence_wrap ul {
  display: grid;
  grid-template-columns: 150px 20px 150px 20px 150px;
  gap: 30px 25px;
  margin-right: 40px;
}
.section3 .sequence_wrap ul li {
  text-align: center;
}
.section3 .sequence_wrap ul li img {
  width: 85px;
  margin-bottom: 20px;
}
.section3 .sequence_wrap ul li.arrow {
  padding-top: 20px;
}
.section3 .sequence_wrap ul li.arrow img {
  width: 20px;
  margin-bottom: 0;
}
.section3 .sequence_wrap ul li p {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: #777;
  white-space: nowrap;
}
.section3 .sequence_wrap .notice {
  text-align: right;
  font-size: 15px;
  letter-spacing: -1px;
  color: #999;
  margin-top: 30px;
}

/* section4 */
.section4 {
  padding: 80px 0;
}
.section4 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section4 h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #1e1e1e;
  line-height: 1.3;
}
.section4 .applicant_wrap {
  width: 700px;
  overflow: hidden;
  position: relative;
}
.section4 .applicant_wrap ul {
  display: flex;
  align-items: center;
}
.section4 .applicant_wrap::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #e9e9e9;
  position: absolute;
  bottom: 28px;
  left: 0;
}
.section4 .applicant_wrap ul li .balloon {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.section4 .applicant_wrap ul li .balloon::before {
  content: "";
  width: 18px;
  height: 10px;
  background: url("../Img/con2_txt.png") no-repeat 0 0 / contain;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section4 .applicant_wrap ul li .balloon span {
  background: #ecf5fe;
  display: block;
  font-size: 16px;
  letter-spacing: -1px;
  padding: 12px 35px;
  color: #333;
  border-radius: 5px 5px 0 0;
  white-space: nowrap;
}
.section4 .applicant_wrap ul li .balloon p {
  background: #0074e7;
  padding: 12px 0;
  color: #fff;
  letter-spacing: -0.5px;
  font-size: 15px;
  font-weight: 300;
  border-radius: 0 0 5px 5px;
  white-space: nowrap;
}
.section4 .applicant_wrap ul li .balloon p b {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.8;
}
.section4 .applicant_wrap ul li .dot {
  text-align: center;
}
.section4 .applicant_wrap ul li .dot i {
  display: block;
  width: 7px;
  height: 7px;
  background: #898989;
  border-radius: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
.section4 .applicant_wrap ul li .dot p {
  font-size: 15px;
  letter-spacing: -0.5px;
  color: #666;
  margin-top: 10px;
}

/* section_list */
.section_list {
  background: #fff;
  padding: 70px 0;
}
.section_list h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #1e1e1e;
  line-height: 1.3;
  margin-bottom: 55px;
}
.section_list ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.section_list ul li {
  background: #f7fafc;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 180px;
  overflow: hidden;
}
.section_list ul li .img_wrap {
  width: 510px;
  text-align: center;
}
.section_list ul li .img_wrap img {
  width: 200px;
}
.section_list ul li .title_wrap {
  text-align: center;
  width: 300px;
}
.section_list ul li .title_wrap span {
  display: block;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #9d9d9d;
  margin-bottom: 14px;
}
.section_list ul li .title_wrap p {
  font-size: 32px;
  letter-spacing: -1px;
  color: #444;
  font-weight: 500;
}
.section_list ul li .button_wrap {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  height: 100%;
}
.section_list ul li .button_wrap button {
  font-size: 30px;
  letter-spacing: -1px;
  height: 50%;
  padding: 0 50px;
  color: #fff;
}
.section_list ul li .button_wrap button.check {
  background: #0074e7;
}
.section_list ul li .button_wrap button.apply {
  background: #333;
}

/* section5 */
.section5 {
  background: #ecf5fe;
  padding: 70px 0;
}
.section5 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section5 .img_wrap {
  margin-left: 65px;
}
.section5 .img_wrap img {
  width: 420px;
}
.section5 .text_wrap {
  margin-right: 90px;
}
.section5 .text_wrap h3 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #1e1e1e;
  line-height: 1.3;
  margin-bottom: 20px;
}
.section5 .text_wrap ul li {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
.section5 .text_wrap ul li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.section5 .text_wrap ul li img {
  width: 35px;
  margin-right: 18px;
}
.section5 .text_wrap ul li p {
  font-size: 25px;
  letter-spacing: -2px;
  font-weight: 500;
  color: #555;
}

/* section6 */
.section6 {
  background: #0074e7;
}
.section6 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section6 .text_wrap {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 0;
  margin-left: 180px;
}
.section6 .text_wrap img {
  width: 140px;
  position: absolute;
  left: 0;
  top: -15px;
}
.section6 .text_wrap h4 {
  font-size: 30px;
  letter-spacing: -1px;
  color: #fff;
  padding-left: 160px;
}
.section6 .btn_check {
  display: flex;
  align-items: center;
  background: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -2px;
  padding: 15px 55px;
  box-sizing: border-box;
  border-radius: 50px;
  color: #1e1e1e;
  gap: 18px;
}
.section6 .btn_check img {
  width: 30px;
}

/* section7 */
.section7 {
  background: #505050;
  padding: 50px 0;
  width: 100%;
}
.section7 h3 {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}
.section7 ul li {
  color: #aaa;
  position: relative;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.section7 ul li:last-child {
  margin-bottom: 0;
}
.section7 p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
