*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    appearance: none;
    font-family: type3;
    user-select: none;
}

img{
    width: 100%;
    height: auto;
    pointer-events: none;
}
html{
    width: 100%;
    height: 100%;
    min-width: 40em;
    background: #000000;
}
body{
    width: 100%;
    height: 100%;
    min-width: 40em;
}
@font-face {
    font-family: 'Type1';
    src: url("./font/Font/TaipeiSansTCBeta-Regular.ttf");
}
@font-face {
    font-family: 'Type1-Bold';
    src: url("./font/Font/TaipeiSansTCBeta-Bold.ttf");
}
@font-face {
    font-family: 'Type3';
    src: url("./font/Font/975MaruSC-Lite.ttf");
}
.default_text{
    font-family: Type3;
    font-size: 1.4em;
    color: whitesmoke;
}
.default_list_text{
    font-family: Type3;
    font-size: 1em;
    color: whitesmoke;
}
.title_list_text{
    font-family: Type3;
    font-size: 1.4em;
    color: whitesmoke;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.left{
    display: flex;
    justify-content: left;
    align-items: center;
}
.right{
    display: flex;
    justify-content:right;
    align-items: center;
}
.border-radius{
    border-radius: 1em;
}
:root{
    --Jolo:0.6em;
}
#nav{
    transition: 0.5s;

}
#nav_img{
    transition: 2s;
}
#nav_img_pre{
    transition: 1s;
}
#nav_background{
    transition: 0.5s;
}
#backToTop{
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    cursor: pointer;
}
#backToTop:hover{
    transform: scale(1.1);
}
.touch{
    transition: 0.3s;
    cursor: none;
}
.touch:hover{
    transform:scale(1.1);
    cursor: pointer;
}
.UrlTouch{
    transition: 0.3s;
    cursor: none;
    background: #2a2a2a;

}
.UrlTouch:hover{
    transform:scale(1.04);
    cursor: pointer;
    background: #343434;
}
.filter{
    height: auto;
    width: auto;
    background: #343434;
    overflow: hidden;
    border-radius: 0.2em;
    margin: 0 0.2em;
    padding:0.1em;
}
.daily{
    height: 100%;
    width: 100%;
    position: relative;
}
.imgMax{
    width: 100%;
    height: auto;
    transition: 0.5s;
}
.imgMax_sc:hover > .imgMax{
    transform: scale(1.04);
}
.heart_text{
    opacity: 0;
}
#heart:hover ~ #heart_text > p{
    opacity: 1;
}
@media screen and ( max-width: 82rem) {
    .imgMax{
        width: auto;
        height: 100%;
        transition: 0.4s;
    }
    .imgMax_sc:hover > .imgMax{
        transform: scale(1.08);
    }
}
#content_all{
    background: rgba(10, 10, 10, 0);
    transition: 0.5s;
}
#content_all:hover{
    background: rgba(10, 10, 10, 1);
}
#OC_Content{
    background: rgba(10, 10, 10, 0.4);
    transition: 0.5s;
}
#OC_Content:hover{
    background: rgba(10, 10, 10, 0.6);
}
#OC_Content_Img{
    opacity: 0;
    transition: 1s ease;
    transform: translateY(1em);
}
#magazine{
    background: rgba(10, 10, 10, 0);
    transition: 0.5s;
}
#magazine:hover{
    background: rgba(10, 10, 10, 1);
}
.star{
    position: absolute;
    bottom: -20px ;
    animation: animate 10s linear forwards;
    transition: 0.3s;
}
@keyframes animate{
    0%{
        transform: translateY(-100vh) translateX(-14vh) rotate(-7deg) scaleY(4);
        opacity: 60%;
    }
    80%{
        opacity: 40%;
    }
    100%{
        transform: translateY(0) translateX(0) rotate(-7deg) scaleY(4);
        opacity: 0;
    }
}
#nav_img_content{
    position: relative;
    will-change: transform;
    transition: transform 0.3s ease-out;
}
.button{
    cursor: pointer;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}
.button:hover{
    transform: scale(1.02);
}