/* CSS Document */
.cat-header{
    height: inherit
}
#breadcrumb ul{
    max-width: 1000px;
}
article{
    max-width: 1000px;
}
.recipe-list{
    display: flex;
    flex-wrap: wrap;
}
.recipe-list li{
    width: 24%;
    margin-right: calc( (100% - 96%) / 3);
    margin-bottom: 1.6rem;
    box-shadow: 0 0 0.4rem rgba(0,0,0,0.2);
}
.recipe-list li:hover{
    opacity: 0.6;
    transition: 0.3s;
}
.recipe-list li:nth-child(4n){
    margin-right: 0;
}
.recipe-list li figure{
    max-height: 135px;
    overflow: hidden;
}
.recipe-intro{
    min-height: 60px;
    display: flex;
    align-items: center;
}
.recipe-list li h2{
    display: flex;
    align-items: center;
    padding: 0.6rem;
    margin: 0;
    height: 100%;
    border: none;
    font-size: 1.6rem;
    color: var(--black);
    line-height: 1.2;
}
.recipe-list li h2 .no{
    background: var(--color-recipe);
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.6rem;
    border-radius: 0.4rem
}
.recipe-list li h2 span:nth-child(2n){
    flex: 1;
}
.recipe-link{
    margin-top: 2rem;
}
.recipe-link li{
    text-indent: -2.4rem;
    margin-left: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.recipe-link li a{
    word-break: break-all;
}
.recipe-link li:before{
    content: "●";
    margin-right: 0.4rem;
}
/* =========================================================== */
/* 卵百珍（モバイルでの表示）                               */
/* =========================================================== */
/* タブレット（3列） */
/* =========================================================== */
@media screen and (min-width: 540px) and (max-width: 990px){
    .recipe-list li{
        width: 32%;
        margin-right: calc( (100% - 96%) / 2);
    }
    .recipe-list li:nth-child(4n){
        margin-right: calc( (100% - 96%) / 2);
    }
    .recipe-list li:nth-child(3n){
        margin-right: 0;
    }
}
/* スマートフォン（2列） */
/* =========================================================== */
@media screen and (min-width: 321px) and (max-width: 539.98px){
    .recipe-list li{
        width: 48%;
        margin-right: calc(100% - 96%);
    }
    .recipe-list li:nth-child(4n){
        margin-right: calc(100% - 96%);
    }
    .recipe-list li:nth-child(3n){
        margin-right: calc(100% - 96%);
    }
    .recipe-list li:nth-child(2n){
        margin-right: 0;
    }
}
/* 最小（1列） */
/* =========================================================== */
@media screen and (max-width: 320px){
    .recipe-list li{
        width: 100%;
        margin: 0;
    }
}