@charset "UTF-8";
/* お祝いカードのスタイル */
.celebration-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: slideIn 0.6s ease-out;
}
@media (max-width: 768px) {
  .celebration-card {
    padding: 20px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 背景の装飾 */
.celebration-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ヘッダー部分 */
.celebration-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.celebration-icon i {
  color: #A57A43;
  font-size: 48px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.celebration-title {
  font-size: 28px;
  font-weight: bold;
  color: #A57A43;
  margin-bottom: 10px;
}

/* 達成者リスト */
.achievers-list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.achiever-item {
  background: white;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.achiever-item:nth-child(1) {
  animation-delay: 0.1s;
}

.achiever-item:nth-child(2) {
  animation-delay: 0.2s;
}

.achiever-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.achiever-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.achiever-icon {
  font-size: 32px;
  margin-right: 20px;
}

.achiever-content {
  flex: 1;
}

.achiever-name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.achiever-message {
  font-size: 14px;
  color: #666;
}

.achiever-badge {
  background: #A57A43;
  color: #F9F9F9;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* 紙吹雪のアニメーション */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd700;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
/* デモ用のコンテナ */
.demo-container {
  margin-top: 40px;
  text-align: center;
}

.demo-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}/*# sourceMappingURL=confetti.css.map */