@charset "UTF-8";
/* PC Header */
header {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo a {
    display: flex;
}
header .logo a:first-of-type {
    margin-top: 10px;
    margin-right: var(--space-30);
}
header nav ul {
    display: flex;
}
header nav li {
    margin-left: var(--space-60);
}
header nav li:first-of-type {
    margin-left: 0;
}
header nav li a {
    color: var(--color-white);
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
header.navbar-fixed-top {
    position: fixed;
    background: var(--color-dark);
}
    @media all and (max-width: 1200px) {
        header nav {
            display: none;
        }
    }
    @media all and (max-width: 1023px) {
        header {
            height: 80px;
        }
        header .logo a:first-of-type {
            width: 90px;
            margin-right: var(--space-10);
        }
        header .logo a:last-of-type {
            width: 70px;
        }
        header .logo a img {
            width: 100%;
        }
    }
    @media all and (max-width: 767px) {
        header {
            height: 60px;
        }
        header .logo a:first-of-type {
            width: 80px;
            margin-right: var(--space-10);
        }
        header .logo a:last-of-type {
            width: 60px;
        }
    }


footer {
    padding-top: 140px;
    padding-bottom: 60px;
    background: rgb(42,8,46);
    background: linear-gradient(180deg, rgba(42,8,46,1) 0%, rgba(0,0,0,1) 100%);
}
footer .layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .fLogo {
    display: flex;
    align-items: center;
}
footer .fLogo a:first-of-type {
    margin-top: 10px;
    margin-right: var(--space-30);
}
footer .fMenu {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--space-30);
}
footer .fMenu a {
    margin-left: var(--space-30);
    color: var(--color-white);
    font-size: var(--font-16);
}
footer .fMenu a:first-of-type {
    margin-left: 0;
}
footer .copy {
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    font-size: var(--font-16);
    font-weight: var(--fw-light);
}
@media all and (max-width: 767px) {
    footer {
        padding: var(--space-60) 0;
    }
    footer .layout {
        flex-wrap: wrap;
    }
    footer .fLogo a:first-of-type {
        width: 80px;
        margin-right: var(--space-10);
    }
    footer .fLogo a:last-of-type {
        width: 60px;
    }
    footer .fLogo a img {
        width: 100%;
    }
    footer .leftContent {
        width: 100%;
        margin-top: var(--space-30);
    }
    footer .fMenu {
        justify-content: flex-start;
        margin-bottom: var(--space-20);
    }
    footer .fMenu a {
        margin-left: var(--space-20);
    }
    footer .copy {
        text-align: left;
        font-size: var(--font-14);
    }
}
