/* -----------------------------
   オーバーレイコンテナ
----------------------------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* 背景を薄く暗く */
  z-index: 10;
  display: none;
}

/* -----------------------------
   メインコンテンツ（中央寄せ）
----------------------------- */
.container {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* 背景動画が暗めなら文字が映えるよう白文字ベースでもOKです */
  color: #FFFFFF;
  padding-bottom: 100px;
  /* PC用メニュー分の余白 */
}

.logo {
  min-width: 350px;
  max-width: 700px;
  width: 40%;
}

.date {
  margin-top: 24px;
  font-size: 4.5rem;
  font-weight: bold;
  color: #1D2087;
}

.venue {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1D2087;
}

/* -----------------------------
   PC用メニューバー
----------------------------- */
nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background-color: #F08000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin: 0 24px;
}

nav li a {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 12px;
}

nav li a:hover {
  opacity: 0.8;
}

/* -----------------------------
   スマホ用ハンバーガーアイコン
----------------------------- */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 20;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 4px;
  background-color: #1D2087;
  /* ハンバーガーの線を変更 */
  border-radius: 2px;
}

/* -----------------------------
   スマホ用スライドメニュー
----------------------------- */
.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  max-width: 280px;
  height: 100%;
  background-color: #F08000;
  color: #FFFFFF;
  z-index: 15;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  /* ハンバーガーアイコンと重ならないように */
}

.slide-menu.open {
  right: 0;
}

.slide-menu ul {
  list-style: none;
}

.slide-menu li {
  margin: 20px 0;
  text-align: center;
}

.slide-menu li a {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  padding: 8px 0;
}

.slide-menu li a:hover {
  opacity: 0.8;
}

/* -----------------------------
   レスポンシブ設定
----------------------------- */
@media screen and (max-width: 768px) {

  /* PC用メニューを非表示 */
  nav {
    display: none;
  }

  /* ハンバーガーアイコンを表示 */
  .hamburger {
    display: flex;
  }

  /* メインコンテンツ下の余白を削除（スマホではメニュー分不要） */
  .container {
    padding-bottom: 0;
  }

  .date {
    font-size: 2.5rem;
  }

  .venue {
    font-size: 1.5rem;
  }
}