.shoplist-block-heading {
    text-align: center;
    font-size: 1.2rem;
    padding: .5em 20px;
    border: solid 1px #ccc;
    border-radius: 1em;
    background: #efefef;
    font-weight: bold;
    margin-top: 4em;
    margin-bottom: 1em;
}
.shoplist-block-headimg{
    max-width: 100%;
    margin: 0 auto 2rem;
    display: block;
}
.shoplist-block-grids{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5em;
    margin-bottom: 2rem;
}
@media screen and (max-width: 768px){
    .shoplist-block-grids{
        grid-template-columns: 1fr;
    }
}
.shoplist-block-areaname{
    text-align: center;
    color : #00479d;
    font-size: 1.2rem;
    display: flex;
    gap: .5em;
    align-items: center;
    margin-bottom: .5em;
}
.shoplist-block-areaname:before, .shoplist-block-areaname:after{
    content: "";
    display: block;
    width: 1em;
    flex: 1em 1 0;
    height: 1px;
    background: currentColor;
}
.shoplist-block-shop{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 1em 1em;
    padding: 0;
    font-weight: bold;
    border-bottom: 1px dotted currentColor;
    font-size: .9rem;
}
.shoplist-block-shop-a:visited{
    color: currentColor;
}
.shoplist-block-shop:after{
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: currentColor;
    clip-path: polygon(50% 0,100% 50%,50% 100%);
}