@charset "utf-8";

/* ────────────────────── header ────────────────────── */
#header {
    z-index: 100;
    position: relative;
    width: 100%;
    height: 80px;
    background: transparent;
}
#header.on {
    border-bottom: 1px solid #444;
    background: #1c3b2c;
    box-sizing: border-box;
}
#header .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 12rem;
}

/* 로고 */
#header .logo {
    z-index: 101;
    position: static;
    order: 2;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 147px;
    height: 48px;
    margin: 0 4rem;
}
#header .logo a {
    display: block;
    width: 147px;
    height: 48px;
    margin: 0 auto;
    background: url(/images/common/logo_w.png) no-repeat center;
    font-size: 0;
}

/* ───────────── 1depth ───────────── */
.gnb {
    z-index: 99;
    position: static;
    height: 80px;
    padding: 0;
    flex: 1;

}
.gnb > ul {
    display: flex;
}
.gnb > ul > li:nth-child(4) {
    display: none;
}
.gnb > ul > li > a {
    display: block;
    padding: 0 4rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 80px;
    transition: color 0.4s ease-in-out;
}
.gnb > ul > li:first-child > a {
    padding-left: 0;
}
.gnb > ul > li:hover > a,
.gnb > ul > li.on > a {
    color: rgba(255,255,255,0.8);
}

/* ───────────── 2depth ───────────── */
.gnb > ul > li > .lnb {
    z-index: 99;
    position: absolute;
    left: 0;
    top: 80px;
    display: none;
    gap: 15rem;
    align-items: flex-start;
    width: 100%;
    padding: 4rem 12rem 6rem 34rem;
    background: #1c3b2c;
    color: #fff;
    box-sizing: border-box;
}
.gnb > ul > li > .lnb::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 27rem;
    display: block;
    width: 1px;
    height: 100%;
    background: #444;
}
.gnb > ul > li > .lnb::before {
    position: absolute;
    top: 4rem;
    left: 12rem;
    font-size: 2.4rem;
    font-weight: 600;
    color: #999;
}
.gnb > ul > li:nth-child(1) > .lnb::before {
    content: "About";
}
.gnb > ul > li:nth-child(2) > .lnb::before {
    content: "Products";
}
.gnb > ul > li > .lnb > li {
    display: inline-block;
    float: left;
    margin-right: 8%;
}
.gnb > ul > li > .lnb > li > a {
    display: inline-block;
    padding-right: 18px;
    background: url(/images/common/depth2_arrow.png) no-repeat right center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s ease-in-out;
}
.gnb > ul > li > .lnb > li > a:hover {
    color: #d5e2d9;
}

/* 3depth 리스트 (depth3) */
.gnb > ul > li > .lnb > li > .depth3 {
    margin-top: 2rem;
}
.gnb > ul > li > .lnb > li > .depth3 > li > a {
    display: block;
    margin-bottom: .6rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    transition: all 0.4s ease-in-out;
}
.gnb > ul > li > .lnb > li > .depth3 > li > a:hover {
    color: #fff;
}

/* ───────────── HEADER 오른쪽 버튼 영역 ───────────── */
.link-area {
    order: 3;
    flex: 1;
    z-index: 99;
    position: static;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    width: 233px;
}

/* 제품문의 버튼 */
.link-area .contact {
    display: flex;
    align-items: center;
    width: 12rem;
    height: 40px;
    padding: 4px;
    border-radius: 40px;
    background: #006e36;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    transition: background 0.4s ease-in-out;
}

/* 아이콘 + hover 애니메이션 */
.link-area .contact span {
    position: relative;
    display: block;
    padding-left: 42px;
    line-height: 32px;
    transition: padding 0.4s ease-in-out;
}
.link-area .contact span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(/images/common/contact_arrow.png) no-repeat center center;
    background-color: #fff;
    transition: transform 0.4s ease-in-out;
}
.link-area .contact:hover {
    background: #111;
}
.link-area .contact:hover span::before {
    transform: translateX(90px);
}
.link-area .contact:hover span {
    padding-left: 20px;
}

/* 글로벌 */
.link-area .language {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 20px;
    padding-left: 20px;
    background: url(/images/common/global_ico_w.png) no-repeat left center;
}
.link-area .language a {
    position: relative;
    display: block;
    padding-left: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s ease;
}
.link-area .language a.on {
    color: #fff;
    font-weight: 500;
}
.link-area .language a:hover {
    color: rgba(255,255,255,0.8);
}
.link-area .language a.kr {
    margin-left: 10px;
}
.link-area .language a.kr::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 1px;
    height: 8px;
    background: rgba(255,255,255,0.4);
}

