body {
  margin: 0;
  padding: 0;
  background-color: #120d09;
  color: #f5f5f5;
}

main {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
article,
div {
  box-sizing: border-box;
}

section {
  box-sizing: border-box;
  padding: 60px 20px;
  border-bottom: 1px solid #666;
}

.site-header {
  width: 100%;
  background: #111;
  color: #fff;
  position: relative;
}

.header-inner {
  position: relative;
  height: 72px;
  width: 100%;
}

.header-sns {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sns-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.logo {
  margin: 0;
}

.logo {
  margin: 0;
}

.site-title-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  z-index: 10;

  opacity: 0;
  animation: headerFadeIn 1s ease 0.6s forwards;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -42%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.site-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-title {
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}

.menu-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
  box-sizing: border-box;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 7px auto;
  background: #fff;
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.global-nav {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 1050;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
}

.global-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0s;
}

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

.global-nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.global-nav a {
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  margin: center;
}


.slideshow {
  width: 100%;
  margin: 0;
  padding: 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #000;
  margin: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  cursor: grab;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  cursor: grabbing;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.slider-dots button.active {
  background: #fff;
}

.slide-caption {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  color: #fff;
  width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.slide-caption a {
  pointer-events: auto;
}

.slide-title {
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 12px 0;
  font-size: 70px;
  line-height: 1.2;
  opacity: 0;
  animation: captionItemFade 1s ease 0.2s forwards;
}

.slide-text {
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  animation: captionItemFade 1s ease 0.6s forwards;
}

@keyframes captionItemFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.oval-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 14px;
  background: rgba(180, 0, 0, 0.55);;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
}

.map-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.red-letter {
  color: #fff;
  animation: whiteToRed 1.2s ease forwards;
}

.delay-1 {
  animation-delay: 1.2s;
}

.delay-2 {
  animation-delay: 1.5s;
}

.delay-3 {
  animation-delay: 1.8s;
  
}

@keyframes whiteToRed {
  from {
    color: #fff;
  }
  to {
    color: #d40000;
  }
}

.youtube-section {
  padding: 60px 20px;
}

.youtube-section h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.youtube-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.youtube-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.calendar-section {
  padding: 60px 20px;
}

.calendar-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
}

.calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

section {
  padding: 60px 20px;
}

section h1 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  color: #d40000;
  text-align: center;
 }

section h1::after{
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #d40000;
  margin: 12px auto 0;
 }

section p {
  font-family: "Meiryo", "メイリオ", sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  text-align: center;
  font-weight: bold;
}

.news-section {
  padding: 80px 20px;
  background-color: #120d09;
  color: #f5f5f5;
}

.news-section h2 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  color: #d40000;
  text-align: center;
}

.news-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #d40000;
  margin: 12px auto 0;
}

.news-lead {
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  text-align: center;
}

.news-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.news-table {
  width: 100%;
  border-collapse: collapse;
}

.news-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.news-table td {
  padding: 18px 10px;
  vertical-align: top;
}

.news-date {
  width: 140px;
  color: #d40000;
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  white-space: nowrap;
}

.news-content {
  font-family: "Josefin Sans", "Meiryo", "メイリオ", sans-serif;
  color: #ddd;
  font-size: 16px;
  line-height: 1.8;
}

.link-page {
  padding: 80px 20px;
  background-color: #120d09;
  color: #f5f5f5;
  min-height: 100vh;
}

.link-page h2 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  color: #d40000;
  text-align: center;
}

.link-page h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #d40000;
  margin: 12px auto 0;
}

.link-lead {
  margin: 0 0 40px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  text-align: center;
}

.link-group {
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.link-group h3 {
  margin: 0 0 18px 0;
  font-size: 22px;
  color: #fff;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  text-align: center;
}

.link-list {
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  margin-bottom: 12px;
}

.link-list a {
  font-family: "Meiryo", "メイリオ", sans-serif;
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.8;
}

.link-list a:hover {
  color: #d40000;
}

.site-footer {
  background: #0a0a0a;
  padding: 50px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  margin: 0 0 14px 0;
  font-size: 20px;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  color: #fff;
}

.footer-place {
  font-family: "Meiryo", "メイリオ", sans-serif;
  margin: 0 0 18px 0;
  font-size: 15px;
  color: #ccc;
}

.footer-place a {
  color: #ccc;
  text-decoration: none;
}

.footer-place a:hover {
  color: #fff;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-sns a {
  color: #d40000;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
}

.footer-sns a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.about-page {
  position: relative;
  background-color: #120d09;
  color: #f5f5f5;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding-top: 0;
}

.about-bg-slider {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 920px;
  overflow: hidden;
  z-index: 1;
}

.about-bg-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

.about-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: aboutFade 12s infinite;
}

