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: #f9f9f9; padding: 30px 0 20px;}
header .logo {display: inline-block; width: 170px;}
header .logo img {width: 100%;}


/* section1 */
.section1 {background: #f9f9f9;}
.section1 .container {display: flex; gap: 210px;}
.section1 .title_wrap {padding-top: 35px; text-align: center;}
.section1 .title_wrap h1 {width: 550px;}
.section1 .title_wrap h1 img {width: 100%;}
.section1 .img_wrap {position: relative; margin-top: 30px;}
.section1 .img_wrap .phone {width: 380px;}
.section1 .img_wrap .logo {width: 580px; position: absolute; top: 55%; left: 35%; transform: translate(-50%, -50%); animation: float 3s ease-in-out infinite;}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}


/* section2*/
.section2 {background: #124aa9; padding: 45px 0;}
.section2 .container {display: flex; align-items: center; padding: 0 30px; box-sizing: border-box;}
.section2 .img_wrap {border-right: 1px solid #ddd; padding-right: 50px; box-sizing: border-box;}
.section2 .img_wrap img {width: 300px;}

.section2 .form_wrap {padding-left: 40px; padding-right: 40px; 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: 20px; font-weight: 600; letter-spacing: -1px; color: #fff; 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; position: relative;}
.section2 .form_wrap ul li .gender_wrap .gender_box input[type="radio"] {margin: 0; width: 25px; height: 25px; cursor: pointer; position: absolute; opacity: 0; z-index: 9;}
.section2 .form_wrap ul li .gender_wrap .gender_box label {font-size: 20px; color: #fff; cursor: pointer;}
.section2 .form_wrap ul li .gender_wrap .gender_box i {width: 24px; height: 24px; border: 2px solid #fff; border-radius: 100%; position: relative;}
.section2 .form_wrap ul li .gender_wrap .gender_box input[type="radio"]:checked + i::after {content: ""; width: 16px; height: 16px; background: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 100%;}
.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: 20px; padding: 12px 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; background: #fff; 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: #ff7a17; color: #fff; text-align: center; font-size: 33px; font-weight: 600; letter-spacing: -1px; width: 100%; height: 240px; border-radius: 15px;}
.section2 .form_wrap .btn_submit img {display: block; width: 50px; margin-top: 15px;}
.section2 .form_wrap .privacy_wrap {gap: 8px; margin-top: 10px; margin-left: 95px; 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 #ff7a17; border-width: 0 3px 3px 0;}
.section2 .form_wrap .privacy_wrap label {font-size: 18px; letter-spacing: -1px; color: #fff; cursor: pointer;}
.section2 .form_wrap .privacy_wrap button {font-size: 18px; letter-spacing: -1px; color: #fff;}

/* section3 */
.section3 {padding: 160px 0 190px;}
.section3 .container {display: flex; align-items: center; justify-content: space-between;}
.section3 .title_wrap h2 {font-size: 54px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3; margin-bottom: 25px;}
.section3 .title_wrap h2 b {color: #124aa9;}
.section3 .title_wrap p {font-size: 29px; font-weight: 500; letter-spacing: -1px; line-height: 1.4; color: #444;}
.section3 img {width: 560px;}


/* section4 */
.section4 {padding: 0 0 160px;}
.section4 .container {display: flex; align-items: center; justify-content: space-between;}
.section4 .title_wrap h2 {font-size: 54px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3; margin-bottom: 25px;}
.section4 .title_wrap h2 b {color: #124aa9;}
.section4 .title_wrap p {font-size: 29px; font-weight: 500; letter-spacing: -1px; line-height: 1.4; color: #444; margin-bottom: 25px;}
.section4 .title_wrap span {display: block; font-size: 15px; letter-spacing: -1px; line-height: 1.4; color: #666;}
.section4 img {width: 560px;}


/* section5 */
.section5 {background: #f7f8f9; padding: 115px 0 0;}
.section5 h2 {font-size: 54px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3; margin-bottom: 50px; text-align: center;}
.section5 h2 b {color: #124aa9;}
.section5 .content_wrap {display: flex; align-items: center; justify-content: center; gap: 80px;}
.section5 .content_wrap > img {width: 400px;}

.section5 .content_wrap .list_wrap ul {display: flex; flex-direction: column; gap: 35px; margin-bottom: 50px;}
.section5 .content_wrap .list_wrap ul li .title_box {display: flex; align-items: center; gap: 10px; margin-bottom: 16px;}
.section5 .content_wrap .list_wrap ul li .title_box i {background: #124aa9; border-radius: 100%; font-size: 17px; font-weight: 500; color: #fff; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;}
.section5 .content_wrap .list_wrap ul li .title_box h4 {font-size: 30px; font-weight: 600; letter-spacing: -1px; color: #1a1a1a; padding-top: 5px;}
.section5 .content_wrap .list_wrap ul li .content_box {position: relative; border-left: 5px solid #ebeef3; line-height: 30px; margin-left: 10px;}
.section5 .content_wrap .list_wrap ul li .content_box p {font-size: 24px; font-weight: 500; letter-spacing: -1px; color: #515151; padding-left: 25px;}




/* section6 */
.section6 {padding: 240px 0 120px;}
.section6 .container {width: auto;}
.section6 .title_wrap {text-align: center; margin-bottom: 70px;}
.section6 .title_wrap h2 {font-size: 54px; font-weight: 600; letter-spacing: -2px; color: #1e1e1e; line-height: 1.3; margin-bottom: 25px;}
.section6 .title_wrap h2 b {color: #124aa9;}
.section6 .title_wrap p {font-size: 29px; font-weight: 500; letter-spacing: -1px; line-height: 1.4; color: #444;}

.section6 .review_wrap {display: flex; flex-direction: column; gap: 30px;}
.section6 .review_wrap .slide_wrap {overflow: hidden;}
.section6 .review_wrap .slide_wrap ul {height: auto !important; transition-timing-function: linear !important;}
.section6 .review_wrap .slide_wrap ul li {width: fit-content !important; border: 1px solid #ddd; border-radius: 20px; padding: 30px 40px; box-sizing: border-box; white-space: nowrap; height: 180px !important; font-size: 23px; font-weight: 500; letter-spacing: -1px; line-height: 1.5; color: #444; direction: ltr; text-align: left !important;}
.section6 .review_wrap .slide_wrap ul li img {display: block; width: 18px; margin-bottom: 10px;}


/* section7 */
.section7 {background: #fff;padding: 50px 0;width:100%; border-top: 1px solid #ccc;}
.section7 ul li {color:#333; position:relative;font-size: 14px;line-height: 1.8; padding-left: 12px;}
.section7 ul li:last-child {margin-bottom: 0;}
.section7 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #444;
  border-radius: 100%;
  position: absolute;
  top: 48%;
  left: 0;
  transform: translateY(-50%);
}
.section7 p {font-size: 16px;line-height: 1.5;color: #666;}