@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  一覧
----------------------------------------------------*/
img.fig-floor {
  margin-bottom: 3rem;
}

.shop-category-title {
  font-size: 2rem;
  line-height: 1.4;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  border-left: 2.5rem solid;
}
@media screen and (max-width: 767.98px) {
  .shop-category-title {
    font-size: 1.6rem;
    padding: 0.5rem 1.2rem;
    border-left-width: 2rem;
  }
}

.shop-category-area.food .shop-category-title {
  border-left-color: #fcde00;
  background-color: #fffcd7;
}
.shop-category-area.restaurant .shop-category-title {
  border-left-color: #e9a600;
  background-color: #f8e4b6;
}
.shop-category-area.fashion .shop-category-title {
  border-left-color: #b12b68;
  background-color: #f9d2e4;
}
.shop-category-area.life .shop-category-title {
  border-left-color: #92a600;
  background-color: #ecf2c4;
}

body {
  counter-reset: cnt-num;
}

ul.shop-list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem 3rem;
}
ul.shop-list li {
  width: 20%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991.98px) {
  ul.shop-list li {
    width: 25%;
  }
}
@media screen and (max-width: 767.98px) {
  ul.shop-list li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 575.98px) {
  ul.shop-list li {
    width: 50%;
  }
}
ul.shop-list li .block {
  display: block;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  text-align: center;
  position: relative;
  height: 100%;
  padding-bottom: 2rem;
  text-decoration: none;
}
ul.shop-list li .block:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #333;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  content: counter(cnt-num);
  counter-increment: cnt-num;
}
@media screen and (max-width: 767.98px) {
  ul.shop-list li .block:before {
    font-size: 1.3rem;
    width: 2rem;
    height: 2rem;
  }
}
ul.shop-list li .block .logo {
  margin: 3rem 2rem 1rem;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  ul.shop-list li .block .logo {
    margin: 2.5rem 1.5rem 1rem;
  }
}
ul.shop-list li .block .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
ul.shop-list li .block .shop-name {
  font-weight: 700;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  word-break: break-all;
}
ul.shop-list li .block .info {
  font-size: 0.9em;
  padding: 0 1.5rem;
  word-break: break-all;
}
ul.shop-list li a.block .shop-name {
  text-decoration: underline;
}
ul.shop-list li a.block:hover {
  opacity: 0.7;
}
ul.shop-list li a.block:hover .shop-name {
  color: #F9270B;
}