/* store */
.pageStoreAreaList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.pageStoreAreaList li {
  width: 22%;
  margin-right: 4%;
  text-align: center;
  margin-bottom: 20px;
}

.pageStoreAreaList li:nth-child(4n+4) {
  margin-right: 0;
}

.pageStoreAreaList a {
  font-size: 14px;
  padding: 10px 60px;
  border: 1px solid #000;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
  display: block;
}

.pageStoreAreaList a:hover {
  background: #000;
  color: #fff;
}

.pageStoreList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 30px 0 50px 0;
}

.pageStoreList li {
  width: 30%;
  margin: 0 5% 50px 0;
}

.pageStoreList li:nth-child(3n+3) {
  margin-right: 0;
}

.pageStoreListEachTitle {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 5px;
  display: flex;
  align-content: center;
  align-items: center;
  font-weight: bold;
}

.pageStoreListEachImage img {
  max-width: 100%;
}

.pageStoreListEachAddress {
  font-size: 14px;
  line-height: 1.5em;
  margin: 5px 0;
}

.pageStoreListEachTime {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 5px;
}

.pageStoreListEachContentsBox {
  min-height: 125px;
}

.pageStoreListEachLinkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}

.pageStoreListEachLink {
  width: 46%;
  display: flex;
  align-items: center;
  align-content: center;
  margin-top: 10px;
}

.pageStoreListEachLink a {
  font-size: 12px;
  padding: 10px 5px;
  border: 1px solid #000;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.pageStoreListEachLink a:hover {
  background: #000;
  color: #fff;
}

.pageStoreListEachLink span {
  font-size: 16px;
  margin-right: 5px;
  position: relative;
  bottom: -4px;
}

@media all and (max-width: 959px) { /* SP */
  /* store */
  .pageStoreAreaList li {
    width: 48%;
  }

  .pageStoreAreaList li:nth-child(2n) {
    margin-right: 0;
  }

  .pageStoreList li {
    width: 100%;
    margin-right: 0;
  }

  .pageStoreListEachTitle {
    height: auto;
  }

  .pageStoreListEachImage {

  }

  .pageStoreListEachContentsBox {
    min-height: auto;
    margin: 10px 0;
  }

}

@media all and (min-width: 960px) { /* PC */

}