@charset "UTF-8";
/*--------------------------------------



--------------------------------------*/
.content {
  margin: 0 0 100px;
}

.selectList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 0;
}

.selectItem {
  border-left: solid 1px #D8D8D8;
  border-right: solid 1px #D8D8D8;
  margin: 0 0 0 -1px;
}

.selectLink {
  display: block;
  color: #444444;
  text-align: center;
  text-decoration: none;
  padding: 5px 10px;
  transition: all 0.2s;
}
.selectLink:hover {
  color: #FF7878;
  background: #ffeded;
}

.selectLinkActive {
  color: #FF7878;
  background: #ffeded;
}

.storeListWrap {
  overflow-x: auto;
}
.storeListWrap::before {
  content: "※横にスクロール出来ます";
  font-size: calc(1.265rem + 0.135vw);
  margin-bottom: 5px;
  color: #888888;
}

.storeList {
  min-width: 1150px;
}

.storeInfoRow {
  display: flex;
  align-items: center;
}

.storeName {
  width: 30.8695652174%;
}

.storeAddress {
  width: 27.1304347826%;
}

.storeTel {
  width: 16.6956521739%;
  text-align: center;
}

.storeTime {
  width: 19.4782608696%;
  text-align: center;
}

.sotreInfRowHead {
  color: #fff;
  background: #FF7878;
  text-align: center;
}

.storeName {
  padding: 15px 10px;
  text-decoration: underline;
}

.storeNameHead {
  padding: 10px 10px;
}

.store {
  display: block;
  background: #fff;
  color: #444;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  border-top: solid 1px #E4E4E4;
}
.store:last-of-type {
  border-bottom: solid 1px #E4E4E4;
}
.store:nth-of-type(2n) {
  background: #F8F8F8;
}
.store::before {
  content: url(../images/news-arrow.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 38px;
}
.store:hover {
  opacity: 0.8;
}

.store.storeHead:hover {
  opacity: 1;
}

.flyerTitle {
  margin-bottom: 25px;
}
.flyerTitle img {
  margin: 0 auto;
}

.flyerBox {
  position: relative;
  width: 250px;
  height: 430px;
  margin: 0 auto 50px;
}
.flyerBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flyerBoxSp {
  display: block;
}

.flyerBoxPc {
  display: none;
}

.storeMap {
  width: 90%;
  margin: 0 auto 50px;
}

@media (width >= 768px){
  .selectList {
    grid-template-columns: repeat(5, 1fr);
  }
  .selectLink {
    padding: 15px 10px;
  }
  .storeListWrap::before {
    content: "";
  }
  .storeName {
    text-decoration: none;
    padding: 30px 20px;
  }
  .flyerBox {
    width: 760px;
  }
  .flyerBoxSp {
    display: none;
  }
  .flyerBoxPc {
    display: block;
  }
}

@media (min-width: 1000px){
  .storeListWrap::before {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=storelist.css.map*/