@charset "UTF-8";

  .p-core-pin-container {
    position: relative;
    overflow: visible !important;
    width: 87.5%;
    margin: auto;
    margin-top: 60px;
  }

  .p-core-pin-content {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: visible !important;
  }

  .p-core-pin-main-image {
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .p-core-pin-main-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .p-core-pin-item {
    position: absolute;
    z-index: 100;
    line-height: normal;
  }

  .p-core-pin-icon {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-core-pin-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    position: relative;
    z-index: 2;
  }

  .p-core-pin-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1;
    animation: corePinPulseAnim 2s infinite ease-out;
  }

  @keyframes corePinPulseAnim {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(2.4);
      opacity: 0;
    }
  }

  .p-core-pin-box {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-bottom: 15px;
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 200;
  }

  .p-core-pin-box a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
  }

  .p-core-pin-box a:hover {
    opacity: 0.5;
  }

  .p-core-pin-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: none;
  }

  .p-core-pin-box::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #ddd;
    border-bottom: none;
    z-index: -1;
    margin-top: 1px;
  }



  .p-core-pin-box a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
  }

  .p-core-pin-box-img {
    width: 70px;
    height: 70px;
    margin-right: 10px;
    flex-shrink: 0;
  }

  .p-core-pin-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p-core-pin-box-txt {
    display: flex;
    flex-direction: column;
  }

  .p-core-pin-title {
    font-weight: bold;
    font-size: 14px;
  }

  .p-core-pin-text {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
  }

  .p-core-pin-item.is-open {
    z-index: 99 !important;
  }

  .p-core-pin-item.is-open .p-core-pin-box {
    opacity: 1;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0);
  }

  @media screen and (min-width: 768px) {
    .p-core-pin--door {
      left: 29%;
      top: 70%;
    }

    .p-core-pin--handle {
      left: 24%;
      top: 55%;
    }

    .p-core-pin--counter {
      left: 42%;
      top: 50%;
    }

    .p-core-pin--leg {
      left: 52%;
      top: 86%;
    }
  }

  @media screen and (max-width: 767px) {
    .p-core-pin--door {
      left: 65%;
      top: 17%;
    }

    .p-core-pin--handle {
      left: 40%;
      top: 53%;
    }

    .p-core-pin--counter {
      left: 51%;
      top: 48%;
    }

    .p-core-pin--leg {
      left: 34%;
      top: 79%;
    }
  }