:root {
  --muji-red: #7f0019;
  --muji-red-bright: #b0182f;
  --gold: #d8a13a;
  --kinari: #f4eede;
  --gray-800: #3c3c43;
  --gray-700: #6d6d72;
  --gray-300: #d8d8d9;
  --gray-200: #ebebec;
  --gray-100: #f5f5f5;
  --white: #fff;
  --font: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --font-display: var(--font);
  --font-display-ja: var(--font);
}

* { 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: 18px;
  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;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 96px;
}

.hero-logo {
  max-width: 640px;
  margin: 0 auto;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

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

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

.date-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 1px;
}

.date-day {
  font-size: 16px;
  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: 16px;
  color: var(--gray-700);
}

.hero-place span { display: inline-block; }

.btn {
  display: inline-block;
  font-size: 16px;
  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; }

.gallery-strip {
  padding: 32px 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.marquee-track {
  list-style: none;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-x 42s linear infinite;
}

.marquee-row-b .marquee-track {
  animation-duration: 48s;
  animation-direction: reverse;
}

.marquee-track li {
  flex: 0 0 auto;
  width: 220px;
  height: 300px;
  margin-right: 12px;
  border-radius: 4px;
  overflow: hidden;
}

.marquee-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marquee-x {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes marquee-y {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -50%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

@media (max-width: 640px) {
  .marquee-track li { width: 150px; height: 205px; }
}

@media (min-width: 1200px) {
  .hero-inner { min-height: 420px; }

  .gallery-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1160px;
    padding: 0;
    background: none;
    gap: 0;
    pointer-events: none;
  }

  .marquee-row {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, calc((100vw - 1104px) / 2), 240px);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 6%, #000 90%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 6%, #000 90%, transparent);
  }

  .marquee-row-a { left: 0; }
  .marquee-row-b { right: 0; }

  .marquee-track {
    flex-direction: column;
    width: 100%;
    height: max-content;
    animation-name: marquee-y;
  }

  .marquee-track li {
    width: 100%;
    height: 240px;
    margin: 0 0 12px;
    border-radius: 0;
  }
}

.section { padding: 96px 0; }

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

.section-title {
  text-align: center;
  margin-bottom: 48px;
  font-family: var(--font-display-ja);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 2px;
  color: var(--muji-red-bright);
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--muji-red-bright), var(--gold));
}

.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: 16px;
  color: var(--gray-700);
}

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

.about-catch {
  text-align: center;
  font-family: var(--font-display-ja);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  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: 1120px;
  margin: 48px auto 0;
}

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

.feature-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid span {
  display: block;
  padding: 16px 8px;
  font-size: 18px;
  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: 30px; line-height: 1.15; }

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

.event-fee {
  font-size: 16px;
  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: 15px;
  font-weight: 700;
  color: var(--gray-700);
}

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

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

.timetable-poster {
  max-width: 640px;
  margin: 0 auto;
}

.timetable-poster img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.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: 16px;
  font-weight: 700;
  text-align: center;
}

.artists .artist-lead { grid-column: 1 / -1; }

.artists .artist-lead img {
  aspect-ratio: 2 / 1;
  object-position: 50% 0;
}

.artists .artist-lead figcaption {
  margin-top: 16px;
  font-size: 26px;
  letter-spacing: 1px;
}

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

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

.map-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.map-card {
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.map-figure { display: block; }

.map-card .venue-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-cap { padding: 20px 20px 24px; }

.map-cap h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--muji-red-bright);
}

.map-cap .addr {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  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: 15px;
  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-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

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

.site-footer small {
  font-size: 14px;
  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: 18px;
  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; }

  .section-title { font-size: 27px; letter-spacing: 1px; margin-bottom: 36px; }

  .hero { padding: 64px 0 0; }
  .hero-inner { padding-bottom: 64px; }
  .hero-logo { max-width: 400px; }
  .date-num { font-size: 40px; }
  .hero-lead { font-size: 18px; }

  .event-cards { grid-template-columns: 1fr; }

  .map-list { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

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

  .artists .artist-lead img { aspect-ratio: 3 / 2; }
  .artists .artist-lead figcaption { font-size: 20px; }

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

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

.cf-report {
  background: var(--kinari);
  padding: 72px 0;
}

.cf-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
}

.cf-visual {
  margin: -48px -40px 32px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.cf-visual img { width: 100%; }

.cf-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.cf-title {
  font-family: var(--font-display-ja);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 1px;
  color: var(--muji-red-bright);
}

.cf-rate {
  font-weight: 700;
  line-height: 1;
  color: var(--muji-red);
  margin: 24px 0 16px;
}

.cf-rate-num { font-size: 72px; letter-spacing: 1px; }

.cf-rate-unit { font-size: 32px; margin-left: 4px; }

.cf-bar {
  height: 14px;
  border-radius: 999px;
  background: var(--gray-200);
  overflow: hidden;
}

.cf-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--muji-red-bright), var(--gold));
}

.cf-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 28px;
}

.cf-stats dt {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.cf-stats dd {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.cf-stats dd span {
  font-size: 15px;
  font-weight: 500;
  margin-left: 2px;
}

.cf-note {
  font-size: 16px;
  color: var(--gray-700);
  margin-top: 28px;
  text-align: left;
}

.cf-link { text-align: center; margin-top: 24px; }

.news-sns {
  text-align: center;
  font-size: 16px;
  color: var(--gray-700);
  margin-top: 32px;
}

.news-sns-btn { text-align: center; margin-top: 16px; }

.btn-ig,
.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-ig {
  background: var(--muji-red);
  color: var(--white);
  font-weight: 700;
}

.btn-ig:hover { background: var(--muji-red-bright); }

.footer-sns { margin-bottom: 16px; }

.sns-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--muji-red);
  min-height: 44px;
  padding: 0 8px;
}

.sns-link:hover { color: var(--muji-red-bright); }

.ig-icon { flex-shrink: 0; }

@media (max-width: 600px) {
  .cf-report { padding: 56px 0; }
  .cf-card { padding: 32px 20px; }
  .cf-visual { margin: -32px -20px 24px; }
  .cf-title { font-size: 24px; }
  .cf-rate-num { font-size: 56px; }
  .cf-stats { gap: 16px 24px; }
  .cf-stats dd { font-size: 22px; }
}

.wip-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wip-modal[hidden] { display: none; }

.wip-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.wip-modal-panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 8px;
  padding: 40px 28px 32px;
  text-align: center;
}

.wip-modal-mark { font-size: 32px; line-height: 1; }

.wip-modal-title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--muji-red);
}

.wip-modal-text {
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.wip-modal-close {
  margin-top: 28px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

body.wip-open { overflow: hidden; }
