@charset "utf-8";

.title{
    height: calc(100vh - 90px);
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/news/news2_big.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;

}

.news-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: 32px;
    font-weight: bold;
    text-align: left;
    font-weight: 700;
    font-style: normal;
}

.shop-item .subtitle{
    margin-top: 15px;
}

.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;
    font-size: 32px;
    text-align: center;
}

.item-list dd{
    font-size: 13px;
    line-height: 20px;
    margin-top: 20px;
    text-align: center;
}

.news-area{
    margin-top: 50px;
    /* display: flex; */
}

.about-news{
    margin: auto auto 20px 30px;
    text-align: center;

}

.about-news p{
    text-align: left;
}

.about-news .news-title{
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.about-news .news-text{
    font-size: 14px;
    line-height: 26px;
}


.news-group-other h2{
    margin-top: 200px;
    font-size: 96px;
    font-weight: bold;
    text-align: left;
    font-family: "classico-urw", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CC765B;
}


.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;
    }







}