/***************************************************************************************/
.maincopy{
    padding: 50px 0;
    text-align: center;
}


#news,
#shop{
    padding-bottom: 100px;
}
.news-list li{
    background: #fff;
    border-radius: 40px;
}
.news-list li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}
.news-list li a:hover{
    color: #666;
}
.news-list li .time{
    color: #333;
}
.news-list li div{
    height: 1px;
    background: #666;
}
.news-list li h4{
    width: 500px;
}

/***************************************************************************************/


#shop h3{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5rem;
    text-indent: 0.5rem;
}

#shop h3:before,
#shop h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #999;
}

#shop h3:before {
    margin-right: 1rem;
}

#shop h3:after {
    margin-left: 1rem;
}

.shop-list{
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}
.shop-list li{
    margin-bottom: 20px;
    padding: 12px;
    
    position: relative;
    
    background: #fff;
    overflow: hidden;
}

.shop-list li h4{
    padding: 10px;
    min-width: 100px;
    
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 10;    
    
    background: #000;
    color: #fff;
}
.shop-list li img {
    max-width: 100%;
    vertical-align: bottom;
    z-index: 1;
    transition: .5s;
}
.shop-list li img:hover {
    opacity: .8;
}

.close-shop::before{
    position: absolute;
    left: 0;
    top: 0;
    
    padding: 100px 0;
    width: 100%;
    height: 100%;
    
    color: #fff;
    font-size: 30px;
    letter-spacing: 1rem;
    text-align: center;
    content: "休業中";
    
    background: rgba(0,0,0,.5);
}




@media screen and (min-width: 1024px){
    .news-list li div{width: 100px;}
    .shop-list li{width: 390px;}
    .shop-list li:nth-of-type(2n){
        margin-left: 20px;
    }
}
@media screen and (max-width: 1023px){
    .news-list li .time{}
    .news-list li div{margin: 0 10px; width: 50px;}
    .news-list li h4{width: calc(100% - 100px);text-overflow: ellipsis;white-space: nowrap;}
}