@charset "utf-8";

.title{
    height: calc(100vh - 90px);
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/shop/fv.png);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
}

.title h1{
    font-family: "classico-urw", sans-serif;
    font-size: 32px;
    font-weight: 400;

}

.title-text{
    margin: 0 auto;

}

.shop-contents{
    width: 1200px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.shop-item{
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.item-group{
    margin-top: 200px;
}

.shop-item h2{
    font-size: 96px;
    font-weight: bold;
    text-align: left;
    font-family: "classico-urw", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CC765B;
}

.item-list{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    column-gap: 150px;
    row-gap: 40px;
}

.item-list a{
    display: block;
    transition-duration: 0.2s;
}

.item-list a:hover{
    transform: scale(1.05);
}

.item-list dl{
    margin-top: 20px;
}

.item-list dt{
    font-weight: bold;
}

.item-list dd{
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.item-area{
    margin-top: 20px;
    display: flex;
}

.item-area img{
    width: 50%;
    max-width: 380px;
}

.about-item{
    margin: auto auto auto 100px;
    text-align: center;

}

.about-item p{
    text-align: left;
}

.about-item .item-title{
    font-size: 32px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-item .item-text{
    font-size: 14px;
    line-height: 26px;
}

.about-item .item-price{
    font-weight: bold;
    margin-top: 20px;
}

.item-price .price-detail{
    font-weight: 700;
    margin-bottom: 3px;
}

.about-item a{
    background-color: #CC765B;
    display: inline-block;
    min-width: 290px;
    min-height: 80px;
    line-height: 48px;
    border-radius: 40px;
    font-family: "classico-urw", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-top: 35px;
    
}

.about-item a h2{
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: black;
    text-align: center;
    margin-top: 16px;
}

.about-item a:hover{
    background-color: #EF6236;
}



.item-group-recommended h2{
    margin-top: 100px;
    color: black;
    font-size: 36px;
}


.footer{
    margin-top: 100px;
}




@media (max-width: 800px){
    .shop-contents{
        display: block;
        max-width: 100%;
        margin-top: 60px;
    }

    .shop-item{
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .item-list{
        grid-template-columns: repeat(2,1fr);
        column-gap: 35px;
    }

    .shop-menu{
        background-color: #f8f8f8;
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 60px;
        margin-right: 0;
    }

    .shop-menu-inner{
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .item-area{
        display: block;
    }

    .item-area img{
        width: 100%;
        max-width: 100%;
    }

    .about-item{
        margin-top: 20px;
        margin-left: 0;
    }

    .about-item a {
        width: 100%;
    }

    .footer{
        margin-top: 0;
    }







}