/*---common css---*/

:root {

	/*container*/
	--main-width: 92%;
	--main-container: 1760px;
	--main-section: 150px;
	--section-container: 1400px;

	/*margin*/
	--hd-height: 150px;
	--margin-zero: 0px;

	/*color*/
	--color-green: #06563f;
	--color-on: #0e6b50;

	/*font*/
	--font-eng: 'Montserrat', sans-serif;

	/*font-size*/
	--font-size-14: .875rem;
	--font-size-17: 1.0625rem;
	--font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
	--font-size-22: 1.375rem;
	--font-size-24: 1.5rem;
    --font-size-28: 1.75rem;
	--font-size-30: 1.875rem;
	--font-size-40: 2.5rem;
	--font-size-50: 3.125rem;

	/*font-weight*/
	--font-l: 100;
	--font-r: 400;
	--font-m: 500;
	--font-sb: 600;
	--font-b: 700;
	--font-eb: 700;
	--font-bl: 900;

	/*font-stroke*/
	--font-350: 0.015em;	
}

/*팝업 (모바일)*/
@media (max-width: 800px) {
#hd_pop { background: #fff; }
.hd_pops { left: 20px !important; right: 20px !important;  background: #fff; }
.hd_pops_con { width: 100% !important; height: auto !important; background: #fff; }
.hd_pops_con img { width: 100% !important; height: auto !important; }
} 
/*//팝업 (모바일)*/


/*container*/
.sub_container{margin-top: var(--hd-height);}

@media screen and (max-width: 1480px){

	:root {

		/*container*/
		--main-section: 125px;

		/*margin*/
		--hd-height: 145px;
	}
}

@media screen and (max-width: 1080px){

	:root {

		/*container*/
		--main-section: 100px;

		/*margin*/
		--hd-height: 75px;
	}
}

/*container*/
.main_container{width: var(--main-width);margin: 0 auto;max-width: var(--main-container);}
.main_section{padding: var(--main-section) 0;}
.section_container{width: var(--main-width);margin: 0 auto;max-width: var(--section-container);}

/*margin*/
.pt_0{padding-top: var(--margin-zero);}

/*font-size*/
.fs_14{font-size: var(--font-size-14);}
.fs_17{font-size: var(--font-size-17);}
.fs_18{font-size: var(--font-size-18);}
.fs_20{font-size: var(--font-size-20);}
.fs_22{font-size: var(--font-size-22);}
.fs_24{font-size: var(--font-size-24);}
.fs_28{font-size: var(--font-size-28);}
.fs_30{font-size: var(--font-size-30);}
.fs_40{font-size: var(--font-size-40);}
.fs_50{font-size: var(--font-size-50);}

/*font-weight*/
.font_l{font-weight: var(--font-l);}
.font_r{font-weight: var(--font-r);}
.font_m{font-weight: var(--font-m);}
.font_sb{font-weight: var(--font-sb);}
.font_b{font-weight: var(--font-b);}
.font_eb{font-weight: var(--font-eb);}
.font_bl{font-weight: var(--font-bl);}

.font_350{-webkit-text-stroke: var(--font-350);}

/*common title*/
.title_wrap h3{text-align: center;line-height: .9;}
.title_left h3{text-align: left;}

.title_flex{display: flex;justify-content: space-between;align-items: center;}

.title_sub{margin-top: 45px;}
.title_sub>p{margin-bottom: 9px;}
.title_sub>span{display: block;margin-bottom: 45px;line-height: 165%; width: 80%; }
.title_sub>span>p { word-break: keep-all; }

.board_title{margin-bottom: 50px;}

@media screen and (max-width: 1080px){

	#k_header { height: var(--hd-height)!important; }
	
	.title_wrap h3{font-size: 2.8rem;}

	.title_sub{margin-top: 36px;}
	.title_sub span{font-size: 1rem;}
}

@media screen and (max-width: 720px){

	.title_wrap h3{font-size: 25px;}

	.title_flex{display: block;}

	.title_sub{margin-top: 19px;}
	.title_sub p{font-size: 15px;margin-bottom: 7px;}
	.title_sub span{font-size: 11px;}
    
    .title_sub>span{margin: 0 auto 45px; }
}

/*common link button*/
.common_link a{display: inline-block;padding: 0 43px;line-height: 58px;border: 1px solid #000;border-radius: 0 22px 0 22px;transition: all .25s ease;}
.common_link a:hover{border-color: var(--color-green);background-color: var(--color-green);color: #FFF;}
/*.common_link_green a{border-color: var(--color-green);background-color: var(--color-green);color: #FFF;}*/

@media screen and (max-width: 1480px){

	.common_link a{padding: 0 36px;line-height: 50px;}
}

@media screen and (max-width: 720px){

	.common_link{text-align: center;}
	.common_link a{padding: 0 27px;line-height: 38px;font-size: 11px;border-radius: 0 10px 0 10px;}
}

/*common motion*/
.common_trigger .common_motion{transform: translateY(25px);opacity: 0;transition: transform .8s ease, opacity .4s;}
.common_trigger.on .common_motion{transform: translateY(0);opacity: 1;}

.k_delay_01{transition-delay: .2s !important;}
.k_delay_02{transition-delay: .4s !important;}
.k_delay_03{transition-delay: .6s !important;}
.k_delay_04{transition-delay: .8s !important;}
.k_delay_05{transition-delay: 1s !important;}
.k_delay_06{transition-delay: 1.2s !important;}
.k_delay_07{transition-delay: 1.4s !important;}
.k_delay_08{transition-delay: 1.6s !important;}
.k_delay_09{transition-delay: 1.8s !important;}
.k_delay_10{transition-delay: 2s !important;}
.k_delay_11{transition-delay: 2.2s !important;}

/*---header---*/
#k_header{position: fixed;top: 0;left: 0;width: 100%;height: var(--hd-height);background-color: #FFF;z-index: 1000;}
#k_header.scroll_on .hd_gnb>ul>li { width: 199px; }

.hd_top{display: flex;justify-content: center;align-items: flex-end;height: 75px!important;}
.hd_logo{margin-bottom: 21px; display: block; height: auto; }
.hd_logo img{display: block; max-width: 100%!important; padding-top: 55px!important; }
.hd_gnb>ul>li::after { display: none; }

.hd_btm{display: flex;justify-content: space-between;align-items: center;height: 75px;position: relative;}

.hd_btn{width: 25px;height: 100%;position: relative;z-index: 30;transition: width .2s ease;}
.hd_btn span{position: absolute;top: 36.5px;left: 0;width: 100%;height: 2px;background-color: #000;transition: all .45s ease;}
.hd_btn span:nth-child(1){transform: translateY(-10px);}
.hd_btn span:nth-child(3){transform: translateY(10px);}

.hd_btn.open{width: 35px;}
.hd_btn.open span{background-color: #FFF;}
.hd_btn.open span:nth-child(2){opacity: 0;}
.hd_btn.open span:nth-child(1){transform: rotate(45deg);}
.hd_btn.open span:nth-child(3){transform: rotate(-45deg);}

.hd_rgt{display: flex;align-items: center;justify-content: center;}
.hd_member{display: flex;align-items: center;justify-content: center;gap: 22px;margin-right: 31px;}
.hd_member>li{position: relative;}
.hd_member>li>a{position: relative;z-index: 10;}
.hd_member img{display: block;}

/*sns*/
.sns_2dapth{position: absolute;top: -13px;left: calc( 50% + 1px );transform: translateX(-50%);width: 46px;background-color: #FFF;padding-top: 40px;padding-bottom: 10px;border-radius: 54px;z-index: 5;display: none;
	box-shadow: 0 5px 13px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 5px 13px rgba(0,0,0,0.15);
}
.sns_2dapth>li>a{display: block;padding: 3px 0;}
.sns_2dapth>li>a>img{display: block;margin: 0 auto;}
.sns_2dapth>li{padding: 15px 0;}

#k_header .shop_btn{margin-bottom: 4px;}
.shop_btn a{display: flex;align-items: center;justify-content: center;gap: 9px;background-color: var(--color-green);color: #FFF;padding: 10.5px 20px;border-radius: 0 10px 0 10px;}

.hd_gnb{position: absolute;top: 0;left: 50%;transform: translateX(calc(-50% + 0.5px));z-index: 10;}
.hd_gnb>ul{white-space: nowrap;}
.hd_gnb>ul>li{display: inline-block;vertical-align: top;width: 200px;text-align: center; transition: width .45s ease;}
/*
.hd_gnb>ul>li::after{content: "";position: absolute;top: 50%;right: -2px;transform: translateY(-50%);width: 1px;height: 15px;background-color: #d4d4d4;}
.hd_gnb>ul>li:last-child::after{display: none;}
*/
.hd_gnb>ul>li>a{display: block;width: 100%;height: 100%;line-height: 80px;font-size: 1rem;font-weight: 500;transition: .3s ease; font-family: var(--font-eng);font-size: var(--font-size-16)!important;font-weight: var(--font-m);}
.hd_gnb>ul>li>a>i{padding: 0 10px;position: relative;}
.hd_gnb>ul>li>a>i::before{content: "";position: absolute;top: 50%;right: 0;left: auto;transform: translateY(-50%);width: 0;height: 4px;background-color: rgba(145,202,177,.6);z-index: -1;transition: width .45s ease;}

.hd_gnb>ul>li>ul{position: absolute;top: 75px;left: 53%;transform: translateX(-50%);min-width: 100%;padding: 22px 0;display: none;}
.hd_gnb>ul>li>ul.depth02>li { width: 100%; display: flex; }
.hd_gnb>ul>li>ul>li>a{display: flex; justify-content: space-between; width: 25%;height: 100%;text-align: left;font-size: 1rem;padding: 14.5px 0;white-space: nowrap;color: #222;transition: color .15s; font-weight: 500; font-family: var(--font-eng); }
.hd_gnb>ul>li>ul>li>a>img { margin-right: 20px; width: 10px; height: 13px; transition: .3s; }

.hd_gnb>ul>li>ul.depth02>li>.depth03 { background: #f5fbf7; width: 100%; height: 408px; position: absolute; top: 1px; left: 25%; display: none; padding: 68px 30px 0; }
.hd_gnb>ul>li>ul.depth02>li>.depth03>li { width: 100%; text-align: left; font-weight: 500; line-height: 50px; font-family: var(--font-eng); }

/*bg*/
.depth02>li>a { cursor: pointer; }
.depth02>li>a>span { display: none; }
/*.gnb_bg{position: absolute;top: 100%;left: 0;width: 100%;height: 350px;background-color: rgba(0,0,0,0.8);z-index: 1;display: none;}*/
.gnb_bg{position: absolute;top: 100%;left: 0;width: 100%;height: 410px;background-color: #fff;z-index: 1;display: none; border-top: 1px solid #d9d9d9;}
.gnb_black { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); display: none; z-index: 2;}

/*mobile*/
.mo_btn, .mo_shop{display: none;}

/*hover*/
.hd_gnb>ul>li:hover>a>i::before{width: 100%;right: auto;left: 0;}
.hd_gnb>ul>li>ul>li>a:hover{color: #65ba97;}

/*메뉴별 위치*/
.hd_gnb>ul>li:nth-child(2)>ul { left: 75%; }
.hd_gnb>ul>li:nth-child(3)>ul { left: 95%; }
.hd_gnb>ul>li:nth-child(4)>ul { left: 115%; }
.hd_gnb>ul>li:nth-child(5)>ul { left: 135%; }

/*site map*/
#site_map{position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 20;display: none;}
.site_map_bg{position: fixed;top: 0;right: 0;left: auto;width: 0;height: 100%;z-index: 15;background-color:rgba(8,34,19,0.9);transition: width 1s ease;}
.site_map_bg.on{width: 100%;right: auto;left: 0;}

.site_map_menu{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.site_map_menu>ul{white-space: nowrap;}
.site_map_menu>ul>li{display: inline-block;vertical-align: top;}
.site_map_menu>ul>li>a{display: block;width: 100%;height: 100%;font-size: 2rem;font-weight: 100;color: #FFF;letter-spacing: 0.03em;padding: 0 43px;}
.site_map_menu>ul>li>a>i{display: block;width: 100%;height: 100%;padding: 0 10px;position: relative;}
.site_map_menu>ul>li>a>i::before{content: "";position: absolute;top: 50%;right: 0;left: auto;transform: translateY(-50%);width: 0;height: 4px;background-color: rgba(145,202,177,.6);z-index: -1;transition: width .45s ease;}

.site_map_menu>ul>li>ul{padding: 21px 0;}
.site_map_menu>ul>li>ul>li>a{display: block;width: 100%;height: 100%;text-align: center;font-size: 1.125rem;font-weight: 100;color: #FFF;padding: 15px 0;transition: color .15s;}
.site_map_menu>ul>li>ul.depth02>li>.depth03 { display: none; text-align: center; color: #fff; line-height: 30px; }
.site_map_menu>ul>li>ul.depth02>li>a>img { display: none; }

/*hover*/
.site_map_menu>ul>li:hover>a>i::before{width: 100%;right: auto;left: 0;}
.site_map_menu>ul>li>ul>li>a:hover, .site_map_menu>ul>li>ul.depth02>li>.depth03>li>a:hover{color: #91cab1;}

@media screen and (max-width: 1680px){
    .hd_gnb>ul>li { width: auto!important;}
}

@media screen and (min-width: 1081px){

	#mobile_wrap{display: none !important;}
}

@media screen and (max-width: 1760px){

	.hd_member{gap: 18px;margin-right: 26px;}

	.hd_gnb>ul>li{width: 10vw;}

	/*site map*/
	.site_map_menu>ul>li>a{padding: 0 5px;}
}

@media screen and (max-width: 1680px){

	.hd_gnb>ul>li{width: auto;}
	.hd_gnb>ul>li>a{padding: 0 23px;}
}

@media screen and (max-width: 1480px){

	.hd_top{height: 85px!important;}
	.hd_logo{margin-bottom: 16px;}
	.hd_logo img{max-width: 200px;}

	.hd_btm{height: 60px;}

    #k_header { height: 155px; }
    
	#k_header .shop_btn{margin-bottom: 3px;}
	.shop_btn a{gap: 7px;padding: 8px 17px;border-radius: 0 8px 0 8px;}

	.hd_member{gap: 13px;margin-right: 21px;}
	.hd_member img{max-width: 80%;}

	.hd_btn{width: 21px;}
	.hd_btn span{top: 29px;}
	.hd_btn span:nth-child(1){transform: translateY(-8px);}
	.hd_btn span:nth-child(3){transform: translateY(8px);}

	.hd_gnb{left: 45%;}
	.hd_gnb>ul>li>a{line-height: 60px;padding: 0 20px;}
	.hd_gnb>ul>li>a::after{height: 12px;}
	.hd_gnb>ul>li>a>i::before{height: 3px;}
	.hd_gnb>ul>li>ul{top: 60px;padding: 18px 0;}
	.hd_gnb>ul>li>ul>li>a{padding: 10px 0;}

	/*sns*/
	.sns_2dapth{top: -10px;left: 50%;width: 40px;padding-top: 40px;
		box-shadow: 0 5px 13px rgba(0,0,0,0.15);
		-webkit-box-shadow: 0 5px 13px rgba(0,0,0,0.15);
	}
	.sns_2dapth>li:first-child{padding: 10px 0;}
	.sns_2dapth>li>a>img{max-width: 80%;}

	/*bg*/
	.gnb_bg{height: 300px;}

	/*site map*/
	.site_map_menu>ul>li>a{font-size: 2rem;padding: 0 15px;}
	.site_map_menu>ul>li>ul{padding: 18px 0;}
	.site_map_menu>ul>li>ul>li>a{font-size: 1.2rem;padding: 10px 0;}
    
    
    .hd_gnb>ul>li>ul.depth02>li>.depth03 { height: 299px; padding-top: 45px; top: 10px; }
    .hd_gnb>ul>li>ul.depth02>li>.depth03>li { line-height: 38px; }
}

@media screen and (max-width: 1280px){

	.hd_gnb{left: 43%;}
	.hd_gnb>ul>li>a{padding: 0 13px;}

	/*site map*/
	.site_map_menu>ul>li>a{padding: 0 5px;}
    
    /*bg*/
	.gnb_bg{height: 300px;}
    .hd_gnb>ul>li>ul.depth02>li>.depth03 { height: 299px }
}

@media screen and (max-width: 1080px){

	.hd_con, .hd_top{height: 100%!important;}
	.hd_con{position: relative;}
	.hd_top{align-items: center;}
	.hd_logo{margin-bottom: 0;}
    .hd_logo img { padding-top: 0!important; }
	.hd_btm, .gnb_bg, #site_map, .site_map_bg{display: none !important;}

	/*mobile*/
	.mo_btn{position: absolute;top: 0;left: 0;width: 25px;height: 100%;z-index: 21;display: block;}
	.mo_btn span{position: absolute;top: 36.5px;left: 0;width: 100%;height: 2px;background-color: #000;transition: all .45s ease;}
	.mo_btn span:nth-child(1){transform: translateY(-9px);}
	.mo_btn span:nth-child(3){transform: translateY(9px);}

	.mo_btn.open span{background-color: #222;}
    .mo_btn.open span:nth-child(2){opacity: 0;}
    .mo_btn.open span:nth-child(1){transform: rotate(45deg);}
    .mo_btn.open span:nth-child(3){transform: rotate(-45deg);}

	.mo_shop{position: absolute;top: 50%;right: 0;transform: translateY(-50%);z-index: 21;display: flex;align-items: center;justify-content: center;width: 32px;height: 32px;border-radius: 32px;background-color: var(--color-green);border: 1px solid var(--color-green);}
	.mo_shop img{display: block;}

	.mo_shop.open{background-color: #222;border-color: #222;}

	#mobile_wrap{position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 20;display: none; }
    .mobile_inner{position: fixed;width: 100%;height: 100%;background-color: #fff; overflow: scroll; }

    .mobile_navi{position: absolute;top: 20%;left: 0;width: 100%;z-index: 1;padding: 0 35px;}
    .mobile_navi>ul>li{padding-bottom: 40px;}
    .mobile_navi>ul>li>a{display: inline-block;width: auto;height: 100%;font-size: 25px;font-weight: 200;color: #222;}
    .mobile_navi>ul>li>a>i{display: block;height: 100%;padding: 0 5px;position: relative; font-weight: 500;}
    .mobile_navi>ul>li>a>i::before{content: "";position: absolute;top: 50%;right: 0;left: auto;transform: translateY(-50%);width: 0;height: 5px;background-color: rgba(145,202,177,.8);z-index: -1;transition: width .45s ease;}

    .mobile_navi>ul>li>ul.depth02>li>.depth03 { display: none; text-align: left; color: #777; line-height: 30px; }
    .mobile_navi>ul>li>ul.depth02>li>.depth03>li>a { font-weight: 500; }
    .mobile_navi>ul>li>ul.depth02>li>a>img { display: none; }
    .mobile_navi>ul>li>ul.depth02>li>a { display: flex; justify-content: space-between; font-weight: 500; }
    .mobile_navi>ul>li>ul.depth02>li>a>span { display: block; }
    
    .mobile_navi>ul>li>a.on>i::before{width: 100%;right: auto;left: 0;}

    .mobile_navi>ul>li>ul{padding-top: 14px;display: none;padding-left: 5px;}
    .mobile_navi>ul>li>ul>li>a{display: block;width: 100%;height: 100%;font-size: 14px;font-weight: 100;color: #222;padding: 8.5px 0;}

    .mobile_btm{position: fixed; bottom: 50px; right: 20px;z-index: 1;display: flex;align-items: center;}
    .mobile_btm>li{position: relative;}
    .mobile_btm>li>a{padding-left: 25px;}
/*
    .mobile_btm img{
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
	}
*/
}

@media screen and (max-width: 720px){

	/*mobile*/
	.hd_logo img{max-width: 159px;}
	.mo_shop{width: 25px;height: 25px;}

	.mobile_btm>li>a{padding-left: 16px;}
	.mobile_btm li:nth-child(2) img{max-width: 23px;}
	.mobile_btm li:nth-child(3) img{max-width: 15px;}
	
	/*sns*/
	.mo_2dapth{position: absolute;bottom: 100%;right: 0;display: none;}
	.mo_2dapth>li>a{display: block;padding: 8px 0;}
	.mo_2dapth>li:last-child{margin-bottom: 10px;}
}

/*---main_visual---*/
#visual_wrap{margin-top: var(--hd-height);}
#main_visual{position: relative;}

.visual_img img{display: block;width: 100%;}

.mv_arrow_wrap{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);margin-top: -10px;z-index: 1;}
.mv_arrow{position: absolute;top: 0;cursor: pointer;opacity: .4;z-index: 1;transition: opacity .45s ease;}
.mv_next{right: 0;}
.mv_prev{left: 0;}
.mv_arrow:hover{opacity: 1;}

@media screen and (max-width: 1480px){

	.mv_arrow img{max-width: 13px;}
}

@media screen and (max-width: 1080px){

	.mv_arrow_wrap{display: none;}
}

/*---main section_01---*/
#section_01{margin-top: -100px;position: relative;z-index: 1;}

.site_info{display: flex;align-items: center;justify-content: space-between;background-color: #f9f9f9;padding: 50px 0 63px 77px;border-radius: 0 45px 0 45px;overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,.13);
	-webkit-box-shadow: 0 10px 20px rgba(0,0,0,.13);
}

.info_title{margin-top: 10px;}
.info_title h3{margin-bottom: 14px;}
.info_title p{line-height: 165%;word-break: keep-all;}

.info_list{display: flex;align-items: center;gap: 50px;padding: 15px 101px;border-left: 1px solid #d9d9d9;}
.info_list figure{display: flex;align-items: center;justify-content: center;width: 120px;height: 120px;border-radius: 120px;border: 1px solid #d9d9d9;background-color: #FFF;overflow: hidden;}
.info_list figure img{display: block;transition: opacity .25s ease;}
.info_list h4{text-align: center;margin-top: 18px;}

/*아이콘 위치 조정*/
.info_list li:nth-child(1) figure img{margin-top: 2px;}
.info_list li:nth-child(2) figure img{margin-top: 4px;margin-left: 4px;}
.info_list li:nth-child(4) figure img{margin-top: 3px;margin-right: 14px;}

/*hover*/
.info_list>li>a:hover figure img{opacity: .7;}

@media screen and (max-width: 1480px){

	#section_01{margin-top: -80px;}

	.site_info{padding: 40px 0 50px 62px;}

	.info_list{gap: 40px;padding: 13px 80px;}
	.info_list figure{width: 110px;height: 110px;}
	.info_list h4{margin-top: 15px;}
}

@media screen and (max-width: 1280px){

	.site_info{padding: 35px 0 45px 50px;}

	.info_title{padding-right: 50px;}
	.info_title p br{display: none;}

	.info_list{gap: 30px;padding: 12px 50px;}
	.info_list h4{margin-top: 12px;}
}

@media screen and (max-width: 1080px){

	.site_info{padding: 35px 0 45px 40px;}

	.info_title{padding-right: 40px;}
	.info_title h3{font-size: 1.6rem;}
	.info_title p{font-size: 1rem;}

	.info_list{gap: 20px;padding: 12px 40px;}
	.info_list figure{width: 100px;height: 100px;}
	.info_list h4{margin-top: 10px;}

	/*아이콘 위치 조정*/
	.info_list li:nth-child(1) figure img{max-width: 52px;margin-top: 1px;}
	.info_list li:nth-child(2) figure img{max-width: 46px;}
	.info_list li:nth-child(3) figure img{max-width: 49px;}
	.info_list li:nth-child(4) figure img{max-width: 56px;margin-top: 2px;margin-right: 12px;}
}

@media screen and (max-width: 900px){

	#section_01{margin-top: -50px;}

	.site_info{display: block;padding: 48px 38px;}

	.info_title{padding: 0;margin: 0;text-align: center;margin-bottom: 33px;}
	.info_title h3{font-size: 25px;}
	.info_title p br{display: block;}

	.info_list{gap: 40px;padding: 0;border: none;justify-content: center;}
}

@media screen and (max-width: 720px){

	.site_info{border-radius: 0 25px 0 25px;}

	.info_title h3{margin-bottom: 4px;}
	.info_title p{font-size: 11px;-webkit-text-stroke: unset;font-weight: var(--font-r);line-height: 160%;}

	.info_list{flex-wrap: wrap;column-gap: 75px;row-gap: 34px;}
	.info_list figure{width: 90px;height: 90px;}
	.info_list h4{font-size: 10px;margin-top: 9px;}


	/*아이콘 위치 조정*/
	.info_list li:nth-child(1) figure img{max-width: 48px;margin-top: 2px;}
	.info_list li:nth-child(2) figure img{max-width: 43px;margin-left: 5px;}
	.info_list li:nth-child(3) figure img{max-width: 45px;}
	.info_list li:nth-child(4) figure img{max-width: 52px;margin-top: 4px;margin-right: 11px;}
}

/*---main section_02---*/
#section_02{background-image: url(../img/product/product_bg.png);background-repeat: no-repeat;background-position: center center;}

.product_wrap{position: relative; margin-top: 50px;}
#section_02 .mv_arrow_wrap{width: 100%;}
#product_slide{width: 100%;max-width: var(--section-container);margin: 0 auto;}

.pro_box{display: flex;align-items: center;}
.pro_box>div, .pro_box>figure{width: 50%;}
.pro_box>div{padding-left: 100px;}
.pro_box img{display: block;}

.pro_text p{color: #777;margin-top: 26px;margin-bottom: 50px;}

@media screen and (max-width: 1910px){

	#section_02{background-size: 100%;}
	.pro_box>figure>img{width: 100%;}
}

@media screen and (max-width: 1480px){

	#product_slide{width: 90%;}

	.pro_box>div{padding-left: 80px;}
	.pro_box>div img{max-width: 230px;}
	.pro_text p{margin-top: 21px;margin-bottom: 40px;}
}

@media screen and (max-width: 1080px){

	#section_02{padding-bottom: 50px;}
	#section_02 .mv_arrow_wrap{display: block;}

	.pro_box>div{padding-left: 50px;}
}

@media screen and (max-width: 960px){

	.pro_box>div{padding-left: 40px;}
	.pro_box>div img{max-width: 200px;}
	.pro_text p{line-height: 150%;}
}

@media screen and (max-width: 720px){

	#section_02{background-image: url(../img/product/mo_product_bg.png);background-position: center 24px;padding-bottom: 100px;}

	#product_slide{width: 80%;}

	.pro_box{display: block;}
	.pro_box>div, .pro_box>figure{width: 100%;}
	.pro_box>div{padding: 0;}
    #product_slide .swiper-slide { display: block!important; }
	.pro_box>div img{max-width: 165px;margin: 0 auto; width: 90%; }
	.pro_text p{text-align: center;font-size: 11px;margin-top: 10px;margin-bottom: 38px;}
}

/*---main section_03---*/
#section_03{background-color: #f9f9f9;overflow: hidden;}

.edu_tab{display: flex;align-items: center;}

.slide_tab{display: flex;gap: 43px;margin-right: 49px;}
.slide_tab li{position: relative;}
.slide_tab li::after{content: "";position: absolute;top: 50%;left: calc( 100% + 19px );margin-top: -2px;z-index: 1;width: 5px;height: 5px;border-radius: 5px;background-color: #d9d9d9;}
.slide_tab li:last-child::after{display: none;}
.slide_tab li a{display: block;width: 100%;height: 100%;font-size: var(--font-size-18);font-weight: var(--font-r);}
.slide_tab li.on a{font-weight: var(--font-b);color: var(--color-on);}

.slide_btn{display: flex;align-items: center;gap: 10px;}
.slide_btn button{display: block;width: 50px;height: 50px;border-radius: 50px;border: 1px solid #7a7a7a;background-repeat: no-repeat;}
.slide_btn li:first-child button{background-image: url(../img/icon/edu_prev.png);background-position: 47% center;}
.slide_btn li:last-child button{background-image: url(../img/icon/edu_next.png);background-position: 53% center;}

/*slide*/
.edu_wrap{overflow: visible;margin-top: 77px;display: none;}
#edu_slide_02{display: block;}

.edu_img{position: relative;border-radius: 20px;overflow: hidden;margin-bottom: 22px;}
.edu_img img{display: block;max-width: 100%;transition: transform 1s ease;}
.edu_img span{position: absolute;bottom: 8px;right: 10px;display: flex;justify-content: center;align-items: center;width: 60px;height: 60px;border-radius: 60px;background-color: var(--color-on);color: #FFF;}
.edu_img span.edu_end{background: #000;}

.edu_text h4{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;margin-bottom: 8px;}
.edu_text>div{color: #777;word-break: keep-all;line-height: 170%;font-weight: 400;}
.edu_text span{display: block;color: var(--color-on);margin-top: 15px;}

/*hover*/
.edu_box>a:hover figure img{transform: scale(1.1);}

@media screen and (max-width: 1480px){

	.slide_tab{gap: 35px;margin-right: 40px;}
	.slide_tab li::after{left: calc( 100% + 16px );margin-top: -1px;width: 4px;height: 4px;}

	/*slide*/
	.edu_wrap{margin-top: 60px;}
}

@media screen and (max-width: 1080px){

	/*slide*/
	.edu_text>div{font-size: 1rem;}
}

@media screen and (max-width: 960px){

	.slide_tab{margin-right: 30px;}
}

@media screen and (max-width: 720px){

	.slide_btn{display: none;}

	.edu_tab{justify-content: center;}

	.slide_tab{gap: 21px;margin-right: 0;margin-top: 18px;}
	.slide_tab li::after{width: 3px;height: 3px;left: calc( 100% + 10px );margin-top: 0;}
	.slide_tab li a{font-size: 11px;}

	/*slide*/
	.edu_wrap{margin-top: 18px;}

	.edu_img{border-radius: 10px;margin-bottom: 15px;}
	.edu_img span{bottom: 15px;right: 15px;width: 43px;height: 43px;font-size: 10px;}

	.edu_text h4{font-size: 15px;margin-bottom: 3px;}
	.edu_text>div, .edu_text span{font-size: 11px;}
	.edu_text>div{line-height: 160%;}
	.edu_text span{margin-top: 7px;}
}

/*---main section_04---*/
.cl_wrap{display: flex;justify-content: space-between;align-items: center;}
.cl_wrap .title_wrap{width: calc( 100% - 950px );padding: 0 50px;}
.cl_container{width: 950px;}

/*slide*/
.cl_box{border-radius: 20px;overflow: hidden;}
.cl_box img{display: block;width: 100%; height: 100%;}

#cl_slide{position: relative;}
#cl_slide .cl_box{position: relative;}
#cl_slide .cl_box::after{content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0,0,0,.1);z-index: 1;}

.play_btn{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);z-index: 10;}

.cl_btn{position: absolute;top: calc( 50% - 25px );z-index: 10;width: 100%;}
.cl_arrow{position: absolute;width: 50px;height: 50px;border-radius: 50px;background-color: #FFF;background-repeat: no-repeat;cursor: pointer;opacity: .5;transition: opacity .3s ease;}
.cl_next{right: 30px;background-image: url(../img/icon/edu_next.png);background-position: 53% center;}
.cl_prev{left: 30px;background-image: url(../img/icon/edu_prev.png);background-position: 47% center;}

/*thumbnail*/
.thum_wrap{display: flex;justify-content: flex-end;}
#cl_thum{width: 950px;margin: inherit;margin-top: 30px;}

/*mobile*/
.cl_mobile{display: none;}

/*hover*/
.cl_arrow:hover{opacity: 1;}

@media screen and (max-width: 1680px){

	.cl_wrap .title_wrap{width: 40%;padding-left: 0;}
	.cl_container, #cl_thum{width: 60%}
}

@media screen and (max-width: 1480px){

	/*slide*/
	.cl_box{border-radius: 15px;}
	.cl_next{right: 24px;}
	.cl_prev{left: 24px;}

	/*thumbnail*/
	#cl_thum{margin-top: 25px;}
}

@media screen and (max-width: 1080px){

	/*slide*/
	.cl_box{border-radius: 15px;}
	.cl_next{right: 24px;}
	.cl_prev{left: 24px;}

	/*thumbnail*/
	#cl_thum{margin-top: 25px;}
}

@media screen and (max-width: 960px){

	.cl_wrap .title_wrap{padding-right: 30px;}

	/*slide*/
	.cl_box{border-radius: 10px;}
	.play_btn img{max-width: 80px;}

	/*thumbnail*/
	#cl_thum{margin-top: 20px;}
}

@media screen and (max-width: 768px){

	#section_04{overflow: hidden;}

	.cl_wrap{flex-direction: column-reverse;}
	.cl_wrap .title_wrap, .cl_container, #cl_thum{width: 100%;}
	.cl_wrap .title_wrap{padding-right: 0;text-align: center;}
	.cl_wrap .title_wrap h3{display: none;}

	.cl_wrap .title_sub span{margin-bottom: 30px; width: 100%; }

	/*slide*/
	.cl_box{border-radius: 20px;}
	.play_btn img{max-width: 100px;}

	/*thumbnail*/
	#cl_thum{margin-top: 50px;overflow: visible;}

	/*mobile*/
	.cl_mobile{display: block;margin-bottom: 50px;}
}

@media screen and (max-width: 720px){

	.cl_wrap .title_sub span{margin-bottom: 23px;}

	/*slide*/
	.cl_box{border-radius: 10px;}

	.cl_btn{display: none;}
	.play_btn img{max-width: 35px;}

	/*thumbnail*/
	#cl_thum{margin-top: 40px;}

	/*mobile*/
	.cl_mobile{margin-bottom: 37px;}
}

/*---main section_05---*/
#section_05{background-color: #f9f9f9;background-image: url(../img/main/notice_bg.jpg);background-repeat: no-repeat;background-position: bottom right;}

.notice_wrap{display: flex;align-items: center;gap: 100px;}
.notice_wrap .title_wrap { width: 50%; }
.notice_img{border-radius: 20px;overflow: hidden; width: 50%;}
.notice_img img{display: block;width: 100%;}

@media screen and (max-width: 1480px){

	#section_05{background-size: 35%;}

	.notice_wrap{gap: 80px;}
	.notice_img{width: 60%;}
	.notice_wrap .title_wrap{width: 40%;}
}

@media screen and (max-width: 1080px){

	.notice_wrap{gap: 50px;}
	.notice_img{width: 55%;}
	.notice_wrap .title_wrap{width: 45%;}
}

@media screen and (max-width: 720px){

	#section_05{background-image: none;}
	#section_05 .cl_mobile{margin-bottom: 24px;}

	.notice_wrap{display: block;}
	.notice_img{display: block;width: 100%;border-radius: 10px;}

	.notice_wrap .title_wrap{width: 100%;text-align: center;}
	.notice_wrap .title_wrap h3{display: none;}
	.notice_wrap .title_sub span{margin-bottom: 21px;}
}

/*---footer---*/
.k_footer{background-color: #f1f1f1;padding-top: 80px;padding-bottom: 68px;}
.k_footer .main_container{display: flex;justify-content: space-between;align-items: flex-end;}

/*right*/
.ft_top{display: flex;align-items: flex-end;margin-bottom: 15px; gap:20px;}
.ft_logo img{display: block;}
.ft_rgt { display: block; }


.ft_menu>ul{display: flex;gap: 26px;}
.ft_menu>ul>li>a{display: block;width: 100%;height: 100%;font-family: var(--font-eng);-webkit-text-stroke: var(--font-350);letter-spacing: -0.02em;}
.ft_menu>ul>li>ul{display: none;}

.ft_info_wrap{line-height: 160%;}
.ft_info, .ft_copy{font-size: var(--font-size-14);-webkit-text-stroke: var(--font-350);letter-spacing: -0.02em; font-weight: 300; line-height: 180%; }
.ft_info i{padding-right: 13px;position: relative;}
.ft_info i::after{content: "";position: absolute;top: 6px;right: 4px;width: 1px;height: 10px;background-color: #616161;}
.ft_info i:last-child::after{display: none;}

.ft_copy{font-family: var(--font-eng);}

/*left*/
.ft_lft{display: flex;align-items: center; margin-right: 15%; }

.ft_sns{display: flex;align-items: center;gap: 21px;margin-right: 30px;}
.ft_sns a, .ft_sns img{display: block;}

.ft_family{position: relative;}
.ft_family::before, .ft_family::after{content: "";position: absolute;bottom: 0;left: 0;width: 150px;height: 35px;background-color: #62b995;border-radius: 35px;}
.ft_family::after{border-radius: 20px;transition: height .45s ease;}
.ft_family>a{display: flex;flex-direction: row;justify-content: center;align-items: center;width: 150px;height: 35px;color: #FFF;font-family: var(--font-eng);font-size: var(--font-size-14);position: relative;z-index: 1;}
.ft_family>a span{padding-right: 13px;}
.ft_family>a i{font-size: 0.8rem;}

.ft_family>ul{position: absolute;bottom: 100%;left: 0;width: 100%;z-index: 1;display: none;}
.ft_family>ul>li>a{display: block;width: 100%;height: 100%;text-align: center;font-size: 0.8rem;color: #FFF;padding: 8px 0;}

.ft_family.on::after{height: 110px;}

@media screen and (max-width: 1480px){

	.k_footer{padding-top: 70px;padding-bottom: 60px;}

	/*right*/
	.ft_menu{margin-left: 45px;}
	.ft_menu>ul{gap: 21px;}
	
	.ft_info i::after{top: 5px;right: 5px;}

	/*left*/
	.ft_sns{gap: 17px;margin-right: 25px;}

	.ft_family::before, .ft_family::after, .ft_family>a{width: 140px;}
}

@media screen and (max-width: 1080px){

}

@media screen and (max-width: 960px){

    
    .k_footer>.main_container { flex-direction: column; }
    .k_footer>.main_container>div { width: 100%; }
    .ft_lft { margin-right: 0; margin-top: 20px; }
    .ft_etc { justify-content: flex-start; }
}

@media screen and (max-width: 860px){

	/*right*/
	.ft_top{display: block;}
	.ft_menu{margin-left: 0;margin-top: 15px;}
}

@media screen and (max-width: 720px){

	.k_footer{padding-top: 25px;padding-bottom: 15px;}

	/*right*/
	.ft_top{margin-bottom: 13px;}
	.ft_logo img{max-width: 76px;}

	.ft_menu{margin-top: 13px;}
	.ft_menu>ul{flex-wrap: wrap;gap: 15px;row-gap: 3px;}
	.ft_menu>ul>li>a{font-size: 10px;}

	.ft_info_wrap{line-height: 130%;}
	.ft_info{font-size: 9px;}
	.ft_info i{padding-right: 9px;}
	.ft_info i:first-child{display: block;}
	.ft_info i:first-child::after{display: none;}
	.ft_info i::after{top: 5px;right: 3px;height: 7px;}

	.ft_copy{margin-top: 8px;}
}


/*제품*/
.pro1_1 { padding: 250px 4% 80px!important; display: flex; align-items: center; background: #fff; }
.pro1_1 .pro2_txt_m { display: none; }
.pro1_1 .tit_box_02 { margin-left: 80px; width: 50%; }
.pro1_1 .tit_box_02 img {width: 20%;}

.pro1_1 .pro_img { width: 50%; }
.pro1_1 .pro_img img { border-radius: 20px; width: 100%; }
.pro1_1 .tit_box_02 .down_btn { margin-top: 50px; }
.pro1_1 .tit_box_02 .down_btn a { background: #06563f; border-radius: 0 10px 0 10px; padding: 15px 20px; color: #fff; transition: .3s; }
.pro1_1 .tit_box_02 .down_btn a:hover { background: #222; }

.pro1_2 { padding: 150px 4% 150px!important; display: block; text-align: center; background: #f9f9f9; }
.pro1_2 .pro_img { width: 100%; margin-top: 50px; }
.pro1_2 .pro_img img { width: 100%; max-width: 1600px; height: auto; }
.pro1_2 .pc_img { display: block; }
.pro1_2 .m_img { display: none; }

.pro1_3 { padding: 150px 4% 150px!important; display: block; text-align: center; background: #fff; }
.pro1_3 .pro_img { width: 100%; margin-top: 50px; }
.pro1_3 .pro_img img { width: 100%; max-width: 1760px; height: auto; border-radius: 20px; }
.pro1_3 .pc_img { display: block; }
.pro1_3 .m_img { display: none; }

.pro1_4 { padding: 0 4% 150px!important; display: block; text-align: center; background: #fff; }
.pro_table_tit { text-align: left; color: var(--color-green); margin-bottom: 10px; }
.pro_table_tit span { font-size: 1.125rem; color: #000; }
.pro_table { border-top: 2px solid #222; width: 100%; }
.pro_table td { padding: 20px; font-size: 1.125rem; border-bottom: 1px solid #d9d9d9; }
.pro_table td ul li { list-style: disc; text-align: left; font-size: 1rem; font-family: 'Noto Sans KR', sans-serif; }
.pro_table td img { width: 100%; max-width: 130px; }
.pro_table td.td_head_1 { background: #e9e9e9; width: 20%; font-weight: 700; color: var(--color-green); font-size: 20px; }
.pro_table td.td_head_2 { background: #f9f9f9; width: 20%; font-weight: 700; }
.pro_table_wrap { margin-bottom: 50px; }

.pro_gall_wrap { padding: 0 4% 150px!important; display: flex; justify-content: center; }
.pro_gall { margin: 0 20px; }
.pro_gall_wrap figure { border: 1px solid #d9d9d9; border-radius: 20px; margin-bottom: 30px; transition: .3s; }
.pro_gall_wrap figure img { width: 100%; }
.pro_gall_wrap figure:hover { opacity: .5; }
.pro_gall_wrap .m_pro_txt { text-align: center; }

.ms6_box { width: 50%; }
.pro2_2 .pro2_tab_wrap { margin: 50px auto 150px!important; }
.tit_box_02 ul { width: 80%; }
.tit_box_02 ul li { word-break: keep-all; }
.tit_box_02 p { word-break: keep-all; }
.tit_box_02 { text-align: center; }
.tit_box_04 { text-align: left; }

@media screen and (max-width: 1080px){
	.pro1_1 { display: block; padding-top: 150px; }
	.pro1_1 .pro2_txt_m { display: block; margin-left: 0; margin-bottom: 50px; width: 100%; }
	.pro1_1 .pro2_txt_pc { display: none; }
	.pro1_1 .pro_img { width: 100%; }
	.ms6_box { width: 100%; }
	.pro2_1 #ms6_slide img { width: 100%!important; }
}
@media screen and (max-width: 960px){
	.pro_gall_wrap { display: block; }
	.pro_gall_wrap .pro_gall { margin-bottom: 50px; }
}
@media screen and (max-width: 780px){
	.pro_table_wrap { overflow: scroll; }
	.pro1_2 .pc_img, .pro1_3 .pc_img { display: none; }
	.pro1_2 .m_img, .pro1_3 .m_img { display: block; }
}

ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	justify-content: center;
}
ul.tabs li{
	background: #fff;
	color: #000;
	display: inline-block;
	cursor: pointer;
	width: 200px; height: 60px; line-height: 60px; text-align: center; 
	border: 1px solid #222;
}

ul.tabs li:first-child{ border-radius: 0 0 0 20px; }
ul.tabs li:last-child { border-radius: 0 20px 0 0; }

ul.tabs li.current{
	background: var(--color-green);
	color: #fff;
	border: none;
}

.tab-content{
	display: none;
	margin-top: 70px;
}

.tab-content.current{
	display: inherit;
}



ul.tabs2{
	margin: 60px 0px 0;
    text-align: center;
    overflow: hidden;
}
ul.tabs2 li{
	position: relative;
	cursor: pointer;
	transition: .3s;
	display: inline-flex;
	padding: 0 24px;
    margin: 10px 0 10px -1px;
    font-size: var(--font-size-18);
    font-weight: var(--font-r);
}

ul.tabs2 li:hover{
	color: #777;
}
ul.tabs2 li::after{
	content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -2px;
    z-index: 1;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #d9d9d9;
}

ul.tabs2 li:last-child::after{
	display: none;
}

ul.tabs2 li.current{
	font-weight: var(--font-b);
    color: var(--color-on);
}

.tab-content2{
	display: none;
	margin-top: 70px;
}

.tab-content2.current{
	display: inherit;
}

ul.tabs3{
	margin: 0 auto;
    text-align: center;
    overflow: hidden;
	width: 90%;
}
ul.tabs3 li{
	position: relative;
	cursor: pointer;
	transition: .3s;
	display: inline-flex;
	padding: 0 24px;
    margin: 10px 0 10px -1px;
    font-size: var(--font-size-18);
    font-weight: var(--font-r);
}

ul.tabs3 li:hover{
	color: #777;
}
ul.tabs3 li::after{
	content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -2px;
    z-index: 1;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #d9d9d9;
}

ul.tabs3 li:last-child::after{
	display: none;
}

ul.tabs3 li.current{
	font-weight: var(--font-b);
    color: var(--color-on);
}

.tab-content3{
	display: none;
	margin-top: 70px;
}

.tab-content3.current{
	display: inherit;
}





.main_container .tit_box_02 { text-align: center; } 
.pro2_c4 .tit_box_02 { text-align: center; }
.tit_box_01 span, .tit_box_02 span { display: block; margin-bottom: 16px; color: #06563f; }
.pro2_bg .tit_box_02 { width: 40%; }

/*---main section - main_02---*/
.m02_box{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: center;align-items: center;margin-top: 43px;}
.m02_box li{margin: 0 93px;}
.m02_box figure{display: flex;align-items: center;justify-content: center;height: 104px;margin-bottom: 27px;}
.m02_box h4{text-align: center; line-height: 140%;}

@media screen and (max-width: 1480px){

    .m02_box li{margin: 0 75px;}
    .m02_box figure{margin-bottom: 20px;}
}

@media screen and (max-width: 1080px){

    .m02_box li{margin: 0 60px;}
    .m02_box li:nth-child(1) img{max-width: 63px;}
    .m02_box li:nth-child(2) img{max-width: 77px;}
    .m02_box li:nth-child(3) img{max-width: 65px;}

    .m02_box figure{margin-bottom: 5px;}
}

@media screen and (max-width: 920px){

    .m02_box li{margin: 0 45px;}
	ul.tabs3{ width: 100%; }
}

@media screen and (max-width: 720px){

    .m02_box{justify-content: space-between;}
    .m02_box li{margin: 0;}
    .m02_box li:nth-child(1) img{max-width: 39px;}
    .m02_box li:nth-child(2) img{max-width: 48px;}
    .m02_box li:nth-child(3) img{max-width: 41px;}

    .m02_box figure{height: 52px;margin-bottom: 10px;}

    .m02_box h4{font-size: 11px;}
}

/*card*/
.buy_card{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;justify-content: flex-start;-webkit-box-pack: center;-ms-flex-pack: center;}

#main_03 .this_card{cursor: pointer; }
#main_03 .this_card .card_front { transition: .3s; }
#main_03 .this_card:first-child .card_front { border-radius: 0 0 0 30px; }
#main_03 .this_card2 { display: none; }
#main_03 .this_card:nth-child(3) .mob_on { display: none; }
/*#main_03 .this_card:nth-child(3) .card_front::after, #main_03 .this_card:nth-child(5) .card_front::after { display: none!important; }*/
#main_03 .this_card:last-child .card_front { background: #62b995; border-radius: 0 30px 0 0; }
#main_03 .this_card:last-child .card_txt h4 { color: #fff; }
#main_03 .this_card:hover .card_front { background-color: #62b995 }
/*#main_03 .this_card:hover:nth-child(4) ~ .this_card:nth-child(5) .card_txt .card_num { display: none!important; }*/

#main_03 .this_card:hover .card_front::before { display: none!important; }
#main_03 .this_card:hover:nth-child(1) + .this_card:nth-child(2) .card_front::before, #main_03 .this_card:hover:nth-child(2) + .this_card:nth-child(3) .card_front::before, #main_03 .this_card:hover:nth-child(3) + .this_card:nth-child(4) .card_front::before { display: none!important; }
#main_03 .this_card:hover .card_txt h4, #main_03 .this_card:hover .card_txt span { color: #fff; }
#main_03 .this_card .card_txt span { padding-top: 20px; }
#main_03 .card_txt .card_num { color: #e9e9e9; font-size: 2.5rem; font-weight: 900; position: absolute; top: -50px; left: 80px; }
#main_03 .this_card:nth-child(3) .card_txt .card_num { left: 185px!important; top: -50px; }
#main_03 .this_card:hover:nth-child(3) .card_front .card_num { left: 80px!important; }
/*#main_03 .this_card:nth-child(4) .card_inner, #main_03 .this_card:nth-child(5) .card_inner { width: 160px; }*/
#main_03 .this_card:nth-child(4) .card_txt .card_num { left: -25px!important; top: -50px; }
#main_03 .this_card:hover:nth-child(4) .card_front .card_num { left: 80px!important; }
/*
#main_03 .this_card:nth-child(4) .card_txt .card_subtit { left: 120px!important; position: absolute;}
#main_03 .this_card:nth-child(5) .card_txt .card_subtit { left: -40px!important; position: absolute; }
#main_03 .this_card:nth-child(4) .card_txt h4, #main_03 .this_card:nth-child(5) .card_txt h4 { padding-top: 45px; }
*/

.card_con{-webkit-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-perspective: 1000px;perspective: 1000px;}
.card_inner:hover { background: #; }
.card_inner{background-size: cover;background-position: center;text-align: center;width: 210px;height: 250px;border-radius: 0;overflow: hidden;
	-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.card_front{background: #f9f9f9;
	
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.card_back{position: absolute;top: 0;left: 0;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.card_txt{position: absolute;top: 50%;left: 0;width: 100%;outline: 1px solid transparent;z-index: 1;
	-webkit-transform: translateY(-50%) translateZ(60px);
	transform: translateY(-50%) translateZ(60px);
	
	-webkit-perspective: inherit;
	perspective: inherit;
}

.card_txt p { width: 90%; margin: 0 auto; word-break: keep-all; }

card_con.on .card_front, .card_con.on .card_back{ 
	-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);	 
}
.card_con.on .card_front{ 
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d; 
}
.card_con.on .card_back{ 
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;	 
}

.card_slt{position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;z-index: 150;}
.card_slt li{width: 25%;height: 100%;}
.card_slt li a{display: block;width: 100%;height: 100%;}

/*.card_con:hover .card_front, .card_con:hover .card_back{ 
	-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);	 
}
.card_con:hover .card_front{ 
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d; 
}
.card_con:hover .card_back{ 
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;	 
}*/
.card_txt span{display: block;margin-bottom: 6px;color: #62b995;}
.card_txt h4{color: #0f4025;}
.card_txt img{display: block;}

.card_wrap{max-width: 1200px;margin: 0;position: relative;}

.card_link{position: absolute;top: 50%;left: calc( 100% + 30px );transform: translateY(-50%);z-index: 1;display: flex;}

.card_link_text{letter-spacing: 0.03em;-webkit-text-stroke: 0.01em;line-height: 150%;color: #0f4025;padding-top: 2px;}

.card_link_circle{width: 30px;height: 30px;background-color: #0f4025;color: #FFF;text-align: center;line-height: 33.5px;border-radius: 30px;font-size: 19px;margin-right: 8px;}
.card_link_circle i{padding-left: 1px;-webkit-text-stroke: 0.01em;}

#card_svg{position: absolute;top: -2px;left: -2px;width: calc( 100% + 4px );z-index: 100;opacity: 0;}
#card_svg.on{opacity: 1;}
#card_svg svg{width: 100%;}

@media screen and (max-width: 1680px){

    #main_03{padding-top: 50px;}

    .card_link{flex-direction: column;align-items: center;top: calc( 100% + 50px );left: 50%;transform: translateX(-50%);}
    .card_link span{margin: 0;margin-bottom: 11px;}
    .card_link br{display: none;}
}

@media screen and (max-width: 1480px){
	#main_03{ padding-top: 0; }
	#main_03 .main_container .ms4_product { padding-top: 100px; }
}


@media screen and (max-width: 1280px){

    .card_inner{width: 200px;height: 200px; }
	#main_03 .this_card:nth-child(3) .card_txt .card_num { left: 178px!important; }
	#main_03 .this_card:nth-child(4) .card_txt .card_num { left: -22px!important; }
    .card_txt img{width: 100%;}

    .card_link{top: calc( 100% + 30px );}

	#card_svg{width: 1002px;top: 0;left: 50%;transform: translateX(-50%);height: 250px;}
	#card_svg svg{margin-top: -27px;}
	
	.card_txt .card_num { top: -50px; left: 78px; }
}

@media screen and (max-width: 1080px){

	#main_03 .main_container .ms4_product .tit_box_04 h2 { margin-bottom: 30px; }
    .card_inner{width: 150px;height: 150px;}
	#main_03 .this_card:nth-child(3) .card_txt .card_num { left: 127px!important; }
	#main_03 .this_card:hover:nth-child(4) .card_front .card_num, #main_03 .this_card:hover:nth-child(5) .card_front .card_num { left: 52px!important; }
	#main_03 .card_txt .card_num { top: -50px; left: 52px; }

	#card_svg{width: 802px;height: 200px;}
	#card_svg svg{margin-top: -52px;}
}

@media screen and (max-width: 960px){
	#main_03 .main_container .ms4_img { display: none; }
	#main_03 .main_container .ms4_product { width: 100%; padding-bottom: 150px; padding-left: 0;  }
	#main_03 .main_container .ms4_product .tit_box_04 {text-align: center;}
	.buy_card { justify-content: center; }
}

@media screen and (max-width: 860px){

    .buy_card{flex-direction: column;align-items: center;}
    .card_inner{width: 344px;height: 344px; }
	#main_03 .this_card2 { display: block; }
	#main_03 .this_card2 .card_inner { height: 80px; }
	#main_03 .this_card2 .card_txt .card_num { top: -10px; }
	#main_03 .this_card:nth-child(3) { display: flex; flex-wrap: nowrap; justify-content: flex-start; -webkit-box-pack: center; }
	#main_03 .this_card:nth-child(3) .mob_on { display: block; }
	#main_03 .this_card:nth-child(3) .card_inner { width: 172px; height: 344px; }
	#main_03 .this_card:hover:nth-child(3) .card_front { background-color: #f9f9f9; }
	#main_03 .this_card:hover:nth-child(3) .card_front .card_txt span { color: #62b995; }
	#main_03 .this_card:hover:nth-child(3) .card_front .card_txt h4 { color: #0f4025; }
	#main_03 .this_card:hover:nth-child(3) .card_txt h4, #main_03 .this_card:hover .card_txt span{}
	#main_03 .this_card:nth-child(3) .card_inner:hover { background-color: #62b995; }
	#main_03 .this_card:nth-child(3) .card_inner:hover .card_txt span, #main_03 .this_card:nth-child(3) .card_inner:hover .card_txt h4 { color: #fff; }
	#main_03 .this_card:nth-child(4) { display: none; }
	#main_03 .this_card:nth-child(4) .card_inner {width: 344px; height: 150px; }
/*	#main_03 .this_card:nth-child(5) .card_txt { top: 40%; }*/
/*	#main_03 .this_card:nth-child(3) .card_front, #main_03 .this_card:nth-child(5) .card_front { border-top: 0; }*/
/*	#main_03 .this_card:nth-child(3) .card_txt .card_num, #main_03 .this_card:nth-child(5) .card_txt .card_num { display: none!important; }*/
/*	#main_03 .this_card:nth-child(3) .card_txt .card_subtit, #main_03 .this_card:nth-child(5) .card_txt .card_subtit { padding-top: 0; }*/
	#main_03 .this_card:nth-child(3) .card_txt h4, #main_03 .this_card:nth-child(5) .card_txt h4 { padding-top: 0; }
	
	#main_03 .this_card:nth-child(3):hover .card_txt .card_num { display: none; }
	#main_03 .this_card:nth-child(3) a:nth-child(1) .card_txt .card_num { left: 150px!important; top: -50px; }
	#main_03 .this_card:nth-child(3) a:nth-child(2) .card_txt .card_num { left: -22px!important; top: -50px; }
	#main_03 .this_card:nth-child(3) a:hover .card_front .card_num { left: 63px!important; display: block; }
	
	#main_03 .card_front::before { display: none; }
	#main_03 .this_card:first-child .card_front { border-radius: 0; }
	#main_03 .this_card:last-child .card_front { border-radius: 0; }
	.card_txt .card_num { top: -50px; left: 152px!important; }
	
	.card_front { border-left: 0; border-top: 1px solid #d9d9d9; }
	.this_card:first-child .card_front { border-top: 0; }

    .card_link{top: calc( 100% + 50px );}

	#card_svg{width: 344px;height: 100%;}
	#card_svg svg{transform: rotate(90deg);transform-origin: left;margin-top: 0;width: 1390px;height: 348px;margin-top: -182px;margin-left: 172px}

	.card_slt{flex-direction: column;align-items: center;}
	.card_slt li{width: 100%;}
}

@media screen and (max-width: 720px){

    #main_03{padding: 100px 2%; }
    #main_03 .tit_box_02{margin-bottom: 31px; }
	#main_03 .tit_box_04 h2 b { font-size: 25px; }
	#main_03 .tit_box_04 h2 { font-size: 11px; }
	#main_03 .main_container .ms4_product { padding: 0; }
	#main_03 .card_txt h4 { font-size: 1.4rem; font-weight: 500; }
	#main_03 .this_card .card_txt span { padding-top: 30px; }
	#main_03 .this_card .card_txt span:first-child, #main_03 .this_card2 .card_txt span:first-child { font-size: 3rem; padding-top: 40px; }
	#main_03 .this_card:nth-child(3) a:nth-child(1) .card_txt .card_num { left: 170px!important; top: -20px; }
	#main_03 .this_card:nth-child(3) a:nth-child(2) .card_txt .card_num { left: 0!important; top: -20px; }
	#main_03 .this_card:nth-child(3) a:hover .card_front .card_num { left: 50%!important; }
	#main_03 .this_card2 .card_txt span:first-child {  }
	#main_03 .card_txt .card_num { left: 50%!important; top: -20px; transform:translate(-50%, -50%); }

    .card_inner{width: 340px; height: 200px;}
	.card_txt .card_num { top: -40px; left: 180px; }
	
	#main_03 .this_card:nth-child(3) .card_inner { width: 170px; height: 200px; }
	#main_03 .this_card:nth-child(3) .card_txt .card_num { top: -20px; left: 50%!important; }
	#main_03 .this_card:nth-child(3) .card_txt h4, #main_03 .this_card:nth-child(4) .card_txt h4 { padding-top: 0; }

    .card_txt span{font-size: 1.2rem;font-weight: 400;margin-bottom: 4px;}
    .card_txt h4{font-size: 13px;font-weight: 600;}

    .card_link{top: calc( 100% + 25px );}
    .card_link span{margin-bottom: 4px;font-weight: 700;}
    .card_link_circle{width: 16px;height: 16px;line-height: 13px;}
    .card_link_circle i{font-size: 11px;-webkit-text-stroke: 0.05em;}
    .card_link_text{ font-size: 10px; }

	#card_svg{width: 173px;}
	#card_svg svg{width: 700px;height: 175px;margin-top: -92px;margin-left: 86.5px;}
	.pro2_c4_pc #card_svg svg { width: 100%; display: block; }
}
@media screen and (max-width: 340px){
	.card_inner{width: 320px;}
}


.pro2_1 { padding: 250px 4% 80px; display: flex; align-items: center; background: #f9f9f9; }
.pro2_1 .pro2_txt_m { display: none; }
.pro2_1 .tit_box_02 { margin-left: 50px; }
.pro2_1 .tit_box_02 img {width: 20%;}
.pro2_2 { background-color: #fff;  }
.pro2_2 #product_slide { max-width: 1200px; padding-top: 50px; margin: 0 auto; }
/*.pro2_2 #product_slide figure { margin-top: 50px; }*/

#pro_dot { top: 0; height: 2px; }

.pro2_2 .pro2_tab_wrap { max-width: 1400px; display: flex; align-items: baseline; justify-content: center; margin: 0 auto; }
.pro2_2 .pro2_tab_wrap>div { width: 100%; }
.pro2_2 .pro2_tab_wrap .pro2_tab_2 { margin-left: 50px; }
.pro2_2 .pro2_tab_wrap .pro2_tab_2 p  { margin-top: 30px; text-align: right; }
#detail_spot { padding-top: 80px!important; padding-bottom: 0; }
.tbl_d {
    width: 100%;
    border-top: 2px solid #373737;
    margin-top: 30px;
}
.tbl_d tr th {
    font-weight: 500;
    background: #fff;
}
.tbl_d tr th, .tbl_d tr td {
    height: 45px;
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid #373737;
    text-align: left;
}
.tbl_d tr td {
    border-left: 1px solid #373737;
}

.btn_wrap { display: flex; align-items: center; margin: 0 auto; justify-content: center; }
.btn_wrap a { margin-top: 0!important; }
.btn_wrap .link_a i { padding: 0 20px; }

@media screen and (max-width: 1480px){
	.pro2_c3 { display: block; }
	#main_04 .link_a, #pro_dot { padding-right: 0; }
}

@media screen and (max-width: 1080px){
	.pro2_1 { display: block; padding-top: 150px; }
	.pro2_1 .pro2_txt_m { display: block; margin-left: 0; margin-bottom: 50px; }
	.pro2_1 .pro2_txt_pc { display: none; }
	.pro2_2 .pro2_tab_wrap { display: block; width: 92%; }
	.pro2_2 .pro2_tab_wrap .pro2_tab_2 { margin-left: 0; margin-top: 50px; }
	.pro2_2 .pro2_tab_wrap .pro2_tab_2 p  { text-align: left; }
	
	.sub_img_0201 figure {  background-position: bottom;}
/*
	.sub_img_0201 figure{ background-image: url("/img/sub_page_02/sub_01_01_1080.jpg"); }
	.sub_img_0202 figure{ background-image: url("/img/sub_page_02/sub_02_01_1080.jpg"); }	
*/
	
	.pro1_c4 #card_svg { width: 92%; margin: 0 auto; }
	.pro1_c4 .card_slt li.arrow { display: none; }
	.pro1_c4 .card_back { height: 100%; }
	.pro1_c4_2 .card_back .card_img { width: 60%; margin: 0 auto; }
	.pro1_c4_2 .card_back .card_img h4 { font-size: 2rem; }
	.pro1_c4 .buy_card { display: block; }
	.pro1_c4 .card_con { margin-bottom: 50px; }
	.pro1_c4 .card_arrow { display: none; }
	.pro1_c4 .card_txt {  height: 100%; padding: 50px 0; }
	.pro1_c4 .card_txt img { width: auto; margin-top: 20px; }
	
	.pro2_bg_2 .tit_box_02 { width: 92%; }
	
	.pro2_bg { background: url("/img/sub_page_02/sub_02_02_m.jpg"); background-repeat: no-repeat; height: 400vh; background-repeat: no-repeat; background-position: top; background-size: cover; background-attachment: initial; position: relative;  }
	.pro2_bg .tit_box_02 { width: 100%; left: 0; opacity: 0; position: absolute; text-align: center; }
	.pro2_bg .tit_box_02 img { width: 70%; }
	
	.pro2_c5 .brand_2 { padding-bottom: 100px; }
	.pro2_c5 .brand_2 .ms6_text .tit_box_02 { padding-top: 100px; }
	.pro2_c5 .brand_2>div:nth-child(2) { width: 100%; }
	
	
	
}

@media screen and (max-width: 860px){
	
	.tbl_d tr th, .tbl_d tr td { font-size: 14px; }
	
	.pro1_c4_m .procard_m_wrap { max-width: 92%; margin: 0 auto; }
	.pro1_c4_m .card_front .card_txt img { width: 90%; margin-top: 30px; overflow: hidden; }
	.pro1_c4_m .procard_m_wrap .card_con .card_inner { height: 480px!important; }

	
	.pro2_c4 .card_slt li, .pro1_c4 .card_slt li { width: 92%; margin: 0 auto 50px; }
	.pro2_c4 .card_slt li.arrow { display: none; }
	.pro2_c4 .card_back .card_txt img { margin-top: 150px; }
	.pro2_c4 .this_card:last-child .card_inner { height: 80vh; }
	.pro2_c4 .this_card:last-child .card_inner .card_txt h4 { margin-top: 20px; }
	.pro2_c4 .this_card:last-child .card_inner .card_txt img { width: 80%; }
	
	.pro2_c4 #card_svg { width: 100%; }
	.pro2_c4 .card_inner2 .card_txt:nth-child(1) { top: 50%; }
	.pro2_c4 .card_inner2 .card_txt:nth-child(2) {top: 100%;}
	
	.pro2_c4 .card_inner, .card_slt li { height: 40vh; }
	
	.card_slt li:last-child { height: 80vh }
	
	.pro2_c4 .buy_card { display: block; }
	.pro2_c4 .card_con { margin-bottom: 50px; }
	.pro2_c4 .card_arrow { display: none; }
	.pro2_c4 .card_txt {  height: 100%; padding: 50px 0; }
	.pro2_c4 .card_txt img { width: 50%; margin-top: 40px!important; }
	
	.pro2_c4 li:last-child .card_back .card_txt { padding: 200px 0; }
	
/*	.pro2_c4_pc { display: none; }*/
	.pro2_c4_m { display: none; }
	.pro2_c4_m .procard_m_wrap { max-width: 92%; margin: 0 auto;  }
	.pro2_c4_m .card_front .card_txt img { width: 100%; margin-top: 30px; overflow: hidden; }
	.pro2_c4_m .procard_m_wrap .card_con:nth-child(1) .card_inner { height: 400px; }
	.pro2_c4_m .procard_m_wrap .card_con:nth-child(2) .card_inner { height: 400px; }
	.pro2_c4_m .procard_m_wrap .card_con:nth-child(3) .card_inner { height: 500px; }
	.pro2_c4_m .procard_m_wrap .card_con:nth-child(4) .card_inner { height: 350px; }
	.pro2_c4_m .procard_m_wrap .card_con:nth-child(5) .card_inner { height: 350px; }
	
	.pro2_bg { height: 200vh; background-size: contain; background-color: #f6f4f5; background-position: bottom; }
	
	.pro2_2 { width: 100%; }
	.pro2_2 .tit_box_02 { width: 90%; margin: 0 auto; }
	.pro2_2 .pro_next { right: 2%; }
	.pro2_2 .pro_prev { left : 2%; }
	
	.pro2_bg .tit_box_04 p { padding: 0 4%; }
	
	.sub_img_0201 figure{ background-image: url("/img/sub_page_02/sub_01_01_780.jpg"); }
	.sub_img_0202 figure{ background-image: url("/img/sub_page_02/sub_02_01_780.jpg"); }
	.pro2_2 .pro2_tab_wrap>div { overflow: scroll }
	
	
	.sub_img_0202 .img_text, .sub_img_0201 .img_text { width: 90%; top: 40%; }
	
	.about5_c2 { width: 94%; }
	
	.pro2_2 .tit_box_02 { width: 86%; }
	
	.pro2_bg .tit_box_02 { position: initial; padding: 100px 0; border-bottom: 1px solid #d9d9d9; }
	.pro2_bg .tit_box_02:last-child { border-bottom: 0; }
}

@media screen and (max-width: 720px){
	
}

@media screen and (max-width: 360px){
	.pro2_1 .tit_box_02 img { width: 35%; }
	.pro2_1 .tit_box_02 ul { margin-left: 15px; }
}

.pro_prev { left: 0; }
.pro_next { right: 0; }
.pro_arrow{ position: absolute; top: 30%; cursor: pointer; z-index: 1; }



.org_wrap { width: 100%; text-align: center; background: #f9f9f9; padding: 100px 50px; border-radius: 0 20px 0 20px; }
.org_wrap img { width: 100%; }
.org_wrap .org_pc { display: block; }
.org_wrap .org_m { display: none; }
.org_wrap .org_pc img { max-width: 1420px; }
.org_wrap .org_m img { max-width: 760px; }

.org_txt .pro_table_tit { text-align: left; color: #000; margin-bottom: 10px; }
.org_txt .pro_table_tit h2 { margin-bottom: 20px; }
.org_txt .pro_table_tit span { font-size: 1.125rem; color: #000;  line-height: 22px; }
.org_txt .pro_table { border-top: 2px solid #222; width: 100%; margin-top: 70px; }
.org_txt .pro_table td { padding: 30px 20px; font-size: 1rem; border-bottom: 1px solid #d9d9d9; }
.org_txt .pro_table td ul li { list-style: disc; text-align: left; font-size: 1rem; font-family: 'Noto Sans KR', sans-serif; }
.org_txt .pro_table td img { width: 100%; max-width: 130px; }
.org_txt .pro_table td.td_head_1 { background: #f1f1f1; width: 10%; font-weight: 700; color: #000; font-size: 1.125rem; text-align: center; }
.org_txt .pro_table td.td_head_2 { background: #f9f9f9; width: 10%; font-weight: 500; text-align: center; }
.org_txt .pro_table_wrap { margin-bottom: 50px; }

@media screen and (max-width: 720px){
	.org_wrap { padding: 100px 20px; }
	.org_wrap .org_pc { display: none; }
	.org_wrap .org_m { display: block; }
}



#product_slide .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*회원가입구분 24.03.19*/
.register_sel_wrap { width: 100%; max-width: 600px; margin: 150px auto; }
.register_sel_wrap .register_sel { text-align: center; }
.register_sel_wrap .register_sel p { margin-top: 10px; margin-bottom: 50px; }

.register_btn { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.register_btn a { width: 100%; padding: 15px 0; text-align: center; color: #fff; background: var(--color-green); border-radius: 10px; transition: .3s!important; }
.register_btn a:hover { background: #222; }

.register_bus { width: 100%; margin-top: 20px; text-align: center; }
.register_bus a { color: #777; transition: .3s; }
.register_bus a:hover { opacity: .7; }

.sub_btn { display: flex!important; justify-content: center; align-items: center; }
/*
.sub_btn_ico { margin-left: 20px; width: 30px; height: 30px; border-radius: 30px; border: 0; background: #d9d9d9; margin-right: 15px; }
.sub_btn_ico img { max-width: 6px; margin-top: -1px; margin-bottom: 0; }

.register_btn .sub_btn_ico { width: 30px; height: 30px; border-radius: 30px; border: 0; background: #fff; margin-top: 2px; margin-right: 0; }
.register_btn .sub_btn_ico img { max-width: 6px; margin-top: -1px; margin-bottom: 0; }
*/
.sub_btn_ico { margin-left: 20px; width: 30px; height: 30px; margin-right: 15px; }
.sub_btn_ico img { max-width: 30px; }

.register_btn .sub_btn_ico { width: 30px; height: 30px; margin-top: 2px; margin-right: 0; }

@media screen and (max-width: 720px){
    .register_sel_wrap { width: 92%; }
}






/*    부분리뉴얼*/
.color_1 { color: #62b995; }
.color_2 { color: #144734; }
.color_gray { color: #999; }

.sub_img_print figure{ background-image: url("/img/sub_page_02/print/print_vis.jpg")!important; background-position: center!important; background-size: cover!important; }
.sub_img_mill figure{ background-image: url("/img/sub_page_02/mill/mill_vis.jpg")!important; background-position: center!important; background-size: cover!important; }
.sub_img_scan figure{ background-image: url("/img/sub_page_02/scan/scan_vis.jpg")!important; background-position: center!important; background-size: cover!important; }
.sub_img_cam figure{ background-image: url("/img/sub_page_02/camcad/cam_vis.jpg")!important; background-position: center!important; background-size: cover!important; }
.sub_img_cam .img_text { max-width: 600px!important; }
.sub_img_cad figure{ background-image: url("/img/sub_page_02/camcad/cad_vis.jpg")!important; background-position: center!important; background-size: cover!important; }
.sub_img_cad .img_text { max-width: 600px!important; }
.sub_img_kit figure { background-image: url("/img/sub_page_02/kit/kit_vis.jpg")!important; background-position: center!important; background-size: cover!important; }
/*.sub_img_kit .img_text { right: 15%; left: auto!important; top: auto!important; bottom: 20%; transform: translate(15%, -40%)!important; }*/

.pro_img_box .img_text { max-width: 450px; left: 20%; top: 40%; transform: translate(-20%, -40%)}
.pro_img_box .img_text img { width: 100%; max-width: 530px; }
.sub_img_print::after, .sub_img_mill::after, .sub_img_scan::after, .sub_img_cam::after, .sub_img_cad::after, .sub_img_kit::after { display: none; }

.product_header a {font-size: 18px; width: 100%; height: 100%; display: block; }
.a_short a{padding: 0 10px;}
.product_header { position: sticky; top: 150px; background: #144734;left: 0; z-index: 3; width: 100%;}
.product_header ul { display: flex;	flex-direction: row; justify-content: center; color: #FFFFFF;list-style: none; margin: 0; }
.product_header li { width: 250px; text-align: center; border-left: solid 1px #777777; line-height: 70px; }
.product_header li:first-child { border-left: none;}
.dropdown_btn {display: none; background-color: #144734;color: white; padding: 15px;font-size: 16px;border-bottom: solid 1px #eee;
    cursor: pointer; width: 100%;text-align: left;}
.dropdown_content { display: none;flex-direction: column; width: 100%;}
.product_mob { display: none; }
.lnbList { 
    background-color: #144734;
    color: white;
    padding: 5px 30px;
    font-size: 16px;
    border-bottom: solid 1px #eee;
    cursor: pointer;
    width: 100%;
    text-align: left;
    position: sticky;
    top: 76px; left: 0;
    z-index: 3;
}
.lnbList .lnb_tit { display: flex; justify-content: space-between; align-items: center; line-height: 50px; }
.lnbList .lnb_tit a { font-weight: 900; }
.lnbList .active .lnb_tit img {
    content: url('/img/gnb_bg01_2.gif');

}
.lnbList ul li ul li { padding: 5px 0; border-top: 1px solid #777; }
.lnbList ul li ul li a { display: block; width: 100%; line-height: 50px; }

@media screen and (max-width: 1480px){
    .product_header { top: 141px; }
}
@media screen and (max-width: 1080px){
    .product_header { top: 76px; }
}

.pro_section .feature_list { max-width: 100%; margin: 100px auto 0; }
.pro_section_gray { padding: 150px 4%!important; background-color: #f9f9f9; }
.feature_box { display: flex;align-items: center; justify-content: space-between; }
.feature_box>div { width: 50%; }
.feature_box.feature_box_second {}
.feature_box_img img {width:100%;}
.feature_box_left { display: flex;align-items: center;justify-content: space-between;}
.feature_box_left>div { width: 50%; }
.feature_con { padding-left: 5%; }
.feature_con h3{margin-bottom:30px;}
.feature_con p{ margin-bottom: 20px; line-height: 30px; }

.subpro_section { margin-top: 100px; }
.subpro_section .pro_sub_wrap { width: 100%; max-width: 1420px; margin: 100px auto 0; display: flex; justify-content: space-between; align-items: center; gap: 70px; }
.subpro_section .pro_sub_wrap>div { width: 50%; }
.pro_sub_img img { width: 100%; }
.pro_sub_txt h3 { margin-bottom: 30px; }
.pro_sub_txt p { margin-bottom: 20px; line-height: 30px; }
.feature_con ul { margin-top: 20px; }
.feature_con ul li { display: flex; justify-content: flex-start; gap: 10px; margin-top: 20px; line-height: 30px; }
.feature_con ul li::before { content: ''; display: block; width: 5px; height: 5px; background: #62b995; margin-top: 12px; }

.pro_video {
    position: relative;
    padding-bottom:45.6%;
    width: 100%;
    max-width: 1420px;
    margin: 100px auto;
    height: 0;
    overflow: hidden;
}

.pro_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pro_icn_wrap { width: 100%; max-width: 1420px; margin: 100px auto 0; display: flex; justify-content: center; align-items: center; column-gap: 0.3%; flex-wrap: wrap; }
.pro_icn_wrap a { width: 49.5%; height: 100%; display: block; background: #fff; padding: 30px; transition: .3s; }
.pro_icn_wrap a div img.on { display: none; }
.pro_icn_wrap a .pro_icn_txt { display: flex; column-gap: 20px; align-items: center; margin-top: 50px; }
.pro_icn_wrap a .pro_icn_txt img { width: 40px; height: 10px; }
.pro_icn_wrap a:hover { background: #144734; }
.pro_icn_wrap a:hover .pro_icn_txt { color: #fff; }
.pro_icn_wrap a:hover div img.on { display: block; }
.pro_icn_wrap a:hover div img.off { display: none; }

.pro_spec { max-width: 1420px; margin: 100px auto 0; }
.pro_spec .pro_spec_tit  { margin-bottom: 20px; }
.pro_spec .tab { display: flex;flex-wrap: wrap; gap: 18px;list-style: none;padding: 0;justify-content: flex-start;}
.pro_spec .tab li{display: block;border:solid 1px #d9d9d9; padding: 15px;width: 24%; font-size: 1.125rem;font-weight: 400;}
.pro_spec .tab-content{display: none; padding: 50px; border: 1px solid #ccc; background-color: #f3f3f3;}
.pro_spec .tab .current {background: #144734;color: #ffffff;border: solid 1px #144734;}
.tab-content.current {display: block;}
.pro_spec .tab li:hover {background: #144734;border: solid 1px #144734;color: #ffffff;transition: all 350ms cubic-bezier(1, 1, 1, 1);}
.tab-content{margin-top:40px!important;}
.tab-content h5{font-size:1.125rem;font-weight:600;color:#144734;margin-bottom:15px;}
.tab-content p{font-size:1.125rem;font-weight:400;color:#222222;}

.tab-link { padding: 10px 20px; border: 1px solid #ccc;background-color: #fff;cursor: pointer;display: flex; align-items: center;}
.tab-link::before {content: '+';margin-right: 10px; color: #333;}
.tab-link:hover::before {color: #fff;}
.tab-link.current::before {content: '-';color: #fff;}

/*    프린트 탭 2개*/
.pro_spec .tab2 { display: flex;flex-wrap: wrap; gap: 18px;list-style: none;padding: 0;justify-content: flex-start;}
.pro_spec .tab2 li{display: block;border:solid 1px #d9d9d9; padding: 15px;width: 24%; font-size: 1.125rem;font-weight: 400;}
.pro_spec .tab-content2{display: none; padding: 50px; border: 1px solid #ccc; background-color: #f3f3f3;}
.pro_spec .tab2 .current {background: #144734;color: #ffffff;border: solid 1px #144734;}
.tab-content2.current {display: block;}
.pro_spec .tab2 li:hover {background: #144734;border: solid 1px #144734;color: #ffffff;transition: all 350ms cubic-bezier(1, 1, 1, 1);}
.tab-content2{margin-top:40px!important;}
.tab-content2 h5{font-size:1.125rem;font-weight:600;color:#144734;margin-bottom:15px;}
.tab-content2 p{font-size:1.125rem;font-weight:400;color:#222222;}
/*    프린트 탭 2개*/

.pro_other_wrap {display: flex;justify-content: center; gap: 30px; margin-top: 100px; }
.pro_other_wrap_m { display: none; }
#other_dot, #other_dot2 { display: none; }

.pro_other_box { position: relative;overflow: hidden;border-radius: 10px;}
.pro_other_box img {border-radius:10px; width: 100%;height: auto;display: block;}
.caption {display: none;}
.caption {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); color: white; opacity: 0; transition: opacity 0.3s ease;
    display: flex;flex-direction: column;align-items: flex-start; padding: 70px 20px;text-align: center;}
.pro_other_box:hover .caption { opacity: 1;}
.caption h2 {font-size:1.75rem; font-weight: 500; margin-bottom: 10px;}
.caption p {font-size:1.125rem;line-height: 150%; font-weight: 400; margin-bottom: 20px;text-align: left;}
.caption span {padding: 10px 20px;background-color: #00563f; color: #ffffff;text-decoration: none;padding-right:80px;transition: background-color 0.3s ease;
              font-size:1.125rem;font-weight: 400; margin-top:20px;}
.caption a:hover { background-color: #144734;}

@media screen and (max-width: 1420px){
    .pro_section { padding-left: 4%; padding-right: 4%; }
}

@media screen and (max-width: 1200px){
    .product_header a { font-size: 0.875rem; }
}

@media (max-width: 900px){
    .pro_icn_wrap { gap: 1%; }
    .pro_icn_wrap a { width: 49%; margin-top: 1%; }

    .subpro_section .pro_sub_wrap { display: flex; flex-direction: column; align-items: center; gap: 70px; }
    .subpro_section .pro_sub_wrap>div { width: 100%; }
    .pro_sub_txt p, .pro_sub_txt ul li { line-height: 20px; }
    
    .sub_img_print figure{ background-image: url("/img/sub_page_02/print/print_vis_m.jpg"); }
    .sub_img_mill figure{ background-image: url("/img/sub_page_02/mill/mill_vis_m.jpg"); }
    .sub_img_scan figure{ background-image: url("/img/sub_page_02/scan/scan_vis_m.jpg"); }
    .sub_img_cam figure{ background-image: url("/img/sub_page_02/camcad/cam_vis_m.jpg"); }
    .sub_img_cad figure{ background-image: url("/img/sub_page_02/camcad/cad_vis_m.jpg"); }
    .sub_img_0201 figure { background-image: url("/img/sub_page_02/sub_01_02_m.jpg"); }
    .sub_img_kit figure { background-image: url("/img/sub_page_02/kit/kit_vis_m.jpg"); }
    
    .pro_img_box .img_text { top: 20%!important; bottom: auto; }
}

@media (max-width: 870px){
    .pro_spec .tab-content {padding:15px;}
    .pro_spec .tab li{width: 30%}
    .pro_spec .tab-content2 {padding:15px;}
    .pro_spec .tab2 li{width: 30%}

    .pro_other_wrap { display: none; }
    .pro_other_wrap_m { display: block; overflow: hidden; margin-top: 50px; }
}

@media (max-width: 768px) {
    .pro_section { padding: 75px 4%; }
    .sub_img_cam figure{ background-image: url("/img/sub_page_02/camcad/cam_vis_m.jpg"); background-position: center top; background-size: cover; }
    
    .sub_img_cad figure{ background-image: url("/img/sub_page_02/camcad/cad_vis_m.jpg"); background-position: center top; background-size: cover; }
    

    .feature_box {
        flex-direction: column;
        gap:20px;
        margin-top: 50px;
    }
    .feature_con p { line-height: 20px; }
    .feature_con { padding-left: 0; }
    .feature_con h3 { margin-bottom: 20px; }
    .feature_box_left {
        flex-direction: column;
        gap:20px;
        margin-top: 50px;
        flex-direction: column-reverse;
    }		
    .feature_box_img {
        width: 100%;
    }

    .pc{display: none;}
    .mo{display:block}
    .br_mo{display:block;}
    .br_pc{display:none;}

    .pro_spec .tab li, .pro_spec .tab2 li{width: 47%;}
    .product_header { display: none; }
    .dropdown_btn {
        display: block;
    }
    .product_mob { display: block; }

    .feature_box {
        flex-direction: column;
        gap:20px;
        margin-top: 50px;
    }
    .feature_con { padding-left: 0; }
    .feature_con h3 { margin-bottom: 20px; }
    .feature_box_left {
        flex-direction: column;
        gap:20px;
        margin-top: 50px;
        flex-direction: column-reverse;
    }		
    .feature_box_img {
        width: 100%;
    }

    .feature_box_left>div, .feature_box>div { width: 100%; }
    .pro_video { padding-bottom: 56%; }
}
@media (max-width: 360px) {
    .pro_icn_wrap { gap: 0; }
    .pro_icn_wrap a { width: 100%; }
    .pro_spec .tab li, .pro_spec .tab2 li { width: 46%; }
}


#other_dot { text-align: center; position: absolute; bottom: 10px; left: 0; width: 100%; z-index: 1; }
#other_dot span { width: 20px; height: 2px; border-radius: 0; margin: 0 5px; background-color: #000; }
#other_dot span.swiper-pagination-bullet-active { background-color: #000; opacity: 1 }
#pro_other_swiper .caption2 { position: absolute; top: 0; left: 0; opacity: 1!important; width: 100%; height: 100%; z-index: 9999!important; padding: 30px 20px; color: #222; }
#pro_other_swiper .caption2 h2 {font-size:2.5rem; font-weight: 500; }
#pro_other_swiper .caption2 span {padding: 10px 20px;background-color: #00563f; color: #ffffff;text-decoration: none; transition: background-color 0.3s ease; font-size:1.125rem;font-weight: 900; margin-top:20px; display: flex; justify-content: space-between; width: 100%; max-width: 170px; border-radius: 30px; }
#pro_other_swiper .caption2 span img { width: auto; }

#pro_other_swiper .other_box { min-height: 500px; }
#pro_other_swiper .other_box .pro_other_box { width: 100%; height: 100%; min-height: 500px; display: block; background-size: cover!important; }
#pro_other_swiper .other_box:nth-child(1) .pro_other_box {  }
#pro_other_swiper .other_box:nth-child(2) .pro_other_box {  }
#pro_other_swiper .other_box:nth-child(3) .pro_other_box {  }

@media (max-width: 768px) {
    #pro_other_swiper .caption2 { padding: 40px 20px;}
}

/*    camcad feature 스와이프*/
.feat_swiper_wrap { padding-bottom: 50px; margin-top: 80px; }
.feat_swiper_wrap .caption3 { position: absolute; bottom: 0; left: 0; opacity: 1!important; width: 100%; height: 100%; z-index: 9999!important; padding: 30px 20px; color: #222; }
.feat_swiper_wrap .caption3 h2 {font-size:0.875rem; font-weight: 500; text-align: center; position: absolute; top: 80%; }
.feat_swiper_wrap .caption3 span {padding: 10px 20px;background-color: #00563f; color: #ffffff;text-decoration: none; transition: background-color 0.3s ease; font-size:1.125rem;font-weight: 900; margin-top:20px; display: flex; justify-content: space-between; width: 100%; max-width: 170px; border-radius: 30px; }
.feat_swiper_wrap .caption3 span img { width: auto; }

.feat_swiper_wrap .feat_swiper_box { min-height: 220px; }
.feat_swiper_wrap .feat_swiper_box>a { width: 100%; height: 100%; min-height: 220px; display: block; }

@media (max-width: 768px) {
    .feat_swiper_wrap .caption3 { padding: 40px 20px;}
}
/*    camcad feature 스와이프*/



.sub_section_start { margin-top: 150px; }
@media screen and (max-width:1080px){
    .sub_section_start { margin-top: 75px; }
}


/*support*/

.support_list { width: 100%; }
.support_list .support_box { display: flex; justify-content: space-between; align-items: center; gap: 70px; margin: 100px auto 0; }
.support_list .support_box>div { width: 50%; }
.support_list .support_box .support_box_img img { width: 100%; }
.support_list .support_box .support_con>div { margin-bottom: 20px; }
.support_list .support_box .support_con>div>p { margin-top: 15px; color: #7a848c; }
.support_list .support_box .support_con ul li::before { content: ''; display: block; width: 5px; height: 5px; background: #62b995; margin-top: 12px; }
.support_list .support_box .support_con ul li { display: flex; justify-content: flex-start; gap: 10px; line-height: 30px; }
.support_list .support_box .support_con .support_btn_wrap { width: 100%; margin-top: 40px; display: flex; justify-content: flex-start; align-items: center; gap: 10px; flex-wrap: wrap; }
.support_list .support_box .support_con .support_btn_wrap a { display: block; border: 1px solid #7a848c; color: #7a848c; background: #fff; padding: 20px; width: 20%; text-align: center; transition: .3s; }
.support_list .support_box .support_con .support_btn_wrap a:hover { background: #0f4025; color: #fff; border-color: #0f4025 }

.support_box { position: relative; }

.support_line { margin-top: 100px; width: 100%; height: 1px; background: #d9d9d9; }

@media screen and (max-width: 1020px) {
    .support_list { margin: 0 auto 0; padding: 0 4%; }
    .support_list .support_box { display: block; }
    .support_list .support_box>div { width: 100%; }
    .support_list .support_box .support_con { margin-top: 50px; }
}

@media screen and (max-width: 490px) {
    .support_list .support_box .support_con .support_btn_wrap a { width: 45%; }
}

/*support*/

.support_link h1 {font-size:2.25rem; font-weight: 600;margin-bottom: 25px;}
.support_link p {margin-bottom: 30px;}
.support_link a {font-weight: 600;}
.support_link {margin: 100px auto 0; background-image: url(/img/landing_page/land_down_bg.jpg); max-width: 1420px; text-align: center; padding: 80px 0;color:#ffffff;display: flex;flex-direction: column;align-items: center; background-size: cover; }

.support_btn_wrap { display: flex; justify-content: center; gap: 20px; align-items: center; }
.support_link_btn {background-color: #FFFFFF; border-radius: 10px 0 10px;color:#144734;padding:15px;}
.support_link_btn img{margin-right: 12px;}
.support_link_btn:hover { opacity: .8; transition: .3s;}


@media screen and (max-width: 768px) {
    .landingpage_download { margin-top: 50px; padding: 20px; }
}

.feature_subimg { max-width: 460px; }
.feature_subimg img { width: 100%; }
.feature_subimg p { text-align: center; margin-top: 20px; margin-bottom: 0; }

.inter_guide { margin-top: 150px; }
.guide_wrap { margin: 50px auto 0; width: 92%; max-width: 1420px; display: flex; justify-content: center; gap: 20px; align-items: top }
.guide_wrap .guide_cnt>p { text-align: center; margin-top: 10px; padding: 20px; background: #f9f9f9; border: 1px solid #eee; box-sizing: border-box; }
.guide_wrap .guide_cnt>img { width: 100%; }
.guide_wrap .guide_cnt .guide_cnt_tit { text-align: center; margin-top: 10px; padding: 20px; background: #f9f9f9; border: 1px solid #eee; box-sizing: border-box; }

@media screen and (max-width: 768px) {
    .guide_wrap { flex-direction: column; }
    .inter_guide { margin-top: 100px!important; }
}


/*contact*/

.sub_img_contact figure { background-image: url("/img/sub_page_01/sub_contact_bg.jpg"); }
.sub_img_contact .img_text { width: 100%; top: 40%; left: 0; position: absolute; }
/*.sub_img_contact .img_text h4 { margin-bottom: 20px; }*/

.contact_wrap { width: 92%; margin: 100px auto 0; display: flex; justify-content: center; align-content: center; border: 1px solid #d9d9d9; border-radius: 20px; }
.contact_wrap>ul, .contact_wrap>div.map_wrap { width: 50%; height: 70vh;  }
.contact_wrap>div.map_wrap>div { width: 100%; height: 100%; margin-top: 0!important; }
.contact_wrap>div.map_wrap #map_txt { background: #f9f9f9; text-align: center; line-height: 70vh; }
.contact_wrap>ul.tabs_contact { border-right: 1px solid #d9d9d9; overflow-y: scroll; }
.contact_wrap>ul.tabs_contact li.dis_none { display: none; }
.contact_wrap>ul.tabs_contact li.dis_block { display: block; }
.contact_wrap>ul.tabs_contact li.tabs_contact-link { padding: 50px 30px; border-bottom: 1px solid #d9d9d9; transition: .3s; cursor: pointer; }
.contact_wrap>ul.tabs_contact li.tabs_contact-link:hover { background: #f9f9f9; }
.contact_wrap>ul.tabs_contact li.tabs_contact-link .contact_list { margin-top: 30px; }
.contact_wrap>ul.tabs_contact li.tabs_contact-link .contact_list li { line-height: 30px; }
.contact_wrap>ul.tabs_contact li.tabs_contact-link .contact_list li img { margin-right: 5px; }

.contact_wrap>ul.tabs_contact::-webkit-scrollbar { width: 7px; }
.contact_wrap>ul.tabs_contact::-webkit-scrollbar-thumb { height: 10%; background: #62b995; border-radius: 10px; }
.contact_wrap>ul.tabs_contact::-webkit-scrollbar-track { background: rgba(0, 0, 0, .1);}

@media screen and (max-width: 1024px) {
    .contact_wrap { display: block; margin-top: 50px; border-radius: 0; }
    .contact_wrap>ul, .contact_wrap>div.map_wrap { width: 100%; height: 30vh; }
    .contact_wrap>div.map_wrap #map_txt { line-height: 30vh; }
    
    .contact_wrap>ul.tabs_contact li.tabs_contact-link { padding: 20px; }
    .contact_wrap>ul.tabs_contact li.tabs_contact-link .contact_list { margin-top: 5px; }
}

/*contact*/

.sub_section_implant ul.tabs li { line-height: 40px; }
.sub_section_implant .tab-content .tab-link { border: none; }
.sub_section_implant .tab-content .tab-link::before { display: none; }

.rp_white_section { width: 92%; margin: 0 auto; }
@media screen and (max-width: 870px) {
    .rp_white_section { width: 100%; }
}

/*스크롤 이동 관련*/
.sub_section { position: relative; }
.sub_section .anchor { position: absolute; top: -230px; }

/*KIT*/
.kit_wrap { width: 92%; margin: 100px auto 0; }
.kit_wrap .kit_img_wrap { margin-top: 30px; padding: 50px; border: 1px solid #d9d9d9; border-radius: 20px; width: 100%; text-align: center; position: relative; }
.kit_wrap .kit_img_wrap>img { width: 100%; max-width: 1170px; transition: 0.3s ease-in-out; opacity: 1; }


.smk_pop, .ssk_pop, .sgk_pop {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* 반투명 배경 */
    z-index: 1000; /* 다른 요소 위에 표시 */
}

.popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 100px 5px;
    border-radius: 20px;
}
.popup_content .tit_box_02 p { margin-top: 15px; }

.popup_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.popup_cnt_item { width: 100%; display: flex; justify-content: center; align-items: flex-end; margin-top: 50px; }
.popup_cnt_item>img { width: 100%; max-width: 899px }

@media screen and (max-width: 1024px) {
    .kit_wrap .kit_img_wrap { padding: 20px; }
    .popup_content { padding: 20px; width: 92%; padding-top: 50px }
    .popup_cnt_item { margin-top: 50px; }
}

.insta_wrap, .youtube_wrap { width: 92%; margin: 100px auto; }
@media screen and (max-width: 780px) {
    .insta_wrap, .youtube_wrap { margin: 50px auto; }
}

.cursor { cursor: pointer; }

.kit_box_wrap { width: 100%; display: flex; justify-content: center; align-items: top; }
.kit_box_wrap>div { width: 50%; }
.kit_box_wrap>div>div { text-align: center; }
.kit_box_wrap>div .kit_box_img img { width: 100%; max-width: 500px; }
.kit_box_wrap>div .kit_box_txt { width: 50%; margin: 0 auto; padding: 20px; border: 1px solid #d9d9d9; border-radius: 20px; background: #f9f9f9; box-sizing: border-box; text-align: center; }
@media screen and (max-width: 780px) {
    .kit_box_wrap>div .kit_box_txt { padding: 10px; }
}

.video_wrap { width: 92%; margin: 0 auto; padding-top: 0; }
.video_wrap iframe { width: 100%; height: 100vh; }



/*more - link button*/
.link_a{display: block;text-align: center;}
.link_a i{padding: 0 9px;position: relative;}
.link_a i::before{content: "";position: absolute;top: 50%;right: 0;left: auto;transform: translateY(-50%);width: 0;height: 4px;background-color: rgba(145,202,177,.6);z-index: -1;transition: width .45s ease;}

.link_a i:hover::before{width: 100%;right: auto;left: 0;}
.link_a.on i::before { width: 100%;right: auto;left: 0; }

.link_a_lft{text-align: left;}



/*2024.04.11 플로팅버튼*/
.float_wrap.dis_none { opacity: 0; }
.float_wrap.dis_block { opacity: 1; }
.float_wrap { position: fixed; bottom: 10%; right: 2%; width: 20%; max-width: 200px; z-index: 19; transition: .5s; }
.float_wrap div { width: 100%; }
.float_wrap .float_1 { text-align: center; background: #fff; border: 2px solid #00563f; border-radius: 25px; display: block; margin-bottom: 10px; transition: .3s; }
.float_wrap .float_1:hover { opacity: .5; }
.float_wrap .float_1 a { text-align: center; color: #00563f; width: 100%; height: 100%; display: block; padding: 10px 0; }
.float_wrap .float_2 { background: linear-gradient(120deg, #0b8a68, #00563f); border-radius: 25px; display: block; position: relative; transition: .3s; }
.float_wrap .float_2:hover { opacity: .5; }
.float_wrap .float_2 a { color: #fff; display: block; width: 100%; padding: 100px 20px 10px; height: 100%; }
.float_wrap .float_2 .float_icn { position: absolute; top: 15px; right: 10px; width: 53px; height: 51px; }

@media screen and (max-width: 590px){

    .float_wrap>div a { font-size: 10px; }
    .float_wrap .float_2 .float_icn { width: 40px; height: 35px; left: 50%; transform: translateX(-50%); }
    .float_wrap .float_2 a { text-align: center; padding: 60px 0 10px; }
}