﻿@charset "utf-8";

.concept-map-links {
  position: absolute;
  left: 74%;
  top: 50%;
  z-index: 190;

  width: min(58vw, 900px);
  aspect-ratio: 1 / 1;

  transform: translate(-50%, -50%);

  opacity: 0;
  filter: blur(14px);
  pointer-events: auto;

  animation: conceptMapIn 1.1s var(--ease-main) 0.45s forwards;
}

.concept-map-links > img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  opacity: 0.92;
  filter:
    drop-shadow(0 24px 60px rgba(0,0,0,0.34))
    brightness(1.05);
}

.concept-map-link {
  position: absolute;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 92px;
  height: 34px;
  padding: 0 16px;

  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: translate(-50%, -50%);

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s var(--ease-main);
}

.concept-map-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);

  width: 9px;
  height: 9px;

  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 7px rgba(0,0,0,0.25),
    0 0 24px rgba(255,255,255,0.72);

  transform: translateX(-50%);
}

.concept-map-link:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.95);
  color: #111;
  transform: translate(-50%, -50%) scale(1.04);
}

/* 仮位置：地図画像に合わせて後で微調整 */
.concept-map-link--alpine {
  left: 45%;
  top: 40%;
}

.concept-map-link--pattaya {
  left: 46%;
  top: 49.5%;
}

@keyframes conceptMapIn {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate(-50%, calc(-50% + 24px));
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1024px) {
  .concept-map-links {
    left: 50%;
    top: auto;
    bottom: calc(var(--bottom-nav-height, 100px) + 40px);

    width: min(72vw, 420px);

    transform: translateX(-50%);
  }

  @keyframes conceptMapIn {
    0% {
      opacity: 0;
      filter: blur(14px);
      transform: translate(-50%, 24px);
    }

    100% {
      opacity: 1;
      filter: blur(0);
      transform: translate(-50%, 0);
    }
  }
}