@charset "UTF-8";

/*---------------------------------

    メインビジュアル（パターン２）

---------------------------------*/

.mv02 {
    position: relative;
    height: 740px;
}
.mv02::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 185px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.5) 0%, rgb(0 0 0 / 0) 100%);
    content: "";
}
.mv02-text-wrap {
    position: absolute;
    bottom: 180px;
    left: calc(50% - 600px);
    z-index: 2;
}
.mv02-text {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    margin: 0;
    color: #012A47;
    font-family: "Zen Old Mincho", serif;
    font-size: 40px;
    letter-spacing: 0.2em;
    line-height: 1.5;
}
.mv02-text span {
    padding-inline: 40px;
    background-color: rgb(255 255 255 / 0.8);
}
.mv02-bottom-text-wrap {
    position: absolute;
    bottom: -16px;
    left: 0;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}
.mv02-bottom-text {
    width: fit-content;
    padding-right: 0.4em;
    margin: 0;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 100px;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    animation: text-loop 300s linear infinite;
}
.mv02-bottom-text:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    animation: text-loop 300s -150s linear infinite;
}
@keyframes text-loop {
    0%{
        translate: 100%;
    }
    100%{
        translate: -100%;
    }
}
.mv02-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.mv02-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv02-bg .splide {
    height: 100%;
    pointer-events: none;
}
.mv02-bg .splide__track {
    height: 100%;
}
.mv02-bg .splide__slide {
    width: 100%;
}
.mv02-bg .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% 50%;
    animation: zoomUp 10s linear infinite;
}
.mv02-bg .splide__slide:nth-child(2) img {
    animation-delay: 5s;
}
@keyframes zoomUp {
    0% {
        scale: 1 1;
    }
    100% {
        scale: 1.1 1.1;
    }
}
@media (max-width: 1440px) {

    .mv02-text-wrap {
        left: calc(50% - 520px);
    }

}
@media (max-width: 1200px) {

    .mv02-text-wrap {
        left: calc(50% - 460px);
    }

}
@media (max-width: 1000px) {

    .mv02-text-wrap {
        left: calc(50% - 350px);
    }

}
@media (max-width: 767px) {

    .mv02 {
        height: 680px;
    }
    .mv02::before {
        height: 120px;
    }
    .mv02-text-wrap {
        bottom: 120px;
        left: calc(50% - 7px);
        translate: -50%;
    }
    .mv02-text {
        row-gap: 10px;
        font-size: 36px;
        white-space: nowrap;
    }
    .mv02-bottom-text-wrap {
        bottom: -12px;
    }
    .mv02-bottom-text {
        font-size: 70px;
    }

}
