/* PC Header */
header {
    width: 100%;
    height: clamp(60px, calc(100 / var(--inner) * 100vw), 100px);
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}
header .layout {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1.logo {
    width: clamp(90px, calc(132 / var(--inner) * 100vw), 132px);
    transition: var(--transition);
}
header .logo .logo-fixed {
    display: none;
}
.gnb ul {
    gap: 0 var(--space-60);
}
.gnb ul > li > a {
    position: relative;
    color: var(--color-white);
    font-size: var(--font-20);
    font-weight: var(--fw-bold);
    font-family: var(--fm-en);
}
.gnb ul > li > a::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    content: '';
    transition: var(--transition)
}
.gnb ul > li.on > a::before,
.gnb ul > li > a:hover::before {
    width: 100%;
}
header.navbar-fixed-top {
    width: 100%;
    height: clamp(50px, calc(70 / var(--inner) * 100vw), 70px);
    position: fixed !important;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9996;
}
header.navbar-fixed-top .logo .logo-normal {
    display: none;
}
header.navbar-fixed-top .logo .logo-fixed {
    display: block;
    width: clamp(60px, calc(90 / var(--inner) * 100vw), 90px);
}
header.navbar-fixed-top .gnb ul > li > a {
    color: var(--color-basic);
    font-size: var(--font-16);
}
header.navbar-fixed-top .gnb ul {
    column-gap: var(--space-40);
}
header.navbar-fixed-top .gnb ul > li.on > a::before,
header.navbar-fixed-top .gnb ul > li > a:hover::before {
    background-color: var(--color-basic);
}
.gnb ul > li > a::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    content: '';
    transition: var(--transition)
}
    /*  Header 미디어쿼리 */
    @media all and (max-width: 1200px) {
        .gnb {
            display: none;
        }
    }
    @media all and (max-width: 640px) {

    }  
    @media all and (max-width: 320px) {
        
    }

/* footer */
footer {
    border-top: var(--border);
}
footer .footer-logo a {
    display: block;
    width: clamp(100px, calc(160 / var(--inner) * 100vw), 160px);
    margin-bottom: var(--space-20);
}
footer .footer-logo img {
    width: 100%;
}
footer .footer-sns ul {
    gap: 0 var(--space-15);
}
footer .footer-sns li a img {
    transition: var(--transition);
}
footer .footer-sns li a:hover img {
    opacity: 0.6;
}
footer .footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 60%;
}
footer .footer-info ul {
    gap: var(--space-10) var(--space-40);
}
footer .footer-info li {
    position: relative;
}
footer .footer-info li,
footer .footer-info li a {
    font-size: var(--font-18);
}
footer .footer-nav {
    justify-self: flex-end;
}
footer .footer-nav .sitemap {
    grid-template-columns: repeat(2, auto);
    gap: var(--space-10) var(--space-100);
}
footer .footer-nav .sitemap li a {
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
    white-space: nowrap;
    transition: var(--transition);
}
footer .footer-nav .sitemap li a:hover,
footer .footer-nav .sitemap li.on a {
    opacity: 0.6;
}
footer .copyright .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-20) 0;
    border-top: var(--border-gray);
}
footer .copyright p,
footer .copyright a {
    text-transform: uppercase;
}
footer .copyright a:hover {
    opacity: 0.6;
}
    @media all and (max-width: 1800px) {

    }
    @media all and (max-width: 1200px) {
        footer .footer-wrap {
            flex-wrap: wrap;
        }
        footer .footer-left,
        footer .footer-right {
            width: 100%;
        }
        footer .footer-right {
            margin-top: var(--space-60);
        }
    }
    @media all and (max-width: 640px) {
        footer .footer-right {
            grid-template-columns: repeat(1, 1fr);
        }
        footer .footer-nav {
            justify-self: flex-start;
            margin-top: var(--space-30);
        }
    }
    @media all and (max-width: 414px) {
        footer .copyright .layout {
            flex-wrap: wrap;
            padding: var(--space-20) 0;
        }
        footer .copyright p {
            width: 100%;
        }
    }