/* Coming Soonページ専用スタイル */

.coming-soon {
  background: linear-gradient(135deg, #42576e 0%, #010e18 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.coming-soon-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.coming-soon-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.coming-soon-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 300;
}

.coming-soon-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0.8;
}

.coming-soon-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #2e4155;
  transform: translateY(-2px);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .coming-soon-icon {
    font-size: 4rem;
  }
  
  .coming-soon-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-subtitle {
    font-size: 1.3rem;
  }
  
  .coming-soon-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
  }
} 
