/* CSS Document */





/* ==============================

animation 

============================== */
.page_container {
    display: none;
}
.fv_animation_v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.5s;
}
.fv_animation.is_active {
    opacity: 0;
}



.fv_animation-scene_01 {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
}
@media screen and ( max-width: 768px ) {
    .fv_animation-scene_01.is_active {
    }
}



.fv_animation-scene_01 .bg {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
}
.fv_animation-scene_01 .bg figure {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    aspect-ratio: 1920 / 2640;
    margin: 0;
    padding: 0;
    transition: 6s;
}
.fv_animation-scene_01.is_active .bg figure {
    bottom: calc( calc( calc( 2640 * 100vw / var( --design-width ) ) - 100vh ) * -1 );
}
.fv_animation-scene_01 .bg picture {
    position: relative;
    display: inline-block;
    width: 100%;
    aspect-ratio: 1920 / 2640;
    margin: 0;
    padding: 0;
}
.fv_animation-scene_01 .bg picture img {
    width: 100%;
}
@media screen and ( max-width: 768px ) {
    .fv_animation-scene_01 .bg {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        background-image: url( '../img/animation_v2/animation-sceane_01_sp.webp' );
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transform: scale( 1.4 );
        transition: 6s;
    }
    .fv_animation-scene_01.is_active .bg {
        transform: scale( 1 );
    }
    .fv_animation-scene_01 .bg figure {
        display: none;
    }
    .fv_animation-scene_01.is_active .bg figure {
    }
    .fv_animation-scene_01 .bg picture {
    }
    .fv_animation-scene_01 .bg picture img {
    }
}



.fv_animation-scene_01 .fg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.fv_animation-scene_01 .fg .content {
    position: relative;
    width: auto;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: min( calc( 32 * 100vw / var( --design-width ) ), 32px );
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    text-shadow: 1px 1px 0.2em rgba(0, 0, 0, 0.8), -1px 1px 0.2em rgba(0, 0, 0, 0.8), 1px -1px 0.2em rgba(0, 0, 0, 0.8), -1px -1px 0.2em rgba(0, 0, 0, 0.8);
}
@media screen and ( max-width: 768px ) {
    .fv_animation-scene_01 .fg {
    }
    .fv_animation-scene_01 .fg .content {
        font-size: calc( 16 * 100vw / var( --design-width ) );
    }
}

