:root {
  --font-ja: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Oswald", "Arial Narrow", Arial, sans-serif;
  --site-width: 430px;
  --site-max-width: 468px;
  --tmc-tokushima: #1b4e8a;
  --tmc-hyogo: #0076b6;
  --tmc-kyoto: #6a2c70;
  --tmc-shiga: #4f8a5b;
  --tmc-nara: #7ba23f;
  --tmc-wakayama: #f39800;
  --tmc-osaka: #f58220;
  --tmc-orange: #f58220;
  --tmc-blue: #0076b6;
  --tmc-navy: #1b4e8a;
  --tmc-purple: #6a2c70;
  --tmc-green: #4f8a5b;
  --tmc-light-green: #7ba23f;
  --tmc-yellow-orange: #f39800;
  --tmc-white: #ffffff;
  --tmc-base: #ffffff;
  --tmc-surface: #ffffff;
  --tmc-surface-soft: #f7f8fa;
  --tmc-surface-blue: #f4f8fb;
  --tmc-border: rgb(31 31 31 / 10%);
  --tmc-paper: #ffffff;
  --tmc-cream: #f8f8f5;
  --tmc-gray: #f4f5f7;
  --tmc-ink: #1f1f1f;
  --tmc-muted: #6b6b6b;
  --tmc-brown: #6b4f2a;
  --current-venue-color: var(--tmc-orange);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.is-reduced-motion {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--tmc-ink);
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.75;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.desktop-chrome {
  display: none;
}

.site-shell {
  width: 100%;
  max-width: var(--site-max-width);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--tmc-base);
  border-inline: 1px solid var(--tmc-border);
  box-shadow: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-140%);
  padding: 8px 12px;
  background: var(--tmc-ink);
  color: var(--tmc-white);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: #ffffff;
  pointer-events: none;
  animation: openingOut 1.2s ease 0.65s forwards;
}

.opening img {
  width: min(210px, 58vw);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 2px solid rgb(31 31 31 / 10%);
}

.site-header__inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  width: 138px;
  max-height: 40px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.header-nav a {
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--tmc-muted);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.hero__visual {
  display: block;
  width: 100%;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.share-actions,
.sticky-cta {
  display: grid;
  gap: 10px;
}

.share-actions {
  grid-template-columns: 1fr 1fr;
}

.button,
.mini-button,
.venue-card__detail,
.venue-card__entry,
.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.button--primary {
  color: var(--tmc-white);
  background: var(--current-venue-color, var(--tmc-orange));
  border-color: var(--current-venue-color, var(--tmc-orange));
  box-shadow: none;
}

.button--secondary {
  color: var(--tmc-navy);
  background: var(--tmc-white);
  border-color: var(--tmc-navy);
}

.button:hover,
.button:focus-visible,
.mini-button:hover,
.mini-button:focus-visible,
.venue-card__detail:hover,
.venue-card__detail:focus-visible,
.venue-card__entry:hover,
.venue-card__entry:focus-visible,
.sticky-cta__button:hover,
.sticky-cta__button:focus-visible {
  transform: translateY(-1px);
}

.button--primary:hover,
.button--primary:focus-visible,
.venue-card__entry:hover,
.venue-card__entry:focus-visible {
  opacity: 0.88;
}

.button--secondary:hover,
.button--secondary:focus-visible,
.venue-card__detail:hover,
.venue-card__detail:focus-visible {
  color: var(--tmc-navy);
  background: rgb(31 31 31 / 4%);
}

.button:active,
.mini-button:active,
.venue-card__detail:active,
.venue-card__entry:active,
.sticky-cta__button:active {
  transform: translateY(0);
  opacity: 0.78;
}

.button--compact {
  min-height: 40px;
}

.is-disabled {
  color: rgb(31 31 31 / 48%) !important;
  background: #eef0f2 !important;
  box-shadow: none !important;
  pointer-events: none;
}

.tmc-section {
  padding: 72px 22px;
  background: #ffffff;
}

.tmc-section.is-white {
  background: #ffffff;
}

.map-section,
#parents,
#attention,
#faq {
  background: #ffffff;
}

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

