@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda+SC:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');


::selection {
    background: var(--Main);
    color: var(--Bg);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}



body {
    margin: 0;

    --Bg: #000;
    --Text: #fff;
    --Border: #444444;
    --Main: #b5ce00;

    --DearkGray: #181818;
    --Sans: 'Jost', 'Noto Sans TC', sans-serif;
    --Serif: 'Bodoni Moda SC', 'Noto Serif TC', serif;

    color: var(--Text);
    background: var(--Bg);

    font-family: var(--Sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    overflow-x: hidden;
    overflow-y: auto;

    --swiper-navigation-size: 20px;


    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

main {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-color: var(--Main);
}

section {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    white-space: normal;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

.normal {
    font-family: var(--Sans);
}

.mobile {
    display: none !important;
}

.en {
    display: block;
}

.tc {
    display: none;
}

.big{
    font-size: 1.3em;
}
.small {
    font-size: 14px;
}

h1 {
    font-size: 3.5vw;
    line-height: 1em;
    text-transform: uppercase;
}

.border {
    width: 100vw;
    height: 1px;
    background: var(--Border);
}

.bold{
    font-weight: bold;
}
.mainColor{
    color: var(--Main);
}


/*Header*/
header {
    width: 100%;
    height: 120px;
    position: fixed;
    background: var(--Bg);
    top: 0;
    left: 0;
    z-index: 4;

}

.logo {
    fill: var(--Text);
    width: 100px;
    height: auto;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.navOpen,
.navClose {
    font-size: 36px;
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 5;

    transition: opacity .5s;
}

.navOpen:hover,
.navClose:hover {
    opacity: .5;
    transition: opacity .5s;
}

nav {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;

    background: var(--Text);
    color: var(--Bg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;

    pointer-events: none;
    opacity: 0;
    transition: opacity 1s;
}

nav.active {
    width: 100vw;
    height: 100vh;

    background: var(--Text);
    color: var(--Text);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;

    pointer-events: auto;
    opacity: 1;
    transition: opacity 1s;
}

.navContainer {
    width: 100%;
    height: 100%;
    position: relative;
    color: var(--Bg);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 20px 20px;
}

.navContainer h1 {
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 400;
}

.navContainer h1:first-child {
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 10px;
}

.navContainer ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}
.navContainer ul.many{
    flex-direction: auto;
    flex-wrap: wrap;
    line-height: 1.8em;
}

.navContainer ul li {
    list-style: none;
    margin: 0 20px 0 0;
    position: relative;
}

.navContainer ul li a,
.navContainer h1 a {
    display: block;
    color: var(--BG);
    transition: .3s;
}

.navContainer ul li a:hover,
.navContainer h1 a:hover {
    opacity: .5;
    transition: .3s;
}

.navContainer ul li::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--Bg);
    top: 0;
    right: -10px;
    opacity: .3;
}

.navContainer ul li:last-child::before {
    content: none;
}

.navContainer a.disable{
    text-align: center;
    pointer-events: none;
    line-height: 1.2em;
    opacity: .3;
}

.navContainer a.disable span{
    display: block;
    font-size: 10px;
    line-height: 1.2em;
}

.switch-light {
    width: 70px;
    position: fixed;
    top: 45px;
    right: 80px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.switch-ios.switch-light input:checked~span {
    border-color: var(--Border);
    box-shadow: inset 0 0 0 30px var(--Border);
}

.switch-ios.switch-light a,
.switch-ios.switch-light input:checked~span a {
    border-color: var(--Border);
}

/*Footer*/
footer {
    width: 100%;
    position: relative;
    background: var(--DearkGray);
    color: var(--Text);
    padding: 120px 50px;
    text-transform: uppercase;
}

.logoList {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logoList img {
    width: 90px;
    height: auto;
    max-height: 50px;
}


footer h4 {
    margin-top: 80px;
    margin-bottom: 15px;
    opacity: .4;
}

footer h4:first-child {
    margin-top: 0;
}

.copyright{
    width: 100%;
    border-top: 1px solid var(--Border);
    margin-top: 100px;
    padding-top: 30px;
    font-size: 12px;
}
.copyright a{
    text-decoration: underline;
    color: var(--Text);
}


.backToTop {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 1px solid rgba(255, 255, 255, .4);
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
    color: var(--Text);
    transition: .3s;
}

.backToTop:hover {
    background: var(--Bg);
    color: var(--Text);
    transition: .3s;
}

.btn,
a.btn{
    cursor: pointer;
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    text-align: center;
    background: var(--Main);
    border: 1px solid var(--Main);
    color: var(--Bg) !important;
    text-decoration: none !important;
    transition: .3s;
}

.btn:hover,
a.btn:hover{
    background: var(--Bg);
    color: var(--Main)!important;
    transition: .3s;

}
.btn i{
    margin: 0 5px;
}
.btnGroup{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}


/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {
    section {
        width: 100vw;
        height: auto;
    }
}

@media (orientation:landscape) and (max-height: 768px) {}

@media (orientation:portrait) and (max-height: 1180px) {}

@media (orientation:portrait) and (max-height: 1024px) {}

@media (orientation:portrait) and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .mobile {
        display: block !important;
    }

    .desktop {
        display: none !important;
    }

    .logo {
        width: 50px;
    }

    header {
        height: 80px;
    }

    .navOpen,
    .navClose {
        font-size: 30px;
        top: 20px;
        right: 20px;
    }

    .switch-light {
        top: 20px;
        right: 70px;
    }

    h1 {
        font-size: 10vw;
    }

    .navContainer {
        padding: 20px 20px;
        font-size: 12px;
    }

    .navContainer h1 {
        font-size: 8vw;
    }

    footer {
        padding: 100px 20px;
    }
    .logoList{
        gap: 20px;
    }

    .logoList img {
        width: 75px;
        height: auto;
        max-height: 45px;
    }
    .navContainer a.disable {
        text-align: left;
    }

}

/*Iphone 10*/
@media (orientation: portrait) and (max-height: 812px) {}

@media (orientation: portrait) and (max-height: 736px) {}

@media (orientation: portrait) and (max-height: 667px) {}

@media screen and (max-width: 360px) {
    body {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {}