.inner {
  width: 100%;
}

.img_Area {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.img_Area img {
  width: 100%;
}

.map-wrapper {
  position: relative;
}

.map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ホバー表示 */
.area-popup {
  position: absolute;
  width: 300px;
  height: 225px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 100;
}

.area-popup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.ifPc {
  display: block;
}

.ifSp {
  display: none;
}
@media (max-width: 768px) {
  .ifPc {
    display: none;
  }
  
  .ifSp {
    display: block;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .grid .clm img {
    width: 100%;
  }
}