.p-mv{
    background: url(/web/jp/manufacturer/images/202301/bg_mv01_pc.png) no-repeat center / cover;
}

.p-case-list{
    display: flex;
    gap: 30px;
}

.p-case-list li{
    display: flex;
    flex-direction: column;
    width: calc(33.3333333% - 30px * 2 / 3);
    max-width: 350px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    pointer-events: none;
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

.p-case-list li:hover{
    opacity: 0.7;
}

.p-case-item-img{
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

.p-case-item-img img{
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

.p-case-list li:hover img{
    transform: scale(1.02);
}

.btn_cta.btn_blue{
    margin-top: auto;
    pointer-events: auto;
}

.p-case-item-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 30px 20px;
    /* height: 100%; */
}

.p-case-item-ttl{
    color: #2D67A3;
    font-size: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.p-case-item-ttl::after{
    content: none;
}

.p-case-list li p{
    font-size: 16px;
    line-height: 1.81;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .p-case-list{
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .p-mv{
        background: url(/web/jp/manufacturer/images/202301/bg_mv01_sp.png) no-repeat center / cover;
    }
    
    .p-case-list{
        flex-direction: column;
        gap: 8vw;
    }
    
    .p-case-list li{
        width: 100%;
        max-width: 100%;
    }
    
    .p-case-item-inner{
        padding: 4.8vw 5.33333vw 5.333333vw;
    }
    
    .p-case-item-ttl{
        font-size: 5.3333333vw;
        margin-bottom: 4.2666666vw;
        
    }
    
    .p-case-item-ttl::after{
        content: none;
    }
    
    .p-case-list li p{
        font-size: 4.2666666vw;
        margin-bottom: 4.2666666vw;
    }
}