* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {border:0}
ul,li,ol,dl,dd,dt{list-style:none;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block; position: relative;}
legend {position:absolute;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle}
button {cursor:pointer;border:none;background:none;outline:0;color: white;}
input[type="submit"]{cursor:pointer}
textarea, select {font-family:"Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;}
p {word-break:break-all}
pre {overflow-x:scroll}
a, a:link, a:visited, a:hover, a:focus, a:active { color: black; text-decoration:none; }
address {text-decoration: none; font-style: normal;}
/*input_크롬 배경컬러*/
input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset}
hr {display:block; border: none;}
h1, h2, h3, h4, h5, h6 {font-weight: normal;line-height: normal;}
address, em { font-style: normal; }

main {display: block;position: relative;}

h1, h2, h3, h4, h5, h6 { font-size: 1em;}
span { line-height: normal; vertical-align: baseline; }
strong {font-weight: normal;}
b {font-weight: normal;}
i {
    vertical-align: middle;
    font-style: normal;
}
table {
    border-collapse: collapse;
}

html, body {
    height: 100%;
    position: relative;
}
.wrap {
    overflow: hidden;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 400;
}


/*hd*/
.hd {
    position: relative;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    width: 100%;
    top: 0; left: 0;
    z-index: 10;
    overflow: hidden;
    transition:  all 0.9s ease;    
}

/*logo*/
.hd .logo {
    position: absolute;
    left: 40px;
    height: 100px;
    z-index: 1;

}
.hd .logo a {
    position: relative;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
}
.hd .logo img {max-width: 100%;}

