@charset "utf-8";
/* ===================================================================
 shoplist/style.css
======================================================================*/
.contents {
  width: calc(100% - (.9375rem * 2));
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .contents {
    margin-top: 30px;
  }
}
/*----------------------------------------------------------
 module
------------------------------------------------------------*/
.commentList > li {
  padding-left: 1em;
  font-size: 14px;
  text-indent: -1em;
}
.commentList > li:before {
  content: "※";
}

/*----------------------------------------------------------
 shopList
------------------------------------------------------------*/
.shopList {
  margin: 30px 0 80px;
  border-top: 1px solid #000;
}
.shopList > li {
  display: grid;
  align-items: center;
  grid-template-columns: 25% 1fr 35%;
  grid-template-rows: 1fr max-content;
  grid-column-gap: 1%;
  padding: 30px 15px;
  border-bottom: 1px solid #000;
}
.shopList-name {
	grid-column: 1 / 2;
  grid-row: 1 / 3;
  font-weight: bold;
}
.shopList-address {
	grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.shopList-tel {
	grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.shopList-iconList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.shopList-iconList > li {
  width: calc(calc(100% - 30px) / 3);
}
.shopList-iconList > li span {
  display: block;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1;
  /* border: 1px solid #333; */
  background: #eee;
  color: #666;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .shopList {
    margin: 30px 0;
  }
  .shopList > li {
    display: block;
    padding: 15px 0;
  }
  .shopList-address {
    margin-top: 10px;
    font-size: 14px;
  }
  .shopList-tel {
    font-size: 14px;
  }
  .shopList-iconList {
    justify-content: flex-start;
    margin: 10px 0 0;
  }
  .shopList-iconList > li {
    width: auto;
  }
  .shopList-iconList > li span {
    display: inline-block;
    margin-right: 15px;
  }
  .shopList-iconList > li:last-child span {
    margin-right: 0;
  }
}

