@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/*共通設定*/

* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
img {
  max-width:100%;
}
a {
  text-decoration:none;
}

/*もっと見るボタン*/
.more-link-wrapper {
  text-align: center;
  margin-top: 1em;
}

.more-link {
  display: inline-block;
  color: #fff;
  border: 2px solid #ffcc00;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border-radius: 5px;
}

.more-link:hover {
  background: #ffcc00;
  color: #000;
}


/* ナビゲーション */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 20px 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: saturate(180%) blur(12px);
  z-index: 100;
}
nav .logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
  margin-bottom:20px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
}
nav small {
  display:block;font-size:0.6rem;margin-top:5px;color:#ccc;text-align:center;padding-bottom:20px;
}
nav small:hover {
  color:#ffcc00;
}
nav ul li a:hover,
nav ul li a:focus {
  color: #ffcc00;
}
nav ul li a:hover small,
nav ul li a:focus small {
  color: #ffcc00;
}
nav ul li a:hover::after,
nav ul li a:focus::after {
  width: 100%;
}

/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 24px 10px;
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 0.05em;
}



/* モバイル対応 */
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  .more-link {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .hamburger {
    display: block;
    color:#ddd;
  }

  nav {
    padding:0 10px;
    height:60px;
  }

  nav .logo {
    margin-bottom:0;
  }

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease-in-out;
  }
  nav ul {
    gap:0;
  }

  .nav-links.active {
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }

  .nav-links li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
    list-style: none;
  }

  .nav-links li a {
    display: block;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s ease;
  }

  .nav-links li a:hover,
  .nav-links li a:focus {
    color: #ffcc00;
  }

  nav ul li a:hover::after,
  nav ul li a:focus::after {
    width: 0;
  }

  .nav-links li a small {
    display: block;
    font-size: 0.6rem;
    color: #ccc;
    margin: 4px 0 0;
    padding: 0;
    text-align: center;
  }
}
