@charset "UTF-8";

/* ▼▼▼ 横タイプのショップリスト
=====================================*/

.shop_detail_list{
  max-width: 800px;
  margin: 0 auto 50px;
}
.shop_detail_list li{
  border-bottom: #E3DCDC 1px solid;
}
.shop_detail_list a{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  align-content: center;
}
.shop_detail_list .img_wrap{
  display: block;
  -webkit-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  width: 100px;
  max-width: 100px;
  height: 100px;
  padding: 0;
  margin: 10px 15px 10px 0;
  border: #FFF 5px solid;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
}
.shop_detail_list .txt_wrap{
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
  padding: 10px 0;
}
.shop_detail_list .shop_name_wrap{
  margin-bottom: 10px;
  padding-left: 35px;
  position: relative;
}
.shop_detail_list .shop_name_wrap .shop_num{
  min-width: 26px;
  font-size: 14px;
  line-height: 26px;
  position: absolute;
  top: 0;
  left: 0;
}
.shop_detail_list .shop_name_wrap .shop_name{
  color: #000;
}
.shop_detail_list .shop_txt{
  font-size: 12px;
}
/* ▼▼▼ 480px〜768px
=====================================*/
@media screen and (max-width: 768px) {

  .shop_detail_list{
    margin-bottom: 0;
  }
  .shop_detail_list .img_wrap{
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    max-width: 80px;
    height: 80px;
    margin: 5px 15px 5px 0;
  }
  .shop_detail_list .shop_name_wrap{
    margin-bottom: 5px;
  }
  .shop_detail_list .shop_name_wrap .shop_num{
    min-width: 20px;
    font-size: 12px;
    line-height: 20px;
  }
  .shop_detail_list .shop_name_wrap .shop_name{
    color: #000;
    font-size: 14px;
  }
  .shop_detail_list .shop_txt{
    font-size: 10px;
  }
}
