@charset "UTF-8";

#o_shop + div .inner_item a {
  position: relative;
}
#o_shop + div .inner_item a:hover img{
    opacity:1;
}

#o_shop + div .inner_item a:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: background-color 0.5s;
   opacity: 0;
}
#o_shop + div .inner_item a:hover:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: background-color 0.5s;
   opacity: 1;
}

#o_shop + div .inner_item a:hover:before{
    background-color: rgba(0, 0, 0, 0.4);
}

#o_shop + div .inner_item a:after{
    content: 'CLICK HERE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1000;
    display: none;
    font-size:1.6rem;
    font-weight: normal;
   opacity: 0;
   transition: 0.5s all;
}
#o_shop + div .inner_item a:hover:after{
    display: block;
transition: 0.5s all;
opacity: 1;
}

/*--------------当店公式オンラインショップパーツ余白-------------------------------*/

@media screen and (min-width:601px) and ( max-width:700px){
     #o_shop + div .inner_item{
         height: 380px;
     }
}

@media screen and (min-width:481px) and ( max-width:600px){
     #o_shop + div .inner_item{
         height: 330px;
     }
}


