@charset "UTF-8";
.map-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.map-container .map-image-wrapper {
  display: flex;
  position: relative;
  width: calc(65% - 10px);
  height: auto;
}
@media (max-width: 760px) {
  .map-container .map-image-wrapper {
    width: 100%;
  }
}
.map-container .map-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1%;
}
.map-container .map-image-wrapper .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map-container .map-image-wrapper .circles .circle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e77e37;
  border: 1px solid #fff;
  animation: pulse 2s infinite;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
@media (max-width: 760px) {
  .map-container .map-image-wrapper .circles .circle {
    width: 10px;
    height: 10px;
  }
}
.map-container .map-image-wrapper .circles .circle.active {
  background-color: red;
  border: 1px solid #fff;
  animation: none; /* pulseアニメーションを止める */
  animation: pulse 2s infinite;
}

#map-info {
  width: calc(35% - 10px);
  text-align: left;
  border-radius: 5px;
}
@media (max-width: 760px) {
  #map-info {
    width: 100%;
  }
}
#map-info h4 {
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  color: #333;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  #map-info {
    max-width: 100%;
  }
}/*# sourceMappingURL=click-circle.css.map */