/* RESET.CSS:3 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
    box-sizing: border-box;
    /* FONT! */
    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;
    -webkit-font-smoothing: antialiased
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, menu {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* var */
:root {
    --rel_padding: 190px;
    --m_color: #3EA742;
    --header_height: 100px;
    --font_mj: nanumMyeongjo, serif;
}
@media (max-width: 1600px) {
    :root {
        --rel_padding: 120px;
    }
}
body{
    --header_color: #000;
    transition: background-color 1s ease-in-out;
}
body.fp-viewing-sec1,
body.fp-viewing-sec1_5,
body.fp-viewing-sec5{
    --header_color: #fff;
}
body.all_menu_on{
    --header_color: #000;
}
/* Common */
body{
    background-color: #F4F2EC;
}
.rel_wrap{
    padding: 0 var(--rel_padding);
    width: 100%;
}

/* Header */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header_height);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0%;
    animation: intro_header 1s forwards;
    transform: translateY(-20px);
    animation-delay: .5s;
}
@keyframes intro_header{
    100%{
        opacity: 100%;
        transform: translateY(0px);
    }
}
.header .rel_wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_logo{
    width: 120px;
    height: 60px;
}
.header_logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    overflow: hidden;
    background-image: url('../img/header_logo_color.svg');
    background-size: cover;
    background-repeat: no-repeat;
}
body.fp-viewing-sec1 .header_logo a,
body.fp-viewing-sec1_5 .header_logo a,
body.fp-viewing-sec5 .header_logo a{
    background-image: url('../img/header_logo_white.svg');
}
.fp-viewing-sec1 .visu_c .header_logo a{
    background-image: url('../img/header_logo_color.svg') !important;
}
.header_right_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 50px;
}
.header_open{
    font-size: 16px;
    padding: 6px 15px;
    border: 1px solid var(--header_color);
    border-radius: calc(1px / 0);
    color: var(--header_color);
}
body.fp-viewing-sec1:has(.visu_c){
    --header_color: #000 !important;
}
.header_call_wrap{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s ease-in-out;
    text-decoration: none;
}
.header_call_wrap svg{
    width: 20px;
    height: 20px;
    flex: 1;
}
.header_call_wrap span{
    color: var(--header_color);
    font-size: 16px;
    pointer-events: none;
    width: 0%;
    opacity: 0%;
}
.header_call_path {
    fill: var(--header_color);
}
.header_call_wrap{
    width: 140px;
}
.header_call_wrap span{
    width: fit-content;
    opacity: 100%;
    margin-left: -5px;
}
.all_menu_btn_wrap{
    position: fixed;
    top: 0;
    right: var(--rel_padding);
    height: var(--header_height);
    width: 40px;
    z-index: 99;
    opacity: 0%;
    animation: intro_header 1s forwards;
    transform: translateY(-20px);
    animation-delay: .5s;
}
@keyframes intro_header{
    100%{
        opacity: 100%;
        transform: translateY(0px);
    }
}
.all_menu_btn{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-color: transparent;
}
.all_menu_btn span{
    display: block;
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: var(--header_color);
    transition: all .3s ease-in-out;
    left: calc(50% - 10px);
}
.all_menu_btn span:nth-child(1){
    top: calc(50% - 6px)
}
.all_menu_btn span:nth-child(3){
    top: calc(50% + 6px)
}
.all_menu_btn.active span:nth-child(1){
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.all_menu_btn.active span:nth-child(2){
    opacity: 0;
    width: 0;
}
.all_menu_btn.active span:nth-child(3){
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.all_menu_wrap{
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 98;
    transition: all .5s ease-in-out;
}
.all_menu_wrap.active{
    top: 0;
}
.all_menu_logo_wrap{
    width: 100%;
    height: var(--header_height);
    display: flex;
    align-items: center;
}
.all_menu_logo{
    width: 120px;
    height: 60px;
}
.all_menu_content_wrap{
    opacity: 0%;
    transition: all .6s ease-in-out;
    transition-delay: .6s;
}
.all_menu_wrap.active .all_menu_content_wrap{
    opacity: 100%;
}
.all_menu_logo_wrap a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    overflow: hidden;
    background-image: url('../img/header_logo_color.svg');
    background-size: cover;
    background-repeat: no-repeat;
}
.all_menu .menu_depth1{
    padding: 20px var(--rel_padding);
    position: relative;
    overflow: hidden;
}
.all_menu .menu_depth1:after{
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #22211E;
    z-index: -1;
    transition: all .3s ease-in-out;
    transition-delay: .1s;
}
.all_menu .menu_depth1:hover > a{
    color: #fff;
}
.all_menu .menu_depth1:hover::after{
    top: 0%;
}
.all_menu .menu_depth1 > a{
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s ease-in-out;
}
.all_menu .menu_depth1 > a > span{
    font-size: 44px;
    font-weight: 800;
    font-family: var(--font_mj);
    margin-right: 20px;
}
.all_menu .menu_depth2{
    display: flex;
    gap: 20px;
    opacity: 0%;
    pointer-events: none;
    height: 0%;
    transition: all .3s ease-in-out;
}
.all_menu .menu_depth1:hover .menu_depth2{
    margin-top: 20px;
    opacity: 100%;
    pointer-events: auto;
    height: 1em;
}
.all_menu .menu_depth2 li > a{
    text-decoration: none;
    color: #fff;
    opacity: .5;
}
.all_menu .menu_depth2 li > a:hover{
    opacity: 1;
}


.sec_sub_title{
    display: inline-block;
    border-bottom: 1px solid #000;
    padding-bottom: 1px;
}
.sec_sub_title,.sec_sub_title span{
    font-family: var(--font_mj);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
}
.sec_sub_title span{
    letter-spacing: 0px;
}
.sec_title{
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
}
.sec_sub_title_num{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}
.sec_title strong{
    font-weight: 700;
    color: var(--m_color);
}
.sec_txt{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
.sec_txt_small{
    font-size: 12px;
}
.btn_wrap{
    display: flex;
    gap: 20px;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    background-color: #000;
    color: #fff;
    height: 50px;
    padding: 0 20px;
    text-decoration: none;
    font-size: 15px;
}
.sec_dl_wrap{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sec_dl_wrap dd{
    font-size: 18px;
    font-weight: 700;
    color: var(--m_color);
}
.sec_dl_wrap dt{
    font-size: 24px;
    font-weight: 400;
}
.loc_title{
    margin-bottom: 40px;
}
.sec_location_sub_txt{
    font-size: 14px;
    opacity: .6;
    margin-top: 10px;
}
.loc_btn_wrap{
    margin-top: 40px;
}
.loc_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map_wrap{
    width: 756px;
}
.map_wrap img{
    max-width: 100%;
}
.footer{
    background-color: #333;
    padding: 50px 0;
}
.footer_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.footer_logo_wrap{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_logo_title{
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}
.foot_logo_is{
    width: 181px;
    margin-right: 20px;
}
.foot_logo{
    width: 120px;
}
.footer_link_wrap{
    display: flex;
    gap: 10px;
}
.footer_left{
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}
.footer_link_wrap a{
    color: #fff;
    opacity: .5;
    text-decoration: none;
    font-size: 14px;
}
.footer_link_wrap a:hover{
    text-decoration: underline;
}
.footer_bottom{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.footer_bottom_txt_wrap{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 2em;
}
.footer_bottom_txt_wrap dl{
    display: flex;
    gap: 10px;
    color: #fff;
}
.footer_bottom_txt_wrap dt{
    color: #888;
    font-size: 13px;
}
.footer_bottom .footer_left{
    flex-direction: column;
    align-items: flex-start;
}
.footer_right{
    font-size: 13px;
    color: #888;
    text-align: right;
    line-height: 1.3;
}
.copyright{
    color: #888;
    font-size: 14px;
}
.copyright strong{
    color: #fff;
    font-weight: 400;
}
.adm{
    color: #555;
}

/* 250929 헤더 탑 메뉴 추가 */
.header{
    transition: all .3s ease-in-out;
}
.header:not(.header_index).scroll{
    background-color: #fff;
    border-bottom: #ddd;
}
.header_top_menu_wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 30px;
    height: 100%;
}
.header_top_menu_wrap .menu_depth1 > a span{
    display: none;
}
.header_top_menu_wrap .menu_depth1{
    list-style-type: none;
    height: 100%;
    position: relative;
}
.header_top_menu_wrap .menu_depth1 > a:after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: #000;
    left: 50%;
    top: calc(50% + 10px);
    transform: translateX(-50%); 
    transition: all .3s ease-in-out;
}
.header_top_menu_wrap .menu_depth1:hover > a:after{
    width: 100%;
}

.header:has(.header_top_menu_wrap:hover) .header_logo a{
    background-image: url('../img/header_logo_color.svg') !important;
}
.header_top_menu_wrap:has(.menu_depth1:hover) .menu_depth1 > a{
    color: #000 !important;
}
.header_top_menu_wrap .menu_depth1 > a{
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
}
.header_top_menu_wrap .menu_depth2{
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    opacity: 0%;
    pointer-events: none;
    transition: all .3s ease-in-out;
}
.header_top_menu_wrap 
.menu_depth1 .menu_depth2{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header_top_menu_wrap 
.menu_depth1 .menu_depth2 a{
    color: #333;
    text-decoration: none;
}
.header_top_menu_wrap .menu_depth1 .menu_depth2 a:hover{
    color: #000;
    font-weight: 700;
}
.header_top_menu_wrap .menu_depth2::after{
    background-color: #fff;
    content: "";
    position: absolute;
    top: -20px;
    left: -100vw;
    width: 300vw;
    height: 170px;
    z-index: -1;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
}
.header:has(.header_top_menu_wrap:hover){
    background-color: #fff;
}
.header_top_menu_wrap 
.menu_depth1:hover .menu_depth2{
    top: 120px;
    opacity: 100%;
    pointer-events: auto;
}