@charset "utf-8";

/* メニューポップアップ追加↓ 260723 */
.pdf-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: block;
  transition: transform 0.2s ease;
}
.pdf-float img {
  width: 200px;
  height: auto;
  display: block;
}
.pdf-float:hover {
  transform: translateY(-4px);
}

@media screen and (max-width: 768px) {
  .pdf-float {
    right: 30px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 210;
  }
  .pdf-float img {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .pdf-float {
    right: 35px;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }
  .pdf-float img {
    width: 88px;
  }
}