@charset "UTF-8";

/* =================
main
==================== */
.fv__name{
    max-height: 300px;
    height: 80vw;
    /* width: 10vw; */
}

.fv__pf{
    min-width: 200px;
    width: 40vw;
    max-width: 250px;
    margin-left: 25px;
}

.fv__cont{
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 92vw;
    position: absolute;
    bottom: 42px;
    right: 25px;
}

.fv__imgpc{
    display: none;
}

.fv__imgsp{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.main{
    position: relative;
}

.header__nav{
    width: 30px;
    position: absolute;
    top: 42px;
    right: 35px;
}

.fv__list{
    display: none;
}

/* main pc */
@media screen and (min-width:700px) {
    .fv__pf{
        margin-left: 0;
    }
}

@media screen and (min-width:1025px) {
    .main{
        animation-name: blur;
        animation-duration: 1.3s;
        animation-fill-mode:forwards;
        animation-iteration-count: 1;
    }

    @keyframes blur{
        from {
            filter: blur(7px);
        }

        to {
            filter: blur(0);
        }
    }
}

@media screen and (min-width:769px) {
    .fv__imgpc{
        width: 100%;
        height: 100vh;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .fv__imgsp{
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    .fv__list{
        display: block;
        position: absolute;
        top: 71px;
        right: 90px;
    }

    .fv__item{
        color: #7C672D;
        text-align: left;
        font-family: "optima";
        font-size: 2rem;
        font-weight: 700;
        margin-top: 15px;
        display: flex;
        align-items: center;
    }

    .fv__item:first-of-type{
        margin-top: 0;
    }

    .fv__item::before{
        content: "";
        display: inline-block;
        width: 30px;
        height: 2px;
        background-color: #7C672D;
        margin-right: 20px;
    }

    .fv__imgpc{
        width: 100%;
        height: 100vh;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .fv__imgsp{
        display: none;
    }

    .fv__cont{
        display: flex;
        position: absolute;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: end;
        bottom: 0;
        right: 60px;
        left: 40px;
    }

    .fv__name{
        width: auto;
        max-height: 100vh;
    }

    .fv__pf{
        margin-left: 0;
        padding-bottom: 60px;
        width: 39vw;
        max-width: 620px;
    }
}
/* pc 1025px */