/* top.twig専用CSS */
.hero {
    background: #222831;
    color: #fff;
}

.hero-rel {
    position: relative;
    overflow: hidden;
}

.hero-sub-title {
    color: #eee;
    font-size: 1.5rem;
    margin: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.hero-logo {
    margin-bottom: 24px;
}

@media screen and (max-width: 800px) {

    .hero-sub-title {
        font-size: 1rem;
    }
}