
/*****************************************************
記事リスト共通
******************************************************/
.contentlist-plg p {text-align: center;}
@media screen and (max-width:480px){
    .food_content
    {
        padding-top:0;
    }
}
.food_content ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-direction: row;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    vertical-align: top;
}

.food_content li {
    width: 32%;
    margin-right: 1.9%;
    min-width: 300px;
    text-align: center;
    background: #fff;
    margin-bottom: 30px;
    position: relative;

}

.food_content li:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width:480px) {
    .food_content li {
        width: 94%;
        min-width: auto;
    }

    .food_content li:nth-of-type(3n) {
        margin-right: 1%;
    }

    .food_content li:nth-of-type(2n) {
        margin-right: 0;
    }
}

.food_content li:last-child {
    margin-right: 0px;
}

.food_content__img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width:896px) {
    .food_content__img {
        height: 24vh;
    }
}

.food_content__img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
@media screen and (max-width:896px) {
   .food_content__img img {
    height: 200px;
}
}
.food_content__period {
    padding: 10px 0;
    width: 100%;
    background: #5d87b7;
    color: #fff;

}

.food_content__ttl {
    width: 90%;
    margin: 15px auto;
    text-align: center;
    font-size: 20px;
}
.food_content__desc {
    width: 90%;
    margin: 20px auto;
    text-align: left;
    font-size: 16px;
}

.food_content_period {
    text-align: center;
}

.food_content_period dl {
    display: inline-block;
    margin: 20px auto 0;
    width: 90%;
}

.food_content_period dt,
.food_content_period dd {
    padding: 8px 24px;
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #5d87b7;
    box-sizing: border-box;
}



.food_content_period dt {
    width: 25%;
    background: #5d87b7;
    font-size: 14px;
}

.food_content_period dd {
    text-align: left;
    width: 65%;
    font-size: 1.4rem;
}

@media screen and (max-width:480px) {

    .food_content_period dt,
    .food_content_period dd {
        display: block;
        width: 100%;
    }

    .food_content_period dd {
        font-size: 1.2rem;
        padding: 8px 10px;
    }
}

.food_content_btn {
    display: block;
    width: 50%;
    min-width: 200px;
    height: 45px;
    padding: 15px 10px 10px;
    box-sizing: border-box;
    background: #b9c8ca;
    color: #fff;
    text-align: center;
    border-radius: 25px;
    margin: 20px auto;
}

@media screen and (max-width:480px) {
    .food_content_btn {
        width: 90%;
        min-width: auto;
    }
}

