:root {
	--brandColor: #09AA55;
	--brandColor2: #16C16C;
	--brandColor3: #E7F9F0;
	--formHeight: 50px;
	--formRadius: 30px;
	--formInput: #ecf1f4;
}
a { color: inherit;	text-decoration: none; }
.container { width: 1200px; margin: 0 auto; position: relative; }
.notScroll {overflow: hidden; width: 100%; height: 100%; touch-action: none;}

.row {
	display: flex;
}
.column {
	display: flex;
	flex-direction: column;
}

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: #ffffff;}
header .container {display: flex; align-items: center; justify-content: space-between;}
header a {display: inline-block; padding: 20px 0; width: 230px;}
header a img {width: 100%;}
header .call_wrap {display: flex; align-items: center; gap: 12px;}
header .call_wrap img {width: 32px;}
header .call_wrap p {font-size: 32px; font-weight: 600; letter-spacing: -1.5px;  color: var(--brandColor);}


/* section1 */
.section1 { 
	background: url(./main_bg.png) no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	padding: 100px 0 80px;

}
.section1 .container {display: flex; align-items: center; justify-content: space-between; }


.section1 .title_wrap .des{
	display: block; font-size: 30px; font-weight: 500; color: #808080;
	position: relative;
	letter-spacing: -1.5px;
}
.section1 .title_wrap .des::before {
	content: "";
    display: block;
    width: 38%;
    height: 2px;
    background: var(--brandColor);
    position: absolute;
    top: 50%;
    left: 60%;
}
.section1 .title_wrap h2 {
	font-size: 85px; font-weight: 600; letter-spacing: -3px; color: #383838; margin-top: 20px; 
	line-height: 1.2;
}

.section1 .title_wrap h2 b {color: var(--brandColor); font-weight: 700;}

.section1 .title_wrap ul {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: repeat(2,1fr);
	gap: 15px;
	margin-top: 20px;
}
.section1 .title_wrap ul li {
	display: grid;
	align-items: center;
	justify-content: center;
	gap: 15px;
	grid-template-columns: auto 140px;
	border: 1px solid var(--brandColor);
	border-radius: 10px;
	background: #fff;
	padding: 30px 25px;
}
.section1 .title_wrap ul li h4 {
	font-size: 30px;
	color: var(--brandColor);
	font-weight: 600;
	letter-spacing: -1.5px;
}
.section1 .title_wrap ul li p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -1.5px;
	line-height: 1.5;
}
.section1 .title_wrap ul li .hash {

}
.section1 .title_wrap ul li p span {
	display: inline-block;
	color: #383838;
}
.section1 .title_wrap ul li p span:nth-of-type(2) {
	margin-left: 3px;
}
/* form_section */
.section1 .form_wrap {
	border: 1px solid var(--brandColor);
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
	width: 45%;
}
.section1 .form_wrap h3 {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	margin: 50px auto 30px auto;
	letter-spacing: -1.5px;
}
.section1 .form_wrap .input_container {
	margin: 30px 40px;
}


.section1 .form_wrap ul {display: flex; flex-direction: column; gap: 20px;}
.section1 .form_wrap ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}
.section1 .form_wrap ul li .title {
    min-width: 65px;
    font-size: 20px;
    font-weight: 500;
	text-align: end;
	letter-spacing: -2px;
}
.section1 .form_wrap ul li .birth_wrap, .section1 .form_wrap ul li .name_wrap, .section1 .form_wrap ul li .tel_wrap {
    display: flex;
    gap: 10px;
    flex: 1;
    height: var(--formHeight);
}

.section1 .form_wrap .name_wrap {display: flex; align-items: center; gap: 20px;}
.section1 .form_wrap .name_wrap .gender_wrap {width: 200px; display: flex; align-items: center; gap: 30px;}
.section1 .form_wrap .name_wrap .gender_wrap .radio_wrap {display: flex; align-items: center; gap: 5px;}
.section1 .form_wrap .name_wrap .gender_wrap input[type="radio"] {display: none;}

