@charset "utf-8";

/* =============================
   チケット購入ボタン（左下固定）
   ============================= */
#ticket-overlay {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 12000;
}

.ticket-overlay__btn {
  display: inline-block;
  padding: 12px 24px;
  background: #cc0000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  transition: background .2s ease, transform .2s ease;
}

.ticket-overlay__btn:hover {
  background: #d0538d;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  #ticket-overlay {
    left: 12px;
    bottom: 12px;
  }
  .ticket-overlay__btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


/* =============================
   PAGE TOP ボタン（右下固定）
   ============================= */
#to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ccc;
  color: #e36ca4;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 12000;
}

#to-top.is-shown {
  opacity: 1;
  pointer-events: auto;
}

#to-top:hover {
  background: #fdf3f7;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  #to-top {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 18px;
  }
}
