.store_section{
    padding: 20px 0px;
}

.store_city {
    position: relative;
    display: inline-block;
    padding: 7px 7px;
    width: 150px;
    text-align: center;
    font-weight: bold;
    color: #353535;
    border-radius: 20px;
    border: 2px solid #353535;
}

    .store_city::before, .store_city::after {
        content: '';
        position: absolute;
        top: calc(50% - 6px);
        border-radius: 50%;
        width: 12px;
        height: 12px;
        background-color: #353535;
        box-shadow: 0 0 0 4px #f3e8d9;
    }
    .store_city::before {
        left: -6px;
    }
    .store_city::after {
        right: -6px;
    }

.store_list{
    display: flex;
    flex-wrap: wrap;
}
.store_list_item {
    box-sizing: border-box;
    border-radius: 25px 25px 0 0;
    border: 1px solid #c7ac87;
    box-shadow: 0px 0px 2px 1px #e5caa4;
    display: flex;
    margin-top: 15px;
}

.store_item_img {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    transition: all .3s ease-in-out;
}

.store_item_info{
    flex: 1;
    position: relative;
    padding: 10px 10px;
}

.store_fb_link {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    background-image: url('../img/FB.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.store_item_info > p + p {
    margin-top: 3px;
}

.store_item_stnnm{
    font-weight: bold;
}

.store_item_addr a{
    text-decoration: none;
    color: inherit;
}
    .store_item_addr a:hover {
        font-weight: bold;
        text-decoration: underline;
    }

@media (max-width: 767px) {
    .store_section {
        padding: 15px 0px;
    }

    .store_city {
        padding: 5px 7px;
        width: 124px;
        margin-left: 0px;
    }

    .store_list {
        flex-direction: column;
    }

    .store_list_item {
        width: 100%;
        border-radius: 0;
        flex-direction: row;
    }

    .store_item_info > p + p {
        margin-top: 8px;
    }

    .store_item_img {
        border-radius: 0;
        max-width: 130px;
    }

    .store_fb_link {
        right: -5px;
        top: -5px;
    }
}

@media (min-width: 768px){
    .store_list {
        flex-direction: row;
    }

    .store_city {
        margin-left: 10px;
    }

    .store_list_item {
        width: calc(50% - 20px);
        flex-direction: column;
        margin: 15px 10px 0px;
    }

    .store_item_img {
        max-height: 150px;
    }

    .store_item_info{
        padding: 15px 10px;
    }

    .store_fb_link {
        right: 0px;
        top: 5px;
    }

}

@media (min-width: 900px){
    .store_city {
        margin-left: 10px;
    }

    .store_list_item {
        width: calc(50% - 20px);
        margin: 15px 10px 0px;
    }
}

@media (min-width: 1200px){
    .store_city {
        margin-left: 15px;
    }

    .store_list_item {
        width: calc(33% - 30px);
        margin: 15px 15px 0px;
    }
}

@media (min-width: 1500px){
    .store_city {
        margin-left: 15px;
    }

    .store_list_item {
        width: calc(33% - 30px);
        margin: 15px 15px 0px;
    }
}
