*,
*::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;
}

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

.spMenuPanel {
  display: none;
}

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

.sidebar {
  width: 28%;
  min-width: 0;
  max-width: 300px;
  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 {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .sidebar {
    align-self: stretch;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .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;
}

.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__menuLink {
  display: block;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

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

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

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

.sideNav__cta {
  margin: 9cqw 5.5cqw 11cqw;
}

.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: 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;
}

.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;
}

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

.pickupSec__title {
  margin: 0;
  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: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pickupSec__item {
  min-width: 0;
}

/* PC・タブレット: ラッパーはレイアウトに影響させない（3列グリッドは ul に直接適用） */
@media (min-width: 541px) {
  .pickupCarousel {
    display: contents;
  }
}

/* カード型レイアウト：画像だけホバー／フォーカスで少し拡大（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;
  box-shadow: 0 4px 20px 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 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: 左上固定・最後まで追従（.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;
  }

  /* Pick Up — SP: 横スクロール＋スナップ（News カルーセルと同系統） */
  .pickupCarousel {
    display: block;
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 0 0 36px var(--sp-align-left);
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 36px;
    -webkit-overflow-scrolling: touch;
  }

  .pickupCarousel .pickupSec__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    max-width: none;
    margin: 0;
    padding: 0 var(--sp-pad-x) 4px 0;
    list-style: none;
  }

  .pickupCarousel .pickupSec__item {
    flex: 0 0 285px;
    width: 285px;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* Pick Up — SP: 見出しタイポは News と同じ、見出しのみ中央（Figma 103:1374）／カルーセルは左インデント維持 */
  .pickupSec {
    align-items: stretch;
    padding: 32px var(--sp-pad-x) 48px var(--sp-align-left);
    box-sizing: border-box;
  }

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

  /* 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) 48px;
    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;
  }

  /* Figma 103:1667 — 右下固定「チケットはこちら」（ドロワーより下層 z-index） */
  .spTicketFab {
    display: flex;
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    z-index: 999;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: clamp(88px, 27.226vw, 107px);
    height: clamp(88px, 27.226vw, 107px);
    padding: 6px 5px 8px;
    border: 4px solid #d80c18;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 3.5px 17.5px rgba(0, 0, 0, 0.13);
    color: #231815;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .spTicketFab:hover,
  .spTicketFab:focus-visible {
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
  }

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

  .spTicketFab__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    max-width: 100%;
    text-align: center;
  }

  .spTicketFab__icon {
    display: block;
    flex-shrink: 0;
    width: clamp(22px, 7.12vw, 28px);
    height: clamp(22px, 7.12vw, 28px);
  }

  .spTicketFab__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    line-height: 1.2;
  }

  .spTicketFab__line1 {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
  }

  .spTicketFab__strong {
    font-size: clamp(11px, 3.93vw, 15.443px);
  }

  .spTicketFab__small {
    font-size: clamp(10px, 3.31vw, 13px);
  }

  .spTicketFab__line2 {
    margin: 0;
    font-size: clamp(11px, 3.88vw, 15.24px);
  }
}

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

@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__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;
  }
}

/* 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%;
}

