@charset "UTF-8";
/* =========================================================
   設定パラメータ
========================================================= */
/* ---- サイズ ---- */
/* ---- 色 ---- */
/* ---- 発光 ---- */
/* ---- アニメーション ---- */
/* ---- ツールチップ ---- */
/* =========================================================
   アニメーション
========================================================= */
@keyframes pulse-core {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}
@keyframes radar {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* =========================================================
   メイン
========================================================= */
.image-overlay-container {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.image-overlay-container .base-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.image-overlay-container {
  /* =====================================================
     マーカー
  ===================================================== */
}
.image-overlay-container .marker {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: clamp(14px, 3.5vw, 30px) !important;
  height: clamp(14px, 3.5vw, 30px) !important;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  box-sizing: border-box;
  /* 発光グラデーション */
  background: radial-gradient(circle at center, rgba(255, 80, 80, 0.95) 0%, rgba(255, 0, 60, 0.85) 60%, rgba(180, 0, 0, 0.95) 100%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  /* ハロー光 */
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 0 12px rgba(255, 0, 60, 0.85), 0 0 24px rgba(255, 0, 60, 0.6);
  animation: pulse-core 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.image-overlay-container {
  /* レーダーリング */
}
.image-overlay-container .marker::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(255, 0, 60, 0.85);
  animation: radar 2s infinite;
  pointer-events: auto;
}
.image-overlay-container {
  /* hover強調 */
}
.image-overlay-container .marker:hover {
  transform: translate(-50%, -50%) scale(1.2);
  filter: brightness(1.2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 0, 60, 0.85), 0 0 40px rgba(255, 0, 60, 0.6);
}
.image-overlay-container {
  /* =====================================================
     ツールチップ
  ===================================================== */
}
.image-overlay-container .tooltip-box {
  position: absolute;
  z-index: 100;
  pointer-events: auto;
  display: inline-block;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  margin-top: -clamp(14px, 3.5vw, 30px)/2-12px;
  background: linear-gradient(#222, #000);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 0, 60, 0.25);
}
.image-overlay-container .tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #000;
}
.image-overlay-container .tooltip-box {
  /* ===== リンク色固定 ===== */
}
.image-overlay-container .tooltip-box a {
  color: #fff;
  text-decoration: none;
}
.image-overlay-container .tooltip-box a:visited {
  color: #fff;
}
.image-overlay-container .tooltip-box a:hover {
  color: #fff;
  text-decoration: underline;
}
.image-overlay-container .tooltip-box a:active {
  color: #fff;
}/*# sourceMappingURL=showtooltips-red-lader.css.map */