#store .hero {
  background: url("/i/store/hero-bg.jpg") no-repeat center center;
}

#store {
  /** @media max-width: 767px */
}
#store .inner {
  box-sizing: border-box;
}
#store .stores {
  display: flex;
  flex-wrap: wrap;
}
#store .stores > li {
  box-sizing: border-box;
  width: calc(33.3333333333% - 16px);
  margin-left: 24px;
  background: #fff;
}
#store .stores > li:nth-of-type(n + 4) {
  margin-top: 24px;
}
#store .stores > li:nth-of-type(3n + 1) {
  margin-left: 0;
}
#store .store figure img {
  width: 100%;
}
#store .store-context {
  box-sizing: border-box;
  padding: 16px;
}
#store .store .store_name {
  font-size: 2.1rem;
  font-weight: normal;
}
#store .store .services {
  margin-top: 0.5em;
  text-align: center;
  display: inline-block;
}
#store .store .services span.off {
  color: #ddd;
}
#store .store .opened {
  margin-top: 0.5em;
}
#store .store .address {
  margin-top: 0.5em;
}
#store .store .address p:nth-of-type(1) {
  margin-bottom: 0.5em;
}
#store .store .btnWrap {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #store .inner {
    padding: 16px;
  }
  #store .stores {
    flex-direction: column;
    width: 100%;
  }
  #store .stores > li {
    width: 100%;
    margin-left: 0;
  }
  #store .stores > li:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}