/*============
body
=============*/
.body{
    background: #FAEBD7;
}
/*============
mv
=============*/
.mv{
    position: relative;
    aspect-ratio: 2 / 1.15;
}
.mv .image{
    width: 60%;
    margin: 0 0 0 auto;
    object-fit: cover;
}
/* .mv .image.active{
    animation: slide-left01 3.6s ease-in-out forwards 0s;
} */
.mv .title{
    position: absolute;
    bottom: 5%;
    left: 4%;
    color: var(--color-black);
    font-family: var(--font-RocknRollOne);
    font-size: calc(68 / 1280 * 100vw);
    font-weight: normal;
    line-height: 1.4;
    clip-path: inset(0 100% 0 0);
}
.mv .title.active{
    animation: clippath-left01 1s ease forwards 0.8s;
}
.mv .title._01{
    color: var(--color-white);
}
.mv .date{
    position: absolute;
    bottom: 3%;
    right: 2%;
    color: var(--color-white);
    font-family: var(--font-NotoSansJP);
    font-size: calc(12 / 1280 * 100vw);
    letter-spacing: 0.6em;
    opacity: 0;
}
.mv .date.active{
    animation: fade 0.6s ease-out forwards 0.8s;
}
/*============
content-wrapper 
=============*/
.content-wrapper{
    position: relative;
    padding: 6% 0 24%;
    overflow: hidden;
}
/*============
footmark
=============*/
.footmark{
    position: absolute;
    width: 40%;
    opacity: 0;
}
.footmark.active{
    animation: clippath-top 2.6s ease forwards 0.6s;
}
@keyframes clippath-top{
    0%{ 
        opacity: 0.05;
        clip-path: inset(100% 0 0 0);
    }
    100%{
        opacity:0.051;
        clip-path: inset(0);
    }
}
.footmark._01{
    top: 22%;
    right: 0;
    rotate: -180deg;
}
.footmark._02{
    top: 50%;
    left: -6%;
    rotate: -270deg;
}
/*============
photo-box
=============*/
.photo-box{
    position: absolute;
    opacity: 0;
    mix-blend-mode: luminosity;
}
.photo-box.active{
    animation: fade 0.6s ease forwards 0.6s;
}
.photo-box._01{
    top: 10%;
    right: 0;
    width: 22%;
}
.photo-box._02{
    top: 40%;
    left: 0;
    width: 19%;
}
.photo-box._03{
    bottom: 0;
    right: -3%;
    width: 22%;
}
.photo-box .image{
    opacity: 0.6;
}
.photo-box .caption{
    margin-top: 0.5em;
    font-family: var(--font-NotoSansJP);
    font-size: calc(10 / 1280 * 100vw);
    line-height: 1.6;
}
.photo-box._01 .caption{
    margin-left: 15%;
}
.photo-box._02 .caption{
    margin-left: 20%;
}
.photo03-text{
    position: absolute;
    bottom: 0%;
    left: 58%;
    width: 22%;
    opacity: 0;
}
.photo03-text.active{
    animation: fade 0.6s ease forwards 1s;
}
/*============
text-box 
=============*/
.text-box{
    position: relative;
    width: 41%;
    margin: 6% auto 0;
}
.text-box .main-text{
    color: var(--color-black);
    font-family: var(--font-NotoSansJP);
    font-size: calc(16 / 1280 * 100vw);
    line-height: 1.8;
}
.text-box .main-text:not(:first-child){
    margin-top: 3em;
}
/*============
credit
=============*/
.credit{
    font-family: var(--font-NotoSansJP);
    font-size: calc(12 / 1280 * 100vw);
    margin: 5% auto 0 29.5%;
}
/*============
@media (max-width: 768px)
=============*/
@media (max-width: 768px){
    .mv{
        aspect-ratio: inherit;
    }
    .mv .image{
        height: 69vh;
        object-fit: cover;
        object-position: 54% 0;
    }
    .mv .title{
        bottom: 9%;
        font-size: calc(28 / 375* 100vw);
        line-height: 2;
        mix-blend-mode: difference;
    }
    .mv .date{
        font-size: calc(10 / 375 * 100vw);
    }
    .content-wrapper{
        padding-bottom: 28%;
    }
    .footmark._02{
        top: 39%;
    }    
    .text-box{
        width: 88%;
        margin-top: 10%;
    }
    .text-box .main-text{
        font-size: calc(14 / 375 * 100vw);
    }
    .text-box .caption{
        font-size: calc(10 / 375 * 100vw);
        line-height: 1.6;
    }
    .photo-box._01{
        width: 40%;
        top: 9%;
    }
    .photo-box._01 .image{
        width: 60%;
        margin: 0 0 0 auto;
    }
    .photo-box._02{
        top: 62%;
        right: 1%;
        left: auto;
    }
    .photo-box .caption{
        font-size: calc(8 / 375 * 100vw);
        line-height: 1.4;
    }
    .photo-box._01 .caption{
        text-align: center;
        margin-left: 50%;
    }
    .photo-box._02 .caption{
        margin-left: auto;
        margin-right: 10%;
        text-align: right;
    }
    .photo03-text{
        left: 38%;
        width: 40%;
    }
    .credit{
        margin: 14% auto 0 6%;
        font-size: calc(10 / 375* 100vw);
    }
}    