/* マップポップアップ */
.jandara-map {
  margin-top: 30px;
}
.map-popup-wrap {
  text-align: right;
  padding-right: 10px;
}
.map-popup-wrap .map-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: all .3s;
}
.map-popup-wrap .map-popup-btn:hover {
  text-decoration: underline;
  color: #CF3743;
}
.map-popup-btn-icon {
  width: 20px!important;
  height: 20px!important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.map-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .7);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.map-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.map-modal-inner {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 40px);
  padding: 45px 20px 20px;
  overflow: auto;
  background: #fff;
  box-sizing: border-box;
  transform: scale(.98);
  transition: transform .3s;
  border-radius: 10px;
}
.map-modal.is-open .map-modal-inner {
  transform: scale(1);
}
.map-modal-inner img {
  display: block;
  width: 100%;
  height: auto;
}
.map-modal-close {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
}
.map-modal-close::before,
.map-modal-close::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 7px;
  width: 22px;
  height: 2px;
  background: currentColor;
}
.map-modal-close::before {
  transform: rotate(45deg);
}
.map-modal-close::after {
  transform: rotate(-45deg);
}
.map-modal-close:hover {
  color: #CF3743;
}
html.is-map-modal-open,
body.is-map-modal-open {
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .shop-tab-container .shop-tab {
    width: calc((100% - 30px) / 4);
  }
  .shop-tab-container {
    gap: 10px;
  }
  .shop-content .content-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }
  .section-map .inner .jandara-map {
    margin-bottom: 30px;
  }
}

@media print, screen and (max-width: 576px) {
  .shop-tab-container .shop-tab {
    width: calc((100% - 10px) / 2);
  }
  .shop-content .content-title {
    font-size: 1.4rem;
  }
  .section-map .inner .jandara-map {
    margin-bottom: 20px;
  }
  .map-modal {
    padding: 10px;
  }
  .map-modal-inner {
    max-height: calc(100vh - 20px);
    padding: 42px 10px 10px;
  }
  .map-popup-wrap .map-popup-btn {
    font-size: 0.9rem;
  }
}