@charset "utf-8";

/* 기종별 글자 크기 초기화 */
html, body{
  -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
  -ms-text-size-adjust : none;  /* IE */
  -moz-text-size-adjust : none;  /* 파이어폭스 */
  -o-text-size-adjust : none;
}

#wrap {overflow: hidden; position: relative; margin: 0 auto;}
.container { width: 650px; margin: 0 auto; position: relative; }

/* 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: 30px 0; text-align: center;}
header .logo {display: inline-block; width: 230px;}
header .logo img {width: 100%;}

/* section1 */
.section1 {background: #ecf5fe; padding: 20px 0 0;}
.section1 .container {display: flex; flex-direction: column; align-items: center;}
.section1 .title_wrap {text-align: center;}
.section1 .title_wrap p {font-size: 30px; letter-spacing: -1.5px; color: #555; margin-bottom: 30px;}
.section1 .title_wrap h1 {width: 570px; margin-bottom: 60px;}
.section1 .title_wrap h1 img {width: 100%;}
.section1 .img_wrap img {width: 430px;}


/* section2 */
.section2 {background: #fcfcfc; padding: 40px 0 75px;}
.section2 .container {display: flex; flex-direction: column; align-items: center;}
.section2 .date_wrap {width: 100%;}
.section2 .date_wrap .title_wrap {display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 25px;}
.section2 .date_wrap .title_wrap img {width: 30px;}
.section2 .date_wrap .title_wrap p {font-size: 23px; font-weight: 500; letter-spacing: -1.5px; line-height: 1.3; color: #777; white-space: nowrap;}
.section2 .calendar_wrap {width: 100%; display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 50px;}
.section2 .calendar_wrap img {width: 160px;}
.section2 .calendar_wrap .text_wrap {display: flex; align-items: center; border: 1px solid #ddd; padding: 35px 30px; text-align: center; border-radius: 15px; background: #fff; box-sizing: border-box; gap: 50px; position: relative;}
.section2 .calendar_wrap .text_wrap::before {content: ""; width: 2px; height: 50%; background: #ddd; position: absolute; top: 50%; left: 185px; transform: translateY(-50%);}
.section2 .calendar_wrap .text_wrap h4 {font-size: 25px; font-weight: 600; color: #333; letter-spacing: -1px;}
.section2 .calendar_wrap .text_wrap p {font-size: 25px; font-weight: 500; letter-spacing: -1.5px; color: #0074e7; white-space: nowrap;}

.section2 .form_wrap {flex-grow: 1;}
.section2 .form_wrap form {display: flex; flex-direction: column; align-items: center; gap: 35px;}
.section2 .form_wrap ul {display: flex; flex-direction: column; gap: 20px; width: 100%;}
.section2 .form_wrap ul li {display: flex; align-items: center;}
.section2 .form_wrap ul li .title_label {min-width: 90px; font-size: 26px; font-weight: 600; letter-spacing: -1px; color: #333; text-align: right; margin-right: 30px;}
.section2 .form_wrap ul li .gender_wrap {display: flex; align-items: center; gap: 20px; width: 100%;}
.section2 .form_wrap ul li .gender_wrap .gender_box {display: flex; align-items: center; width: 100%;}
.section2 .form_wrap ul li .gender_wrap .gender_box input[type="radio"] {margin: 0; width: 25px; height: 25px; cursor: pointer; display: none;}
.section2 .form_wrap ul li .gender_wrap .gender_box input[type="radio"]:checked + label {background: #0074e7; color: #fff;}
.section2 .form_wrap ul li .gender_wrap .gender_box label {font-size: 26px; color: #888; cursor: pointer; border: 1px solid #ddd; width: 100%; padding: 25px 28px; border-radius: 10px; text-align: center; background: #fff;}
.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: 26px; padding: 25px 28px; border: 1px solid #ddd; border-radius: 10px; font-family: 'Pretendard'; letter-spacing: -1px; outline: none;}
.section2 .form_wrap ul li select {width: 155px; appearance: none; background: #fff url("./arrow_tel.png") no-repeat calc(100% - 33px) 50% / 25px; color: #000;}
.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: 127px; transform: translateY(-50%);}
.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; justify-content: center; align-items: center; background: #0074e7; color: #fff; text-align: center; font-size: 35px; font-weight: 500; letter-spacing: -1px; width: 100%; border-radius: 10px; padding: 30px 0; gap: 15px;}
.section2 .form_wrap .btn_submit span {font-size: 20px; font-weight: 400; opacity: .6;}
.section2 .form_wrap .btn_submit img {display: block; width: 25px;}
.section2 .form_wrap .privacy_wrap {gap: 12px; margin-left: 118px; display: flex; flex-direction: column; align-items: flex-start;}
.section2 .form_wrap .privacy_wrap .privacy_box {position: relative; display: flex; align-items: center; gap: 8px;}
.section2 .form_wrap .privacy_wrap input[type="checkbox"] {width: 25px; height: 25px; margin: 0; opacity: 0; position: absolute; top: 0; left: 0; cursor: pointer; z-index: 9;}
.section2 .form_wrap .privacy_wrap i {width: 25px; height: 25px; 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: 5px; left: 9px; width: 5px; height: 10px; 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: 22px; letter-spacing: -1px; color: #888; cursor: pointer;}
.section2 .form_wrap .privacy_wrap button {font-size: 22px; letter-spacing: -1px; color: #888;}



/* section3 */
.section3 {padding: 100px 0 0;}
.section3 .container {display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 50px;}
.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;}
.section3 .sequence_wrap ul li {text-align: center;}
.section3 .sequence_wrap ul li img {width: 75px; 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: 17px; letter-spacing: -1px; color: #999; margin-top: 40px;}



/* section4 */
.section4 {padding: 150px 0;}
.section4 .container {display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 50px;}
.section4 h2 {font-size: 45px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3;}
.section4 .applicant_wrap {width: 100%; 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: 41px; 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: 26px; font-weight: 500; letter-spacing: -1px; padding: 18px 35px; color: #333; border-radius: 5px 5px 0 0; white-space: nowrap;}
.section4 .applicant_wrap ul li .balloon p {background: #0074e7; padding: 20px 0; color: #fff; letter-spacing: -.5px; font-size: 24px; font-weight: 400; border-radius: 0 0 5px 5px; white-space: nowrap;}
.section4 .applicant_wrap ul li .balloon p b {display: block; font-size: 24px; font-weight: 500; margin-top: 8px; opacity: .8;}
.section4 .applicant_wrap ul li .dot {text-align: center;}
.section4 .applicant_wrap ul li .dot i {display: block; width: 10px; height: 10px; background: #898989; border-radius: 100%; margin: 0 auto; position: relative; z-index: 9;}
.section4 .applicant_wrap ul li .dot p {font-size: 24px; font-weight: 500; letter-spacing: -.5px; color: #666; margin-top: 12px;}


/* section_list */
.section_list {padding-bottom: 120px;}
.section_list .container {display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 50px;}
.section_list h2 {font-size: 45px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3; text-align: center;}
.section_list ul {width: 100%; display: flex; flex-direction: column; gap: 70px;}
.section_list ul li {width: 100%; background: #f7fafc; border-radius: 10px; overflow: hidden;}
.section_list ul li .top_wrap {display: flex; align-items: center; text-align: center; padding: 45px 0; box-sizing: border-box;}
.section_list ul li .top_wrap .img_wrap {width: 50%;}
.section_list ul li .top_wrap .img_wrap img {width: 200px;}
.section_list ul li .top_wrap .title_wrap {width: 50%;}
.section_list ul li .top_wrap .title_wrap span {display: block; font-size: 25px; font-weight: 500; letter-spacing: -1px; color: #9d9d9d; margin-bottom: 13px;}
.section_list ul li .top_wrap .title_wrap p {font-size: 32px; letter-spacing: -1px; color: #444; font-weight: 500;}
.section_list ul li .bottom_wrap {display: flex; align-items: center;}
.section_list ul li .bottom_wrap button {display: block; width: 50%; color: #fff; font-size: 30px; letter-spacing: -1px; padding: 22px 0;}
.section_list ul li .bottom_wrap button.check {background: #0074e7;}
.section_list ul li .bottom_wrap button.apply {background: #333;}




/* section5 */
.section5 {background: #ecf5fe; padding: 90px 0 70px;}
.section5 .container {display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; gap: 40px;}
.section5 .img_wrap img {width: 320px;}
.section5 .img_wrap h3 {font-size: 45px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3; margin-bottom: 50px;}
.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;}
