/* 字體 */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");

@font-face {
    font-family: "Lato-Light";
    src: url(../fonts/Lato-Light.ttf);
}

.Lato-Light {
    font-family: "Lato-Light";
}


/*header*/

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* overflow-x: hidden;
    overflow-y: visible; */
}

.header .header-out {
    width: 100%;
    margin-top: calc(20* var(--vw-base));
    box-sizing: border-box;
    padding: 0 calc(60* var(--vw-base)) 0 calc(35* var(--vw-base));
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.header .header-logo {
    width: calc(122* var(--vw-base));
    height: auto;
    z-index: 1;
}

.header .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .header-open-btn {
    position: fixed;
    top: calc(37* var(--vw-base));
    right: calc(37* var(--vw-base));
    width: calc(26* var(--vw-base));
    height: calc(26* var(--vw-base));
    cursor: pointer;
    background-image: url(../img/header/select.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.header-in {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-in-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/header/header-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.header-in-txt {
    position: absolute;
    top: calc(432* var(--vw-base));
    left: calc(651* var(--vw-base));
    width: calc(470* var(--vw-base));
    height: calc(83* var(--vw-base));
    z-index: 5;
}

.header-list {
    position: absolute;
    left: calc(1330* var(--vw-base));
    top: calc(100* var(--vw-base));
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
    gap: calc(40* var(--vw-base));
}

.header-list li {
    position: "";
    color: #ffffff;
    font-size: calc(30* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 300;
    line-height: calc(45* var(--vw-base));
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
}


.header-list a {
    color: #ffffff;
    transition: all 0.6s ease;
}

.header-list li:hover a {
    color: #74912f;
}



.header-list .en {
    font-family: "Lato-Light";
    font-size: calc(30* var(--vw-base));
    letter-spacing: 0.05em;
}


.header-in .close {
    position: absolute;
    top: calc(37* var(--vw-base));
    right: calc(37* var(--vw-base));
    width: calc(26* var(--vw-base));
    height: calc(26* var(--vw-base));
    background-image: url(../img/header/close.png);
    background-size: cover;
    background-position: 0;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    z-index: 5;
}

.header-in .close:hover {
    background-image: url(../img/header/close-active.png);
    transition: all 0.6s ease-in-out;
}

.header-list .close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gold-line {
    position: absolute;
    top: calc(89* var(--vw-base));
    left: calc(1223* var(--vw-base));
    width: 1px;
    height: calc(772* var(--vw-base));
    background-color: #f3dbb0;
    z-index: 10;
    /* clip-path: inset(0 0 100% 0);
    transition: all 0.6s ease-in-out .6S; */
}