/* postlist */
.postlist {
    padding: 75px 0;
}
.postlist-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1220px;
}
.postlist-tagline {
    margin: 0 0 75px;
}
.postlist-tagline ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.postlist-tagline ul li a {
    background: #096FCA;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    height: 35px;
    padding: 0 20px;
    width: 100%;
    max-width: max-content;
}
.postlist-cards {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 26px;
    row-gap: 45px;
}
.postlist-cards.col4 {
    gap: 20px;
    row-gap: 45px;
}
.postlist-cards::before {
    content: "";
    display: block;
    order: 1;
    width: calc((100% - (26px * 2)) / 3);
}
.postlist-card {
    width: calc((100% - (26px * 2)) / 3);
}
.postlist-cards.col4 .postlist-card {
    width: calc((100% - (33px * 3)) / 4);
}
.postlist-card__image {
    line-height: 0;
    max-height: 266px;
    overflow: hidden;
}
.postlist-card__image img {
    width: 100%;
}
.postlist-card__image__staff {
    line-height: 0;
}


.postlist-card__text {
    padding: 10px 0 0;
}
.postlist-card__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin: 0 0 15px;
}
.postlist-card__cat .cat {
    border: 1px solid #096FCA;
    border-radius: 50px;
    color: #096FCA;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    height: 26px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}
.postlist-card__ttl {
    font-size: 20px;
    font-weight: 700;
}
.postlist-card__flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0;
}
.postlist-card__date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}
.postlist-card__date::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 12px;
    margin-right: 3px;
    width: 12px;
}
.postlist-card__date.create::before {
    background-image: url(../images/icon-time.svg);
}
.postlist-card__date.update::before {
    background-image: url(../images/icon-update.svg);
}
@media screen and (max-width: 968px) {
    .postlist {
        padding: 60px 0;
    }
    .postlist-tagline {
        margin: 0 0 55px;
    }
    .postlist-tagline ul li a {
        font-size: 14px;
        height: 32px;
        padding: 0 15px;
    }
    .postlist-cards {
        gap: 20px;
        row-gap: 35px;
    }
    .postlist-cards.col4 {
        gap: 20px;
        row-gap: 35px;
    }
    .postlist-cards::before {
        display: none;
    }
    .postlist-card {
        width: calc((100% - (20px * 1)) / 2);
    }
    .postlist-cards.col4 .postlist-card {
        width: calc((100% - (20px * 1)) / 2);
    }
    .postlist-card__ttl {
        font-size: 18px;
    }
}
@media screen and (max-width: 568px) {
    .postlist {
        padding: 50px 0;
    }
    .postlist-tagline {
        margin: 0 0 45px;
    }
    .postlist-cards {
        row-gap: 25px;
    }
    .postlist-cards.col4 {
        gap: 15px;
        row-gap: 25px;
    }
    .postlist-card {
        width: 100%;
    }
    .postlist-cards.col4 .postlist-card {
        width: calc((100% - (15px * 1)) / 2);
    }
}

/* postdetail */
.postdetail {
    padding: 75px 0;
}
.postdetail-inner {
    margin: 0 auto;
    width: 60%;
    max-width: 900px;
}
.postdetail-head {
    margin: 0 0 45px;
}
.postdetail-tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin: 0 0 15px;
}
.postdetail-tags .postdetail-tag a {
    border: 1px solid #096FCA;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #096FCA;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
    height: 26px;
    font-size: 12px;
    font-weight: 700;
}
.postdetail-head h1 {
    border-bottom: 1px solid #000;
    font-size: 30px;
    font-weight: 700;
    padding: 0 0 15px;
}
.postdetail-head__flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0;
}
.postdetail-head__date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}
.postdetail-head__date::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 12px;
    margin-right: 3px;
    width: 12px;
}
.postdetail-head__date.create::before {
    background-image: url(../images/icon-time.svg);
}
.postdetail-head__date.update::before {
    background-image: url(../images/icon-update.svg);
}
.postdetail-eyecatch {
    margin: 0 0 45px;
}
.postdetail-eyecatch img {
    width: 100%;
}
.postdetail-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    min-height: 30px;
    margin: 0 0 25px;
}
.postdetail-content h2 {
    border-left: 9px solid var(--main-theme-color);
    color: var(--main-theme-color);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 25px;
    padding: 0 0 0 15px;
}
.postdetail-content h3 {
    color: #096FCA;
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 20px;
}
.postdetail-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
}
@media screen and (max-width: 968px) {
    .postdetail {
        padding: 60px 0;
    }
    .postdetail-head h1 {
        font-size: 24px;
    }
    .postdetail-eyecatch {
        margin: 0 0 35px;
    }
    .postdetail-content p {
        font-size: 16px;
        min-height: 26px;
        margin: 0 0 20px;
    }
    .postdetail-content h2 {
        border-left: 7px solid var(--main-theme-color);
        font-size: 24px;
        margin: 0 0 20px;
        padding: 0 0 0 10px;
    }
    .postdetail-content h3 {
        font-size: 20px;
        margin: 0 0 15px;
    }
    .postdetail-content h4 {
        font-size: 18px;
        margin: 0 0 15px;
    }
}
@media screen and (max-width: 768px) {
    .postdetail {
        padding: 50px 0;
    }
    .postdetail-inner {
        width: 92%;
    }
    .postdetail-head h1 {
        font-size: 21px;
    }
    .postdetail-eyecatch {
        margin: 0 0 30px;
    }
    .postdetail-content h2 {
        font-size: 22px;
    }
    .postdetail-content h3 {
        font-size: 18px;
    }
    .postdetail-content h4 {
        font-size: 17px;
    }
    .postdetail-content p {
        font-size: 15px;
    }
}

