/*============
body
=============*/
.body{
    background: #FAEBD7;
}
/*============
mv
=============*/
.mv{
    position: relative;
    height: 100vh;
}
.mv .image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv .image.active{
    animation: zoomin01 3.6s ease-in-out forwards 0s;
}
.mv .title{
    position: absolute;
    bottom: 5%;
    left: 4%;
    color: var(--color-white);
    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 .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;
}
/*============
text-box 
=============*/
.text-box{
    position: relative;
    width: 62%;
    margin: 6% auto 0;
}
.text-box .main-text{
    font-family: var(--font-NotoSansJP);
    font-size: calc(16 / 1280 * 100vw);
    line-height: 1.8;
    translate: 0 10%;
    opacity: 0;
}
.text-box .main-text:not(:first-child){
    margin-top: 2em;
}
.text-box .main-text.active{
    animation: slide-up10 1s ease-out forwards 0s;
}
/*============
flex-wrapper
=============*/
.flex-wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 62%;
    margin: 6% auto 0;
}
.flex-wrapper._01{
    margin-top: 10%;
}
.flex-wrapper .photo{
    width: 38%;
}
.flex-wrapper .photo .image{
    scale: 1.2;
}
.flex-wrapper .photo .image.active{
    animation: zoomin01 2s ease-in-out forwards 0s;
}
.flex-wrapper .text-box{
    position: relative;
    width: 62%;
    margin: 0 0 0 auto;
    padding-left: 6%;
    z-index: 2;
}
.flex-wrapper._01 .text-box{
    margin-top: 6%;
}
.flex-wrapper .decorative-box{
    position: absolute;
    top: -16%;
    left: 27%;
    clip-path: inset(0 100% 0 0);
    z-index: 2;
}
.flex-wrapper .decorative-box.active{
    animation: clippath-left01 0.6s ease-in-out forwards 0.4s;
}
.flex-wrapper .decorative-text{
    position: relative;
    padding: 0 0.5em 0.5em;
    color: rgba(185 46 52 / 1);
    font-family: var(--font-ZenAntiqueSoft);
    font-size: 4.4vw;
    text-transform: capitalize;
    white-space: nowrap;
}
.flex-wrapper .decorative-text::before{
    content: "";
    display: block;
    width: 100%;
    height: 52%;
    background: rgb(255 255 255 / 0.6);
    position: absolute;
    top: 20%;
    left: 0;
    transform: skewY(-2deg);
    z-index: -1;
}
/*============
photo-box
=============*/
.photo-box{
    position: relative;
    display: flex;
    width: 62%;
    margin: 6% auto 0;
}
.photo-box .photo{
    width: 25%;
    opacity: 0;
}
.photo-box .photo.active{
    animation: fade 1s ease-in forwards;
}
.photo-box .photo:nth-child(2){
    animation-delay: 0.2s;
}
.photo-box .photo:nth-child(3){
    animation-delay: 0.4s;
}
.photo-box .photo:nth-child(4){
    animation-delay: 0.6s;
}
/*============
caption-box
=============*/
.caption-box{
    width: 62%;
    margin: 0.25% auto 0;
}
.caption-box .caption{
    font-family: var(--font-NotoSansJP);
    font-size: calc(10 / 1280 * 100vw);
    line-height: 1.6;
}
.credit{
    font-family: var(--font-NotoSansJP);
    font-size: calc(12 / 1280 * 100vw);
    margin: 5% auto 0 47%;
}
/*============
@media (max-width: 768px)
=============*/
@media (max-width: 768px){
    .mv{
        height: fit-content;
    }
    .mv .image{
        height: 69vh;
        object-fit: cover;
        object-position: 54% 0;
    }
    .mv .title{
        bottom: 9%;
        font-size: calc(28 / 375* 100vw);
        line-height: 1.6;
    }
    .mv .date{
        font-size: calc(10 / 375 * 100vw);
    }
    .text-box{
        width: 88%;
        margin-top: 10%;
    }
    .text-box .main-text{
        font-size: calc(14 / 375 * 100vw);
    }
    .flex-wrapper{
        flex-direction: column;
        width: 88%;
        margin-top: 10%;
    }
    .flex-wrapper .photo{
        width: 60%;
    }
    .flex-wrapper .text-box,
    .flex-wrapper._01 .text-box{
        width: 100%;
        padding: 0;
        margin: 10% auto 0;
    }
    .photo-box{
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10%;
    }
    .photo-box .photo{
        width: 50%;
    }
    .photo-box .photo:nth-child(3){
        animation-delay: 0s;
    }
    .photo-box .photo:nth-child(4){
        animation-delay: 0.2s;
    }
    /*============
    caption-box
    =============*/
    .caption-box{
        width: 96%;
        margin: 1% auto 0;
    }
    .caption-box .caption{
        font-size: calc(10 / 375 * 100vw);
        line-height: 1.6;
    }
    .flex-wrapper._01{
        margin-top: 20%;
    }
    .flex-wrapper .decorative-box{
        top: -8%;
        left: -0.5%;
        width: 45%;
        background: rgb(250 235 215 / 1);
        transform: skewY(-3deg);
    }
    .flex-wrapper .decorative-box.active{
        animation-delay: 0s;
    }
    .flex-wrapper .decorative-text{
        font-size: calc(27 / 375* 100vw);
        line-height: 1.6;
        white-space: inherit;
    }
    .flex-wrapper .decorative-text::before{
        display: none;
    }
    .credit{
        margin: 14% auto 0 6%;
        font-size: calc(10 / 375* 100vw);
    }
}    