/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2&display=swap');

body {
    font-family: "M PLUS 2", sans-serif;
    text-align: center;
}

@media (min-width: 572px) {
    br.sp {
        display: none;
    }
}

img {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}

html, body {
    height: 100%;
    margin: 0;
}

.hero {
    position: relative;
    height: 100%;
    justify-content: flex-end;
    padding: 3rem;
    color: #FFF;
    font-family: "Arial Black", Arial, sans-serif;
    user-select: none;
    align-items: center;
    background-image: url("/assets/hero/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;

    img {
        width: 100%;
        height: auto;
    }

    img.mobile {
        display: none;
    }

    @media (max-width: 576px) {
        img.desktop {
            display: none;
        }

        img.mobile {
            display: block;
        }
    }
}

.hero-title-top, .hero-title-bottom {
    position: absolute;
    width: 100%;
    max-width: 80%;
}

.hero-title-top {
    top: 10%;
    left: 5%;
}

.hero-title-bottom {
    bottom: 10rem;
    right: 5%;
}

.hero-scroll {
    position: relative;
    font-weight: 600;
    user-select: none;
    flex-direction: column;
    align-items: center;
    color: #FFF;
    animation: hero-fade_kf 2s infinite;
    letter-spacing: 0.1em;
}

@keyframes hero-fade_kf {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.4;
        transform: translateY(10px);
    }
}