.section1 .form_wrap ul li input[type=radio] {
    display: none;
}
.section1 .form_wrap ul li .sex_cover {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.section1 .form_wrap ul li .sex_cover .sex_box label {
	display: inline-block;
	height: 100%;
	width: var(--formHeight);
	line-height: var(--formHeight);
	text-align: center;
	cursor: pointer;
}
.section1 .form_wrap ul li input[type=radio]:checked + label {
    color: #fff;
    font-weight: 500;
    box-sizing: border-box;
    border-radius: var(--formRadius);
	background: var(--brandColor);
}
.section1 .form_wrap ul li input[type=radio]:not(:checked) + label {
    color: #383838;
    box-sizing: border-box;
}


.section1 .form_wrap ul li .sex_cover .sex_box label, .section1 .form_wrap ul li input, .section1 .form_wrap ul li select {
    border: none;
    font-size: 18px;
    outline: none;
    background: #eee;
    border-radius: var(--formRadius);
	width: 100%; height: var(--formHeight); 
	letter-spacing: -1px; 
	padding: 0 23px; 
	outline: none; 
	font-family: 'Pretendard'; 
	color: #616161;  
}

.section1 .form_wrap .tel_wrap {display: flex; align-items: center; gap: 5px;}

.section1 .form_wrap .tel_wrap select {
	width: 120px; height: var(--formHeight); appearance: none; font-family: 'Pretendard'; font-size: 18px; font-weight: 500; padding: 0 30px;  outline: none; color: #333; background: #eee url("../Img/arrow_tel.png") no-repeat calc(100% - 23px) 50%;

}
.section1 .form_wrap .privacy_wrap {display: flex; align-items: center; gap: 10px;
 margin: 30px 0 40px 0;  position: relative; padding-left: 85px}

.section1 .form_wrap .privacy_wrap input[type="checkbox"] {    
	width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translate(0%, -50%);
    z-index: 2;
    cursor: pointer;
    background: #E1E1E1;
}

.section1 .form_wrap .privacy_wrap i {
	width: 20px; height: 20px; 
	background: #eee;
	position: relative;
	cursor: pointer;
}

.section1 .form_wrap .privacy_wrap input[type="checkbox"]:checked + i::before {content: ""; border: solid #bbb; border-width: 0 3px 3px 0; position: absolute; top: 3px; left: 6px; width: 5px; height: 9px; transform: rotate(45deg);}

.section1 .form_wrap .privacy_wrap label {font-size: 18px; letter-spacing: -1px; color: #616161; cursor: pointer;}

.section1 .form_wrap .privacy_wrap button {font-size: 18px;  letter-spacing: -1px; color: #616161;    line-height: 0;}
.section1 .form_wrap .btn_submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--brandColor);
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
    outline: none;
    padding: 25px 0;
}
.section1 .form_wrap .btn_submit img {width: 36px;}


/* section2 */
.section2 {background: #fff; padding: 120px 0 80px;}
.section2 .container .row {
	justify-content: space-between;
	align-items: center;
}
.section2 .container .row ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.section2 .container .row ul li {
	display: flex;
	align-items: center;
	gap: 25px;
	background: #f7f7f7;
	padding: 40px 55px;
	box-sizing: border-box;
	border-radius: 10px;
}
.section2 .container .row ul li img {
	width: 70px;
}
.section2 .container .row ul li .title_wrap p {
	font-size: 27px;
	font-weight: 600;
	letter-spacing: -1px;
	color: #00a449;
	margin-bottom: 12px;
}
.section2 .container .row ul li .title_wrap span {
	display: block;
	font-size: 22px;
	letter-spacing: -1px;
	line-height: 1.3;
	color: #333;
}



.tit_box h3 {
    line-height: 1.2;
    font-size: 48px;
    letter-spacing: -3px;
    font-weight: 600;
		color: #333;
}
.tit_box h3 b {
	display: inline-block;
	color: var(--brandColor2);
	font-weight: 700;
}
.tit_box p {
    color: #616161;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -1.5px;
    font-weight: 500;
    margin-top: 20px;
}
.section2 .cont {
	background: var(--brandColor2);
	border-radius: 15px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding: 0 110px;
    box-sizing: border-box;
	margin-top: 120px;
}
.section2 .cont .tit_box {
	width: 100%;
	border-bottom: 2px solid #ffffff80;
}
.section2 .cont .tit_box h3{
	color: #fff;
	text-align: center;
	margin: 20px 0 50px 0;
}
.section2 .cont .tit_box p {
	color: #ffffff80;
	text-align: center;
	margin-top: 70px;
	font-size: 28px;
}
.section2 .cont .cont_info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.section2 .cont .cont_info img {
	width: 180px;
}
.section2 .cont .txt_box {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.section2 .cont .txt_box p{
	font-size: 44px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    letter-spacing: -2px;
	font-family: 'ONE-Mobile-Title';
}
.section2 .cont .txt_box p b{
	display: inline-block;
	padding: 0 10px;
	background: #1A8953;
	border-radius: 5px;
	margin-left: 10px;
	font-family: 'ONE-Mobile-Title';
}
.section2 .cont .txt_box span{
	display: block;
	color: #ffffffc2;
	letter-spacing: -1px;
	font-weight: 300;
}

/* section3 */
.section3 {padding: 60px 0;}
.section3 .title_wrap {margin-bottom: 30px;}
.section3 .title_wrap h2 {font-size: 48px; font-weight: 600; letter-spacing: -3px; margin-bottom: 25px; color: #333;}
.section3 .title_wrap p {font-size: 30px; font-weight: 500; letter-spacing: -2px; color: #333;}
.section3 .slide_wrap {overflow: hidden;}
.section3 .slide_wrap ul {display: flex; align-items: center; height: fit-content !important;}
.section3 .slide_wrap ul li {border-radius: 10px; overflow: hidden;}
.section3 .slide_wrap ul li .text_wrap {background: #f7f7f7; padding: 43px 0; box-sizing: border-box; text-align: center;}
.section3 .slide_wrap ul li .text_wrap p {font-size: 32px; font-weight: 600; letter-spacing: -1px; color: #09aa55; margin-bottom: 20px;}
.section3 .slide_wrap ul li .text_wrap span {font-size: 34px; font-weight: 500; letter-spacing: -2px; color: #333;}
.section3 .slide_wrap ul li button {width: 100%; display: block; background: #09aa55; padding: 20px 0; font-size: 28px; color: #fff; letter-spacing: -1px;}



/* bottom_form_section */
.bottom_form_section {padding: 70px 0 130px;}
.bottom_form_section .container {display: flex; align-items: center; justify-content: space-between; border: 1px solid #ddd; border-radius: 10px; box-sizing: border-box; background: #fff; padding: 45px 90px; position: relative;}
.bottom_form_section .text_wrap span {display: block; font-size: 22px; font-weight: 500; letter-spacing: -1px; color: #777; margin-bottom: 10px;}
.bottom_form_section .text_wrap h2 {font-size: 40px; font-weight: 600; line-height: 1.2; letter-spacing: -2px; color: #353535; margin-bottom: 30px; color: #09aa55;}
.bottom_form_section .text_wrap p {display: flex; align-items: center; font-size: 18px; font-weight: 500; letter-spacing: -1px; color: #777;}
.bottom_form_section .text_wrap p img {width: 23px; margin-left: 25px;}

.bottom_form_section .form_wrap .input_container {width: 400px;}
.bottom_form_section .form_wrap form {display: flex; align-items: center; gap: 40px; padding-left: 48px; border-left: 1px solid #ccc;}
.bottom_form_section .form_wrap ul {display: flex; flex-direction: column; gap: 10px;}
.bottom_form_section .form_wrap input[type="text"],
.bottom_form_section .form_wrap input[type="tel"] {width: 100%; height: 50px; font-size: 20px; font-weight: 500; letter-spacing: -1px; padding: 0 20px; outline: none; border: 1px solid #999; font-family: 'Pretendard'; color: #333;}
.bottom_form_section .form_wrap .name_wrap {display: flex; align-items: center; gap: 20px;}
.bottom_form_section .form_wrap .name_wrap .gender_wrap {width: 200px; display: flex; align-items: center; gap: 30px;}
.bottom_form_section .form_wrap .name_wrap .gender_wrap .radio_wrap {display: flex; align-items: center; gap: 5px;}

.bottom_form_section .form_wrap .name_wrap .gender_wrap input {
	display: none;
}
.bottom_form_section .form_wrap .name_wrap .gender_wrap .checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #666;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    vertical-align: text-top;
    margin-right: 5px;
}
.bottom_form_section .form_wrap .name_wrap .gender_wrap input:checked + label::before{
    display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 13px;
	height: 13px;
	background: var(--brandColor);
	border-radius: 50%;
}
.bottom_form_section .form_wrap .name_wrap .gender_wrap label {font-size: 22px; font-weight: 500; color: #777;}

.bottom_form_section .form_wrap .tel_wrap {display: flex; align-items: center; gap: 5px;}
.bottom_form_section .form_wrap .tel_wrap select {width: 120px; height: 50px; appearance: none; font-family: 'Pretendard'; font-size: 20px; font-weight: 500; padding: 0 20px; border: 1px solid #999; outline: none; color: #333; background: url("../Img/arrow_tel.png") no-repeat calc(100% - 20px) 50%;}
.bottom_form_section .form_wrap .privacy_wrap {display: flex; align-items: center; gap: 10px; margin-top: 15px; position: relative;}
.bottom_form_section .form_wrap .privacy_wrap input[type="checkbox"] {width: 20px; height: 20px; margin: 0; opacity: 0; position: absolute; top: 50%; left: 1px; transform: translateY(-50%); z-index: 2; cursor: pointer;}
.bottom_form_section .form_wrap .privacy_wrap i {width: 20px; height: 20px; border: 1px solid #999; border-radius: 100%; position: relative;}
.bottom_form_section .form_wrap .privacy_wrap input[type="checkbox"]:checked + i::before {content: ""; border: solid var(--brandColor); border-width: 0 3px 3px 0; position: absolute; top: 3px; left: 6px; width: 5px; height: 9px; transform: rotate(45deg);}
.bottom_form_section .form_wrap .privacy_wrap label {font-size: 18px; font-weight: 500; letter-spacing: -1px; color: #777; cursor: pointer;}
.bottom_form_section .form_wrap .privacy_wrap button {font-size: 18px; font-weight: 500; letter-spacing: -1px; color: #777; text-decoration: underline; text-underline-position : under; line-height: 0;}
.bottom_form_section .form_wrap .btn_submit {display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: #09aa55; width: 200px; height: 205px; color: #fff; font-size: 34px; font-weight: 600; letter-spacing: -1px; line-height: 1.2; border-radius: 20px; outline: none;}
.bottom_form_section .form_wrap .btn_submit img {width: 36px;}




/* section6 */
.section6 {background: #505050; padding: 60px 0;}
.section6 h3 {margin-bottom: 20px; font-size: 25px; font-weight: 700; letter-spacing: -1px; color: #fff;}
.section6 ul li {color:#aaa; position:relative;font-size: 17px;line-height: 1.5;margin-bottom: 10px; letter-spacing: -.5px;}
.section6 ul li:last-child {margin-bottom: 0;}
.section6 p{font-size: 15px;line-height: 1.5;color: #666; letter-spacing: -.5px; margin-top: 25px;}


/* 푸터 */
.footer { background: #282a29; box-sizing: border-box; padding: 35px 0;}
.footer_inner {display: flex; flex-direction: column; gap: 8px; width: 1200px; margin: 0 auto;}
.footer p {color: #999; font-size: 14px; line-height: 1.4; letter-spacing: -.2px;}
.footer button {font-size: 15px; color: #999; font-weight: 600; margin-top: 15px; width: fit-content;}