/* ───────────── 모바일 버튼 ───────────── */
.mbtn-box  {
    display: none;
}
.mtop-menu {
    display: none;
}


/* ────────────────────── sub ────────────────────── */
#page-sub #header {
    border-bottom: 1px solid rgba(68, 68, 68, 0.3);
}
#page-sub .gnb > ul > li > a {
    color: #444;
}
#page-sub #header .logo a {
    background-image: url(/images/common/logo.png);
}
#page-sub .link-area .language {
    background-image: url(/images/common/global_ico.png);
}
#page-sub .link-area .language a {
    color: rgba(68, 68, 68, 0.4);
}
#page-sub .link-area .language a.on {
    color: rgba(68, 68, 68, 1);
}
#page-sub .link-area .language a:hover {
    color: rgba(68, 68, 68, 0.8);
}
#page-sub .link-area .language a.kr::before {
    background: rgba(68, 68, 68, 0.4);
}
/* on */
.overflow_y #page-sub #header {
    border-bottom: 1px solid #444;
}
.overflow_y #page-sub #header .gnb > ul > li > a {
    color: #fff;
}
.overflow_y #page-sub #header .logo a {
    background-image: url(/images/common/logo_w.png);
}
.overflow_y #page-sub #header .link-area .language {
    background-image: url(/images/common/global_ico_w.png);
}
.overflow_y #page-sub #header .link-area .language a {
    color: rgba(255, 255, 255, 0.4);
}
.overflow_y #page-sub #header .link-area .language a.on {
    color: rgba(255, 255, 255, 1);
}
.overflow_y #page-sub #header .link-area .language a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.overflow_y #page-sub #header .link-area .language a.kr::before {
    background: rgba(255, 255, 255, 0.4);
}
#page-sub #header.on {
    border-bottom: 1px solid #444;
}
#page-sub #header.on .gnb > ul > li > a {
    color: #fff;
}
#page-sub #header.on .logo a {
    background-image: url(/images/common/logo_w.png);
}
#page-sub #header.on .link-area .language {
    background-image: url(/images/common/global_ico_w.png);
}
#page-sub #header.on .link-area .language a {
    color: rgba(255, 255, 255, 0.4);
}
#page-sub #header.on .link-area .language a.on {
    color: rgba(255, 255, 255, 1);
}
#page-sub #header.on .link-area .language a:hover {
    color: rgba(255, 255, 255, 0.8);
}
#page-sub #header.on .link-area .language a.kr::before {
    background: rgba(255, 255, 255, 0.4);
}

/* ───────────── 서브 비주얼 ───────────── */
#page-sub .container-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30rem;
    padding: 0 12rem;
    text-align: center;
}
#page-sub .breadcrumb-list {
    display: flex;
}
#page-sub .breadcrumb-list li {
    margin-left: 9px;
    padding-left: 11px;
    background: url(/images/common/breadcrumb_arr.png) no-repeat left top 9px;
    color: #777;
    font-size: 1.6rem;
}
#page-sub .breadcrumb-list li.home {
    width: 15px;
    height: 14px;
    margin-top: 3px;
    margin-left: 0;
    padding-left: 0;
    background: url(/images/common/home.png) no-repeat left center;
    font-size: 0;
}
#page-sub .breadcrumb-list li.current {
    color: #444;
    font-weight: 600;
}
#page-sub .sub-title {
    color: #111;
    font-size: 6rem;
    font-weight: 600;
}
#page-sub .container-section.sub-bg {
    margin-top: -80px;
    padding-top: 80px;
    background: url(/images/common/svis_img.jpg) no-repeat center top / cover;
}

.sub-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 53rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.sub-visual.sub01 {
    background-image: url(/images/common/svis_img1.jpg);
}
.sub-visual.sub02 {
    background-image: url(/images/common/svis_img2.jpg);
}
.sub-visual.sub03 {
    background-image: url(/images/common/svis_img3.jpg);
}
.sub-visual.sub04 {
    background-image: url(/images/common/svis_img4.jpg);
}
.sub-visual.sub05 {
    background-image: url(/images/common/svis_img5.jpg);
}
.sub-visual.sub06 {
    background-image: url(/images/common/svis_img6.jpg);
}
.sub-visual::before {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Paperlogy', sans-serif;
    font-size: 11rem;
    font-weight: 200;
    text-align: center;
    letter-spacing: -0.06em;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}
