/* 全体の余白調整 */
section.event-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
/*ページタイトル*/
.page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* タイトル */
.event-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
}

/* イベントリスト */
.event-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.event-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease-out forwards;
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.event-item:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.event-item h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.event-item p {
  margin: 0.5rem 0;
  color: #555;
  font-size: 1rem;
}

/* ボタン調整 */
.event-item a.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  background: #e85d04;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.event-item a.btn:hover {
  background: #d35400;
}

/* アニメーション */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
