/* CSS Document */
/* =========================================================== */
/* ふみ　リスト                                                 */
/* =========================================================== */
.fumi-list ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.fumi-list ul li{
    width: 22%;
    border: 1px solid var(--color-table-line);
    margin-right: calc(12% / 3);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}
.fumi-list ul li:nth-child(4n){
    margin-right: 0;
}
.fumi-list ul li figure{
    width: 100%;
}
.fumi-detail{
    padding: 1rem 2rem 0rem;
}
.fumi-detail h3{
    color: var(--red);
    font-size: 1.8rem;
    border: none;
    padding: 0;
    margin-bottom: 0;
}
.fumi-detail p{
    text-indent: 0;
    line-height: 1.6;
}
.fumi-detail{
    height: 100%;
}
/* =========================================================== */
/* ふみ　リスト（モバイルでの表示）                               */
/* =========================================================== */
/* タブレット（3列） */
/* =========================================================== */
@media screen and (min-width: 540px) and (max-width: 990px){
    .fumi-list ul li{
        width: 30%;
        margin-right: calc(10% / 2);
    }
    .fumi-list ul li:nth-child(4n){
        margin-right: calc(10% / 2);
    }
    .fumi-list ul li:nth-child(3n){
        margin-right: 0;
    }
}
/* スマートフォン（2列） */
/* =========================================================== */
@media screen and (min-width: 321px) and (max-width: 539.98px){
    .fumi-list ul li{
        width: 47%;
        margin-right: calc(6%);
    }
    .fumi-list ul li:nth-child(4n),
    .fumi-list ul li:nth-child(3n){
        margin-right: calc(6%);
    }
    .fumi-list ul li:nth-child(2n){
        margin-right: 0;
    }
}
/* 最小（1列） */
/* =========================================================== */
@media screen and (max-width: 320px){
    .fumi-list ul li{
        width: 100%;
        margin-right:0;
    }
    .fumi-list ul li:nth-child(4n),
    .fumi-list ul li:nth-child(3n){
        margin-right: 0;
    }
}
/* タイトルの調整 */
/* =========================================================== */
h1.page-title span{
    font-size: 86%;
    font-weight: normal;
}
/* 表紙下の注意書き */
.fumi-notes{
    font-size: 90%;
    line-height: 1.6;
}