/*gnb*/
.gnb {
    top: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.gnb a {
    color: white;
}
.gnb .depth1 {
    display: flex;
}
.gnb .depth1 > li {
    position: relative;
    /*padding-right: 80px;*/
    padding-right: 70px;
}
.gnb .depth1 > li:last-child {
    padding-right: 0;
}
.gnb .depth1 > li > a {
    font-size: 19px;
    font-weight: 600;
    transition: transform 0.8s ease;
    display: inline-block;
}
/*.gnb .depth1 > li:nth-child(1) > a {
    transform: translateX(36px);
}
.gnb .depth1 > li:nth-child(2) > a {
    transform: translateX(18px);
}
.gnb .depth1 > li:nth-child(3) > a {
    transform: translateX(0px);
}
.gnb .depth1 > li:nth-child(4) > a {
    transform: translateX(-17px);
}
.gnb .depth1 > li:nth-child(5) > a {
    transform: translateX(-35px);
}*/
.gnb .depth1 > li > a:hover {
    color: #8DC53E;
}
.gnb .depth2 {
    position: absolute;
    top: 50px;
    width: 100%;
}
.gnb .depth2 li {    
    text-align: left;
    margin-bottom: 18px;
}
.gnb .depth2 li a {
    font-size: 16px;
    /*font-weight: 400;
    opacity: .8;*/
    font-weight: 500;
}
.gnb .depth2 li a em {
    font-size: 12px;
}
.gnb .depth2 li a:hover {
    opacity: 1;
    color: #8DC53E;
}
.gnb .depth2 {display: none;}


.hd.show { height: 300px;}
.hd.show .gnb .depth1 > li:nth-child(1) > a, 
.hd.show .gnb .depth1 > li:nth-child(2) > a,
.hd.show .gnb .depth1 > li:nth-child(3) > a,
.hd.show .gnb .depth1 > li:nth-child(4) > a,
.hd.show .gnb .depth1 > li:nth-child(5) > a
{transform: translateX(0px);}
.hd.show .gnb .depth2 {display: block;}

.hd .gnb .depth1 > li > a { transition-delay: .4s;}
.hd.show .gnb .depth1 > li > a {transition-delay: 0s;}

/*hd_sns*/
.hd_sns {
    position: absolute;
    top: 0;
    right: 120px;
    height: 100px;
    display: flex;
    align-items: center;
}
.hd_sns li a {
    background-color: rgba(255, 255, 255, 0);
}
.hd_sns li a:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

/*sns_common*/
.sns_list {
    display: flex;
}
.sns_list li { margin-right: 10px; }
.sns_list li:last-child {margin-right: 0;}
.sns_list li a {
    width: 39px;
    height: 39px;
    border-radius: 16px;
    display: block;    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sns_list li:nth-child(1) a{
    background-image: url(../img/sns_home_w.svg);
}
.sns_list li:nth-child(2) a{
    background-image: url(../img/sns_face_w.svg);
}
.sns_list li:nth-child(3) a{
    background-image: url(../img/sns_inst_w.svg);
}
.sns_list li:nth-child(4) a{
    background-image: url(../img/sns_yout_w.svg);
}

@media all and (max-width:700px) {
    
    .sns_list li { margin-right: 8px; }
    .sns_list li a { 
        width: 34px; height: 34px;
        border-radius: 14px;
    }
}

/*menu_btn*/
.menu_btn {
    position: absolute;
    position: fixed;
    right: 40px;
    top: 0;
    height: 100px;
    display: flex;
    align-items: center;
    z-index: 99;
}
.menu_btn .opener {
    position: relative;
    width: 30px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu_btn .opener span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    /*margin-bottom: 4px;*/
    transition: all 0.3s ease;
}
.menu_btn .opener.dark span {background-color: black;}
.menu_btn .opener:hover {
    height: 16px;
}
.menu_btn span:last-child {
    margin-bottom: 0;
}

.menu_btn .opener.open {
    height: 30px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu_btn .opener.open span {
    position: absolute;
    background-color: white;
}
.menu_btn .opener.open span:nth-child(2){
    opacity: 0;
}
.menu_btn .opener.open span:first-child{
    transform: rotate(225deg);
}
.menu_btn .opener.open span:last-child{
    /*transform: rotate(-45deg);*/
    transform: rotate(-225deg);
    /*transform: rotate(-405deg);*/
}




/*menu*/
.menu { 
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 98;
    top: 0;
    right: 0;
}
.menu .menu_cover {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.menu .menu_box {
    position: absolute;
    width: 700px;
    height: 100%;
    top: 0; right: 0;    
    color: white;
}
.menu .menu_box .bg_color {
    position: absolute;
    right: 0; top: 0;
    width: inherit;
    background-color: #8DC53E;
    background-color: #444a3d;
    background: linear-gradient( 120deg, #8DC53E, #81C53E );
    height: 150%;
}

.menu .menu_scroll {
    position: relative;    
    overflow-y: scroll;
    height: 100%;
}
.menu .menu_bg {    
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    bottom: 0;
    /*overflow: hidden;*/
}

.menu .menu_bg .menu_logo {
    position: absolute;
    left: 45px;
    top: 80px;
}
.menu .menu_bg .menu_logo img {width: 100%;}
.menu .menu_bg .menu_patten {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(40%, 40%);
    display: none;
}
.menu .menu_bg .bg1 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(40%, 40%);
}
.menu .menu_bg .bg_circle {
    position: absolute;    
    bottom: 0; right: 0;
    width: 400px;
    height: 400px;
    /*background-color: rgba(255, 0, 0, 0.17);*/
}

.menu .menu_bg .circle_1 {
    position: absolute;
    width: 120%;
    height: 120%;
    right: -40%;
    bottom: -40%;
}
.menu .menu_bg .circle_1 img {
    width: 99%;
}
.menu .menu_bg .circle_2 {
    position: absolute;
    width: 20%;
    width: 20%;
    top: 0%;
    left: 20%;
}
.menu .menu_bg .circle_2 img {
    width: 80%;
}

.circle_1 {
    animation: circle_ratate1 6000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes circle_ratate1 {
    from {        
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.circle_2 {
    animation: circle_ratate2 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes circle_ratate2 {
    from {        
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}



.menu .menu_inner {
    position: relative;
    padding: 80px 80px 80px 150px;
}

.menu .menu_title {
    margin-bottom: 60px;
}
.menu .menu_title img {
    max-width: 100%;
}
.menu .menu_title a {
    display: inline-block;
    color: white;
    font-size: 25px;
    font-weight: 700;
}
.menu .menu_title a span {
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-top: 10px;
}


/*depth1*/
.menu .depth1 {
    margin-bottom: 90px;    
}
.menu .depth1 > li {
    margin-bottom: 18px;
}
.menu .depth1 > li > a {
    font-size: 40px;
    font-size: 34px;
    font-weight: 700;
    color: white;
}
.menu .depth1 .cross {
    position: relative;
    width: 23px;
    height: 23px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    opacity: .6;
}
.menu .depth1 .cross::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: white;
}
.menu .depth1 .cross::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background-color: white;
}
.menu .depth1 > li > a:hover .cross {
    opacity: 1;
}



/*depth2*/
.menu .depth2 {
    margin-top: 20px;
    margin-bottom: 40px;
}
.menu .depth2 > li {
    margin-bottom: 20px;
}
.menu .depth2 > li:last-child {
    margin-bottom: 0;
}
.menu .depth2 > li > a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 27px;
    opacity: .7;
    display: inline-block;
}
.menu .depth2 > li > a p {
    font-size: 19px;
    font-weight: 400;
    word-break: keep-all;
}
.menu .depth2 > li > a:hover {
    opacity: 1;
}
.menu .depth2 > li.on > a {
    opacity: 1;
}

/*menu_sns*/
.menu_sns {
    margin-bottom: 30px;
}
.menu_sns li a {
    background-color: rgba(255, 255, 255, 0.13);
}
.menu_sns li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
.menu .menu_copyright {
    font-size: 15px;
    font-weight: 200;
}


/* depth2 on/off */
.menu .depth2 {
    display: none;
}
.menu .depth1 .open .depth2 {
    display: block;
}
.menu .depth1 .open .cross {
    opacity: 1;
}
.menu .depth1 .open .cross::after {
    display: none;
}


/* menu on/off */
.menu {
    transition-delay: .5s;
    right: -100%;
}
.menu .menu_cover {
    transition: all .5s ease;
    opacity: 0;
}
.menu .menu_box {
    transition: all .5s ease;
    opacity: 0;
}
.menu.show {
    transition: all 0s ease;
    right: 0;
}
.menu.show .menu_cover {
    transition: all .5s ease;
    opacity: 1;
}
.menu.show .menu_box {
    transition: all .5s ease;
    opacity: 1;
}

.scroll_none {
    overflow-y: hidden;
}

@media all and (max-width:1200px) {
    .menu .menu_inner { padding: 80px 50px 80px 130px; }
    .menu .menu_box {width: 600px;}
}

@media all and (max-width:700px) {
    .menu .menu_box {width: 100%;}
}
@media all and (max-width:500px) {
    .menu .menu_bg .menu_logo {
        left: 30px; top: 50px; width: 20px;
    }
    
    .menu .menu_title {margin-bottom: 40px;}
    .menu .menu_title a {font-size: 20px;}
    .menu .menu_title a span {font-size: 14px; margin-top: 5px;}
    
    .menu .menu_inner { padding: 50px 50px 50px 100px;}
    
    .menu .menu_bg .bg_circle {
        width: 300px; height: 300px;
    }
    
    
    /*depth1*/
    .menu .depth1 > li {
        margin-bottom: 10px;
    }
    .menu .depth1 > li > a {font-size: 25px;}
    
    .menu .depth1 .cross {
        width: 17px;
        height: 17px;
    }
    .menu .depth1 .cross::before { height: 3px; }
    .menu .depth1 .cross::after { width: 3px; }
    
    
    
    
    /*depth2*/
    .menu .depth2 {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .menu .depth2 > li {
        margin-bottom: 15px;
    }
    .menu .depth2 > li > a {
        font-size: 18px;
        line-height: 23px;
    }
    .menu .depth2 > li > a p {
        font-size: 17px;
    }
    
    .menu .menu_copyright {
        font-size: 13px;
        line-height: 20px;
    }
    /*.menu .menu_copyright span {display: block;}*/
}

@media all and (max-width:400px) {
    .menu .menu_bg .menu_logo {left: 25px;}
    .menu .menu_inner { padding: 50px 50px 50px 80px;}
}


/*banner*/
.banner {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #8DC53E;
    color: white;  
    padding: 40px 5vw; 
    margin-bottom: 130px;
    border-radius: 20px;
    overflow: hidden;
    
    background-image: url(../img/banner_bg.svg);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: right;
    background-blend-mode:luminosity;
    
    
    display: flex;
    align-items: center;
}
.banner .desc_wrap {
    width: 100%;
    display: flex;
    align-items: center;
}
.banner .btn_wrap {flex-shrink: 0;}

.banner .icon {
    width: 84px;
    flex-shrink: 0;
}
.banner .icon img {width: 100%;}
.banner .desc {
    flex-grow: 1;
    padding: 0 30px;
}
.banner .title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 34px;
    word-break: keep-all;
}
.banner .title span {display: inline-block}
.banner .text {
    font-size: 18px;
    line-height: 26px;
    word-break: keep-all;
}
.banner .btn {
    display: inline-block;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    background-color: #323B3B;
    padding: 15px 30px;
    border-radius: 100px;
    color: white;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.37);
}

.ft {
    color: white;
    background-color: #1B1C1A;
    padding: 40px;
    padding-top: 95px;
    padding-bottom: 50px;
    text-align: center;
    word-break: keep-all;
}

.ft .ft_logo {
    margin-bottom: 30px;
}
.ft .ft_logo img {max-width: 100%; }

.ft .ft_addr {
    line-height: 26px;
    margin-bottom: 50px;
}

.ft_copyright {
    font-size: 15px;
    font-weight: 200;
    color: #afafaf;
}

.ft .ft_sns  {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0;
}
.ft .ft_sns li a { 
    background-color: rgba(255, 255, 255, 0.13);
}

/*hd*/
@media all and (max-width:1300px) {
    .gnb {display: none}
}
@media all and (max-width:1200px) {
    .gnb {display: none;}
    .hd .logo {left: 30px;}
    .menu_btn {right: 30px;}
    .hd_sns {right: 100px;}
}
@media all and (max-width:800px) {
    .hd .logo {left: 25px;}
    .menu_btn {right: 25px;}
}

/*모바일모드*/
@media all and (max-width:700px) {
    .hd {height: 80px;}
    .hd .logo {height: 80px; width: 130px;}
    .menu_btn {height: 80px; }
    .menu_btn .opener { width: 26px; height: 12px; }
    .hd_sns {height: 80px;}
}

@media all and (max-width:550px) {
    .hd_sns {display: none;}
}
@media all and (max-width:500px) {
    .menu_btn {right: 6vw;}
}
@media all and (max-width:400px) {
    .hd .logo {left: 20px;}
}




/*banner*/
@media all and (max-width:900px) {
    .banner .title {
        font-size: 22px;
        line-height: 32px;
    }
    .banner .btn {
        font-size: 16px;
    }
    .banner .icon {width: 74px;}
}
@media all and (max-width:800px) {
    .banner { 
        flex-wrap: wrap; 
        padding: 50px 40px;
    }
    .banner .desc_wrap { margin-bottom: 30px; }
    .banner .desc { padding-right: 0; }
    .banner .title { padding-right: 0; }
    .banner .btn_wrap {
        width: 100%;
        text-align: center;
    }
    .banner .icon {width: 64px;}
}
@media all and (max-width:700px) {
    .banner { 
        text-align: center; 
        padding: 50px 35px;
    }
    .banner .desc_wrap { display: block; }
    .banner .desc { padding: 0; }
    .banner .icon {
        margin: 0 auto;
        margin-bottom: 30px;
    }
    
    .banner .title {
        font-size: 20px;
        line-height: 30px;
    }
    .banner .btn {
        font-size: 14px;
        padding: 13px 26px;
    }
    .banner .text {
        font-size: 16px;
        line-height: 24px;
    }
}
@media all and (max-width:500px) {
    .banner { 
        padding: 40px 20px;
    }
    .banner .icon {
        margin-bottom: 20px;
        width: 54px;
    }
    .banner .desc_wrap {
        margin-bottom: 20px;
    }
}

/*footer*/
@media all and (max-width:700px) {
    .ft {
        padding: 6vw;
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .ft .ft_logo {
        width: 160px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .ft .ft_addr {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 50px;
    }
    .ft_copyright {
        font-size: 13px;
    }

    .ft .ft_sns  {
        display: inline-block;
        margin-bottom: 25px;
        font-size: 0;
    }
}
@media all and (max-width:500px) {
    .ft .ft_addr { margin-bottom: 30px; }
    .ft .ft_addr span {display: block;}
    .ft {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

.go_top_btn {
    position: fixed;
    bottom: 0; right: 0;
    z-index: 11;
}
/*스크립트연동*/
.go_top_btn.attach {
    position: absolute;
    bottom: auto;
}
/*탑버튼*/
.go_top {
    position: absolute;
    bottom: 0; right: 0;
    padding-right: 20px;
    padding-right: 1vw;
    padding-bottom: 20px;
    
    transition: all 0.8s;    
    transform: translateY(100%);
    -ms-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    opacity: 0;
}
.go_top.scrolling  {    
    transform: translateY(0px);
    -ms-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);    
    opacity: 1;
}
.go_top a {
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    
}
.go_top a img {
    height: 35px;  
    transition: all 0.3s;
}
.go_top a:hover img {
    transform: translateY(-3px);
}

@media all and (max-width:900px) {
    .go_top {display: none;}
}