.introduction-record-section .post-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px; 
    width: 100%;
    margin: 0;
    margin-bottom: 60px;
}
.introduction-record-section .post-list > .post-item{
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
    position: relative;
    padding: 12px;
}

.post-item a.full-link-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-indent: -9999px; /* テキストは非表示 */
}
.introduction-record-section .post-list > .post-item:hover {
    opacity: .8;
}
/* 企業名 */
.post-item-title{
    margin-top: 18px;
    margin-bottom: 0;
}
.post-meta-desc{
    font-size: 14px;
    font-weight: 500;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
    line-height: 24px;
    margin: 16px 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-all;
}
.post-item-date{
    width: fit-content;
}
.intro-category{
    background-color: #c0caed;
    border-radius: 4px !important;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0;
}
.intro-category:hover,
.intro-category a:hover{
    background-color: #121b3d;
    color: #fff !important;
    border-radius: 4px !important;
}
.intro-category a{
    width: 100%;
    display: inline-block;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
}
/* ページネーション */
.introduction-record-pagination{
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 120px;
}
.introduction-record-pagination .num-pagination > span,
.introduction-record-pagination .num-pagination > a{
    padding: 0.5rem 1.5rem 0.75rem;
    text-decoration: underline;
}
.btn-pagination a{
    padding: 0.5rem 1.5rem 0.75rem;
}
.introduction-record-pagination .num-pagination > .current{
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
}
@media (max-width: 969px) {
    .introduction-record-section .post-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}