/* カテゴリ/アーカイブ名 */
.box h1 {
    font-size: 1.6rem;
}

/* タイトルブロック */

#maincol .article {
    margin-bottom: 30px;
}

#maincol .article:last-child {
    margin: 0;
}

.title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 7px 0;
    line-height: 1.8;

    a {
        text-decoration: none;
        color: #333333;
        cursor: pointer;
        transition-duration: .2s;

        &:hover {
            color: #0088cc;
            transition-duration: .2s;
        }
    }
}

/* 記事プレビュー */
.article-preview {
    margin-top: 7px;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;

    .pn-element {
        display: block;
        background-color: #ccc;
        width: 40px;
        text-align: center;
        color: #333;
        font-size: 1.1rem;
        text-decoration: none;
        user-select: none;

        &.pn-return-first {
            border-radius: 10px 0 0 10px;
        }

        &.pn-return-last {
            border-radius: 0 10px 10px 0;
        }

        &:hover {
            background-color: var(--theme-color);
            color: #eee;
        }
    }

    .active {
        background-color: var(--theme-color);
        color: #eee;
        pointer-events: none;
    }
}

/* ページ数表示 */

.page_view {
    margin: 0 auto;
    width: fit-content;
    font-size: 1.2rem;
}

/* 目次は表示しない */
.toc-side {
    display: none;
}