/* 基本スタイル */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(120deg, rgba(255, 84, 54, 0.45), rgba(255, 255, 255, 0)), linear-gradient(185deg, rgba(69, 54, 255, 0.8), rgba(255, 255, 255, 0)), linear-gradient(340deg, rgba(0, 153, 26, 0.8), rgba(255, 255, 255, 0));
  color: #333;
}

/* ヘッダー */
header {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

/* メインビジュアル */
#top img {
  width: 100%;
  height: auto;
}

/* セクション共通 */
section {
  padding: 50px 5%;
  margin-bottom: 30px;
}

h2 {
  color: #7b2cbf; /* 紫色 */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
}

/* 概要・あらすじセクション */
#overview, #story {
  background-color: rgba(255, 214, 255, 0.6);
}

/* 詳細セクション */
#details {
  background-color: rgba(155, 246, 255, 0.6); /* 薄い青 with 80% opacity */
}

#details h3 {
  color: #3a0ca3; /* 濃い紫 */
  font-size: 1.8em;
}

/* 注意事項セクション */
#caution {
  background-color: rgba(255, 214, 255, 0.8); /* 薄いピンク with 80% opacity */
}

/* フッター */
footer {
  background-color: #3a0ca3; /* 濃い紫 */
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.wrap{
  max-width: 800px;
  margin: 0 auto;
}
/* レスポンシブデザイン */
@media (max-width: 768px) {
  nav ul {
      flex-direction: column;
      align-items: center;
  }

  nav ul li {
      margin: 10px 0;
  }

  h2 {
      font-size: 2em;
  }

  #details h3 {
      font-size: 1.5em;
  }
}

main{
  text-align: center;
  margin: 40vh auto;
}