
.site-header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.main-content {
  min-height: 70vh;
  background-color: #f9f9f9;
  padding: 40px;
}

/* フッターを画面下部に固定 */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

/* 文字を隠す枠 */
.animate-reveal {
  overflow: hidden;
  display: inline-block;
}

/* H1のデザインとアニメーション */
.footer-title {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 2px;
  
  /* アニメーションの一括指定（1.2秒かけて動く、0.3秒待ってから開始、開始前は隠す） */
  animation: slideUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s backwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