/* detail-relation */
.detail-relation {
    border-top: 1px solid #000;
    margin: 0 auto;
    padding: 20px 0;
    width: 92%;
    max-width: 1020px;
}
.detail-relation__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.detail-relation__item {
    width: 50%;
}
.detail-relation__item.prev {
    text-align: left;
}
.detail-relation__item.next {
    text-align: right;
}
.detail-relation__item a {
    font-size: 20px;
    font-weight: 400;
}
@media screen and (max-width: 968px) {
    .detail-relation__item a {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .detail-relation__item a {
        font-size: 16px;
    }
}

/* postdetailnew */
.postdetailnew {
    background: #F3F7FD;
    margin: 65px 0 100px;
    padding: 45px 0;
}

.postdetailnew-page {/* 固定ページ用 */
    margin: 65px 0 100px;
}
.postdetailnew-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1020px;
}
.postdetailnew-head {
    margin: 0 0 25px;
}
.postdetailnew-head h2 {
    color: #096FCA;
    font-size: 30px;
    font-weight: 700;   
}
.postdetailnew-cards {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 26px;
    row-gap: 45px;
}
.postdetailnew-cards.col4::before,
.postdetailnew-cards.col4::after {
    content: "";
    display: block;
    width: calc((100% - (26px * 3)) / 4);
}
.postdetailnew-cards.col4::before {
    order: 1;
}
.postdetailnew-card {
    width: calc((100% - (26px * 2)) / 3);
}
.postdetailnew-cards.col4 .postdetailnew-card {
    width: calc((100% - (26px * 3)) / 4);
}
.postdetailnew-card__image {
    line-height: 0;
    max-height: 220px;
    overflow: hidden;
}
.postdetailnew-card__image__staff {
    line-height: 0;
}
.postdetailnew-card__text {
    padding: 10px 0 0;
}
.postdetailnew-card__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin: 0 0 15px;
}
.postdetailnew-card__cat .cat {
    border: 1px solid #096FCA;
    border-radius: 50px;
    color: #096FCA;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    height: 26px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}
.postdetailnew-card__ttl {
    font-size: 16px;
}
.postdetailnew-card__flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0;
}
.postdetailnew-card__date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}
.postdetailnew-card__date::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 12px;
    margin-right: 3px;
    width: 12px;
}
.postdetailnew-card__date.create::before {
    background-image: url(../images/icon-time.svg);
}
.postdetailnew-card__date.update::before {
    background-image: url(../images/icon-update.svg);
}
@media screen and (max-width: 968px) {
    .postdetailnew-head h2 {
        font-size: 24px;
    }
    .postdetailnew-cards {
        gap: 20px;
        row-gap: 35px;
    }
    .postdetailnew-cards.col4 .postdetailnew-card {
        width: calc((100% - (10px * 2)) / 2);
    }
    .postdetailnew-cards.col4::before,
    .postdetailnew-cards.col4::after {
        display: none;
    }
    .postdetailnew-card {
        width: calc((100% - (20px * 1)) / 2);
    }
    .postdetailnew-card__ttl {
        font-size: 18px;
    }
}
@media screen and (max-width: 568px) {
    .postdetailnew {
        margin: 45px 0 65px;
        padding: 30px 0;
    }
    .postdetailnew-head h2 {
        font-size: 21px;
    }
    .postdetailnew-cards {
        row-gap: 25px;
    }
    .postdetailnew-card {
        width: 100%;
    }
    .postdetailnew-card__ttl {
        font-size: 15px;
    }
}

/* blockname */
.navigation.pagination {
    margin: 65px 0 0;
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.page-numbers {
    color: #828282;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    padding: 2px 6px;
}
.page-numbers.current {
    border: 1px solid #000;
    color: #000;
}
a.prev.page-numbers,
a.next.page-numbers {
    font-size: 14px;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}