/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 16 2025 | 21:01:43 */
/* 予約するボタン */

/* 初期状態：非表示 */
.float-reserve {
  position: fixed;
  right: 10px;
  bottom: calc(80px + env(safe-area-inset-bottom));
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}

/* 表示状態 */
.float-reserve.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: calc(454px * 120/480);
  background-image: url('https://dining.go-inbound.com/wp-content/uploads/2025/08/float-btn.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform .3s ease, opacity .3s ease;
  margin: 0px;
}

.float-reserve.is-visible .reserve-btn:hover {
  transform: translateY(-5px);
  opacity: .8;
  color: #eee;
}

@media (max-width: 768px) {
  .float-reserve {
    bottom: calc(60px + env(safe-area-inset-bottom));
	right: 5px;
  }

  .reserve-btn {
    width: 80px;
	height: calc(454px * 80/480);
    font-size: 12px;
  }
}