@charset "utf-8";
/* ========================================================
	index.css => 店舗一覧用CSS
======================================================== */

/*　shop_nav
============================================================================================================ */
.shop_nav li    {
    float: left;
    width: 33%;
    text-align: center;
}
.shop_nav li:last-child    {
    width: 34%;
}
.shop_nav li a,
.shop_nav li a:visited    {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 5px 0;
    border-left: solid 1px #ddd;
}
.shop_nav li:last-child a,
.shop_nav li:last-child a:visited    {
    border-right: solid 1px #ddd;
}
.shop_nav li a:hover    {
    color: #048ebf;
}
.shop_nav li a span    {
    margin-left: 20px;
    font-size: 1rem;
    color: #048ebf;
}
@media screen and (max-width: 768px) {
    .shop_nav li a span    {
        display: none;
    }
    .shop_nav li a,
    .shop_nav li a:visited,
    .shop_nav li:last-child a,
    .shop_nav li:last-child a:visited    {
        margin: 0 10px;
        background: #fff;
        color: #048ebf;
        border: solid 1px #048ebf;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        -ms-border-radius: 7px;
        border-radius: 7px;
    }
    .shop_nav li a:hover    {
        border: solid 1px #048ebf;
        background: #048ebf;
        color: #fff;
    }
}
@media screen and (max-width: 414px) {
    .shop_nav li,
    .shop_nav li:last-child    {
        width: 100%;
    }
}

/*　shop_list
============================================================================================================ */
.shop_cat   {
    font-size: 2rem;
    background: url(../images/index/mark.png) 0 50% no-repeat;
    padding-left: 30px;
    margin-bottom: 20px;
}
.shop_area  {
    font-size: 2rem;
    margin-bottom: 20px;
}
.shop_list li   {
    padding: 30px;
}
.shop_list li:nth-child(odd)   {
    background: #fafafa;
}
.shop_data  {
    overflow: hidden;
    padding-left: 40px;
}
.shop_list li h4   {
    font-size: 2rem;
    margin-bottom: 15px;
}

.shop_data dl {
	zoom: 1;
}
.shop_data dl:after {
	content: ""; display: table; clear: both;
}
.shop_data dt   {
    float: left;
    color: #048ebf;
}
.shop_data dd   {
    overflow: hidden;
    padding-left: 30px;
}

.detail a {
    width: 240px;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .shop_list li   {
        padding: 20px;
    }
    .shop_cat,
    .shop_area,
    .shop_list li h4   {
        font-size: 1.6rem;
    }   
}
@media screen and (max-width: 640px) {
    .shop_list li h4   {
        text-align: center;
    }
    .shop_list li .fl   {
        float: none;
    }
    .shop_list li .fl img   {
        display: block;
        margin: 0 auto 15px;
    }
    .shop_data  {
        padding-left: 0;
    }

    .detail a {
    margin-right: auto;
    margin-left: auto;
    }   
}