/* ============================================================
   TIMETABLE SECTION (出演者タイムテーブル)
   ============================================================ */
.timetable {
  background-color: var(--color-paper);
  position: relative;
}

.timetable__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.timetable__tab {
  font-family: var(--font-accent);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  border: 2px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.timetable__tab.is-active,
.timetable__tab:hover {
  background-color: var(--color-primary);
  color: var(--color-cream);
}

.timetable__panel {
  display: none;
}

.timetable__panel.is-active {
  display: block;
}

.timetable__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 840px;
  margin: 0 auto;
}

.timetable-row {
  display: grid;
  grid-template-columns: 96px 1fr 1.4fr;
  align-items: center;
  gap: 24px;
  background-color: var(--color-white);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 6px 20px rgba(32, 26, 24, 0.05);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  border-left: 4px solid transparent;
}

.timetable-row:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 28px rgba(150, 22, 15, 0.12);
  border-left-color: var(--color-primary);
}

.timetable-row__time {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.timetable-row__media {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--color-paper);
}

.timetable-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timetable-row__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.timetable-row__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-ink);
}

.timetable-row__text {
  font-size: 13px;
  color: #5a5350;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .timetable-row {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 12px;
  }

  .timetable-row__info {
    flex-direction: row;
  }
}

/* ============================================================
   SPONSORS SECTION
   ============================================================ */
.sponsors {
  background-color: var(--color-cream);
}

.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border: 1px solid rgba(32, 26, 24, 0.06);
  border-radius: 10px;
  padding: 24px;
  aspect-ratio: 3 / 2;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, border-color 0.35s ease;
}

.sponsor-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(32, 26, 24, 0.08);
  border-color: var(--color-gold);
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.35s ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
}

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

@media (max-width: 500px) {
  .sponsors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   SUPPORTERS SECTION (後援)
   ============================================================ */
.supporters {
  background-color: var(--color-cream);
  padding-top: 0;
}

.supporters__inner {
  border-top: 1px solid rgba(32, 26, 24, 0.08);
  padding-top: 48px;
  text-align: center;
}

.supporters__label {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a9088;
  margin-bottom: 20px;
}

.supporters__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
}

.supporters__item {
  font-size: 14px;
  color: #5a5350;
}

.supporters__item img {
  max-height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.supporters__item img:hover {
  opacity: 1;
}

.supporters__item--text {
  padding: 4px 16px;
  border: 1px solid rgba(32, 26, 24, 0.1);
  border-radius: 4px;
}

/* ============================================================
   ACCESS / CTA SECTION
   ============================================================ */
.access {
  background-color: var(--color-primary);
  color: var(--color-cream);
  overflow: visible;
}

.access .section-heading {
  text-align: center;
}

.access .section-heading__eyebrow {
  color: var(--color-cream);
}

.access .section-heading__title {
  color: var(--color-cream);
}

.access .section-heading__title::after {
  background-color: var(--color-gold);
}

.access .section-heading__lead {
  color: rgba(255, 250, 242, 0.8);
}

/* 地図は全幅（containerの外に出しているため width:100% で画面端まで広がる） */
.access__map {
  width: 100%;
  height: 800px;
  margin: 0 0 48px;
  display: block;
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* アクセス情報（地図の下・横並び） */
.access__info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.access__details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
}

.access__detail {
  min-width: 200px;
}

.access__detail dt {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.access__detail dd {
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}

.access__map-link {
  white-space: nowrap;
  align-self: flex-start;
  border-color: rgba(255, 250, 242, 0.5);
  color: var(--color-cream);
}

.access__map-link:hover {
  background-color: var(--color-cream);
  color: var(--color-primary);
  border-color: var(--color-cream);
}

@media (max-width: 860px) {
  .access__map {
    height: 300px;
    margin-bottom: 32px;
  }

  .access__info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access__map-link {
    text-align: center;
  }
}

/* ============================================================
   SUPPORTERS グリッド（スポンサーと同サイズ）
   ============================================================ */
.supporters-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(32, 26, 24, 0.08);
}

.supporters-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--color-ink);
}

/* supporter-logo はスポンサーと同じ.sponsor-logoを継承しつつ少し小さめに */
.supporter-logo img {
  filter: grayscale(15%);
}

.supporter-logo__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #5a5350;
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-ink);
  color: rgba(255, 250, 242, 0.7);
  padding: 64px 0 32px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.1);
  margin-bottom: 28px;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-cream);
  font-weight: 700;
}

.site-footer__brand span {
  display: block;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 8px;
  font-weight: 500;
}

.footer-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-navigation a {
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
}

.footer-navigation a:hover {
  color: var(--color-gold);
}

.site-footer__social {
  display: flex;
  gap: 14px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 242, 0.2);
  color: var(--color-cream);
  font-size: 14px;
  transition: all 0.3s ease;
}

.site-footer__social a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}

@media (max-width: 700px) {
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   NEWS SECTION (お知らせ)
   ============================================================ */
.news-section {
  background-color: var(--color-cream);
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(32, 26, 24, 0.1);
}

.news-item {
  border-bottom: 1px solid rgba(32, 26, 24, 0.1);
}

.news-item__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  color: var(--color-ink);
  text-decoration: none;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.news-item__link:hover {
  background-color: rgba(150, 22, 15, 0.04);
  padding-left: 16px;
  color: var(--color-primary);
}

.news-item__link--nolink {
  cursor: default;
}

.news-item__link--nolink:hover {
  background-color: transparent;
  padding-left: 8px;
  color: var(--color-ink);
}

.news-item__date {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 96px;
}

.news-item__title {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.news-item__arrow {
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.news-item__link:hover .news-item__arrow {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .news-item__link {
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 8px;
  }

  .news-item__date {
    min-width: auto;
    font-size: 12px;
  }

  .news-item__title {
    font-size: 14px;
    width: 100%;
  }

  .news-item__arrow {
    display: none;
  }
}
