.origin-land {
    padding: 1rem;
    padding-top: 20vw;
    position: relative;
}

.origin-land > button {
    --main-color: #1868B7;
}

.origin-land::before {
    opacity: 25%;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/background/jormun.png");
    background-repeat: no-repeat;

    background-size: 100vw;
    background-position: -100px 50px;
}

.origin-land::after {
    pointer-events: none;
    z-index: 0;
    opacity: 25%;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/background/bark.png");
    background-repeat: no-repeat;

    background-size: 40vw;
    background-position: right 20vw;
}

.origin-land__video {
    max-width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    margin: auto;
}

.origin-land__video__iframe {
    position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.origin-land__video__preview {
    width: 100%;
}



@media (min-width: 768px) {
    .origin-land__video {
        max-width: 60%;
        z-index: 2;
    }

    .origin-land::before,
    .origin-land::after {
        display: block;
    }

    .origin-land::before {

        background-size: 40vw;
        background-position: left 20vw;
    }

    .origin-land__video__button::after {
        box-sizing: border-box;
        content: "";
        display: inline-block;
        pointer-events: none;
        width: 0px;
        height: 0px;
        margin-left: 5%;
        border-style: solid;
        border-width: 25px 0 25px 43.3px;
        border-color: transparent transparent transparent var(--main-color);
        transform: rotate(0deg);
    }
}

@media (min-width: 992px) {

    .origin-land__video {
        max-width: 50%;
    }
}