.section-title__eyebrow {
  margin: 0;
  color: var(--tmc-orange);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title__main {
  margin: 6px 0 0;
  color: var(--tmc-navy);
  font-family: var(--font-ja);
  font-size: clamp(22px, 6.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.section-title__lead {
  margin: 16px auto 0;
  color: var(--tmc-muted);
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.tmc-paper-card,
.about-card,
.venue-card,
.program-step,
.info-panel,
.accordion details {
  background: #ffffff;
  border: 1px solid var(--tmc-border);
  border-radius: 18px;
  box-shadow: none;
}

.about-lead {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.32;
}

.about-text {
  color: var(--tmc-muted);
  font-size: 13px;
  line-height: 1.85;
}

.about-grid,
.venue-list,
.program-list,
.parent-list,
.accordion,
.info-stack {
  display: grid;
  gap: 14px;
}

.about-card,
.program-step,
.info-panel {
  padding: 22px;
}

.about-card span,
.program-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--tmc-white);
  background: var(--card-color, var(--tmc-orange));
  font-family: var(--font-en);
  font-weight: 700;
}

.about-card h3,
.program-step h3 {
  margin: 14px 0 6px;
  color: var(--tmc-navy);
  font-size: clamp(16px, 4.4vw, 19px);
  line-height: 1.45;
}

.about-card p,
.program-step p,
.info-panel p,
.parent-list p {
  font-size: 13px;
  line-height: 1.85;
}

.venue-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-color: var(--venue-color);
}

.venue-card > :not(.venue-card__shape) {
  position: relative;
  z-index: 1;
}

.venue-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--venue-color);
  z-index: 1;
}

.venue-card__shape {
  position: absolute;
  right: -12px;
  bottom: -12px;
  z-index: 0;
  width: 34%;
  max-width: 120px;
  opacity: 0.08;
  pointer-events: none;
}

