@charset "UTF-8";

.itemWrap{
    gap: 40px;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.itemWrap .item{
    padding: 0 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: calc((100% - 80px) /3 );
    align-content: start;
}

.itemWrap .item img{
    border-radius: 16px;
}
.itemWrap .item a{
    color: #000;
    width: 100%;
}
.itemWrap .item a:hover{
    text-decoration: underline;
}
.itemWrap .item p{
    margin-top: 1px;
    padding-top: 40px;
    background: url("../images/visual/thumb-shadow.png") no-repeat center top;
    background-size: 206px auto;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    width: 100%;
}
.itemWrap .item .thumb{
    min-width: 206px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}
.itemWrap .item .thumb img{
    width: 100%;
    height: auto;
    aspect-ratio:3/4;
    object-fit: cover;
}
@media screen and (max-width: 1330px) {
    .itemWrap .item p br{
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .itemWrap{
        margin: 0 auto 56px auto ;
    }
    .itemWrap .item{
        width: calc((100% - 80px) / 3);
    }
    .itemWrap .item .thumb{
        min-width: 130px;
    }
    .itemWrap .item p{
        font-size: 18px;
        line-height: 26px;
        padding-top: 25px;
        background-size: 130px auto;
        margin-bottom: 0;
    }
}


@media screen and (max-width: 768px) {
    .itemWrap{
        width: 100%;
        gap: 20px;
        row-gap: 40px;
    }
    .itemWrap .item{
        width: calc((100% - 20px) / 2);
        padding: 0 11px;
    }
    .itemWrap .item .thumb{
        min-width: calc(100% - 22px);
    }
}

@media screen and (max-width: 425px) {
    .itemWrap{
        width: 100%;
        gap: 0px;
        row-gap: 40px;
        margin: 0 auto 0 auto ;
    }
    .itemWrap .item{
        width: 100%;
        padding: 0 11px;
    }
    .itemWrap .item .thumb{
        min-width: calc(100% - 22px);
    }
}