    body {
      font-family: "Noto Sans JP", sans-serif;
      margin: 0;
      background: #fff;
      color: #333;
    }

.menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: black;
  border: none;
  cursor: pointer;
  z-index: 1000;
}


a:hover{
	color:orangered;
}




nav.hidden {
  display: none;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0.5em 0;
}

nav a {
  color: #fff;
  text-decoration: none;
}
    .live-section {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem;
    }

    .breadcrumb {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    /* タブボタン */
    .tab-buttons {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .tab-buttons button {
      background: none;
      border: 1px solid #ccc;
      padding: 0.5rem 1rem;
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .tab-buttons button.active {
      background: #000;
      color: #fff;
    }

    /* LIVEアイテム */
    .live-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .live-item {
      background: #f8f8f8;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      opacity: 1;
      transform: scale(1);
      transition: all 0.3s ease;
    }

    .live-item.hide {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
    }

    .live-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .live-info {
      padding: 1rem;
    }

    .date {
      font-size: 0.9rem;
      color: #777;
    }

    footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      background: #000;
      color: #fff;
    }

    .sns-icons img {
      width: 24px;
      margin: 0 0.5rem;
    }

a{
  color: gray;
  text-decoration: none;
}

a:visited{
	color: black;
}

a:hover{
	color:orangered;
}