.sub-visual.sub01::before {
    content: "The Essence of Haelove";
}
.sub-visual.sub02::before {
    content: "Standards We Live By";
}
.sub-visual.sub03::before {
    content: "Our Story in Motion";
}
.sub-visual.sub04::before {
    content: "Where to Find Us";
}
.sub-visual.sub05::before {
    content: "Our Product Selection";
}
.sub-visual.sub06::before {
    content: "Inside Korean Laver";
}

#page-sub .content-section {
    min-height: 60rem;
    padding-top: 12rem;
}
#page-sub .content-section .wrap {
    max-width: 1520px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* 탭메뉴 */
.mtab_menu {display:none;}
.tap_menu_wrap {height:70px;}
.tap_menu_box {max-width:1400px;margin:0 auto;position:absolute;left:0;right:0;bottom:0;}
.tap_menu {display:inline-block;width:100%;}
.tap_menu li {height:70px;float:left;text-align:center;}
.tap_menu li a {height:70px;line-height:70px;display:inline-block;width:100%;font-size:18px;background:rgba(0,0,0,0.7);color:#fff;border-left:1px solid rgba(255,255,255,0.3);}
.tap_menu li:first-child a {border-left:0;}
.tap_menu li.on a,.tap_menu li a:hover,.tap_menu li a:active,.tap_menu li a:focus {background:#fff;color:#1674B0;border-top:3px solid #1674B0;line-height:64px;}

/* 컨텐츠 */
.content {width:auto;padding:60px 60px;}
	/* 로케이션 */
	.con_header {}
	.con_header h3 {margin-bottom:50px;color:#000;font-size:26px;font-weight:600;line-height:normal;text-align:left;border-bottom:1px solid #000;padding-bottom:20px;}

/* 실컨텐츠영역 */
.con_body {}



/* ────────────────────── footer ────────────────────── */
#footer {
    background:#222;
}
#footer .inner {
    display: flex;
    justify-content: space-between;
    padding: 8rem 12rem;
}
.footer-text .foot-logo img {
    display: block;
    object-fit: contain;
}
.footer-text .copyright {
    margin-top: 4.5rem;
    color: #888;
    font-size: 1.4rem;
    font-weight: 300;
}
.footer-info dl {
    display: flex;
    font-size: 1.6rem;
    font-weight: 300;
}
.footer-info dt {
    flex-shrink: 0;
    position: relative;
    display: block;
    min-width: 13rem;
    padding-right: 10px;
    color: #888;
}
.footer-info dt::before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    display: block;
    width: 1px;
    height: 8px;
    background: rgba(255,255,255,0.3);
}
.footer-info dd {
    display: block;
    padding-left: 10px;
    color: #aaa;
}


/* ────────────────────── 반응형 ────────────────────── */
/* PC */
@media only screen and (max-width:1519px) {
    #header .inner {
        padding: 0 4%;
    }
    .gnb > ul > li > .lnb {
        padding: 4rem 4% 6rem calc(22rem + 4%);
    }
    .gnb > ul > li > .lnb::before {
        left: 4%;
    }
    .gnb > ul > li > .lnb::after {
        left: calc(15rem + 4%);
    }
    .gnb > ul > li {
        flex: 1;
    }
    .gnb > ul > li > a {
        padding: 0;
        font-size: 1.6rem;
    }
    #page-sub .content-section .wrap {
        width: 92%;
    }
    .sub-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 530;
    }
    .sub-visual::before {
        font-size: 10rem;
    }

    #footer .inner {
        padding: 8rem 4%;
    }
}

