.works-archive{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.works-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.works-item{
    width: 311px;
    height: 316px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background:#fff;
    border-radius: 8px;
    overflow: hidden;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.works-item a{
    width: 100%;
}

.works-thumb{
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 16px;
}

.works-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
    gap: 8px;
    padding: 0 8px 0 8px;
}

.works-date{
    font-size: 12px;
    font-weight: bold;
    color: #737373;
}

.works-title{
    font-size: 16px;
    font-weight: bold;
    color: #242424;
    text-align: start;
}

.pagination {
    margin-top: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #100169;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 12px 16px;
    margin: 0 4px;
    border: 1px solid #100169;
    border-radius: 999px;
}

.pagination .current {
    background: #100169;
    color: #f2f2f2;
    border-color: #100169;
}

.no-post{
    font-size: 16px;
    color: #242424;
}
/* 詳細ページ */
.works-article{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.single-work-thumb{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 330px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 24px;
}

.single-work-thumb img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.single-work-content{
    width: 330px;
    text-align: left; 
}

.single-work-text{
    font-size: 14px;
    font-weight: medium;
    color: #242424;
    line-height: 1.6; 
}

.single-work-date{
    font-weight: bold;
    font-size: 14px;
    color: #737373;
}

.back-link-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.back-link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 123px;
    height: 44px;
    background-color: #100169;
    color: #f2f2f2;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
}





