
/* ゲスト閲覧制限の壁 */
.guest-wall {
  position: relative;
  margin-top: -100px;
  padding-top: 120px;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0.95) 100%
  );
  text-align: center;
  padding-bottom: 60px;
}

.guest-wall-content {
  max-width: 320px;
  margin: 0 auto;
  padding: 0 20px;
}

.guest-wall-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.guest-wall-title {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.guest-wall-text {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.guest-wall-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.guest-wall-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.guest-wall-login {
  margin-top: 16px;
  color: #71767b;
  font-size: 13px;
}

.guest-wall-login a {
  color: #60a5fa;
  text-decoration: none;
}

.guest-wall-login a:hover {
  text-decoration: underline;
}

/* 残り件数カウンター */
.guest-view-counter {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.guest-view-counter-warning {
  background: rgba(236, 72, 153, 0.9);
}

.guest-view-counter i {
  font-size: 14px;
}