@charset "UTF-8";

/* ===== ポップアップバナー ===== */
#dt-popup-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 150px;
  background: transparent;
  border-radius: 10px;
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.18); */
  overflow: hidden;
  /* 初期状態：非表示 */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#dt-popup-banner.dt-popup-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#dt-popup-banner img {
  display: block;
  width: 100%;
  height: auto;
}

#dt-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: background 0.2s;
}

#dt-popup-close:hover {
  background: rgba(0,0,0,0.7);
}

#dt-popup-close svg {
  width: 12px;
  height: 12px;
  fill: #ffffff;
}

@media (max-width: 770px) {
  #dt-popup-banner {
    display: none !important;
  }
}
/* ===== ポップアップバナー ここまで ===== */