/* Tablet */
@media only screen and (max-width: 1023px) {
    body {
        padding-top: 60px;
    }
    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: transparent;
    }
    #header.scrolled {
        border-bottom: 1px solid rgba(68, 68, 68, 0.3);
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
    }
    #header.scrolled .logo a {
        background-image: url(/images/common/logo.png);
    }
    #page-sub #header {
        border-bottom: 1px solid rgba(68, 68, 68, 0.3);
        backdrop-filter: blur(4px);
    }
    #page-sub #header.in-active {
        background: rgba(255, 255, 255, 0.8);
    }
    #header .inner {
        position: relative;
        justify-content: space-between;
        height: 60px;
    }
    #header .logo {
        order: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        flex: 0 0 auto;
        width: 120px;
        height: 38px;
        margin: 0;
        transform: translate(-50%, -50%);
    }
    #header .logo a {
        width: 100%;
        height: 38px;
        background-size: contain;
    }
    #header .mbtn-box {
        order: -1;
    }
    #header .link-area {
        order: 1;
        gap: 10px;
    }
    #header .link-area .contact {
        width: 100%;
        height: 32px;
        padding-right: 2rem;
        font-size: 1.6rem;
    }
    #header .link-area .contact span {
        padding-left: 32px;
        line-height: 24px;
    }
    #header .link-area .contact span::before {
        width: 24px;
        height: 24px;
        background-size: contain;
    }
    #header .link-area .language a {
        padding-left: 5px;
    }
    #header .link-area .language a.kr {
        margin-left: 5px;
    }
    #header .link-area .language a.kr::before {
        top: 7px;
    }
    #header .mbtn-box {
        display: block;
    }
    #header .mbtn-box .menu-open {
        z-index: 101;
        display: block;
        position: relative;
        width: 25px;
        height: 18px;
        font-size: 0;
    }
    #header .mbtn-box .menu-open:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 25px;
        height: 2px;
        margin: auto 0;
        background-color: #fff;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        border-radius: 5px;
    }
    /* 가운데 */
    #header .mbtn-box .menu-open span:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 25px;
        height: 2px;
        background-color: #fff;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        border-radius: 5px;
    }
    /* 하단 */
    #header .mbtn-box .menu-open span:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 25px;
        height: 2px;
        background-color: #fff;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        border-radius: 5px;
    }
    /* 위 */
    /* 모바일 버튼_on */
    #header .mbtn-box .menu-open.on {
        display: block;
        position: relative;
        width: 25px;
        height: 21px;
        font-size: 0;
    }
    #header .mbtn-box .menu-open.on:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        margin: auto 0;
        background-color: #111;
    }
    /* 가운데 */
    #header .mbtn-box .menu-open.on span:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 10px;
        width: 25px;
        height: 2px;
        border-radius: 2px;
        background-color: #111;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }
    /* 하단 */
    #header .mbtn-box .menu-open.on span:before {
        content: "";
        position: absolute;
        left: 0;
        top: 9px;
        width: 25px;
        height: 2px;
        border-radius: 2px;
        background-color: #111;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    /* 위 */
    /* 헤더메뉴 - PC gnb 숨김, 모바일 메뉴 사용 */
    .gnb {
        display: none;
    }
    .overflow_y {
        overflow: hidden;
    }
    .overflow_y #header {
        height: 60px;
        background: #fff;
    }
    .overflow_y #header .logo a {
        background-image: url(/images/common/logo.png);
    }
    .overflow_y .link-area .language {
        background-image: url(/images/common/global_ico.png);
    }
    .overflow_y .link-area .language a {
        color: rgba(68, 68, 68, 0.4);
    }
    .overflow_y .link-area .language a.on {
        color: rgba(68, 68, 68, 1);
    }
    .overflow_y .link-area .language a:hover {
        color: rgba(68, 68, 68, 0.8);
    }
    .overflow_y .link-area .language a.kr::before {
        background: rgba(68, 68, 68, 0.4);
    }
    #header.scrolled .mbtn-box .menu-open:after {
        background-color: #111;
    }
    #header.scrolled .mbtn-box .menu-open span:before {
        background-color: #111;
    }
    #header.scrolled .mbtn-box .menu-open span:after {
        background-color: #111;
    }
    #header.scrolled .link-area .language {
        background-image: url(/images/common/global_ico.png);
    }
    #header.scrolled .link-area .language a {
        color: rgba(68, 68, 68, 0.4);
    }
    #header.scrolled .link-area .language a.on {
        color: rgba(68, 68, 68, 1);
    }
    #header.scrolled .link-area .language a:hover {
        color: rgba(68, 68, 68, 0.8);
    }
    #header.scrolled .link-area .language a.kr::before {
        background: rgba(68, 68, 68, 0.4);
    }
    /* ───────── 모바일 전체 메뉴 ───────── */
    .mtop-menu {
        opacity: 0;
        z-index: 90;
        overflow-y: auto;
        display: block;
        position: fixed;
        left: 0;
        top: -100vh;
        width: 100%;
        height: 100vh;
        background: linear-gradient(
            to bottom,
            #ffffff 0px,
            #ffffff 60px,
            #1c3b2c 60px,
            #1c3b2c 100%
        );
        transition: top 0.45s cubic-bezier(0.28, 0.14, 0.15, 1), opacity 0.4s ease;
    }
    .mtop-menu.open {
        opacity: 1;
        top: 0;
        padding-top: 60px;
    }
    .mtop-menu>ul {
        width: 100%;
        background: #111;
    }

    /* 1뎁스 */
    .mtop-menu>ul>li {
        float: none;
        background: #111;
        border-bottom: 1px solid #444;
    }
    .mtop-menu>ul>li>a {
        display: block;
        width: 92%;
        height: 56px;
        margin: 0 auto;
        font-size: 2.2rem;
        color: #fff;
        line-height: 56px;
        text-align: left;
    }
    .mtop-menu>ul>li.on {
        background: #1c3b2c;
    }
    .mtop-menu>ul>li.on>a {
        color: #fff;
        font-weight: 600;
    }

    /* 2뎁스 (lnb) */
    .mtop-menu .lnb {
        display: none;
        background: #fff;
        border-top: 1px solid #e8e8e8;
    }
    .mtop-menu .lnb>li {
        border-bottom: 1px dashed #ccc;
        background: #f5f1e6;
    }
    .mtop-menu .lnb>li.on,
    .mtop-menu .lnb>li:last-child {
        border-bottom: 0;
    }
    .mtop-menu .lnb>li>a {
        display: block;
        width: 92%;
        margin: 0 auto;
        padding: 1.2rem 0;
        font-size: 2rem;
        line-height: 1.4;
        color: #777;
    }
    .mtop-menu .lnb>li.on>a,
    .mtop-menu .lnb>li>a:hover,
    .mtop-menu .lnb>li>a:focus,
    .mtop-menu .lnb>li>a:active {
        color: #1c3b2c;
        font-weight: 600;
        text-decoration: none;
    }
    /* 3뎁스 (depth3) */
    .mtop-menu .depth3 {
        display: none;
        background: #fff;
        padding: 10px 0 12px;
    }
    .mtop-menu .depth3>li {
        margin-bottom: 8px;
    }
    .mtop-menu .depth3>li:last-child {
        margin-bottom: 0;
    }
    .mtop-menu .depth3>li>a {
        position: relative;
        display: block;
        width: 92%;
        margin: 0 auto;
        padding: 0 1rem 0 15px;
        font-size: 1.8rem;
        color: #777;
        line-height: 18px;
    }
    .mtop-menu .depth3>li>a:before {
        content: "";
        position: absolute;
        left: 7px;
        top: 8px;
        width: 2px;
        height: 2px;
        background: #1c3b2c;
    }

    #page-sub #header .mbtn-box .menu-open:after {
        background: #111;
    }
    #page-sub #header .mbtn-box .menu-open span:before {
        background: #111;
    }
    #page-sub #header .mbtn-box .menu-open span:after {
        background: #111;
    }
    #page-sub .container-body {
        height: 20rem;
    }
    #page-sub .breadcrumb-list li.home {
        margin-top: 2px;
    }
    #page-sub .sub-title {
        font-size: 4.2rem;
    }
    .sub-visual::before {
        font-size: 7rem;
    }
    #page-sub .content-section {
        padding-top: 8rem;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    #header .logo {
        width: 110px;
        height: 32px;
    }
    #header .logo a {
        height: 32px;
    }
    #header .link-area .contact {
        display: none;
    }
    #page-sub .sub-title {
        font-size: 3.6rem;
    }
    #page-sub .content-section {
        padding-top: 6rem;
    }
    #page-sub .breadcrumb-list li {
        background-position: left top 8px;
        font-size: 1.8rem;
        white-space: nowrap;
    }
    .sub-visual {
        height: 24rem;
    }
    .sub-visual::before {
        font-size: 5.2rem;
    }
    #footer .inner {
        flex-direction: column-reverse;
        gap: 3rem;
        padding: 6rem 4% 5rem;
    }
    .footer-text .foot-logo img {
        width: auto;
        height: 4rem;
    }
    .footer-text .copyright {
        margin-top: 3rem;
    }
    .footer-info dt::before {
        top: 6px;
    }
}
@media only screen and (max-width: 480px) {
    #page-sub .container-body {
        height: 16rem;
        padding-top: 2rem;
    }
    .sub-visual::before {
        font-size: 3.6rem;
    }
}