.venue-card__shape img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-card__logo {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.venue-card__logo img {
  width: auto;
  max-width: 180px;
  max-height: 64px;
}

.venue-logo-fallback {
  display: inline-flex;
  min-width: 120px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid var(--venue-color);
  border-radius: 12px;
  color: var(--venue-color);
  background: #ffffff;
  font-weight: 700;
}

.venue-card__banner {
  width: 100%;
  margin-bottom: 18px;
}

.venue-card__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-banner-fallback {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 0 18px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--venue-color);
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.venue-card h3 {
  margin: 0;
  color: var(--venue-color);
  font-family: var(--font-ja);
  font-size: clamp(20px, 5.6vw, 25px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.venue-card__venue {
  margin: 10px 0 0;
  color: var(--tmc-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.mini-meta,
.info-grid {
  display: grid;
  margin: 0;
}

.mini-meta {
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgb(31 31 31 / 10%);
}

.info-grid {
  gap: 10px;
}

.mini-meta div,
.info-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
}

.mini-meta div {
  column-gap: 14px;
  min-height: 32px;
}

.info-row {
  column-gap: 10px;
  min-height: 30px;
}

.mini-meta dt,
.info-row dt {
  display: flex;
  align-items: center;
  color: var(--venue-color, var(--tmc-muted));
}

.mini-meta dd,
.info-row dd {
  display: flex;
  align-items: center;
  margin: 0;
}

.mini-meta dt,
.mini-meta dd {
  min-height: 32px;
}

.mini-meta dt {
  color: var(--venue-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.mini-meta dd {
  color: var(--tmc-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.info-row dt,
.info-row dd {
  min-height: 30px;
}

.info-row dt {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.info-row dd {
  color: var(--tmc-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.detail-content {
  display: grid;
  gap: 20px;
}

.detail-block {
  display: grid;
  gap: 10px;
}

.detail-block h3 {
  margin: 0;
  color: var(--current-venue-color);
  font-size: clamp(16px, 4.4vw, 19px);
  font-weight: 900;
  line-height: 1.45;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15em;
  color: var(--tmc-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.detail-list li::marker {
  color: var(--current-venue-color);
}

.pending-text {
  margin: 0;
  color: var(--tmc-muted);
  font-size: 15px;
  line-height: 1.75;
}

.detail-dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 32px;
}

.detail-dl dt,
.detail-dl dd {
  display: flex;
  min-height: 32px;
  align-items: center;
  margin: 0;
}

.detail-dl dt {
  color: var(--current-venue-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.detail-dl dd {
  color: var(--tmc-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.venue-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.venue-card .button {
  flex: 1 1 120px;
}

.venue-card .button--primary {
  color: #ffffff;
  background: var(--venue-color);
  border-color: var(--venue-color);
}

.venue-card .button--secondary {
  color: var(--venue-color);
  background: #ffffff;
  border-color: var(--venue-color);
}

.venue-card .button--secondary:hover,
.venue-card .button--secondary:focus-visible,
.venue-card .mini-button:hover,
.venue-card .mini-button:focus-visible,
.venue-card__detail:hover,
.venue-card__detail:focus-visible {
  color: var(--venue-color);
  background: color-mix(in srgb, var(--venue-color) 8%, #ffffff);
  border-color: var(--venue-color);
}

.venue-card .button--primary:hover,
.venue-card .button--primary:focus-visible,
.venue-card__entry:hover,
.venue-card__entry:focus-visible {
  opacity: 0.9;
}

.mini-button {
  min-height: 40px;
  padding-inline: 13px;
  color: var(--venue-color);
  background: #ffffff;
  border-color: var(--venue-color);
  font-size: 13px;
}

.mini-button--solid {
  color: #ffffff;
  background: var(--venue-color);
}

.map-layout {
  display: grid;
  gap: 28px;
}

.map-list {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.map-list__item {
  display: grid;
  grid-template-columns: 12px auto 1fr auto;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(31 31 31 / 8%);
  color: var(--tmc-ink);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.map-list__item:hover,
.map-list__item:focus-visible {
  color: var(--venue-color);
}

.map-list__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--venue-color);
  transform: translateY(-1px);
}

.map-list__name {
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.map-list__date {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.map-list__arrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.18s ease;
}

.map-list__item:hover .map-list__arrow,
.map-list__item:focus-visible .map-list__arrow {
  transform: translate(1px, -1px);
}

.caravan-map {
  position: relative;
  width: min(100%, 390px);
  margin: 12px auto 0;
  padding: 12px;
}

.caravan-map__image {
  display: block;
  width: 100%;
  height: auto;
}

.caravan-map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 4px;
  color: var(--venue-color);
  text-decoration: none;
}

.caravan-map__dot {
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--venue-color);
  box-shadow: none;
}

.caravan-map__label {
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--venue-color);
  font-size: 11px;
  font-family: var(--font-en);
  font-weight: 600;
  white-space: nowrap;
}

.parent-list p {
  margin: 0;
  padding: 16px 16px 16px 52px;
  border: 1px solid var(--tmc-border);
  border-radius: 18px;
  background: #ffffff;
  position: relative;
}

.parent-list p::before {
  content: "OK";
  position: absolute;
  left: 14px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--tmc-green);
  font-size: 10px;
  font-family: var(--font-en);
  font-weight: 700;
}

.message-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.message-card img {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 160px;
  opacity: 0.12;
}

.message-card h3 {
  position: relative;
  margin: 0 0 12px;
  color: var(--tmc-navy);
  font-size: clamp(20px, 5.6vw, 26px);
  line-height: 1.32;
}

.tmc-paper-card h3 {
  font-size: clamp(18px, 4.8vw, 23px);
  line-height: 1.35;
}

.message-card p {
  position: relative;
  color: var(--tmc-muted);
  font-size: 13px;
  line-height: 1.85;
}

.accordion details {
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--tmc-navy);
  font-size: clamp(16px, 4.4vw, 19px);
  line-height: 1.45;
  font-weight: 700;
}

.accordion p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--tmc-muted);
  font-size: 13px;
  line-height: 1.85;
}

.organizer,
.share {
  text-align: center;
}

.organizer-section {
  background: #ffffff;
}

.organizer-card {
  display: grid;
  gap: 28px;
  padding: 28px 22px;
  border: 2px solid var(--tmc-navy);
  border-radius: 16px;
  background: #ffffff;
}

.organizer-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 86%);
  margin: 0 auto;
  text-decoration: none;
}

.organizer-card__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.organizer-card__body {
  text-align: left;
}

.organizer-card__label {
  margin: 0;
  color: var(--tmc-orange);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.organizer-card__title {
  margin: 10px 0 0;
  color: var(--tmc-navy);
  font-family: var(--font-ja);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.organizer-card__text {
  margin: 18px 0 0;
  color: var(--tmc-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.organizer-card__actions {
  margin-top: 22px;
}

.organizer-card__actions .button {
  width: 100%;
}

.organizer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.organizer-tags li {
  padding: 6px 10px;
  border: 1px solid var(--tmc-navy);
  border-radius: 8px;
  color: var(--tmc-navy);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.organizer-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.organizer-point {
  padding: 18px;
  border: 1px solid var(--tmc-border);
  border-radius: 16px;
  background: #ffffff;
  text-align: left;
}

.organizer-point__num {
  margin: 0;
  color: var(--tmc-orange);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.organizer-point__title {
  margin: 10px 0 0;
  color: var(--tmc-navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.organizer-point__text {
  margin: 8px 0 0;
  color: var(--tmc-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.share-actions {
  margin-top: 18px;
}

.share-actions button {
  cursor: pointer;
}

.site-footer {
  padding: 56px 22px 96px;
  background: #ffffff;
  border-top: 1px solid var(--tmc-border);
  text-align: center;
}

.site-footer__organizer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 72%);
  margin: 0 auto 20px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__organizer-logo:hover,
.site-footer__organizer-logo:focus-visible {
  opacity: 0.86;
}

.site-footer__organizer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__organizer {
  margin: 0;
  color: var(--tmc-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.site-footer__organizer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-footer__organizer a:hover,
.site-footer__organizer a:focus-visible {
  color: var(--tmc-orange);
}

.site-footer__copyright {
  margin: 12px 0 0;
  color: var(--tmc-muted);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 24;
  grid-template-columns: 84px 1fr;
  align-items: center;
  width: min(calc(100% - 20px), 430px);
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid var(--tmc-border);
  border-radius: 12px;
  background: rgb(255 255 255 / 94%);
  box-shadow: none;
}

.sticky-cta__button {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  font-size: 13px;
  font-weight: 800;
}

.sticky-cta__button--top {
  padding-inline: 10px;
  color: var(--tmc-navy);
  background: #ffffff;
  border-color: var(--tmc-navy);
}

.sticky-cta__button--entry {
  padding-inline: 16px;
  color: #ffffff;
  background: var(--current-venue-color, var(--tmc-orange));
  border-color: var(--current-venue-color, var(--tmc-orange));
}

.venue-hero {
  position: relative;
  padding: 72px 22px 40px;
  color: var(--tmc-ink);
  background: #ffffff;
  border-bottom: 8px solid var(--venue-color, var(--current-venue-color));
  overflow: hidden;
}

.venue-hero::after {
  content: none;
}

.venue-hero__logo {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.venue-hero__logo img {
  width: auto;
  max-width: 220px;
  max-height: 72px;
}

.venue-hero__banner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 28px;
}

.venue-hero__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-hero__shape {
  position: absolute;
  right: -36px;
  bottom: 12px;
  z-index: 0;
  width: 42%;
  max-width: 190px;
  opacity: 0.08;
  pointer-events: none;
}

.venue-hero__shape img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-hero__content {
  position: relative;
  z-index: 1;
}

.venue-hero__title {
  margin: 0;
  color: var(--venue-color, var(--current-venue-color));
  font-family: var(--font-ja);
  font-size: clamp(32px, 10vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.venue-hero__venue {
  margin: 14px 0 0;
  color: var(--tmc-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.venue-hero__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 24px;
}

.venue-hero__fact {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  border: 2px solid color-mix(in srgb, var(--venue-color, var(--current-venue-color)) 80%, #ffffff);
  border-radius: 12px;
  background: #ffffff;
}

.venue-hero__fact-label,
.venue-hero__fact-value {
  margin: 0;
  line-height: 1.25;
}

.venue-hero__fact-label {
  color: var(--venue-color, var(--current-venue-color));
  font-size: 12px;
  font-weight: 800;
}

.venue-hero__fact-value {
  color: var(--tmc-ink);
  font-size: 16px;
  font-weight: 800;
}

.venue-hero__actions {
  margin-top: 22px;
}

.venue-hero__actions .button {
  width: 100%;
}

.info-panel h2 {
  margin: 0 0 14px;
  color: var(--current-venue-color);
  font-size: clamp(18px, 4.8vw, 23px);
  line-height: 1.35;
}

.info-panel .js-venue-status {
  margin: 0 0 14px;
  color: var(--tmc-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

#venueEntry .button {
  width: 100%;
}

.other-venues__list {
  display: grid;
  gap: 14px;
}

.other-venues__link {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--venue-color);
  background: transparent;
  box-shadow: none;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.other-venues__banner {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.other-venues__list img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  transition: opacity 0.2s ease;
}

.other-venues__link:hover,
.other-venues__link:focus-visible {
  opacity: 0.86;
}

.other-venues__link.is-current {
  opacity: 0.42;
  pointer-events: none;
}

.other-venues__link.is-current::after {
  content: "現在の会場";
  display: inline-block;
  margin-top: 6px;
  color: var(--venue-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@keyframes openingOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pinFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .caravan-map__dot {
    animation: pinFloat 2.4s ease-in-out infinite;
  }
}

@media (max-width: 468px) {
  .site-shell {
    max-width: none;
    box-shadow: none;
  }

  .tmc-section {
    padding-block: 60px;
  }
}

@media (min-width: 420px) {
  .venue-hero__facts {
    grid-template-columns: 1fr 1fr;
  }

  .venue-hero__fact:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 390px) {
  .map-list {
    gap: 12px;
  }

  .mini-meta div {
    grid-template-columns: 58px 1fr;
    column-gap: 12px;
  }

  .mini-meta dt {
    font-size: 12px;
  }

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

  .info-row {
    grid-template-columns: 58px 1fr;
    column-gap: 12px;
  }

  .info-row dt {
    font-size: 12px;
  }

  .info-row dd {
    font-size: 14px;
  }

  .detail-list,
  .pending-text {
    font-size: 14px;
  }

  .detail-dl div {
    grid-template-columns: 72px 1fr;
    column-gap: 10px;
  }

  .detail-dl dt {
    font-size: 12px;
  }

  .detail-dl dd,
  .info-panel .js-venue-status {
    font-size: 14px;
  }

  .map-list__item {
    grid-template-columns: 12px auto 1fr auto;
    gap: 8px;
  }

  .map-list__name {
    font-size: 17px;
  }

  .map-list__date {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .sticky-cta {
    grid-template-columns: 72px 1fr;
    gap: 8px;
  }

  .sticky-cta__button {
    min-height: 44px;
    font-size: 13px;
  }

  .sticky-cta__button--top {
    padding-inline: 8px;
  }

  .sticky-cta__button--entry {
    padding-inline: 12px;
  }
}

@media (max-width: 959px) {
  .desktop-chrome {
    display: none;
  }
}

@media (min-width: 960px) {
  body {
    background: #ffffff;
  }

  .site-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--site-max-width);
    min-height: 100vh;
    margin: 0 auto;
    background: var(--tmc-base);
    border-inline: none;
    box-shadow: none;
  }

  .site-header {
    display: none;
  }

  .desktop-chrome {
    position: fixed;
    top: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    width: calc((100vw - var(--site-max-width)) / 2);
    height: 100vh;
    pointer-events: none;
  }

  .desktop-chrome--left {
    left: 0;
    justify-content: center;
    padding: 48px;
  }

  .desktop-chrome--right {
    right: 0;
    justify-content: center;
    padding: 48px;
  }

  .desktop-brand,
  .desktop-nav {
    pointer-events: auto;
  }

  .desktop-brand {
    display: block;
    width: min(64%, 360px);
    transition: opacity 0.28s ease;
  }

  .desktop-brand:hover,
  .desktop-brand:focus-visible {
    opacity: 0.78;
  }

  .desktop-brand img {
    display: block;
    width: 100%;
    height: auto;
  }

  .desktop-nav {
    display: grid;
    gap: 16px;
    width: min(68%, 320px);
    color: var(--tmc-ink);
    font-family: var(--font-en);
  }

  .desktop-nav a {
    color: inherit;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
      color 0.24s ease,
      opacity 0.24s ease;
  }

  .desktop-nav > a:hover,
  .desktop-nav > a:focus-visible {
    color: var(--tmc-orange);
  }

  .desktop-nav__home {
    margin-top: 24px;
  }

  .desktop-nav__venues {
    display: grid;
    gap: 14px;
    margin-top: 12px;
  }

  .desktop-nav__venues a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--tmc-ink);
    font-size: 14px;
    transition:
      color 0.24s ease,
      opacity 0.24s ease;
  }

  .desktop-nav__venues span {
    color: var(--tmc-muted);
    font-family: var(--font-en);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition:
      color 0.24s ease,
      opacity 0.24s ease;
  }

  .desktop-nav__venues a:hover,
  .desktop-nav__venues a:focus-visible,
  .desktop-nav__venues a.is-current {
    color: var(--venue-color);
  }

  .desktop-nav__venues a:hover span,
  .desktop-nav__venues a:focus-visible span,
  .desktop-nav__venues a.is-current span {
    color: var(--venue-color);
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .opening {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .button:focus-visible,
  .mini-button:hover,
  .mini-button:focus-visible,
  .venue-card__detail:hover,
  .venue-card__detail:focus-visible,
  .venue-card__entry:hover,
  .venue-card__entry:focus-visible,
  .sticky-cta__button:hover,
  .sticky-cta__button:focus-visible,
  .map-list__item:hover .map-list__arrow,
  .map-list__item:focus-visible .map-list__arrow {
    transform: none;
  }
}
