.p-store-wrapper{
    position: relative;
}
.p-store__list{
    display: flex;
    gap: 80px 5%;
    flex-wrap: wrap;
    position: relative;
}
.p-store__item{
    width: 30%;
}
.p-store__item--bg{
    background-color: #EDF5F9;
    position: absolute;
    top: 10%;
    height: 630px;
    width: 100%;
    z-index: -1;
    left: 0;
}
.p-store__img{
    aspect-ratio: 360 / 240;
    border-radius: 10px;
}
.p-store__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}
.p-store__content{
    line-height: 1;
}
.p-store__item:hover{
    opacity: 1;
}
.p-store__item:hover .c-btn3{
color: #fff;
  background-color: #1A7EAE;
  opacity: 1;
}
.p-store__item:hover .c-btn3::after{
    background-image: url('../images/common/ic-arrR-white.png');
}
.p-store__content img{
    max-width: 80%;
}

.p-store__content .c-title2{
    font-size: 14px;
}
@media(max-width: 1024px){
    .p-store__list{
        gap: 80px 3%;
    }
    .p-store__item{
        width: 31.33%;
    }
    .p-store__list .c-btn3{
        width: 200px;
        height: 45px;
    }
}
@media(max-width: 767px){
    .p-store__list{
        gap: 40px 4%;
    }
    .p-store__item{
        width: 48%;
    }
    .p-store__list .c-btn3{
        width: 130px;
        height: 40px;
        font-size: 12px;
        padding: 0 20px;
    }
    .p-store__item--bg {
        top: 5%;
        height: 430px;
    }
    .p-store__content img{
        max-width: 90px;
    }
    .p-store__content p{
        font-size: 12px;
    }
}