/* CSS Document */





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

animation 

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



.fv_animation-scene_01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    opacity: 1;
}



.fv_animation-scene_02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    opacity: 0;
    overflow: hidden;
    transition: opacity 1s;
}
.fv_animation-scene_02.is_active {
    opacity: 1;
}
.fv_animation-scene_02 .content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}
.fv_animation-scene_02 .content .content_01 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: calc( 32 * 100vw / var( --design-width ) );
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    opacity: 1;
    transition: opacity 0.25s ease-in-out 2.75s;
}
.fv_animation-scene_02 .content .content_02 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: calc( 32 * 100vw / var( --design-width ) );
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.25s ease-in-out 2.875s;
}
.fv_animation-scene_02 .content.is_active .content_01 {
    opacity: 0;
}
.fv_animation-scene_02 .content.is_active .content_02 {
    opacity: 1;
}

.fv_animation-scene_02 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 3066 / 1266 ;
    font-size: 0;
    /*
    transition: transform 2s;
    */
}
.fv_animation-scene_02 .bg picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
}


.fv_animation-scene_03 {
    position: absolute;
    top: 0;
    left: 0;display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 1s;
}
.fv_animation-scene_03.is_active {
    opacity: 1;
}
.fv_animation-scene_03 .content {
    position: relative;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: calc( 32 * 100vw / var( --design-width ) );
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out 1s;
}
.fv_animation-scene_03.is_active .content {
    opacity: 1;
}
.fv_animation-scene_04 {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: transparent;
}
.fv_animation-scene_04 > a {
    position: relative;
    display: block;
    margin: 0;
    padding: 2rem;
    color: #000;
    font-family: 'Cormorant', serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: calc( 32 * 100vw / var( --design-width ) );
    line-height: 1;
    letter-spacing: 0.1em;
    background-color: rgba( 255, 255, 255, 0.85 );
    border-radius: 0 0 0 0.8em;
}
@media screen and ( max-width: 768px ) {
    .fv_animation-scene_02 .content .content_01 {
        font-size: calc( 20 * 100vw / var( --design-width ) );
    }
    .fv_animation-scene_02 .content .content_02 {
        font-size: calc( 20 * 100vw / var( --design-width ) );
    }
    .fv_animation-scene_02 .bg {
        aspect-ratio: 1751 / 882;
        /*
        transition: transform 4s;
        */
    }
    .fv_animation-scene_03 .content {
        font-size: calc( 16 * 100vw / var( --design-width ) );
    }
    .fv_animation-scene_04 > a {
        padding: 1rem;
        font-size: calc( 16 * 100vw / var( --design-width ) );
    }
}

