@charset "UTF-8";

body {
  background-color: white; /* 背景を白に */
  font-family: 'Poppins', sans-serif; /* 全体のフォントを統一 */
  color: #333; /* テキストカラーを少し濃いグレーに */
}

.wrapper {
  max-width: 1000px;
  padding-left: 4%;
  padding-right: 4%;
}

.event {
  padding-bottom: 100px;
  margin: 0 auto;
}

.main-nav {
  display: flex;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 34px;
  list-style: none;
  justify-content: center;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  text-decoration: none;
  color: #af8210; /* ゴールドカラーを維持 */
  transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav a:hover {
  color: #ff7f50; /* ホバー時にポップな色に */
  transform: scale(1.1); /* ホバー時に少し拡大する */
}

.page_title {
  text-align: center;
  padding: 8vh 0 30px;
  font-size: 3.6rem;
  font-weight: 400;
  color: #807a07; 
  position: relative;
}

.page_title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
}

.event h3 {
  font-size: 2.5rem;
  font-weight: 500;
  padding: 20px 0 5px 0;
  color: #807a07; 
}

.handle_name {
  font-size: 2rem;
  color: #de9125;
}

.event p {
  padding-top: 10px;
  font-size: 1.2rem;
}

.event span {
  padding-left: 5rem;
}

/* 表 */
table {
  border-collapse: separate;
  border-spacing: 3px;
  width: 95%;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  background-color: #fff5e1; /* 明るい背景色 */
  border: solid 1px #ffd700; /* ゴールドボーダー */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* テーブルにシャドウを追加 */
}

table th {
  border-radius: 5px;
  text-align: center;
  padding: 10px 0;
  background-color: #ffb347; /* オレンジ色 */
  color: white;
  border: solid 1px #ffb347;
}

table td {
  border-radius: 5px;
  text-align: left;
  padding: 10px 0;
  background-image: url("table-bg.png");
  background-repeat: repeat;
  background-size: 50px, 50px;
  background-color: #ffefd5; /* パステルカラー */
  color: #333;
}

/* ボタン */
.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #ff6347; /* トマト色のボタン */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  background-color: #ff4500; /* ホバー時の色変更 */
  transform: translateY(-3px); /* ボタンを少し持ち上げる */
}

/* 遊び心のある要素としてアニメーションを追加 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event, .page_title {
  animation: fadeInUp 0.8s ease-out;
}
