@charset "utf-8";
/*ARCHIVE*/
.case-bk{
    background: linear-gradient(180deg, #fff 0%, #fff 70%, var(--egray) 70%, var(--egray) 100%);
}
.case-archive_ol{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
}
.case-li{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    background: var(--black);
}
.case-li_inner,
.case-more{
    width: 100%;
}
.case-li_thumb{
    display: block;
    overflow: hidden;
}
.case-li_thumb img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.case-li_thumb:hover img{
    transform: scale(1.1,1.1);
}
.case-li_title{
    display: block;
    color: #fff;
    padding: 0.7em 0.5em;
    line-height: 1.3;
}
.case-more{
    background: #fff;
    padding: 0.1em 0.5em 0.2em;
}
.case-more .more:hover{
    color: var(--red);
}
@media screen and (max-width: 980px) {
    .case-archive_ol{
        grid-template-columns: repeat(3, 1fr);
        gap: 1em;
    }
}
@media screen and (max-width: 680px) {
    .case-archive_ol{
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
}

/*POST*/
.case-post_bk{
    background: #eee;
}
.case-post{
    background: #fff;
    padding: 3em;
}
.case-post .page-h3{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.case-editor a{
    color: var(--red);
    text-decoration: underline;
}
.case-editor a:hover{
    color: var(--blue);
}
.case-number{
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
    width: 3.5em;
}
.case-mv img{
    object-fit: cover;
    aspect-ratio: 3 / 1;
}
.case-others_ol{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1em;
}
.case-others .case-li{
    background: var(--gray3);
}
.case-others .case-li_title{
    font-size: clamp(11px, 1.1vw, 14px);
    line-height: 1.3;
}
@media screen and (max-width: 980px) {
    .case-post{
        padding: 2em 1em;
    }
    .case-others_ol{
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (max-width: 780px) {
    .case-others_ol{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 680px) {
    .case-number{
        width: 100%;
    }
    .case-others_ol{
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5em;
    }
}