.about-bg-slide:nth-child(1) {
  animation-delay: 0s;
}

.about-bg-slide:nth-child(2) {
  animation-delay: 4s;
}

.about-bg-slide:nth-child(3) {
  animation-delay: 8s;
}

.about-bg-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px 80px;
}

.about-page h1 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  color: #d40000;
  text-align: center;
  margin-top: 0;
}

.about-page h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #d40000;
  margin: 12px auto 0;
}

.about-lead {
  margin: 0 0 40px 0;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
  color: #ddd;
  text-align: center;
}

.about-content p {
  margin: 0 0 24px 0;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  color: #ddd;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes aboutFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

.live-page {
  background-color: #120d09;
  color: #f5f5f5;
  min-height: 100vh;
  padding: 0 20px 80px;
}

.live-page h1 {
  margin: 0 0 20px 0;
  padding-top: 30px;
  font-size: 32px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  color: #d40000;
  text-align: center;
}

.live-page h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #d40000;
  margin: 12px auto 0;
}

.live-lead {
  margin: 0 0 30px 0;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  text-align: center;
}

.live-year-select-wrap {
  width: 100%;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.live-year-label {
  margin: 0 0 10px 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.live-year-select {
  width: 260px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  background: #111;
  border: 1px solid #666;
  border-radius: 999px;
  text-align: center;
  text-align-last: center;
  display: block;
}

.live-article {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.live-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  text-align: center;
}

.live-place {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

.live-date {
  margin: 14px 0 2px 0;
  font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
  color: #d40000;
  text-align: center;
}

.live-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
}

.live-table th,
.live-table td {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  line-height: 1.8;
}

.live-table th {
  width: 100px;
  color: #d40000;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
}

.live-table td {
  color: #ddd;
  font-family: "Josefin Sans", "Meiryo", "メイリオ", sans-serif;
  font-weight: 600;
  text-align: left;
}

.member-page {
  width: min(92%, 720px);
  margin: 0 auto;
  padding: 28px 0 56px;
  background-color: #120d09;
  color: #f5f5f5;
}

.member-page h1 {
  margin: 0 0 10px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}

.member-lead {
  font-family: "Meiryo", "メイリオ", sans-serif;
  margin: 0 0 18px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

/* 一覧ページ用 */
.member-page .member-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.member-link-button {
  font-family: "Meiryo", "メイリオ", sans-serif;
  display: block;
  width: 240px;
  max-width: 92%;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(196, 0, 24, 0.72);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: normal;
  overflow-wrap: break-word;
}

.member-link-button:hover,
.member-link-button:active {
  opacity: 0.9;
  transform: translateY(-1px);
}

.member-detail-page {
  width: min(92%, 720px);
  margin: 0 auto;
  padding: 28px 0 56px;
}

.member-detail-page h1 {
  margin: 0 0 10px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}

.member-detail-lead {
  font-family: "Meiryo", "メイリオ", sans-serif;
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

.member-detail-name {
  font-family: "Meiryo", "メイリオ", sans-serif;
  margin: 0 0 10px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.member-detail-block {
  margin-top: 20px;
}

.member-detail-heading {
  margin: 0;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #d40000;
}

.member-detail-heading::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: #d40000;
  margin: 10px auto 14px;
}

/* 詳細ページ用 */
.member-detail-page .member-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.member-live-section {
  margin: 0;
  padding: 0;
}

.member-detail-page > .member-live-section:first-of-type {
  margin-top: 0;
}

.member-detail-block {
  margin-top: 20px;
  margin-bottom: 28px;
}

/* フェードイン */

/* ===== page fade in ===== */
@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 最初は非表示 */
.about-page h1,
.about-lead,
.about-content p,
.link-page h2,
.link-lead,
.link-group,
.live-page h1,
.live-lead,
.live-year-select-wrap,
.live-article {
  opacity: 0;
  transform: translateY(24px);
  animation: pageFadeUp 0.9s ease forwards;
}

/* About */
.about-page h1 {
  animation-delay: 0.1s;
}

.about-lead {
  animation-delay: 0.3s;
}

.about-content p:nth-of-type(1) {
  animation-delay: 0.5s;
}

.about-content p:nth-of-type(2) {
  animation-delay: 0.7s;
}

.about-content p:nth-of-type(3) {
  animation-delay: 0.9s;
}

.about-content p:nth-of-type(4) {
  animation-delay: 1.1s;
}

.about-content p:nth-of-type(5) {
  animation-delay: 1.3s;
}

.about-content p:nth-of-type(6) {
  animation-delay: 1.5s;
}

.about-content p:nth-of-type(7) {
  animation-delay: 1.7s;
}

.about-content p:nth-of-type(8) {
  animation-delay: 1.9s;
}

.about-content p:nth-of-type(9) {
  animation-delay: 2.1s;
}

.about-content p:nth-of-type(10) {
  animation-delay: 2.3s;
}

/* Link */
.link-page h2 {
  animation-delay: 0.1s;
}

.link-lead {
  animation-delay: 0.3s;
}

.link-group:nth-of-type(1) {
  animation-delay: 0.5s;
}

.link-group:nth-of-type(2) {
  animation-delay: 0.7s;
}

.link-group:nth-of-type(3) {
  animation-delay: 0.9s;
}

.link-group:nth-of-type(4) {
  animation-delay: 1.1s;
}

/* Live */
.live-page h1 {
  animation-delay: 0.1s;
}

.live-lead {
  animation-delay: 0.3s;
}

.live-year-select-wrap {
  animation-delay: 0.5s;
}

.live-article:nth-of-type(1) {
  animation-delay: 0.7s;
}

.live-article:nth-of-type(2) {
  animation-delay: 0.9s;
}

.live-article:nth-of-type(3) {
  animation-delay: 1.1s;
}

.live-article:nth-of-type(4) {
  animation-delay: 1.3s;
}

.live-article:nth-of-type(5) {
  animation-delay: 1.5s;
}

.live-article:nth-of-type(6) {
  animation-delay: 1.7s;
}

.live-article:nth-of-type(7) {
  animation-delay: 1.9s;
}

.live-article:nth-of-type(8) {
  animation-delay: 2.1s;
}

.live-article:nth-of-type(9) {
  animation-delay: 2.3s;
}

.live-article:nth-of-type(10) {
  animation-delay: 2.5s;
}

.live-article:nth-of-type(11) {
  animation-delay: 2.7s;
}

.live-article:nth-of-type(12) {
  animation-delay: 2.9s;
}

.live-article:nth-of-type(13) {
  animation-delay: 3.1s;
}

.live-article:nth-of-type(14) {
  animation-delay: 3.3s;
}

.live-article:nth-of-type(15) {
  animation-delay: 3.5s;
}

.live-article:nth-of-type(16) {
  animation-delay: 3.7s;
}

.live-article:nth-of-type(17) {
  animation-delay: 3.9s;
}

.live-article:nth-of-type(18) {
  animation-delay: 4.1s;
}

.live-article:nth-of-type(19) {
  animation-delay: 4.3s;
}

.live-article:nth-of-type(20) {
  animation-delay: 4.5s;
}

.live-article:nth-of-type(21) {
  animation-delay: 4.7s;
}

.live-article:nth-of-type(22) {
  animation-delay: 4.9s;
}

.live-article:nth-of-type(23) {
  animation-delay: 5.1s;
}

.live-article:nth-of-type(24) {
  animation-delay: 5.3s;
}

.live-article:nth-of-type(25) {
  animation-delay: 5.5s;
}

/* ===== member page fade in ===== */
.member-page h1,
.member-lead,
.member-page .live-year-select-wrap,
.member-page .member-link-button {
  opacity: 0;
  transform: translateY(24px);
  animation: pageFadeUp 0.9s ease forwards;
}

.member-page h1 {
  animation-delay: 0.1s;
}

.member-lead {
  animation-delay: 0.3s;
}

.member-page .live-year-select-wrap {
  animation-delay: 0.5s;
}

.member-page .member-link-button:nth-of-type(1)  { animation-delay: 0.7s; }
.member-page .member-link-button:nth-of-type(2)  { animation-delay: 0.9s; }
.member-page .member-link-button:nth-of-type(3)  { animation-delay: 1.1s; }
.member-page .member-link-button:nth-of-type(4)  { animation-delay: 1.3s; }
.member-page .member-link-button:nth-of-type(5)  { animation-delay: 1.5s; }
.member-page .member-link-button:nth-of-type(6)  { animation-delay: 1.7s; }
.member-page .member-link-button:nth-of-type(7)  { animation-delay: 1.9s; }
.member-page .member-link-button:nth-of-type(8)  { animation-delay: 2.1s; }
.member-page .member-link-button:nth-of-type(9)  { animation-delay: 2.3s; }
.member-page .member-link-button:nth-of-type(10) { animation-delay: 2.5s; }
.member-page .member-link-button:nth-of-type(11) { animation-delay: 2.7s; }
.member-page .member-link-button:nth-of-type(12) { animation-delay: 2.9s; }
.member-page .member-link-button:nth-of-type(13) { animation-delay: 3.1s; }
.member-page .member-link-button:nth-of-type(14) { animation-delay: 3.3s; }
.member-page .member-link-button:nth-of-type(15) { animation-delay: 3.5s; }
.member-page .member-link-button:nth-of-type(16) { animation-delay: 3.7s; }
.member-page .member-link-button:nth-of-type(17) { animation-delay: 3.9s; }
.member-page .member-link-button:nth-of-type(18) { animation-delay: 4.1s; }
.member-page .member-link-button:nth-of-type(19) { animation-delay: 4.3s; }
.member-page .member-link-button:nth-of-type(20) { animation-delay: 4.5s; }
.member-page .member-link-button:nth-of-type(21) { animation-delay: 4.7s; }
.member-page .member-link-button:nth-of-type(22) { animation-delay: 4.9s; }
.member-page .member-link-button:nth-of-type(23) { animation-delay: 5.1s; }
.member-page .member-link-button:nth-of-type(24) { animation-delay: 5.3s; }
.member-page .member-link-button:nth-of-type(25) { animation-delay: 5.5s; }
.member-page .member-link-button:nth-of-type(26) { animation-delay: 5.7s; }
.member-page .member-link-button:nth-of-type(27) { animation-delay: 5.9s; }
.member-page .member-link-button:nth-of-type(28) { animation-delay: 6.1s; }
.member-page .member-link-button:nth-of-type(29) { animation-delay: 6.3s; }
.member-page .member-link-button:nth-of-type(30) { animation-delay: 6.5s; }
.member-page .member-link-button:nth-of-type(31) { animation-delay: 6.7s; }
.member-page .member-link-button:nth-of-type(32) { animation-delay: 6.9s; }
.member-page .member-link-button:nth-of-type(33) { animation-delay: 7.1s; }
.member-page .member-link-button:nth-of-type(34) { animation-delay: 7.3s; }
.member-page .member-link-button:nth-of-type(35) { animation-delay: 7.5s; }
.member-page .member-link-button:nth-of-type(36) { animation-delay: 7.7s; }
.member-page .member-link-button:nth-of-type(37) { animation-delay: 7.9s; }
.member-page .member-link-button:nth-of-type(38) { animation-delay: 8.1s; }
.member-page .member-link-button:nth-of-type(39) { animation-delay: 8.3s; }
.member-page .member-link-button:nth-of-type(40) { animation-delay: 8.5s; }

/* ===== member detail fade in ===== */
.member-detail-page h1,
.member-detail-lead,
.member-detail-heading,
.member-detail-name,
.member-detail-page .member-link-button,
.member-empty-note {
  opacity: 0;
  transform: translateY(24px);
  animation: pageFadeUp 0.9s ease forwards;
}

.member-detail-page h1 {
  animation-delay: 0.1s;
}

.member-detail-lead {
  animation-delay: 0.3s;
}

/* 小見出しは同時 */
.member-detail-block:nth-of-type(1) .member-detail-heading,
.member-detail-block:nth-of-type(2) .member-detail-heading {
  animation-delay: 0.5s;
}

/* 日付も同時 */
.member-detail-block:nth-of-type(1) .member-detail-name,
.member-detail-block:nth-of-type(2) .member-detail-name {
  animation-delay: 0.5s;
}

/* 1個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(1),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(1) {
  animation-delay: 0.7s;
}

/* 2個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(2),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(2) {
  animation-delay: 0.9s;
}

/* 3個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(3),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(3) {
  animation-delay: 1.1s;
}

/* 4個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(4),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(4) {
  animation-delay: 1.3s;
}

/* 5個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(5),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(5) {
  animation-delay: 1.5s;
}

/* 6個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(6),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(6) {
  animation-delay: 1.7s;
}

/* 7個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(7),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(7) {
  animation-delay: 1.9s;
}

/* 8個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(8),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(8) {
  animation-delay: 2.1s;
}

/* 9個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(9),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(9) {
  animation-delay: 2.3s;
}

/* 10個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(10),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(10) {
  animation-delay: 2.5s;
}

/* 11個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(11),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(11) {
  animation-delay: 2.7s;
}

/* 12個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(12),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(12) {
  animation-delay: 2.9s;
}

/* 13個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(13),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(13) {
  animation-delay: 3.1s;
}

/* 14個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(14),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(14) {
  animation-delay: 3.3s;
}

/* 15個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(15),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(15) {
  animation-delay: 3.5s;
}

/* 16個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(16),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(16) {
  animation-delay: 3.7s;
}

/* 17個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(17),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(17) {
  animation-delay: 3.9s;
}

/* 18個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(18),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(18) {
  animation-delay: 4.1s;
}

/* 19個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(19),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(19) {
  animation-delay: 4.3s;
}

/* 20個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(20),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(20) {
  animation-delay: 4.5s;
}

/* 21個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(21),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(21) {
  animation-delay: 4.7s;
}

/* 22個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(22),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(22) {
  animation-delay: 4.9s;
}

/* 23個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(23),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(23) {
  animation-delay: 5.1s;
}

/* 24個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(24),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(24) {
  animation-delay: 5.3s;
}

/* 25個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(25),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(25) {
  animation-delay: 5.5s;
}

/* 26個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(26),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(26) {
  animation-delay: 5.7s;
}

/* 27個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(27),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(27) {
  animation-delay: 5.9s;
}

/* 28個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(28),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(28) {
  animation-delay: 6.1s;
}

/* 29個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(29),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(29) {
  animation-delay: 6.3s;
}

/* 30個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(30),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(30) {
  animation-delay: 6.5s;
}

/* 31個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(31),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(31) {
  animation-delay: 6.7s;
}

/* 32個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(32),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(32) {
  animation-delay: 6.9s;
}

/* 33個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(33),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(33) {
  animation-delay: 7.1s;
}

/* 34個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(34),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(34) {
  animation-delay: 7.3s;
}

/* 35個目リンクは同時 */
.member-detail-block:nth-of-type(1) .member-link-button:nth-of-type(35),
.member-detail-block:nth-of-type(2) .member-link-button:nth-of-type(35) {
  animation-delay: 7.5s;
}

/* 準備中も同時 */
.member-detail-block:nth-of-type(1) .member-empty-note,
.member-detail-block:nth-of-type(2) .member-empty-note {
  animation-delay: 0.7s;
}

.member-link-button {
  opacity: 0;
  transform: translateY(12px);
  animation: memberButtonFadeIn 0.6s ease forwards;
}

@keyframes memberButtonFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.member-detail-block .member-archive-item:nth-of-type(1)  .member-link-button { animation-delay: 0.7s; }
.member-detail-block .member-archive-item:nth-of-type(2)  .member-link-button { animation-delay: 0.9s; }
.member-detail-block .member-archive-item:nth-of-type(3)  .member-link-button { animation-delay: 1.1s; }
.member-detail-block .member-archive-item:nth-of-type(4)  .member-link-button { animation-delay: 1.3s; }
.member-detail-block .member-archive-item:nth-of-type(5)  .member-link-button { animation-delay: 1.5s; }
.member-detail-block .member-archive-item:nth-of-type(6)  .member-link-button { animation-delay: 1.7s; }
.member-detail-block .member-archive-item:nth-of-type(7)  .member-link-button { animation-delay: 1.9s; }
.member-detail-block .member-archive-item:nth-of-type(8)  .member-link-button { animation-delay: 2.1s; }
.member-detail-block .member-archive-item:nth-of-type(9)  .member-link-button { animation-delay: 2.3s; }
.member-detail-block .member-archive-item:nth-of-type(10) .member-link-button { animation-delay: 2.5s; }
.member-detail-block .member-archive-item:nth-of-type(11) .member-link-button { animation-delay: 2.7s; }
.member-detail-block .member-archive-item:nth-of-type(12) .member-link-button { animation-delay: 2.9s; }
.member-detail-block .member-archive-item:nth-of-type(13) .member-link-button { animation-delay: 3.1s; }
.member-detail-block .member-archive-item:nth-of-type(14) .member-link-button { animation-delay: 3.3s; }
.member-detail-block .member-archive-item:nth-of-type(15) .member-link-button { animation-delay: 3.5s; }
.member-detail-block .member-archive-item:nth-of-type(16) .member-link-button { animation-delay: 3.7s; }
.member-detail-block .member-archive-item:nth-of-type(17) .member-link-button { animation-delay: 3.9s; }
.member-detail-block .member-archive-item:nth-of-type(18) .member-link-button { animation-delay: 4.1s; }
.member-detail-block .member-archive-item:nth-of-type(19) .member-link-button { animation-delay: 4.3s; }
.member-detail-block .member-archive-item:nth-of-type(20) .member-link-button { animation-delay: 4.5s; }
.member-detail-block .member-archive-item:nth-of-type(21) .member-link-button { animation-delay: 4.7s; }
.member-detail-block .member-archive-item:nth-of-type(22) .member-link-button { animation-delay: 4.9s; }
.member-detail-block .member-archive-item:nth-of-type(23) .member-link-button { animation-delay: 5.1s; }
.member-detail-block .member-archive-item:nth-of-type(24) .member-link-button { animation-delay: 5.3s; }
.member-detail-block .member-archive-item:nth-of-type(25) .member-link-button { animation-delay: 5.5s; }
.member-detail-block .member-archive-item:nth-of-type(26) .member-link-button { animation-delay: 5.7s; }
.member-detail-block .member-archive-item:nth-of-type(27) .member-link-button { animation-delay: 5.9s; }
.member-detail-block .member-archive-item:nth-of-type(28) .member-link-button { animation-delay: 6.1s; }
.member-detail-block .member-archive-item:nth-of-type(29) .member-link-button { animation-delay: 6.3s; }
.member-detail-block .member-archive-item:nth-of-type(30) .member-link-button { animation-delay: 6.5s; }
.member-detail-block .member-archive-item:nth-of-type(31) .member-link-button { animation-delay: 6.7s; }
.member-detail-block .member-archive-item:nth-of-type(32) .member-link-button { animation-delay: 6.9s; }
.member-detail-block .member-archive-item:nth-of-type(33) .member-link-button { animation-delay: 7.1s; }
.member-detail-block .member-archive-item:nth-of-type(34) .member-link-button { animation-delay: 7.3s; }
.member-detail-block .member-archive-item:nth-of-type(35) .member-link-button { animation-delay: 7.5s; }
.member-detail-block .member-archive-item:nth-of-type(36) .member-link-button { animation-delay: 7.7s; }
.member-detail-block .member-archive-item:nth-of-type(37) .member-link-button { animation-delay: 7.9s; }
.member-detail-block .member-archive-item:nth-of-type(38) .member-link-button { animation-delay: 8.1s; }
.member-detail-block .member-archive-item:nth-of-type(39) .member-link-button { animation-delay: 8.3s; }
.member-detail-block .member-archive-item:nth-of-type(40) .member-link-button { animation-delay: 8.5s; }


.member2014-page,
.member2014-page * {
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.member-page-2014 h1,
.member-page-2014 .member-lead,
.member-page-2014 .member-archive-heading,
.member-page-2014 .member-band-title,
.member-page-2014 .member-sub-note,
.member-page-2014 .member-free-note,
.member-page-2014 .member-empty-note {
  text-align: center;
}

.member-page-2014 .member-archive-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.member-page-2014 .member-link-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.member-page-2014 .member-band-title {
  margin: 0;
  line-height: 1.8;
}

.member-page-2014 .member-archive-heading {
  margin: 0;
  padding-bottom: 10px;
}




.member-detail-block:nth-of-type(1) .member-detail-heading { animation-delay: 0.7s; }
.member-detail-block:nth-of-type(1) .member-link-button   { animation-delay: 0.9s; }

.member-detail-block:nth-of-type(2) .member-detail-heading { animation-delay: 1.1s; }
.member-detail-block:nth-of-type(2) .member-link-button   { animation-delay: 1.3s; }

.member-detail-block:nth-of-type(3) .member-detail-heading { animation-delay: 1.5s; }
.member-detail-block:nth-of-type(3) .member-link-button   { animation-delay: 1.7s; }

.member-detail-block:nth-of-type(4) .member-detail-heading { animation-delay: 1.9s; }
.member-detail-block:nth-of-type(4) .member-link-button   { animation-delay: 2.1s; }

.member-detail-block:nth-of-type(5) .member-detail-heading { animation-delay: 2.3s; }
.member-detail-block:nth-of-type(5) .member-link-button   { animation-delay: 2.5s; }

.member-detail-block:nth-of-type(6) .member-detail-heading { animation-delay: 2.7s; }
.member-detail-block:nth-of-type(6) .member-link-button   { animation-delay: 2.9s; }

.member-detail-block:nth-of-type(7) .member-detail-heading { animation-delay: 3.1s; }
.member-detail-block:nth-of-type(7) .member-link-button   { animation-delay: 3.3s; }

.member-detail-block:nth-of-type(8) .member-detail-heading { animation-delay: 3.5s; }
.member-detail-block:nth-of-type(8) .member-link-button   { animation-delay: 3.7s; }

.member-detail-block:nth-of-type(9) .member-detail-heading { animation-delay: 3.9s; }
.member-detail-block:nth-of-type(9) .member-link-button   { animation-delay: 4.1s; }

.member-detail-block:nth-of-type(10) .member-detail-heading { animation-delay: 4.3s; }
.member-detail-block:nth-of-type(10) .member-link-button   { animation-delay: 4.5s; }



.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-sns-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-sns-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.footer-logo-image {
  width: 180px;
  height: auto;
  display: block;
}


/* ===== Responsive header / navigation ===== */
.site-header {
  width: 100%;
  background: #111;
  color: #fff;
  position: relative;
  z-index: 1200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  position: relative;
  height: auto;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.header-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: 88px;
  padding: 14px 16px 12px;
}

.header-sns {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  z-index: 2;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sns-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.logo {
  margin: 0;
  justify-self: center;
}

.site-title-wrap {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  opacity: 0;
  animation: headerFadeIn 1s ease 0.6s forwards;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-title {
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(24px, 3.2vw, 30px);
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 44px;
  min-height: 44px;
}

.menu-toggle {
  position: static;
  right: auto;
  top: auto;
  transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
  box-sizing: border-box;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.global-nav {
  position: static;
  top: auto;
  left: auto;
  width: 100%;
  background: #111;
  z-index: 1050;
  display: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: none;
}

.global-nav.open {
  display: block;
}

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

.global-nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.global-nav li:first-child {
  border-top: none;
}

.global-nav a {
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

/* ===== Responsive visual adjustments ===== */
.slideshow {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.slider {
  height: clamp(520px, 78vh, 920px);
  height: clamp(520px, calc(100svh - 120px), 920px);
}

.slide-caption {
  left: 50%;
  top: 47%;
  width: min(92%, 880px);
  padding: 0 16px;
  box-sizing: border-box;
}

.slide-title {
  font-size: clamp(70px, 8vw, 90px);
}

.slide-text {
  font-size: clamp(14px, 2.4vw, 18px);
}

.oval-link {
  font-size: clamp(13px, 2.2vw, 16px);
}

.calendar-wrap iframe {
  height: clamp(380px, 60vw, 500px);
}

@media (min-width: 1101px) {
  .header-top {
    min-height: 96px;
    padding: 18px 24px 14px;
  }

  .menu-toggle {
    display: none;
  }

  .global-nav {
    display: block;
  }

  .global-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    padding: 12px 24px 14px;
  }

  .global-nav li {
    border-top: none;
  }

  .global-nav a {
    position: relative;
    padding: 8px 0;
  }

  .global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #d40000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }

  .global-nav a:hover::after,
  .global-nav a:focus-visible::after {
    transform: scaleX(1);
  }
}

@media (max-width: 1100px) {
  .slider {
    height: clamp(520px, 82vh, 880px);
    height: clamp(520px, calc(100svh - 88px), 880px);
  }
}

@media (max-width: 900px) {
  .slide-caption {
    top: 48%;
  }
}

@media (max-width: 767px) {
  .header-top {
    min-height: 80px;
    padding: 12px 14px 10px;
    column-gap: 10px;
  }

  .header-sns {
    gap: 8px;
  }

  .sns-icon {
    width: 22px;
    height: 22px;
  }

  .site-icon {
    width: 30px;
    height: 30px;
  }

  .site-title {
    font-size: 24px;
  }

  section,
  .youtube-section,
  .calendar-section,
  .news-section,
  .link-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .slider {
    height: clamp(500px, 84vh, 780px);
    height: clamp(500px, calc(100svh - 80px), 780px);
  }

  .slide-caption {
    top: 49%;
    width: 94%;
  }

  .calendar-wrap iframe {
    height: 420px;
  }

  .news-table td {
    padding: 14px 8px;
  }

  .news-date {
    width: 108px;
    font-size: 14px;
  }

  .news-content,
  .link-list a,
  section p,
  .news-lead,
  .live-lead {
    font-size: 15px;
  }

  .live-page {
    padding: 0 16px 64px;
  }

  .live-table th,
  .live-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .site-title {
    font-size: 22px;
  }

  .slider {
    height: clamp(480px, 82vh, 720px);
    height: clamp(480px, calc(100svh - 76px), 720px);
  }

  .slide-caption {
    top: 49%;
  }

  .slide-text {
    line-height: 1.7;
  }

  .oval-link {
    padding: 6px 12px;
  }

  .news-table tr {
    display: block;
    padding: 12px 0;
  }

  .news-table td {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

  .news-date {
    width: auto;
    margin-bottom: 4px;
  }

  .live-title {
    font-size: 22px;
  }

  .live-table th {
    width: 84px;
  }
}



/* ===== Additional responsive tuning for ABOUT / LIVE / MEMBER / LINK ===== */
.about-page {
  min-height: clamp(760px, 100svh, 1400px);
  padding-bottom: clamp(48px, 8vw, 80px);
}

.about-bg-slider {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  max-width: min(92vw, 900px);
  min-height: clamp(760px, 100svh, 1180px);
  padding: clamp(72px, 10vw, 96px) clamp(16px, 4vw, 24px);
}

.about-page h1,
.about-lead,
.about-content p {
  margin: 0;
}

.about-lead {
  font-size: clamp(18px, 2.8vw, 22px);
  line-height: 1.85;
}

.about-content p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.95;
  text-wrap: pretty;
}

.live-page {
  padding: 0 clamp(12px, 3.4vw, 20px) clamp(56px, 8vw, 80px);
}

.live-page h1 {
  padding-top: clamp(30px, 5vw, 40px);
  font-size: clamp(28px, 4vw, 32px);
}

.live-lead {
  font-size: clamp(14px, 2.2vw, 16px);
}

.live-year-select {
  width: min(100%, 320px);
  padding: 10px 16px;
  font-size: clamp(15px, 2.2vw, 16px);
}

.live-article {
  max-width: 900px;
  padding: clamp(20px, 3vw, 24px) 0;
}

.live-title {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.35;
}

.live-place {
  font-size: clamp(13px, 1.9vw, 15px);
  line-height: 1.7;
}

.live-date {
  font-size: clamp(14px, 2vw, 16px);
}

.live-table {
  table-layout: fixed;
}

.live-table th,
.live-table td {
  padding: clamp(10px, 2vw, 14px) clamp(8px, 1.8vw, 12px);
  font-size: clamp(13px, 1.9vw, 15px);
  line-height: 1.7;
}

.live-table th {
  width: clamp(78px, 22vw, 110px);
}

.live-table td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.member-page,
.member-detail-page {
  width: min(92%, 760px);
  padding: clamp(24px, 5vw, 36px) 0 clamp(48px, 8vw, 72px);
}

.member-page h1,
.member-detail-page h1 {
  font-size: clamp(1.9rem, 5vw, 2.4rem);
}

.member-lead,
.member-detail-lead,
.member-detail-name {
  font-size: clamp(0.92rem, 2.3vw, 1rem);
  line-height: 1.8;
  color: #cfcfcf;
}

.member-page .member-links,
.member-detail-page .member-links {
  gap: clamp(12px, 2vw, 16px);
}

.member-detail-block {
  margin-top: clamp(18px, 4vw, 24px);
  margin-bottom: clamp(24px, 4vw, 32px);
}

.member-detail-heading {
  font-size: clamp(1.2rem, 3vw, 1.35rem);
}

.member-link-button {
  width: min(100%, clamp(220px, 72vw, 340px));
  max-width: 100%;
  min-height: clamp(48px, 10vw, 60px);
  padding: clamp(12px, 3vw, 16px) clamp(18px, 5vw, 28px);
  font-size: clamp(14px, 2.4vw, 17px);
  line-height: 1.65;
}

.member-page-2014 .member-link-group {
  gap: clamp(10px, 2vw, 14px);
}

.link-page {
  padding: clamp(56px, 8vw, 80px) clamp(16px, 4vw, 20px);
}

.link-page h2 {
  font-size: clamp(28px, 4vw, 32px);
}

.link-lead {
  font-size: clamp(15px, 2.2vw, 16px);
  line-height: 1.8;
}

.link-group {
  max-width: 900px;
  margin: 0 auto clamp(28px, 5vw, 36px);
  padding: clamp(20px, 4vw, 28px) 0;
}

.link-group h3 {
  font-size: clamp(20px, 3vw, 22px);
}

.link-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
}

.link-list li {
  width: 100%;
  margin-bottom: 0;
}

.link-list a {
  display: inline-block;
  width: min(100%, 620px);
  padding: clamp(10px, 2.8vw, 13px) clamp(14px, 3vw, 18px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: clamp(15px, 2.2vw, 16px);
  line-height: 1.6;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.link-list a:hover,
.link-list a:focus-visible {
  color: #fff;
  background: rgba(212, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .about-content {
    max-width: min(92vw, 680px);
  }
}

@media (max-width: 767px) {
  .about-page {
    min-height: auto;
  }

  .about-content {
    max-width: 100%;
    min-height: auto;
    padding: 72px 16px 64px;
    gap: 14px;
  }

  .about-lead {
    line-height: 1.8;
  }

  .about-content p {
    line-height: 1.9;
  }

  .live-article {
    padding: 18px 0;
  }

  .member-page,
  .member-detail-page {
    width: min(94%, 760px);
  }

  .member-link-button {
    width: min(100%, 520px);
  }
}

@media (max-width: 560px) {
  .about-content {
    padding: 68px 14px 56px;
    gap: 12px;
  }

  .live-table th,
  .live-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .live-table th {
    width: 76px;
  }

  .member-page,
  .member-detail-page {
    width: calc(100% - 24px);
  }

  .member-link-button {
    width: min(78vw, 260px);
    max-width: 260px;
    margin: 0 auto;
  }

  .link-list a {
    width: 100%;
    border-radius: 20px;
  }
}
