.pageShop .shop-title {
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9em;
  margin-bottom: 3rem;
}
.pageShop .shop-title .en {
  font-size: 2.7em;
}
@media (max-width: 767px) {
  .pageShop .shop-title {
    margin-bottom: 2.5rem;
  }
  .pageShop .shop-title .en {
    font-size: 2.3em;
  }
}
.pageShop .shop-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media (max-width: 999px) {
  .pageShop .shop-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
}
@media (max-width: 767px) {
  .pageShop .shop-list {
    grid-template-columns: 1fr;
  }
}
.pageShop .shop-item_header {
  position: relative;
  margin-bottom: 1rem;
}
.pageShop .shop-item_image {
  width: 100%;
  border: solid 1px #eee;
}
.pageShop .shop-item_image img {
  width: 100%;
}
.pageShop .shop-item_title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.1em 0.5em;
  background: #F08584;
  color: #fff;
}
.pageShop .shop-item_description {
  font-size: 0.875em;
}
.pageShop .shop-item_description + .shop-item_description {
  margin-top: 0.5rem;
}
.pageShop .shop-item_info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 1px #eee;
  font-size: 0.875em;
}
.pageShop .shop-item_info dt {
  background: #f5f5f5;
  padding: 0.1em 0.3em;
}
.pageShop .shop-item_info dd {
  padding: 0.5em 0.3em 0.8em;
}
.pageShop .shop-item_info dd a {
  color: #337ab7;
}
.pageShop .shop-item_info dd a:hover {
  color: #145690;
}