@charset "utf-8";
/* archive */
.ArchivePageLayout .wrap {
    max-width: 1040px;
    padding-inline: 20px;
    margin: 0 auto;
}

.ArchivePageLayout #TabInfo {
    margin-bottom:126px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 106px;
}
.nav-links {
    display: flex;
}
.screen-reader-text {
    display: none;
}
.page-numbers:not(.prev, .next) {
    font-size: 21px;
    display: inline-block;
    color: #175AA9;
    border: 1px solid #175AA9;
    border-radius: 100%;
    padding: 0.75rem 1.55rem;
    margin-inline: 3px;
}
.page-numbers:not(.prev, .next):hover,
.page-numbers.current:not(.prev, .next) {
    color: #fff;
    background-color: #175AA9;
}
.prev.page-numbers,
.next.page-numbers {
    width: 15px;
    height: 15px;
    align-self: center;

    --icon-size: 10px;
    --icon-scale: 0.75;
    position: relative;
}
.prev.page-numbers {
    margin-right: 3.5rem;
}
.next.page-numbers {
    margin-left: 3.5rem;
}
.prev.page-numbers::before,
.next.page-numbers::before {
    content: "";
    display: inline-block;
    position: absolute;
    inset: 0;
    margin: auto;
    inline-size: var(--icon-size);
    block-size: var(--icon-size);
    border-top: 1px solid #175AA9;
    border-left: 1px solid #175AA9;
}
.prev.page-numbers::before {
    transform: rotate(-45deg) scaleX(1);
}
.next.page-numbers::before {
    transform: rotate(45deg) scaleX(-1);
}
.prev.page-numbers:disabled,
.next.page-numbers:disabled {
    visibility: hidden;
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
    opacity: .7;
}

@media screen and (max-width: 600px) {
    .page-numbers:not(.prev, .next) {
        font-size: 17px;
        padding: 0.5rem 1.05rem;
    }
    .prev.page-numbers {
        margin-right: 1.75rem;
    }
    .next.page-numbers {
        margin-left: 1.75rem;
    }
}

/* single */
.SinglePageLayout .wrap {
    max-width: 1803px;
    padding-left: 20px;
    margin-left: auto;
}
.SinglePageLayout .article {
    padding: 32px;
    border-radius: 20px 0 0 20px;
    box-shadow: 2px 4px 12px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 64px;
}
.SinglePageLayout .article .entry-header {
    margin-bottom: 48px;
    border-bottom: 1px dotted #175AA9;
}
.SinglePageLayout .article .entry-header .post-data {
    display: flex;
    align-items: center;
    gap: 24px;
}
.SinglePageLayout .article .entry-header .post-data .time {
    font-size: 15px;
    font-weight: bold;
}
.SinglePageLayout .article .entry-header .title {
    font-size: 22px;
    font-weight: bold;
    padding-block: 16px;
}
.SinglePageLayout .article .entry-body {
    max-width: 1240px;
    margin-right: auto;
}
.SinglePageLayout .article .entry-body p {
    margin-bottom: 36px;
}
.SinglePageLayout .article .entry-body .alignleft {
    float: left;
    margin-right: 3rem;
    margin-bottom: 3rem;
}
.SinglePageLayout .article .entry-body .alignright {
    float: right;
    margin-left: 3rem;
    margin-top: 3rem;
}

@media screen and (max-width: 600px) {
    .SinglePageLayout .article .entry-header .title {
        font-size: 18px;
    }
    .SinglePageLayout .article {
        padding: 16px;
    }
}