.header-bg{
    background-image: linear-gradient(to top, #ebe5d9, #c6e8f3);
    padding-bottom: 100px;
}
.header-bg .header-img{
    width: 1520px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.header-bg .header-ttl{
    position: absolute;
    top: 3.6vw;
    right: 2.6vw;
    max-width: max(31vw, 300px);
    text-align: right;
}
.header-bg .header-ttl img{
    height: max(2.3vw,20px);
    width: auto;
}
.header-bg .header-ttl .txt-01, .header-bg .header-ttl .txt-02, .header-bg .header-ttl .txt-03{
    animation: clipLeft 0.5s ease-in-out forwards;
    clip-path: inset(0 100% 0 0);
    filter: blur(5px);
    opacity: 0;
}
.header-bg .header-ttl .txt-01, .header-bg .header-ttl .txt-02{
    margin-bottom: max(2vw,20px);
}
.header-bg .header-ttl .txt-02{
    padding-right: 1.5vw;
    animation-delay: 0.5s;
}
.header-bg .header-ttl .txt-03{
    padding-right: 1.5vw;
    animation-delay: 1.0s;
}
.message{
    padding: 50px 15px;
    font-size: clamp(1.125rem, 0.943rem + 0.7767vw, 1.875rem);
    line-height: 2.3;
    font-family: 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'MS PMincho', serif;
}
.message p{
    opacity: 0;
    transform: translate(5px);
}
.message .active{
    animation: fadeinUp 0.5s ease-in-out forwards;
}
.logo{
    opacity: 0;
    transform: translateX(50px);
}
.logo.active{
    animation: fromLeft 0.5s 0.5s forwards;
}
.logo img{
    max-width: 70%;
    height: auto;
}
.pr-movie{
    background-color: #fff;
    width: 90%;
    max-width: 1200px;
    margin-top: -50px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 15px;
    opacity: 0;
    transform: translateY(5px);
}
.pr-movie.active{
    animation: fadeinUp 0.5s 0.5s forwards;
}
.pr-movie .movie-list{
    row-gap: 15px;
}
.pr-movie .movie-box{
    padding: 0 15px;
}
.pr-movie .movie-box iframe{
    aspect-ratio: 16 / 9;    
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes clipLeft{
    0%{
        opacity: 0;
        filter: blur(5px);
        clip-path: inset(0 100% 0 0);
    }
    100%{
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}
@keyframes fadeinUp{
    0%{
        opacity: 0;
        transform: translateY(5px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fromLeft{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
@media screen and (max-width: 1024px) {
    .header-bg .header-ttl{
        position: static;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .message{
        text-align: left;
    }
    .pr-movie{
        padding: 30px 0;
    }           
}