*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/* Figma 348:1514 — 48px 円 + 3 本線 + Menu（SP 固定・タブレットヘッダー共通） */
.menuToggle__disc {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #231815;
}

.menuToggle__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

body.is-spMenuOpen .menuToggle__hamburger {
  display: none;
}

.menuToggle__bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.46px;
}

.menuToggle__bar {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #ffffff;
}

.menuToggle__menuTxt {
  margin-top: 2px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.menuToggle__closeMark {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

body.is-spMenuOpen .menuToggle__closeMark {
  display: flex;
}

.menuToggle__closeLine {
  position: absolute;
  width: 17px;
  height: 1px;
  background-color: #ffffff;
}

.menuToggle__closeLine--a {
  transform: rotate(45deg);
}

.menuToggle__closeLine--b {
  transform: rotate(-45deg);
}

/* SP ハンバーガー（表示は max-width:540px のみ） */
.spMenuToggle {
  display: none;
}

/* SP 右下チケット FAB（表示は max-width:540px のみ） */
.spTicketFab {
  display: none;
}

/* SP 下部お気に入り案内（表示は max-width:540px のみ） */
.spFavGuideFab {
  display: none;
}

/* タブレット用ヘッダー（541〜950px のみ表示） */
.tabletHeader {
  display: none;
}

.spMenuPanel {
  display: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 28%;
  min-width: 0;
  max-width: 400px;
  flex: 0 0 28%;
  border-right: 1px solid #c4c4c4;
  container-type: inline-size;
}

.content {
  flex: 1 1 auto;
  min-width: 0;
}

/* PC（951px〜）: サイドバー＋カラム内スクロール */
@media (min-width: 951px) {
  body {
    height: 100%;
    overflow: hidden;
  }

  /* 高さをビューポートに固定（% 連鎖失敗で layout が中身高さに伸びるのを防ぐ） */
  .layout {
    display: flex;
    height: 100vh;
    max-height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow: hidden;
  }

  /* 管理バー表示時（ログイン中）は viewport からバー分を引く */
  body.admin-bar .layout {
    height: calc(100vh - 32px);
    max-height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
    max-height: calc(100dvh - 32px);
  }

  .sidebar {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
  }

  .sidebar .sideNav {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .content {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

.sideNav__brand {
  padding-top: 7.5cqw;
  padding-right: 0;
  padding-bottom: 9.2cqw;
  padding-left: 0;
  text-align: center;
  border-bottom: 1px solid #c4c4c4;
}

.sideNav__brandLink {
  display: block;
}

.sideNav__brandImage {
  display: block;
  width: 72.5cqw;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.sideNav__brandVenue {
  margin: 4cqw 0 0;
  font-size: 4.1cqw;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.sideNav__brandVenueName,
.sideNav__brandVenueParen {
  display: inline;
}

.sideNav__brandDate {
  margin: 1.6cqw 0 0;
  font-size: 4.8cqw;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.sideNav__menuList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sideNav__menuItem {
  border-bottom: 1px solid #c4c4c4;
}

.sideNav__menuItem:nth-child(n + 4) {
  border-bottom-color: #9a9a9a;
}

.sideNav__menuItem--current .sideNav__menuLink {
  background-color: #ffeded;
}

.sideNav__menuLink {
  display: block;
  padding: 10px 20px;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.sideNav__menuLink:hover,
.sideNav__menuLink:focus-visible {
  background-color: #fff2f2;
}

.sideNav__menuItem--current .sideNav__menuLink:hover,
.sideNav__menuItem--current .sideNav__menuLink:focus-visible {
  background-color: #ffe8e8;
}

.sideNav a {
  transition: opacity 0.2s ease;
}

.sideNav a:hover,
.sideNav a:focus-visible {
  opacity: 0.8;
}

.sideNav__promoBadge:hover,
.sideNav__promoBadge:focus-visible {
  opacity: 1;
}

.sideNav__cta {
  margin: 16px 5.5cqw 0;
}

.sideNav__ctaLink {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 4.5cqw 3cqw;
  background-color: #141414;
  border: 1px solid #000000;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.22s ease;
}

.sideNav__ctaLabel {
  position: relative;
  z-index: 1;
}

.sideNav__ctaLink::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -220%;
  width: 170%;
  height: 190%;
  background-color: #ffffff;
  transform: skewX(-24deg);
  transition: left 0.22s ease-out;
  z-index: 0;
}

.sideNav__ctaLink::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 3.7cqw solid #d80c18;
  border-left: 3.7cqw solid transparent;
  z-index: 2;
}

.sideNav__ctaLink:hover,
.sideNav__ctaLink:focus-visible {
  color: #000000;
  opacity: 1;
}

.sideNav__ctaLink:hover::after,
.sideNav__ctaLink:focus-visible::after {
  left: -20%;
}

.sideNav__socialList {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.sideNav__menuLink:hover,
.sideNav__menuLink:focus-visible,
.sideNav__ctaLink:hover,
.sideNav__ctaLink:focus-visible {
  opacity: 1;
}

.sideNav__socialIcon {
  display: block;
  width: 24px;
  height: 24px;
}

/* Figma 597:1150 — 全体マップ＋お気に入り＋案内吹き出し */
.sideNav__quick {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0 22px;
}

.sideNav__promoBadge {
  position: relative;
  flex: 0 0 107px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  width: 107px;
  min-height: 72px;
  padding: 8px;
  border: 1px solid #d80c18;
  border-radius: 4px 4px 0 4px;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
}

.sideNav__promoBadge::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 15px solid #d80c18;
  border-left: 15px solid transparent;
}

.sideNav__promoBadgeIcon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.sideNav__promoBadgeIcon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.sideNav__promoBadgeIcon--heart {
  width: 24px;
  height: 20px;
  background: url("../img/favorite-heart-filled.svg") center / contain no-repeat;
}

.sideNav__promoBadgeText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.sideNav__promoBadgeLine {
  display: block;
}

.sideNav__quickLead {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
}

.sideNav__quickLeadBody {
  position: relative;
  flex: 1 1 auto;
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  background-color: #ffeded;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.sideNav__quickLeadBody::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid #ffeded;
}

.sideNav__quickLeadMain {
  display: block;
}

.sideNav__quickLeadNote {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

/* サイドバーが狭いとき：マップ／お気に入りバッジを1段、案内吹き出しを下段に */
@container (max-width: 380px) {
  .sideNav__quick {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
    column-gap: 8px;
  }

  .sideNav__quickLead {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .sideNav__quickLeadBody::before {
    left: 50%;
    top: -8px;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    border-top: none;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #ffeded;
    border-left: 10px solid transparent;
  }
}

.heroSec {
  width: 100%;
}

/* SP ヒーロー上ロゴ（540px 以下でのみ表示。Figma 103:1568〜1570 付近のロゴエリアを参考） */
.heroSec__spBrand {
  display: none;
}

.heroSec__spBrandLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

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

.heroSec__imageWrap {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.heroSec__slide {
  width: 100%;
  height: 100%;
}

.heroSec__imageWrap .slick-list,
.heroSec__imageWrap .slick-track,
.heroSec__imageWrap .slick-slide,
.heroSec__imageWrap .slick-slide > div {
  height: 100%;
}

.heroSec__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.heroSec__infoBar {
  display: flex;
  width: 100%;
  min-height: 120px;
  background-color: #1d1d1d;
}

.heroSec__schedule {
  flex: 3 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14px 20px;
}

.heroSec__dateText {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  line-height: 1;
}

.heroSec__dateBlock {
  display: inline-flex;
  align-items: baseline;
}

/* Figma 350:796 — 数字 Montserrat Extrabold 48.312px、括弧 Montserrat Bold 32.208px、土日 Noto Sans JP Black */
.heroSec__dateNum {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 48.312px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.heroSec__dateNum--track {
  letter-spacing: 0.151em;
}

.heroSec__dateParen {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 32.208px;
  font-weight: 700;
  letter-spacing: 0;
}

.heroSec__dateWday {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32.208px;
  font-weight: 900;
  letter-spacing: 0;
}

.heroSec__dateDot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 12px;
  align-self: center;
}

.heroSec__comingSoon {
  margin: 10px 0 0;
  color: #ffffff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}

@keyframes heroSecScheduleReveal {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

.heroSec__schedule .heroSec__dateText,
.heroSec__schedule .heroSec__comingSoon {
  opacity: 0;
  animation: heroSecScheduleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.heroSec__schedule .heroSec__comingSoon {
  animation-delay: 0.12s;
}

.heroSec__countdown {
  position: relative;
  z-index: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 14px 16px;
  color: #ffffff;
  background-color: #1d1d1d;
}

.heroSec__countdownBefore {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-height: 100%;
  object-fit: fill;
  z-index: 2;
  pointer-events: none;
}

.heroSec__countdown::after {
  content: "";
  position: absolute;
  top: -35%;
  left: 140%;
  width: 180%;
  height: 170%;
  background-color: #d80c18;
  transform: skewX(-24deg);
  z-index: 1;
  animation: countdownRedReveal 0.8s ease-out 0.12s forwards;
}

.heroSec__countHeading {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 3;
  transform: translateX(10%);
}

.heroSec__countValue {
  margin: 8px 0 0;
  line-height: 1;
  position: relative;
  z-index: 3;
  transform: translateX(10%);
}

.heroSec__countNumber {
  font-family: "Digital Numbers", sans-serif;
  font-size: 52px;
  font-weight: 400;
}

.heroSec__countUnit {
  margin-left: 0.08em;
  font-size: 38px;
  font-weight: 700;
}

.newsSec {
  display: flex;
  align-items: center;
  padding: 0 0 0 60px;
  background-color: #ffffff;
}

.newsSec__head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.newsSec__title {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.newsSec__titleAccent {
  color: #d80c18;
}

.newsSec__titleRest {
  color: #000000;
}

.newsSec__linkWrap {
  margin: 0;
}

.newsSec__link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 999px;
  background-color: #141414;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.newsSec__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #d80c18;
  transform: translateX(0);
  transition: transform 0.38s ease;
}

.newsSec__link:hover::before,
.newsSec__link:focus-visible::before {
  transform: translateX(100%);
}

.newsSec__linkLabel {
  position: relative;
  z-index: 1;
}

.newsCarousel {
  flex: 1 1 auto;
  min-width: 0;
  padding: 40px 0 40px 40px;
  overflow-x: auto;
  overflow-y: hidden;
}

.newsCarousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  align-items: stretch;
  padding-right: 0;
  padding-bottom: 4px;
}

.newsCard {
  flex: 0 0 320px;
  width: 320px;
  height: 108px;
}

.newsCard__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  padding: 20px;
  border: 1px solid #d80c18;
  border-radius: 4px 4px 0 4px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
}

.newsCard__link::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 15px solid #d80c18;
  border-left: 15px solid transparent;
}

.newsCard__date {
  margin: 0;
  color: #797979;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.newsCard__text {
  margin: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  max-height: calc(1.5em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* トップ: News 直下 — 前売りチケット CTA（Figma Frame 613:1190） */
.ticketCtaSec {
  box-sizing: border-box;
  width: 100%;
  padding: 40px 40px 56px;
  background-color: #e8e9ed;
}

.ticketCtaSec__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  min-width: 0;
  margin: 0 auto;
}

.ticketCtaSec__title {
  margin: 0;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

/* 下地は書き出し SVG（影・的外形）。テキストはオーバーレイで上乗せ */
.ticketCtaCard {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 792px;
  min-width: 0;
  margin-inline: auto;
}

.ticketCtaCard__bg {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  vertical-align: top;
}

.ticketCtaCard__overlay {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: clamp(18px, 3.8vw, 28px) clamp(18px, 5vw, 42px)
    clamp(16px, 3.8vw, 30px);
}

/* 前売り／当日それぞれのラッパー（見えないコンテナ／装飾は右端の点線のみ） */
.ticketCtaCard__pane {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}

.ticketCtaCard__pane--advance {
  box-sizing: border-box;
  padding-right: clamp(8px, 1.8vw, 14px);
  border-right: 1px dashed #b5bac4;
}

.ticketCtaCard__pane--door {
  box-sizing: border-box;
  padding-left: clamp(8px, 1.8vw, 14px);
}

.ticketCtaCard__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2px, 1vw, 4px);
  min-width: 0;
}

.ticketCtaCard__col--door {
  align-items: flex-start;
}

.ticketCtaCard__badge {
  margin: 0;
  box-sizing: border-box;
  padding: 6px 14px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 3.2vw, 34px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.ticketCtaCard__badge--advance {
  border: 2px solid #d80c18;
  color: #d80c18;
}

.ticketCtaCard__badge--door {
  border: 2px solid #000000;
  color: #000000;
  margin-bottom: 1.5rem;
}

@media (min-width: 541px) {
  .ticketCtaCard__badge--door {
    border: 2px solid #000000;
    color: #000000;
    margin-bottom: 2.5rem;
  }
}

.ticketCtaCard__price {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  align-self: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  line-height: 1;
  margin-right: 1rem;
}

.ticketCtaCard__price--advance {
  color: #d80c18;
}

.ticketCtaCard__price--advance .ticketCtaCard__priceSym {
  margin-right: 0.06em;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-style: italic;
  font-weight: 700;
}

.ticketCtaCard__price--advance .ticketCtaCard__priceNum {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(58px, 12vw, 118px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ticketCtaCard__price--door {
  color: #000000;
}

.ticketCtaCard__price--door .ticketCtaCard__priceSym {
  margin-right: 0.06em;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-style: italic;
  font-weight: 700;
}

.ticketCtaCard__price--door .ticketCtaCard__priceNum {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 8vw, 62px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ticketCtaCard__deadline {
  box-sizing: border-box;
  width: 100%;
  margin: clamp(8px, 2vw, 16px) 0 0;
  padding: 12px 16px;
  background-color: #d80c18;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.ticketCtaCard__deadlineTxt {
  margin-right: 0.35em;
}

.ticketCtaCard__deadlineTime {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.ticketCtaCard__deadlineSuf {
  margin-left: 0.15em;
}

.ticketCtaCard__note {
  margin: auto 0 0 auto;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.ticketCtaSec__action {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ホバー効果・寸法は /press/ `.pressMedia__cta` と同型 */
.ticketCtaSec__cta {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  min-height: 104px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid #000000;
  border-radius: 0;
  background-color: #141414;
  color: #ffffff;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.ticketCtaSec__cta::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -220%;
  z-index: 0;
  width: 170%;
  height: 190%;
  background-color: #ffffff;
  transform: skewX(-24deg);
  transition: left 0.22s ease-out;
  pointer-events: none;
}

.ticketCtaSec__cta::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-bottom: 12px solid #d80c18;
  border-left: 12px solid transparent;
  pointer-events: none;
}

.ticketCtaSec__cta:hover,
.ticketCtaSec__cta:focus-visible {
  color: #000000;
  opacity: 1;
}

.ticketCtaSec__cta:hover::after,
.ticketCtaSec__cta:focus-visible::after {
  left: -20%;
}

.ticketCtaSec__cta:focus-visible {
  outline: 2px solid #d80c18;
  outline-offset: 2px;
}

.ticketCtaSec__ctaLabel {
  position: relative;
  z-index: 1;
}

.pickupSec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 40px 56px;
  background-color: #f5f6fa;
}

.pickupSec__title {
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.pickupSec__titleAccent {
  color: #d80c18;
}

.pickupSec__titleRest {
  color: #000000;
}

.pickupSec__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.pickupSec__item {
  min-width: 0;
}

/* Pick Up: Slick（2件以上のときのみ初期化）。グリッドは初期化後に無効化 */
.pickupSec__list.slick-initialized {
  display: block;
  max-width: none;
}

.pickupCarousel .pickupSec__list.slick-initialized .slick-list {
  margin: 0;
}

/* SP はチラ見せのため可視／PC はクロップ（Figma 3 列エリア相当） */
@media (max-width: 540px) {
  .pickupCarousel .pickupSec__list.slick-initialized .slick-list {
    overflow: visible;
  }
}

.pickupCarousel .pickupSec__list.slick-initialized .slick-slide {
  padding: 0 7px;
  box-sizing: border-box;
  height: auto;
}

@media (min-width: 541px) {
  .pickupCarousel .pickupSec__list.slick-initialized .slick-slide {
    padding: 0 16px;
  }
}

.pickupCarousel .pickupSec__list.slick-initialized .slick-slide > div {
  height: 100%;
}

.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-slide
  .pickupSec__item {
  height: 100%;
}

.pickupCarousel .slick-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Figma Pick Up PC: slick-theme の記号ではなく SVG ボタン */
.pickupCarousel .pickupCarousel__arrow {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  line-height: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pickupCarousel .pickupCarousel__arrow:before {
  display: none !important;
}

.pickupCarousel .pickupCarousel__arrow img {
  display: block;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

@media (min-width: 541px) {
  /*
   * アロー基点は .pickupCarousel（リスト＋ドット込みの高さ）。
   * ％指定でキャンバー幅によるカード〜の縦比率に追従（Figma: リスト左右端の真ん中よりやや下）
   */
  .pickupCarousel .pickupCarousel__arrow {
    position: absolute;
    z-index: 4;
    top: 41%;
    transform: translateY(-50%);
  }

  .pickupCarousel .pickupCarousel__arrow:focus-visible {
    outline: 2px solid #d80c18;
    outline-offset: 3px;
  }

  .pickupCarousel .pickupCarousel__arrow.pickupCarousel__arrow--prev,
  .pickupCarousel .pickupCarousel__arrow.slick-prev {
    left: -2px;
  }

  .pickupCarousel .pickupCarousel__arrow.pickupCarousel__arrow--next,
  .pickupCarousel .pickupCarousel__arrow.slick-next {
    right: -2px;
  }

  [dir="rtl"]
    .pickupCarousel
    .pickupCarousel__arrow.pickupCarousel__arrow--prev,
  [dir="rtl"] .pickupCarousel .pickupCarousel__arrow.slick-prev {
    left: auto;
    right: -2px;
  }

  [dir="rtl"]
    .pickupCarousel
    .pickupCarousel__arrow.pickupCarousel__arrow--next,
  [dir="rtl"] .pickupCarousel .pickupCarousel__arrow.slick-next {
    left: -2px;
    right: auto;
  }

  .pickupCarousel .pickupCarousel__arrow.slick-next,
  .pickupCarousel .pickupCarousel__arrow.slick-prev {
    width: 32px;
    height: 32px;
  }

  /* slick-theme.css の広いホバーエリアを無効化 */
  .pickupCarousel .pickupCarousel__arrow.slick-prev,
  .pickupCarousel .pickupCarousel__arrow.slick-next {
    padding: 0 !important;
    transition: none;
  }

  .pickupCarousel .pickupCarousel__arrow.slick-prev:hover,
  .pickupCarousel .pickupCarousel__arrow.slick-prev:focus,
  .pickupCarousel .pickupCarousel__arrow.slick-next:hover,
  .pickupCarousel .pickupCarousel__arrow.slick-next:focus {
    padding: 0 !important;
  }

  .pickupCarousel .pickupCarousel__arrow.slick-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
}

/* ドットは負 bottom によるクリップを避ける（PC / SP 共通） */
.pickupCarousel .pickupSec__list.slick-initialized.slick-dotted {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.pickupCarousel .pickupSec__list.slick-initialized .slick-dots {
  position: relative;
  bottom: auto;
  inset: auto;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 18px 0 0;
  padding: 6px 0 2px;
  width: 100%;
  box-sizing: border-box;
  list-style: none;
  z-index: 2;
}

.pickupCarousel .pickupSec__list.slick-initialized .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 8px;
}

.pickupCarousel .pickupSec__list.slick-initialized .slick-dots li button {
  width: 22px;
  height: 22px;
  padding: 0;
}

/* 文字の「・」ではなく塗りの丸ナビ（PC / SP 共通） */
.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-dots
  li
  button:before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  font-size: 0;
  line-height: 0;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  opacity: 1;
  border-radius: 50%;
  background-color: #b8bcc8;
  color: transparent;
  -webkit-font-smoothing: auto;
}

.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-dots
  li.slick-active
  button:before {
  width: 10px;
  height: 10px;
  background-color: #2b2b2b;
  opacity: 1;
}

.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-dots
  li
  button:hover:before,
.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-dots
  li
  button:focus:before {
  background-color: #9096a3;
  opacity: 1;
}

.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-dots
  li.slick-active
  button:hover:before,
.pickupCarousel
  .pickupSec__list.slick-initialized
  .slick-dots
  li.slick-active
  button:focus:before {
  background-color: #1a1a1a;
}

@media (min-width: 541px) {
  /*
   * グリッドのときのみ display:contents。Slick 時はレイアウトボックスとしてラッパーが必要。
   */
  .pickupCarousel:not(:has(.pickupSec__list.slick-initialized)) {
    display: contents;
  }

  .pickupCarousel:has(.pickupSec__list.slick-initialized) {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
  }

  .pickupCarousel:has(.pickupSec__list.slick-initialized)
    .pickupSec__list.slick-slider {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  /* Figma PC 画像枠相当 */
  .pickupCard__media {
    aspect-ratio: 317 / 184;
  }
}

/* カード型レイアウト：画像だけホバー／フォーカスで少し拡大（Pick Up ほか同型で共通利用） */
.cardImgZoom__media {
  overflow: hidden;
}

.cardImgZoom__img {
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cardImgZoom:hover .cardImgZoom__img,
.cardImgZoom:focus-visible .cardImgZoom__img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .cardImgZoom__img {
    transition: none;
  }

  .cardImgZoom:hover .cardImgZoom__img,
  .cardImgZoom:focus-visible .cardImgZoom__img {
    transform: none;
  }

  .heroSec__schedule .heroSec__dateText,
  .heroSec__schedule .heroSec__comingSoon {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.pickupCard {
  height: 100%;
}

.pickupCard__link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 4px 4px 0 4px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  /* Figma: DROP_SHADOW相当（リンク影） — PC */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.13);
}

.pickupCard__link::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 15px solid #d80c18;
  border-left: 15px solid transparent;
  z-index: 2;
  pointer-events: none;
}

.pickupCard__media {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.pickupCard__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pickupCard__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 98px;
  padding: 24px;
  background-color: #ffffff;
}

.pickupCard__text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.aboutSec {
  position: relative;
  overflow: hidden;
}

.aboutSec__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aboutSec__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.aboutSec__mediaImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutSec__inner {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.aboutSec__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aboutSec__item {
  min-width: 0;
}

.aboutPanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.85);
}

.aboutPanel__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #000000;
  text-align: center;
}

.aboutPanel__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
}

.aboutPanel__ruleImage {
  display: block;
  width: 39px;
  height: auto;
}

.aboutPanel__text {
  max-width: 333px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #000000;
  text-align: center;
}

.aboutPanel__action {
  margin: 24px 0 0;
}

.aboutPanel__link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 140px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #141414;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.aboutPanel__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #d80c18;
  transform: translateX(0);
  transition: transform 0.38s ease;
}

.aboutPanel__link:hover::before,
.aboutPanel__link:focus-visible::before {
  transform: translateX(100%);
}

.aboutPanel__linkLabel {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .newsSec__link::before,
  .aboutPanel__link::before,
  .instaFollow__button::before {
    transition: none;
  }
}

.instaSec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px 40px;
  background-color: #ffffff;
}

.instaSec__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.instaSec__title {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  color: #000000;
  text-align: center;
}

.instaSec__titleLine {
  display: inline;
}

.instaSec__titleSep {
  display: inline;
}

.instaSec__leadLine {
  display: inline;
}

.instaSec__rule {
  display: flex;
  justify-content: center;
}

.instaSec__ruleImage {
  display: block;
  width: 39px;
  height: auto;
}

.instaSec__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
}

.instaSec__leadText {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: center;
}

.instaSec__leadEdge {
  display: block;
  flex-shrink: 0;
  width: 2px;
  height: 1.35em;
  background-color: #000000;
}

/* Figma 103:760 — 左 \ ・ 右 /（上に開いた V でテキストを挟む） */
.instaSec__leadEdge--start {
  transform: skewX(12deg);
}

.instaSec__leadEdge--end {
  transform: skewX(-12deg);
}

.instaSec__mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 978px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.instaSec__embedWrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 978px;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.instaSec__cell {
  min-width: 0;
}

.instaSec__thumbLink {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #eaeaea;
  transition: opacity 0.2s ease;
}

.instaSec__thumbLink:hover,
.instaSec__thumbLink:focus-visible {
  opacity: 0.88;
}

.instaSec__thumbImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instaFollow {
  box-sizing: border-box;
  width: 100%;
  max-width: 550px;
  padding: 0;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
        135deg,
        #ffd600 0%,
        #ff9800 20%,
        #d80c18 42%,
        #e8488e 58%,
        #9c27b0 74%,
        #3f51b5 100%
      )
      border-box;
  border: 5px solid transparent;
}

.instaFollow__link {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
  padding: 32px 32px 0;
  color: inherit;
  text-decoration: none;
}

.instaFollow__link:focus-visible {
  outline: 2px solid #d80c18;
  outline-offset: 4px;
}

.instaFollow__visual {
  flex-shrink: 0;
}

.instaFollow__mockup {
  display: block;
  width: auto;
  max-width: 129px;
  height: auto;
  max-height: 220px;
}

.instaFollow__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
  min-width: 0;
}

.instaFollow__title {
  box-sizing: border-box;
  width: 333px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  color: #000000;
  text-align: center;
}

.instaFollow__titleLine {
  display: block;
}

.instaFollow__text {
  max-width: 333px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  text-align: center;
}

.instaFollow__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.instaFollow__handle {
  margin: 0;
}

.instaFollow__handleLabel {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
}

.instaFollow__action {
  margin: 0;
}

.instaFollow__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 140px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #141414;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.instaFollow__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #d80c18;
  transform: translateX(0);
  transition: transform 0.38s ease;
}

.instaFollow__link:hover .instaFollow__button::before,
.instaFollow__link:focus-visible .instaFollow__button::before {
  transform: translateX(100%);
}

.instaFollow__buttonLabel {
  position: relative;
  z-index: 1;
}

@keyframes countdownRedReveal {
  from {
    left: 140%;
  }
  to {
    left: -22%;
  }
}

.spCoopSec {
  padding: 48px 40px 56px;
  background-color: #ffffff;
}

/* 横幅A（出展社一覧と同型）：max-width 1040px + センター */
.spCoopSec__head {
  box-sizing: border-box;
  max-width: 1040px;
  margin: 0 auto 36px;
  text-align: center;
}

.spCoopSec__title {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  color: #000000;
  text-align: center;
}

/* セクションタイトルA（出展社「特別協力」と同型。クラスを併記した見出しのみ上書き反映） */
.sectionTitleA {
  margin: 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-align: center;
}

.spCoopSec__en {
  margin: 10px 0 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.28em;
  color: #000000;
  text-transform: uppercase;
}

.spCoopSec__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px; /* 横幅A */
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.spCoopSec__item {
  flex: 1 1 0;
  min-width: 0;
}

.coopLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.coopLogo__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 100px;
  padding: 12px 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

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

.coopLogo__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 104px;
  object-fit: contain;
  object-position: center;
}

.siteFooter {
  background-color: #231815;
  color: #ffffff;
}

.siteFooter__inner {
  box-sizing: border-box;
}

.siteFooter__socialList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.siteFooter__legalList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.siteFooter__brandLink {
  color: inherit;
  text-decoration: none;
}

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

@media (min-width: 541px) {
  .siteFooter {
    width: 100%;
  }

  .siteFooter__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 60px 40px 10px 40px;
  }

  .siteFooter__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .siteFooter__primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .siteFooter__brandImage {
    width: 300px;
    height: 74px;
    max-width: 100%;
    object-fit: contain;
  }

  .siteFooter__socialList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 32px;
  }

  .siteFooter__socialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

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

  .siteFooter__socialIcon {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .siteFooter__ctaGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 18px;
    width: 100%;
  }

  .siteFooter__cta {
    margin: 0;
  }

  .siteFooter__ctaLink {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 300px;
    max-width: 100%;
    min-height: 43px;
    padding: 11px 16px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    transition: color 0.22s ease;
  }

  .siteFooter__ctaLink::after {
    content: "";
    position: absolute;
    top: -45%;
    left: -220%;
    z-index: 0;
    width: 170%;
    height: 190%;
    background-color: #141414;
    transform: skewX(-24deg);
    transition: left 0.22s ease-out;
  }

  .siteFooter__ctaLink::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 0;
    height: 0;
    border-bottom: 11px solid #d80c18;
    border-left: 11px solid transparent;
    pointer-events: none;
  }

  .siteFooter__ctaLabel {
    position: relative;
    z-index: 1;
  }

  .siteFooter__ctaLink:hover,
  .siteFooter__ctaLink:focus-visible {
    color: #ffffff;
  }

  .siteFooter__ctaLink:hover::after,
  .siteFooter__ctaLink:focus-visible::after {
    left: -20%;
  }

  .siteFooter__notice {
    margin: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
  }

  .siteFooter__noticeLink {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

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

  .siteFooter__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .siteFooter__legal {
    width: 100%;
    max-width: 960px;
  }

  .siteFooter__legalList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-height: 35px;
  }

  .siteFooter__legalItem {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .siteFooter__legalSep {
    flex-shrink: 0;
    width: 1px;
    height: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .siteFooter__legalLink {
    display: block;
    padding: 8px 20px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

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

  .siteFooter__copyright {
    margin: 0;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
  }
}

@media (min-width: 1501px) {
  .sidebar {
    width: 350px;
    max-width: none;
  }
}

/* 951px 未満: サイドバー非表示＋ページ全体スクロール（見た目は PC と同じ。SP 専用調整は max-width:540px） */
@media (max-width: 950px) {
  html {
    height: auto;
  }

  body {
    height: auto;
    overflow: visible;
  }

  .layout {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .content {
    height: auto;
    overflow: visible;
    min-height: 0;
  }

  .sidebar {
    display: none;
  }
}

/* 下層ページ: `<main class="content">` 直下の先頭に置く SP 用ホームロゴ（541px 以上では非表示） */
.contentSpBrand {
  display: none;
}

/* SP（540px以下）のみ */
@media (max-width: 540px) {
  /*
   * 横方向は vw + clamp で比率を固定（393pt 基準: 20px≈5.13vw、左寄せ 36px≈9.16vw）。
   * 固定 max-width だと大屏（iPhone 14 等）だけ余白が増えて見えるため、セクション共通で使用する。
   */
  :root {
    --sp-pad-x: clamp(16px, 5.1282051282vw, 22px);
    --sp-align-left: clamp(20px, 9.1603053435vw, 40px);
    /* ドロワー `.spMenuPanel__scroll` の左右パディングと同じ基準でチケット CTA 幅を共通化 */
    --sp-drawer-pad-x: max(30px, var(--sp-pad-x));
    --sp-ticket-cta-width: calc((100vw - 2 * var(--sp-drawer-pad-x)) * 0.9);
  }

  /* 右上ハンバーガー（固定・スクロール追従）＋ドロワー */
  .spMenuToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 1002;
    box-sizing: border-box;
    width: 68px;
    height: 68px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .spMenuToggle:focus-visible {
    outline: 2px solid #d80c18;
    outline-offset: 2px;
    border-radius: 50%;
  }

  /* SP は固定トグル側で開閉するため、パネル内の閉じるボタンは非表示にする */
  .spMenuPanel__close {
    display: none;
  }

  /* 下層ページ SP: 左上固定・最後まで追従（.spMenuToggle と top を揃える） */
  .contentSpBrand {
    display: block;
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));
    z-index: 900;
    line-height: 0;
  }

  .contentSpBrand__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: inherit;
    text-decoration: none;
  }

  .contentSpBrand__link:focus-visible {
    outline: 2px solid #231815;
    outline-offset: 3px;
    border-radius: 2px;
  }

  .contentSpBrand__image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(56px, 35.2vw);
    max-height: 41px;
    object-fit: contain;
    object-position: left center;
  }

  /* SP 作業用: クラスを外すと表示に戻る（ニュースより下を一時非表示） */
  .spHidden {
    display: none !important;
  }

  .heroSec__spBrand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 132px;
    padding: 24px var(--sp-pad-x) 22px;
    background-color: #ffffff;
    border-bottom: 1px solid #c4c4c4;
  }

  .heroSec__spBrandImage {
    width: min(300px, 88vw);
    max-width: 100%;
    height: auto;
    max-height: 110px;
    min-height: 72px;
    object-fit: contain;
    object-position: center;
  }

  /* Figma SP ヒーロー下部バー: 高さ 62px（103:1340） */
  .heroSec__infoBar {
    min-height: 62px;
    height: 62px;
    max-height: 62px;
    align-items: stretch;
    box-sizing: border-box;
  }

  .heroSec__schedule {
    flex: 26 1 0;
    padding: 3px 5px 4px;
    justify-content: center;
  }

  .heroSec__dateText {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    column-gap: 0;
    max-width: 100%;
  }

  /* Figma 103:1340 左エリアに比例（48.312→22.72 / 32.208→15.15） */
  .heroSec__dateNum {
    font-size: clamp(18px, 5.6vw, 22.72px);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .heroSec__dateNum--track {
    letter-spacing: 0.12em;
  }

  .heroSec__dateParen {
    font-size: clamp(12px, 3.6vw, 15.15px);
    font-weight: 700;
    line-height: 1;
  }

  .heroSec__dateWday {
    font-size: clamp(12px, 3.6vw, 15.15px);
    font-weight: 900;
    line-height: 1;
  }

  .heroSec__dateDot {
    width: 5px;
    height: 5px;
    margin: 0 6px;
    flex-shrink: 0;
    align-self: center;
  }

  .heroSec__comingSoon {
    max-width: 100%;
    padding: 0 2px;
    margin-top: 3px;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 3.4vw, 14.18px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .heroSec__countdown {
    flex: 11 1 0;
    padding: 3px 7px 4px 2px;
    justify-content: center;
    align-items: flex-end;
  }

  .heroSec__countHeading {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    transform: none;
    white-space: nowrap;
    text-align: right;
    align-self: flex-end;
  }

  .heroSec__countValue {
    margin: 1px 0 0;
    line-height: 1;
    transform: none;
    white-space: nowrap;
    text-align: right;
    align-self: flex-end;
  }

  .heroSec__countNumber {
    font-size: 29.6px;
    line-height: 1;
  }

  .heroSec__countUnit {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }

  .heroSec__infoBar {
    min-width: 0;
  }

  .heroSec__schedule {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .heroSec__countdown {
    min-width: 0;
  }

  /* News — SP（Figma 103:1352）: 見出し＋一覧ボタンを上段、カルーセルは下 */
  .newsSec {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .newsSec__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 30px var(--sp-pad-x) 16px var(--sp-align-left);
  }

  .newsSec__title {
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
  }

  .newsSec__linkWrap {
    flex-shrink: 0;
  }

  .newsSec__link {
    padding: 7px 21px;
    background-color: #d80c18;
    font-size: 13px;
  }

  .newsSec__link::before {
    display: none;
  }

  .newsSec__link:hover,
  .newsSec__link:focus-visible {
    opacity: 0.9;
  }

  .newsCarousel {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 0 0 36px var(--sp-align-left);
    box-sizing: border-box;
  }

  .newsCarousel__track {
    gap: 14px;
    padding-right: var(--sp-pad-x);
  }

  .newsCard {
    flex: 0 0 285px;
    width: 285px;
    height: auto;
    min-height: 104px;
  }

  .newsCard__link {
    min-height: 104px;
    padding: 18px;
    gap: 7px;
    border-radius: 3.5px 3.5px 0 3.5px;
    box-shadow: 0 3.5px 18px rgba(0, 0, 0, 0.13);
  }

  .newsCard__link::after {
    border-bottom-width: 13px;
    border-left-width: 13px;
  }

  .newsCard__date {
    font-size: 11.6px;
  }

  .newsCard__text {
    font-size: 12.5px;
  }

  /* 前売りチケット CTA — SP（Figma 613:2148〜）2列維持・縦点線仕切り */
  .ticketCtaSec {
    padding: clamp(34px, 9.18vw, 38px)
      max(var(--sp-pad-x), env(safe-area-inset-right, 0px))
      clamp(39px, 10.73vw, 44px)
      max(var(--sp-pad-x), env(safe-area-inset-left, 0px));
  }

  .ticketCtaSec__inner {
    gap: clamp(16px, 4.58vw, 18px);
    max-width: none;
    min-width: 0;
  }

  .ticketCtaSec__title {
    font-size: clamp(17.5px, 4.71vw, 19px);
    line-height: 1.35;
  }

  .ticketCtaCard {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .ticketCtaCard__overlay {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 0;
    align-items: stretch;
    /* 親幅いっぱいに収め、内側の横詰めで右端が欠けないよう余白は vw より % 優先 */
    padding: clamp(8px, 2.96vw, 12px) clamp(8px, 5.8%, 20px)
      clamp(10px, 3.82vw, 14px);
  }

  .ticketCtaCard__pane--advance {
    padding-right: clamp(6px, 2vw, 12px);
    padding-bottom: 0;
    border-right: 1px dashed #b5bac4;
    border-bottom: none;
  }

  .ticketCtaCard__pane--door {
    padding-left: clamp(6px, 2vw, 12px);
    padding-top: 0;
  }

  .ticketCtaCard__col {
    gap: clamp(6px, 1.82vw, 8px);
  }

  .ticketCtaCard__col--door {
    padding-top: 0;
    justify-content: flex-start;
    min-height: 100%;
  }

  .ticketCtaCard__badge {
    padding: clamp(3px, 0.67vw, 4px) clamp(8px, 3.3vw, 14px);
    border-width: 1px;
    font-size: clamp(13px, 3.73vw, 15px);
  }

  .ticketCtaCard__price--advance .ticketCtaCard__priceSym {
    font-size: clamp(30px, 9.87vw, 39px);
  }

  .ticketCtaCard__price--advance .ticketCtaCard__priceNum {
    font-size: clamp(2px, 11.14vw, 45px);
  }

  .ticketCtaCard__price--door .ticketCtaCard__priceSym {
    font-size: clamp(14px, 3.9vw, 19px);
  }

  .ticketCtaCard__price--door .ticketCtaCard__priceNum {
    font-size: clamp(22px, 5.7vw, 31px);
    letter-spacing: -0.07em;
  }

  .ticketCtaCard__deadline {
    margin-top: clamp(6px, 2vw, 10px);
    padding: clamp(5px, 1.53vw, 7px) clamp(8px, 4.4vw, 18px);
    font-size: clamp(10px, 2.55vw, 12px);
  }

  .ticketCtaCard__note {
    margin: auto 0 0 auto;
    font-size: clamp(9px, 1.96vw, 11px);
    line-height: 1.4;
  }

  .ticketCtaSec__cta {
    max-width: 100%;
    min-height: 104px;
    padding: 13px 12px;
    font-size: 16px;
  }

  /* Pick Up — SP: スクロールは Slick が担当（2枚以上時）。単枚時のみ横スクロールのフォールバック */
  .pickupCarousel {
    display: block;
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 0 0 40px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(var(--sp-pad-x), env(safe-area-inset-left, 0px));
    -webkit-overflow-scrolling: touch;
  }

  .pickupCarousel .pickupSec__list:not(.slick-initialized) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    max-width: none;
    margin: 0;
    padding: 0 max(var(--sp-pad-x), env(safe-area-inset-right, 0px)) 4px
      max(var(--sp-pad-x), env(safe-area-inset-left, 0px));
    list-style: none;
  }

  .pickupCarousel .pickupSec__list:not(.slick-initialized) .pickupSec__item {
    flex: 0 0 clamp(248px, 72.52vw, 285px);
    width: clamp(248px, 72.52vw, 285px);
    min-width: 0;
    scroll-snap-align: center;
  }

  .pickupCarousel:has(.pickupSec__list.slick-initialized) {
    overflow: visible !important;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    padding: 0 0 24px;
  }

  /* Pick Up — SP: Figma 612:1079 付近 — 均等な左右余白・タイトル～カードの段落 */
  .pickupSec {
    align-items: center;
    gap: 28px;
    padding: 35px max(var(--sp-pad-x), env(safe-area-inset-right, 0px)) 49px
      max(var(--sp-pad-x), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
  }

  .pickupSec__title {
    max-width: none;
    margin: 0 auto;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .pickupCard__link {
    border-radius: 3.5px 3.5px 0 3.5px;
    box-shadow: 0 3.5px 9px rgba(0, 0, 0, 0.13);
  }

  .pickupCard__link::after {
    border-bottom-width: 13px;
    border-left-width: 13px;
  }

  .pickupCard__media {
    aspect-ratio: 279 / 162;
  }

  .pickupCard__body {
    min-height: 72px;
    padding: 21px;
  }

  .pickupCard__text {
    font-size: 12.3px;
  }

  /* About — SP（Figma 103:1402〜）: パネル幅 304px を 393pt キャンバス内比率に近づける（約 86%） */
  .aboutSec__inner {
    padding: 36px max(var(--sp-pad-x), env(safe-area-inset-left, 0px)) 36px
      max(var(--sp-pad-x), env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .aboutSec__grid {
    grid-template-columns: 1fr;
    gap: 17px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .aboutSec__item {
    width: 86%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
    box-sizing: border-box;
  }

  .aboutPanel {
    align-items: center;
    justify-content: flex-start;
    height: auto;
    width: 100%;
    max-width: none;
    padding: 22px var(--sp-pad-x);
    box-sizing: border-box;
  }

  .aboutPanel__title {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }

  .aboutPanel__rule {
    justify-content: center;
    margin: 10px 0 0;
  }

  .aboutPanel__ruleImage {
    width: 28px;
    height: auto;
  }

  .aboutPanel__text {
    max-width: none;
    width: 100%;
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
  }

  .aboutPanel__action {
    margin: 17px 0 0;
    align-self: center;
  }

  .aboutPanel__link {
    width: auto;
    min-width: 120px;
    padding: 7px 21px;
    background-color: #d80c18;
    font-size: 13px;
  }

  .aboutPanel__link::before {
    display: none;
  }

  .aboutPanel__link:hover,
  .aboutPanel__link:focus-visible {
    opacity: 0.9;
  }

  /* Instagram — SP: ほぼ全幅のまま、横余白は他セクションと同じ --sp-pad-x（10px よりゆとりあり） */
  .instaSec {
    align-items: stretch;
    gap: 32px;
    padding: 32px max(var(--sp-pad-x), env(safe-area-inset-left, 0px)) 40px
      max(var(--sp-pad-x), env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .instaSec__header {
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
  }

  .instaSec__title {
    font-size: 18.5px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
  }

  .instaSec__titleLine {
    display: block;
  }

  .instaSec__titleSep {
    display: none;
  }

  .instaSec__ruleImage {
    width: 32px;
    height: auto;
  }

  .instaSec__lead {
    gap: 16px;
  }

  .instaSec__leadText {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 13.36px;
    font-weight: 500;
    line-height: 1.45;
  }

  .instaSec__leadLine {
    display: block;
    text-align: center;
  }

  .instaSec__leadEdge {
    height: 24px;
    width: 2px;
    align-self: center;
  }

  .instaSec__mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5.658px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .instaSec__embedWrap {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }

  .instaFollow {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(
          135deg,
          #ffd600 0%,
          #ff9800 20%,
          #d80c18 42%,
          #e8488e 58%,
          #9c27b0 74%,
          #3f51b5 100%
        )
        border-box;
    border: 5px solid transparent;
  }

  .instaFollow__link {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 13.485px;
    padding: 17.98px 17.98px 0;
  }

  .instaFollow__mockup {
    max-width: 113px;
    max-height: none;
    width: 100%;
    height: auto;
  }

  .instaFollow__body {
    align-items: flex-start;
    align-self: stretch;
    gap: 8px;
    padding-bottom: 20px;
    text-align: left;
  }

  .instaFollow__title {
    width: auto;
    max-width: none;
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
  }

  .instaFollow__text {
    max-width: none;
    font-size: 13.125px;
    font-weight: 500;
    line-height: 1.55;
    text-align: left;
  }

  .instaFollow__row {
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .instaFollow__handleLabel {
    font-size: 13.125px;
  }

  .instaFollow__button {
    min-width: 0;
    padding: 7px 18px;
    background-color: #d80c18;
    font-size: 13px;
  }

  .instaFollow__button::before {
    display: none;
  }

  .instaFollow__link:hover .instaFollow__button,
  .instaFollow__link:focus-visible .instaFollow__button {
    opacity: 0.9;
  }

  .spCoopSec {
    padding: 40px var(--sp-pad-x) 48px;
  }

  .spCoopSec__head {
    margin: 0 auto 28px;
  }

  .spCoopSec__title {
    font-size: 24px;
  }

  .sectionTitleA {
    font-size: 24px;
  }

  .spCoopSec__en {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .spCoopSec__list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 100%;
    gap: 24px;
  }

  .spCoopSec__item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }

  .coopLogo__link {
    min-height: 72px;
    padding: 8px 6px;
  }

  .coopLogo__image {
    max-height: 64px;
  }

  /* Footer — SP（Figma 103:1525）。タブレット〜PCフッターは min-width:541px */
  .siteFooter__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px var(--sp-pad-x) 148px;
    box-sizing: border-box;
  }

  .siteFooter__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18.575px;
    width: 100%;
  }

  .siteFooter__primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18.575px;
    width: 100%;
    max-width: min(275px, 69.9745546494vw);
    margin-inline: auto;
    box-sizing: border-box;
  }

  .siteFooter__brand {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .siteFooter__brandImage {
    width: 100%;
    max-width: 275px;
    height: auto;
    aspect-ratio: 3016 / 743;
    object-fit: contain;
  }

  .siteFooter__socialList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 27.862px;
    padding: 13.931px 37.15px;
  }

  .siteFooter__socialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23.219px;
    height: 23.219px;
    transition: opacity 0.2s ease;
  }

  .siteFooter__socialIcon {
    width: 23.219px;
    height: 23.219px;
  }

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

  .siteFooter__ctaGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 18.575px;
    width: 100%;
  }

  .siteFooter__cta {
    width: var(--sp-ticket-cta-width);
    margin-inline: auto;
    box-sizing: border-box;
  }

  .siteFooter__ctaLink {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 50.644px;
    padding: 13.378px 7.525px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    transition: color 0.22s ease;
  }

  .siteFooter__ctaLink::after {
    content: "";
    position: absolute;
    top: -45%;
    left: -220%;
    z-index: 0;
    width: 170%;
    height: 190%;
    background-color: #141414;
    transform: skewX(-24deg);
    transition: left 0.22s ease-out;
  }

  .siteFooter__ctaLink::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 0;
    height: 0;
    border-bottom: 13px solid #d80c18;
    border-left: 13px solid transparent;
    pointer-events: none;
  }

  .siteFooter__ctaLabel {
    position: relative;
    z-index: 1;
  }

  .siteFooter__ctaLink:hover,
  .siteFooter__ctaLink:focus-visible {
    color: #ffffff;
  }

  .siteFooter__ctaLink:hover::after,
  .siteFooter__ctaLink:focus-visible::after {
    left: -20%;
  }

  .siteFooter__notice {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }

  .siteFooter__noticeLink {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

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

  .siteFooter__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .siteFooter__legal {
    width: 100%;
    max-width: 100%;
  }

  .siteFooter__legalList {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .siteFooter__legalSep {
    display: none;
  }

  .siteFooter__legalItem {
    display: flex;
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .siteFooter__legalLink {
    padding: 0 20px;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    color: inherit;
    text-align: center;
    text-decoration: underline;
    white-space: normal;
    transition: opacity 0.2s ease;
  }

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

  .siteFooter__copyright {
    margin: 0;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    white-space: normal;
    text-align: center;
  }

  /* SP 下部固定チケットボタン（お気に入り帯の上。ドロワーより下層 z-index） */
  .spTicketFab {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    z-index: 999;
    box-sizing: border-box;
    width: 100%;
    /* iOS ホームインジケータ分の余白（画像の下は塗られないため、リンクに背景色で埋める） */
    /* padding-bottom: env(safe-area-inset-bottom, 0px);
    background-color: #d80c18;
    box-shadow: 0 -3.986px 3.986px 0 rgba(0, 0, 0, 0.25);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s ease; */
  }

  .spTicketFab:hover,
  .spTicketFab:focus-visible {
    opacity: 0.88;
  }

  .spTicketFab:focus-visible {
    outline: 2px solid #d80c18;
    outline-offset: -2px;
  }

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

  .spFavGuideFab {
    display: flex;
    align-items: center;
    gap: 4px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    box-sizing: border-box;
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px));
    background-color: #ffffff;
  }

  .spFavGuideFab__badge {
    position: relative;
    flex: 0 0 96px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96px;
    min-height: 60px;
    padding: 6px;
    border: 0.892px solid #d80c18;
    border-radius: 3.568px 3.568px 0 3.568px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1.784px 3.568px rgba(0, 0, 0, 0.16);
  }

  .spFavGuideFab__badge::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 0;
    height: 0;
    border-bottom: 13.378px solid #d80c18;
    border-left: 13.378px solid transparent;
  }

  .spFavGuideFab__icon {
    display: inline-block;
    width: 16px;
    height: 14px;
    background: url("../img/favorite-heart-filled.svg") center / contain
      no-repeat;
  }

  .spFavGuideFab__badgeText {
    margin-top: 4px;
    font-size: 11.595px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
  }

  .spFavGuideFab__lead {
    position: relative;
    flex: 1 1 auto;
    margin: 0;
    padding: 8px;
    border-radius: 10px;
    background-color: #ffeded;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
  }

  .spFavGuideFab__lead::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 11px solid #ffeded;
  }

  .spFavGuideFab__note {
    font-size: 10px;
  }

  body.is-spMenuOpen .spTicketFab {
    z-index: 1004;
  }

  body.is-spMenuOpen .spFavGuideFab {
    z-index: 1003;
  }
}

@media (max-width: 540px) and (prefers-reduced-motion: reduce) {
  .spTicketFab:hover,
  .spTicketFab:focus-visible {
    opacity: 1;
  }
}

@media (max-width: 600px) and (min-width: 541px) {
  .instaSec__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 541〜600px: 横並びのまま詰め幅用（540px 以下は上記 SP で縦並び） */
@media (max-width: 600px) and (min-width: 541px) {
  .spCoopSec__list {
    gap: 16px;
  }

  .coopLogo__link {
    min-height: 56px;
    padding: 6px 4px;
  }

  .coopLogo__image {
    max-height: 48px;
  }
}

/* SP・タブレット（〜950px）: ドロワー＋オーバーレイ（PC では非表示） */
@media (max-width: 950px) {
  :root {
    --overlay-menu-pad-x: max(30px, clamp(16px, 5.1282051282vw, 22px));
  }

  .spMenuBackdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
    border: none;
    background-color: rgba(0, 0, 0, 0.38);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .spMenuBackdrop[hidden] {
    display: none !important;
  }

  /* 全画面メニュー（Figma メニュー 103:634 相当） */
  .spMenuPanel {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 1001;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    overflow: hidden;
    background-color: #231815;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  body.is-spMenuOpen .spMenuPanel {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  body.is-spMenuOpen {
    overflow: hidden;
  }

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

  .spMenuPanel__header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 0;
    padding: max(10px, env(safe-area-inset-top, 0px))
      max(10px, env(safe-area-inset-right, 0px)) 0
      max(10px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    pointer-events: none;
  }

  .spMenuPanel__header .spMenuPanel__close {
    pointer-events: auto;
  }

  .spMenuPanel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .spMenuPanel__close:focus-visible {
    outline: 2px solid #d80c18;
    outline-offset: 2px;
    border-radius: 50%;
  }

  .spMenuPanel__closeIcon {
    display: block;
    width: 36px;
    height: 36px;
    pointer-events: none;
  }

  .spMenuPanel__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: calc(80px + env(safe-area-inset-top, 0px))
      var(--overlay-menu-pad-x) 40px;
    box-sizing: border-box;
  }

  .spMenuPanel__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .spMenuPanel__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .spMenuPanel__brandLink {
    display: block;
    width: 100%;
    max-width: 275px;
    margin: 0 auto;
    line-height: 0;
  }

  .spMenuPanel__brandImage {
    display: block;
    width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
  }

  .spMenuPanel__nav {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .spMenuPanel__quick {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .spMenuPanel__quick .sideNav__quick {
    margin-top: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }

  .spMenuPanel__quick .sideNav__quickLead {
    flex: 1 1 100%;
    min-width: 0;
  }

  .spMenuPanel__quick .sideNav__quickLeadBody::before {
    left: 50%;
    top: -8px;
    bottom: auto;
    transform: translateX(-50%);
    border-top: none;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #ffeded;
    border-left: 10px solid transparent;
  }

  .spMenuPanel__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: max-content;
    max-width: 100%;
    align-items: stretch;
  }

  .spMenuPanel__item {
    border: none;
  }

  .spMenuPanel__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    min-width: max-content;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .spMenuPanel__item:first-child .spMenuPanel__link {
    gap: 10px;
  }

  .spMenuPanel__link:hover,
  .spMenuPanel__link:focus-visible {
    opacity: 0.75;
  }

  .spMenuPanel__linkBar {
    flex-shrink: 0;
    width: 4px;
    height: 19px;
    background-color: #d80c18;
  }

  .spMenuPanel__ctaBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18.575px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .spMenuPanel__cta {
    margin: 0;
    padding: 0;
    width: calc((100vw - 2 * var(--overlay-menu-pad-x)) * 0.9);
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .spMenuPanel__ctaLink {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 50.644px;
    padding: 13.378px 7.525px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .spMenuPanel__ctaLink::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 0;
    height: 0;
    border-bottom: 12px solid #d80c18;
    border-left: 12px solid transparent;
    pointer-events: none;
  }

  .spMenuPanel__ctaLabel {
    position: relative;
    z-index: 1;
  }

  .spMenuPanel__ctaLink:hover,
  .spMenuPanel__ctaLink:focus-visible {
    opacity: 0.88;
  }

  .spMenuPanel__notice {
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .spMenuPanel__noticeLink {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: opacity 0.2s ease;
  }

  .spMenuPanel__noticeLink:hover,
  .spMenuPanel__noticeLink:focus-visible {
    opacity: 0.8;
  }
}

/* タブレット用トップバー（Figma 205:670） */
@media (min-width: 541px) and (max-width: 950px) {
  .tabletHeader {
    display: block;
    position: sticky;
    top: 0;
    z-index: 900;
    flex-shrink: 0;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
  }

  .tabletHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px clamp(16px, 2.2vw, 24px);
    box-sizing: border-box;
  }

  .tabletHeader__logoLink {
    display: block;
    flex-shrink: 0;
    line-height: 0;
    color: inherit;
    text-decoration: none;
  }

  .tabletHeader__logo {
    display: block;
    width: 196px;
    max-width: min(196px, 42vw);
    height: auto;
    aspect-ratio: 196 / 48;
    object-fit: contain;
  }

  .tabletHeader__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 14px;
  }

  .tabletHeader__ticket {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 0;
    width: 198px;
    max-width: 36vw;
    min-height: 60px;
    padding: 16px 9px;
    border: 1px solid #000000;
    background-color: #231815;
    color: #ffffff;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 0.22s ease;
    -webkit-tap-highlight-color: transparent;
  }

  /* サイドメニュー `.sideNav__ctaLink` と同じスキュー掃き */
  .tabletHeader__ticket::after {
    content: "";
    position: absolute;
    top: -45%;
    left: -220%;
    z-index: 0;
    width: 170%;
    height: 190%;
    background-color: #ffffff;
    transform: skewX(-24deg);
    transition: left 0.22s ease-out;
    pointer-events: none;
  }

  .tabletHeader__ticket::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 0;
    height: 0;
    border-bottom: 15px solid #d80c18;
    border-left: 15px solid transparent;
    pointer-events: none;
  }

  .tabletHeader__ticketLabel {
    position: relative;
    z-index: 1;
  }

  .tabletHeader__ticket:hover,
  .tabletHeader__ticket:focus-visible {
    color: #000000;
    opacity: 1;
  }

  .tabletHeader__ticket:hover::after,
  .tabletHeader__ticket:focus-visible::after {
    left: -20%;
  }

  .tabletHeader__ticket:focus-visible {
    outline: 2px solid #d80c18;
    outline-offset: 2px;
  }

  .tabletHeader__menu {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 68px;
    height: 68px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .tabletHeader__menu:focus-visible {
    outline: 2px solid #d80c18;
    outline-offset: 2px;
    border-radius: 50%;
  }
}

@media (max-width: 950px) and (prefers-reduced-motion: reduce) {
  .pickupCarousel {
    scroll-snap-type: none;
  }

  .spMenuPanel {
    transition: none;
  }
}

/* SP（540px以下）は固定トグル側で開閉するため、パネル内の閉じるボタンを常に非表示 */
@media (max-width: 540px) {
  .spMenuPanel__close {
    display: none;
  }
}

/* Snow Monkey Forms */
.smf-form .smf-select-control {
  max-width: 100%;
}

.smf-form .smf-select-control__control {
  width: 100%;
}

.smf-form .smf-text-control__control {
  width: 100%;
}

/* Favorites: お気に入り一覧の行＋行末のお気に入りボタン */
.favorites-list > li,
.favorites-list > div,
.favorites-list > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px 12px;
}

.favorites-list {
  padding: 0;
}

.favorites-list > li > :not(.automesseFavoritesList__favoriteCell),
.favorites-list > div > :not(.automesseFavoritesList__favoriteCell),
.favorites-list > p > :not(.automesseFavoritesList__favoriteCell) {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.favorites-list > li > .automesseFavoritesList__booth,
.favorites-list > div > .automesseFavoritesList__booth,
.favorites-list > p > .automesseFavoritesList__booth {
  flex: 0 0 auto;
  align-self: center;
  margin-right: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #555555;
  white-space: nowrap;
}

.favorites-list .automesseFavoritesList__favoriteCell {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-width: 0;
  min-height: 0;
}

/* Figma 623:1802 / 623:1808 — イベント・出展と同仕様 */
.favorites-list .automesseFavoritesList__favoriteCell .simplefavorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-sizing: border-box;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 4px 6px;
  margin: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #9b9b9b;
  border-radius: 3px;
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button.active,
.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button[aria-pressed="true"] {
  padding: 4px 6px;
  border: 1px solid #d80c18;
  opacity: 1;
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button
  > * {
  display: none !important;
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/favorite-heart-outline.svg");
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button.active::before,
.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button[aria-pressed="true"]::before {
  background-image: url("../img/favorite-heart-filled.svg");
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button::after {
  content: "お気に入り追加";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button.active::after,
.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button[aria-pressed="true"]::after {
  content: "お気に入り済み";
  font-weight: 500;
  color: #d80c18;
}

.favorites-list
  .automesseFavoritesList__favoriteCell
  .simplefavorite-button:focus-visible {
  outline: 1px solid #d80c18;
  outline-offset: 2px;
  border-radius: 3px;
}
