body {
    background: linear-gradient(180deg, #F7F7F7 30%, #FFF 70%);
}
.archive-content {
    width: 100%;
    display: flex;
    gap: 28px;
}
.archive-content:not(:last-of-type) {
    margin-bottom: 36px;
}
.archive-thumbnail-wrapper {
    width: 32%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}
.archive-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.archive-textarea {
    flex-grow: 1;
}
h3.archive-title {
    font-size: 16px;
    margin-bottom: 0;
}
.archive-date {
    margin-top: 12px;
    line-height: 1;
    opacity: .6;
}
@media screen and  (max-width: 576px) {
    .archive-content {
        flex-direction: column;
    }
    .archive-thumbnail-wrapper {
        width: 100%;
    }
    .archive-content {
        gap: 16px;
    }
    .archive-date {
        margin-top: 8px;
    }
}

/* ページネーション */
.pagination-wrapper {
    margin-top: 64px;
}
.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.current {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    color: #fff!important;
    background-color: #0077C8;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.page {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    color: #ABABAB!important;
    background-color: #fff;
    border: solid 1px #ccc;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.wp-pagenavi > a:hover {
    cursor: pointer;
}
.wp-gagenavi > .current:hover {
    cursor: default;
}