@charset "utf-8";
/* gourmet
-------------------------------------------------*/
#map_list h2{
    text-align:center;
    padding: .3em;
    font-size: 1.2rem;
}
    #map_list ul:after{
        content: "";
        display: table;
        clear: both;
    }
    #map_list ul li{
        display:block;
        float:left;
        width:48%;
        background:#fff;
        border-radius:6px;
        box-shadow:1px 1px 6px rgba(0,0,0,.3);
        margin:0 1% .5rem;
        transition:.3s;
    }
    #map_list ul li a{
        display:block;
        padding:.7rem .4rem .6rem 1.4rem;
        color:rgb(30,140,120);
        font-weight:bold;
        line-height:1.2;
        background:url(/img/i_arrow_green.png) no-repeat 8px 50%;
    }
    #map_list ul li:hover{
        background:rgba(30,140,120,.15);
    }

@media screen and (max-width: 600px) {
    #map_list ul li{
        width:100%;
    }
}


