@charset "UTF-8";

.Store {
    margin-bottom: 10%;
}


.Store .storeName {
    padding-bottom: 5px;
    border-bottom: 1px solid #999;
}

.Store .storeName span {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.Store .item {
    margin-bottom: 5%;

}

.Store .item .infoCard {
    padding: 10px 20px;
    border: 1px solid #fff;
    transition: all 0.5s 0.5s;

}


.Store .item .infoCard:before {
    content: '';
    width: 0px;
    height: 100%;
    position: absolute;
    background-color: #00bed6;
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.Store .item:hover .infoCard:before {
    width: 10px;

    transition: all 0.5s;
}

.Store .item .infoCard:after {
    content: '';
    background-color: #fff;
    width: 0%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: all 0.5s 0.2s;

}


.Store .item:hover .infoCard:after {

    width: 100%;

    transition: all 0.5s 0.2s;

}

.Store b.add {
    display: block;
    width: 100%;
    /*margin-top: ;*/
    display: block;
}

.time:before,
.tel:before {
    display: block;
    font-size: 10px;
    color: #666666;
}

.time:before {
    content: 'open time.';
}

.tel:before {
    content: 'tel.';
}

address {
    margin-top: 10px;
}
address span{
     position: absolute;
    right: 0;

    font-size: 14px;
    line-height: 2;
    color: #666;
}

@media(max-width: 991px){
    .Store .storeName{
        font-size: 1rem;
    }
}