.section-hero {
    height: 100lvh;
    position: relative;
    overflow: hidden;
}

.section-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); */
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.6) 0%, rgba(253, 187, 45, 0) 100%);
    z-index: 1;
}

.section-hero .h1-style {
    color: var(--tateru-color-white);
}

.section-hero .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    color: var(--tateru-color-white);
    z-index: 1;
    position: relative;
}

.section-hero .wrapper .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 28.86px;
}

.section-hero .wrapper .content .description {
    width: 100%;
    max-width: 550px;
}

.section-hero #video-hero-mobile {
    display: none;
}

.section-hero .video {
	position: absolute;
    min-width: 100%;
    min-height: 100%;

    top: 0;

    /* top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px; */

	
    margin: auto;

}

.section-hero #video-hero {
    aspect-ratio: 16/9;
}

.section-hero #video-hero-mobile {
    aspect-ratio: 9/16;
}

@media screen and (max-width: 1000px) {
    .section-hero .overlay {
        background: rgba(0, 0, 0, 0.3);
    }
}


@media screen and (max-width: 700px) {
    .section-hero .h1-style br {
        display: none;
    }

    .section-hero #video-hero {
        display: none;
    }

    .section-hero #video-hero-mobile {
        display: block;
    }
}
