:root {
  --muji-red: #7f0019;
  --kinari: #f4eede;
  --gray-800: #3c3c43;
  --gray-700: #6d6d72;
  --gray-300: #d8d8d9;
  --gray-200: #ebebec;
  --gray-100: #f5f5f5;
  --white: #fff;
  --font: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font);
  font-kerning: auto;
  color: var(--gray-800);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gray-800); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
}

.global-nav { display: flex; gap: 24px; }

.global-nav a {
  font-size: 13px;
  text-decoration: none;
  color: var(--gray-700);
  padding: 4px 0;
}

.global-nav a:hover { color: var(--gray-800); border-bottom: 1px solid var(--gray-800); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gray-800);
  transition: transform .2s, opacity .2s;
}

.hero {
  background: var(--kinari);
  text-align: center;
  padding: 96px 0;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: var(--muji-red);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 2.4px;
}

.hero-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--gray-700);
}

.hero-lead {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 700;
}

.hero-date {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
}

.date-num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

.date-day {
  font-size: 14px;
  font-weight: 700;
  color: var(--muji-red);
  border: 1px solid var(--muji-red);
  border-radius: 4px;
  padding: 2px 10px;
}

.hero-place {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-700);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-700);
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  padding: 14px 32px;
  min-height: 44px;
  text-align: center;
}

.btn-primary {
  background: var(--gray-800);
  color: var(--white);
}

.btn-primary:hover { background: var(--gray-700); }

.btn-secondary {
  background: transparent;
  color: var(--gray-800);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover { border-color: var(--gray-800); }

.btn-block { display: block; }

.section { padding: 96px 0; }

.section-alt { background: var(--gray-100); }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title .en {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 2.4px;
}

.section-title .ja {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-700);
}

.section-lead {
  text-align: center;
  margin-bottom: 48px;
}

.news-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.news-item time {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gray-700);
}

.news-item p { font-size: 14px; }

.about-catch {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-text {
  max-width: 720px;
  margin: 0 auto;
}

.feature-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 0;
}

.feature-grid li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 24px 12px;
  text-align: center;
}

.feature-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.feature-grid span {
  font-size: 13px;
  font-weight: 700;
}

.video-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.event-card {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 40px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.event-card h3 { font-size: 26px; line-height: 1.15; }

.event-time { font-size: 16px; font-weight: 700; color: var(--gray-700); }

.event-fee {
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 16px;
  align-self: flex-start;
}

.fee-paid { background: var(--kinari); color: var(--muji-red); }

.fee-free { background: var(--gray-100); color: var(--gray-800); }

.event-meta { flex: 1; }

.event-meta > div {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
}

.event-meta > div:last-child { border-bottom: 1px solid var(--gray-200); }

.event-meta dt {
  flex-shrink: 0;
  width: 96px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
}

.event-meta dd { font-size: 14px; }

.addr { font-size: 12px; color: var(--gray-700); }

.timetable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.stage {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 32px;
}

.stage-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-800);
}

.stage-name span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-700);
}

.tt { width: 100%; border-collapse: collapse; }

.tt th {
  width: 64px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 8px 10px 0;
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}

.tt td {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}

.tt-close {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
}

.card-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.card-grid a { text-decoration: none; }

.card-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--gray-100);
}

.card-grid figcaption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.shops { grid-template-columns: repeat(4, 1fr); }

.shops figcaption { font-size: 13px; }

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.access-item {
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 32px 24px;
}

.access-item h3 {
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.access-item p { font-size: 14px; }

.access-item .addr { display: block; margin-top: 4px; }

.text-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-700);
  text-decoration: underline;
}

.text-link:hover { color: var(--gray-800); }

.access-notes {
  max-width: 720px;
  margin: 48px auto 0;
  font-size: 13px;
  color: var(--gray-700);
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid var(--gray-200);
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-org {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.site-footer small {
  font-size: 12px;
  color: var(--gray-700);
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s;
}

body.scrolled .to-top {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .shops { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .section { padding: 64px 0; }

  .global-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
  }

  .global-nav a {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
  }

  body.nav-open .global-nav { display: flex; }

  .nav-toggle { display: flex; }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { padding: 64px 0; }
  .hero-title { font-size: 34px; }
  .date-num { font-size: 32px; }
  .hero-lead { font-size: 16px; }

  .event-cards,
  .timetable-grid,

  .access-grid { grid-template-columns: 1fr; }

  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .shops { grid-template-columns: repeat(2, 1fr); }

  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .event-card { padding: 32px 20px; }
  .stage { padding: 24px 16px; }
}
