@charset "UTF-8";
/* 図の上のツールチップ */
@keyframes pulse-animation {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
}
.image-overlay-container {
  position: relative;
  display: inline-block;
  line-height: 0;
  /* 1. マーカー（正円を死守） */
  /* 2. ツールチップ（マーカーの真上に配置） */
}
.image-overlay-container .base-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.image-overlay-container .marker {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: 30px !important;
  height: 30px !important;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: rgba(255, 255, 0, 0.4);
  border: 2px solid rgba(255, 230, 0, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
.image-overlay-container .marker.pulse {
  animation: pulse-animation 2s infinite ease-in-out;
}
.image-overlay-container .marker:hover {
  background-color: rgba(255, 230, 0, 0.6);
}
.image-overlay-container .tooltip-box {
  position: absolute;
  z-index: 100;
  pointer-events: none;
  /* --- 文字サイズにぴったりフィットさせる設定 --- */
  display: inline-block;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: nowrap;
  /* ---------------------------------------- */
  transform: translate(-50%, -100%);
  margin-top: -27px;
  background: #111;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.image-overlay-container .tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #111;
}/*# sourceMappingURL=showtooltips-yellow.css.map */