@charset "utf-8";

/*
 * Stray Kids 2026 特設ページ
 *
 * 目次（セクション番号で検索）
 * 01. 基本レイアウト
 * 02. PC 3カラムレイアウト
 * 03. キービジュアル
 * 04. ローディング
 * 05. アンカーナビゲーション
 * 06. コンテンツ背景
 * 07. 日付・期間画像
 * 08. 装飾ボックス
 * 09. コンテンツ画像・開閉エリア
 * 10. ボタン・汎用レイヤー
 * 11. セクション見出し
 * 12. バナー・施設一覧
 * 13. フッター・SNS・ページトップ
 * 14. SPレイアウト
 * 15. 状態表示・補助パーツ
 */

/* ==========================================================================
   01. 基本レイアウト
   ========================================================================== */

main {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}

.pcLayout {
  width: 100%;
}

.pcOnlyArea,
.pcAnchorArea {
  display: none;
}

.pcSideTapes {
  display: none;
}

.pcAreaLabel {
  display: none;
}

@media screen and (min-width: 769px) {
  /* ------------------------------------------------------------------------
     02. PC 3カラムレイアウト
     左：pcOnlyArea / 中央：pcMainArea / 右：pcAnchorArea
     ------------------------------------------------------------------------ */

  /* PCヘッダー：施設ロゴ */
  #straykids hgroup {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  /* PC 3カラム：各カラムの幅・スクロール */
  .pcLayout {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .pcOnlyArea {
    position: sticky;
    top: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100vh;
    overflow: hidden;
    background: #000;
    isolation: isolate;
  }

  .pcMainArea {
    flex: 0 0 420px;
    width: 420px;
    min-width: 420px;
    height: auto;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .pcMainArea .main {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .pcAnchorArea {
    position: sticky;
    top: 0;
    display: block;
    align-self: flex-start;
    /* PC切替直後だけ右カラムを縮め、余裕がある画面では360pxを維持する */
    flex: 0 0 clamp(0px, calc(100% - 420px), 360px);
    width: clamp(0px, calc(100% - 420px), 360px);
    min-width: 0;
    height: 100vh;
    overflow-y: auto;
    background: #000;
    z-index: 1001;
  }

  .pcAnchorArea.navPanel {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    pointer-events: auto;
    background: #000;
    isolation: isolate;
    opacity: 1;
    transition: none;
    transform: none;
  }

  .pcAnchorArea .navPanelInner {
    position: relative;
    z-index: 1001;
    width: 100%;
    height: auto;
    min-height: 100%;
    padding: 40px 23% 24px 15%;
    background: transparent;
    transform: translateY(-7%);
  }

  .pcAnchorArea .navBackdrop {
    display: none;
  }

  /* PC右カラム：ナビ項目の初期表示アニメーション */
  .pcAnchorArea.navPanel ul.nav li {
    opacity: 0;
    transform: translateY(22px);
  }

  /* pcSideTapes完了後、右ナビを上から順番に表示する */
  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li {
    animation: pcNavItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li:nth-child(1) {
    animation-delay: 0.2s;
  }

  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li:nth-child(2) {
    animation-delay: 0.28s;
  }

  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li:nth-child(3) {
    animation-delay: 0.36s;
  }

  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li:nth-child(4) {
    animation-delay: 0.44s;
  }

  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li:nth-child(5) {
    animation-delay: 0.52s;
  }

  body.is-intro-complete .pcAnchorArea.navPanel ul.nav li:nth-child(6) {
    animation-delay: 0.6s;
  }

  #straykids .headerToggle {
    display: none;
  }

  /* PC左カラム：メインビジュアル */
  .pcAreaLabel {
    position: relative;
    z-index: 2;
    display: block;
    width: 80%;
    max-width: 700px;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    color: #777;
    letter-spacing: 0.05em;
  }

  /* PC左右カラム：リボンテープアニメーション */
  /*
   * リボン調整ガイド
   * width              : リボンの長さ
   * height             : リボンの太さ（左・右で個別指定）
   * top                : 上下位置（小さいほど上、大きいほど下）
   * right / left       : 左右位置
   * --tape-angle       : 角度（deg）。GSAPに上書きされない角度専用値
   *
   * 左側は nth-child(1)〜(4)、右側は nth-child(1)〜(3)。
   * 画像の割り当ては js/script.js の ribbonImages で変更する。
   */
  .pcSideTapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    pointer-events: none;
  }

  .pcSideTape {
    --tape-angle: 0deg;
    --tape-scale: 0;
    position: absolute;
    z-index: 0;
    display: block;
    width: 100%;
    visibility: hidden;
    background-repeat: repeat-x;
    background-position: left center;
    background-size: auto 100%;
    transform: rotate(var(--tape-angle)) scaleX(var(--tape-scale));
    will-change: transform;
  }

  .pcSideTapesLeft .pcSideTape {
    height: 4rem; /* 左側リボン4本の共通の太さ */
    transform-origin: right top;
  }

  /* 左側 1本目 左上 */
  .pcSideTapesLeft .pcSideTape:nth-child(1) {
    top: -35%;
    left: -30%;
    --tape-angle: -40deg;
  }

  /* 左側 2本目 右上 */
  .pcSideTapesLeft .pcSideTape:nth-child(2) {
    top: 12%;
    left: -5%;
    --tape-angle: 60deg;
  }

  /* 左側 3本目 左下 */
  .pcSideTapesLeft .pcSideTape:nth-child(3) {
    top: 65%;
    left: -90%;
    --tape-angle: 10deg;
  }

  /* 左側 4本目 右下 */
  .pcSideTapesLeft .pcSideTape:nth-child(4) {
    top: 90%;
    right: 15%;
    --tape-angle: -25deg;
  }

  /*
   * 右側リボンの縦逃がし量
   * ウィンドウ高さが基準(900px)より低いほど値が増える。
   * 2本目は下へ、3本目は上へこの分だけずらし、.navPanelInner のナビと重なるのを避ける。
   * 効き具合は 0.3（倍率）、逃がしすぎ防止は 120px（上限）で調整する。
   */
  .pcSideTapesRight {
    --tape-vshift: clamp(0px, calc((900px - 100vh) * 0.3), 120px);
  }

  .pcSideTapesRight .pcSideTape {
    height: 4rem; /* 右側リボン3本の共通の太さ */
    transform-origin: left top;
  }

  /* 右側 1本目 中 */
  .pcSideTapesRight .pcSideTape:nth-child(1) {
    right: -85%;
    bottom: 35%;
    --tape-angle: 15deg;
  }

  /* 右側 2本目 下（ウィンドウが低いほど下へ逃がす） */
  .pcSideTapesRight .pcSideTape:nth-child(2) {
    right: 10%;
    bottom: calc(-20% - var(--tape-vshift));
    --tape-angle: -45deg;
  }

  /* 右側 3本目 上（ウィンドウが低いほど上へ逃がす） */
  .pcSideTapesRight .pcSideTape:nth-child(3) {
    top: calc(5% - var(--tape-vshift));
    right: -65%;
    --tape-angle: -10deg;
  }

  /* GSAPが読み込めない場合のテープ表示アニメーション */
  body.is-native-tapes-playing .pcSideTape {
    animation: pcSideTapeFallback 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) both;
  }

  body.is-native-tapes-playing .pcSideTapesLeft .pcSideTape:nth-child(2) {
    animation-delay: 0.08s;
  }
  body.is-native-tapes-playing .pcSideTapesLeft .pcSideTape:nth-child(3) {
    animation-delay: 0.16s;
  }
  body.is-native-tapes-playing .pcSideTapesLeft .pcSideTape:nth-child(4) {
    animation-delay: 0.24s;
  }
  body.is-native-tapes-playing .pcSideTapesRight .pcSideTape:nth-child(1) {
    animation-delay: 0.4s;
  }
  body.is-native-tapes-playing .pcSideTapesRight .pcSideTape:nth-child(2) {
    animation-delay: 0.48s;
  }
  body.is-native-tapes-playing .pcSideTapesRight .pcSideTape:nth-child(3) {
    animation-delay: 0.56s;
  }

  @keyframes pcSideTapeFallback {
    from {
      clip-path: inset(0 100% 0 0);
    }
    to {
      clip-path: inset(0 0 0 0);
    }
  }
}

/* ==========================================================================
   03. キービジュアル
   ========================================================================== */

#kvArea {
  position: relative;
  z-index: 1000;
  width: 100%;
  margin: 0;
  background: #000;
}

/* --------------------------------------------------------------------------
   リボン：右から左へ流れる無限ループ

   --ribon03-duration : 1周の時間（小さいほど速い）
   .ribon03 の比率     : 横75 : 縦8

   継ぎ目をなくすため、HTMLでは同じ画像を2枚連結しています。
   -------------------------------------------------------------------------- */
.ribon03 {
  --ribon03-duration: 30s;

  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 75 / 8;
  overflow: hidden;
  line-height: 0;
}

.ribon03Track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: ribonSlideLeft var(--ribon03-duration) linear infinite;
  will-change: transform;
}

.ribon03Item {
  display: block;
  flex: 0 0 auto;
  height: 100%;
}

.ribon03Item img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}
.ribon05 {
  --ribon05-duration: 30s;

  position: relative;
  z-index: 2;
  width: 120%;
  aspect-ratio: 75 / 8;
  overflow: hidden;
  line-height: 0;
  transform: rotate(3deg) translateX(-20px) translateY(-55px);
}

.ribon05Track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: ribonSlideLeft var(--ribon05-duration) linear infinite;
  will-change: transform;
}

.ribon05Item {
  display: block;
  flex: 0 0 auto;
  height: 100%;
}

.ribon05Item img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

@keyframes ribonSlideLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ribon03Track,
  .ribon05Track {
    animation-play-state: paused;
  }
}

/* --------------------------------------------------------------------------
   リボン：左から右へ流れる無限ループ
   -------------------------------------------------------------------------- */

.ribon09 {
  --ribon09-duration: 30s;

  position: relative;
  z-index: 2;
  width: 120%;
  aspect-ratio: 75 / 8;
  overflow: hidden;
  line-height: 0;
  transform: rotate(-3deg) translateX(-20px) translateY(-5px);
}

.ribon09Track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: ribonSlideRight var(--ribon09-duration) linear infinite;
  will-change: transform;
}

.ribon09Item {
  display: block;
  flex: 0 0 auto;
  height: 100%;
}

.ribon09Item img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

@keyframes ribonSlideRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ribon09Track {
    animation-play-state: paused;
  }
}

/* ==========================================================================
   04. ローディング
   ========================================================================== */

#loading {
  /* loadingBox の横幅。子要素はすべてこの値基準で可変 */
  --lbw: min(90vw, 62dvh, 500px);
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #000;
}

/* SP限定のカーテン演出(オレンジがフェードイン→フェードアウトしてローディングを終える)。PCでは使用しない */
#loadingCurtain {
  position: fixed;
  inset: 0;
  z-index: 1999;
  display: none;
  background: #eb5500;
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  #loadingCurtain {
    display: block;
  }
}

#loading.is-loaded {
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   初回表示の順番
   loading → pcSideTapes → その他コンテンツの順で表示する。
   JavaScriptで .is-intro を外すと、通常コンテンツがフェード表示される。
   -------------------------------------------------------------------------- */

.pcMainArea,
.pcAreaLabel,
.pcAnchorArea .navPanelInner {
  transition: opacity 0.7s ease;
}

body.is-intro .pcMainArea,
body.is-intro .pcAreaLabel,
body.is-intro .pcAnchorArea .navPanelInner {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#loadingBox {
  position: relative;
  width: 500px;
  height: 500px;
}

#loadingBox img {
  /* inline 由来の余白を除去し、高さも box 幅に完全比例させる */
  display: block;
  width: 100%;
}

#loadingBox .icon01 {
  position: absolute;
  top: 5%;
  left: 50%;
  z-index: 2;
  width: min(80%, 400px);
  transform: translateX(-50%);
}

#loadingBox .icon02 {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 1;
  width: min(68%, 340px);
  transform: translateX(-39%);
}

#progressWrapper {
  position: absolute;
  bottom: 1%;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 16px;
  align-items: center;
  width: min(72%, 360px);
  transform: translateX(-45%);
}

#container {
  position: relative;
  flex: 1;
  min-width: 0;
}

#progressWrapper .progressbar-text {
  position: static !important;
  top: auto !important;
  left: auto !important;
  flex: 0 0 auto;
  margin: 0;
  transform: none !important;
}

#loading .percent-symbol {
  margin-left: 0.1em;
  font-size: calc(var(--lbw) * 0.04);
}

#loading #container,
#loading #container svg {
  /* svg が inline だとベースライン分バーが下にずれるため block 化 */
  display: block;
  width: 100%;
  height: calc(var(--lbw) * 0.024);
}

/* ==========================================================================
   05. アンカーナビゲーション
   ========================================================================== */

/* 開閉ボタン */
.headerToggle {
  position: absolute;
  top: -1%;
  right: 3%;
  z-index: 10000;
  display: block;
  width: 14%;
  max-width: none;
  height: 10vw;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  background: none;
  border: 0;
  appearance: none;
}
.headerToggle.is-fixed {
  position: fixed;
}

/* ナビ表示中もスクロールバー領域を残し、横方向のガタつきを防ぐ */
html {
  scrollbar-gutter: stable;
}

html.isScrollLocked {
  overflow-y: scroll;
}

body.isScrollLocked {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/* ナビパネル本体 */
.navPanel {
  position: fixed;
  top: 0 !important;
  left: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  /* 外枠は透明のまま固定し、黒背景を持つ内側だけをカーテン状に動かす */
  transition: opacity 0s linear 0.8s;
}
.navPanel.is-fixed {
  top: 0;
  right: auto;
}
.isAnchorOpen .navPanel,
.isAnchorClosing .navPanel {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0s;
}
.navPanelInner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 10% 20%;
  overflow-y: auto;
  background: #000;
}
.navCloseButton {
  display: none;
}
.navBackdrop {
  display: none;
}
/* ナビ項目 */
ul.nav li {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: solid 1px #616161;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(22px);
  will-change: transform, opacity;
}
ul.nav li:last-child {
  padding: 0;
  margin: 0;
  border-bottom: none;
}
ul.nav li a {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  color: #000 !important;
}
ul.nav li a:hover {
  color: #b98c82 !important;
}

.isAnchorOpen ul.nav li {
  opacity: 1;
  transform: translateY(0);
}

.isAnchorOpen ul.nav li:nth-child(1) {
  transition-delay: 0.68s;
}
.isAnchorOpen ul.nav li:nth-child(2) {
  transition-delay: 0.74s;
}
.isAnchorOpen ul.nav li:nth-child(3) {
  transition-delay: 0.8s;
}
.isAnchorOpen ul.nav li:nth-child(4) {
  transition-delay: 0.86s;
}
.isAnchorOpen ul.nav li:nth-child(5) {
  transition-delay: 0.92s;
}
.isAnchorOpen ul.nav li:nth-child(6) {
  transition-delay: 0.98s;
}
.isAnchorOpen ul.nav li:nth-child(7) {
  transition-delay: 1.04s;
}

@keyframes pcNavItemIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   06. コンテンツ背景
   ========================================================================== */

.bg01 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 6% 50px;
  margin: 0 auto;
  text-align: left;
}
.bg02 {
  position: relative;
  z-index: 2;
  padding: 0 0 0;
  margin: 0 0 30px;
  background: #eb5500;
  transition: background-color 0.6s ease;
}
.bg02.is-dark {
  background: #000;
}
.bg03 {
  position: relative;
  z-index: 1;
  padding: 20px 0 1px;
  margin: 0 0 30px;
  background: #000;
}
.read {
  margin: 0 0 30px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
}
/* ==========================================================================
   08. 装飾ボックス
   ========================================================================== */

.box01 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 9% 40px 7%;
  margin: 0 auto 80px;
  background: url(../img/box01.png) 0 0 repeat-y;
  background-size: 100% auto;
}
.box01:before {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 681/120;
  margin: 0 auto;
  content: "";
  background: url(../img/box01-top.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
.box01:after {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 681/120;
  margin: 0 auto;
  content: "";
  background: url(../img/box01-bottom.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
/* ==========================================================================
   09. コンテンツ画像・開閉エリア
   ========================================================================== */

/* コンテンツ画像の個別サイズ */
.img {
  width: 88%;
  margin: 0 auto 30px;
}
.img01 {
  width: 85%;
  margin: 0 auto 20px;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.img01.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.img02,
.img03,
.img04,
.img05,
.img06,
.img07,
.img08,
.img09 {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.img02.is-inview,
.img03.is-inview,
.img04.is-inview,
.img05.is-inview,
.img06.is-inview,
.img07.is-inview,
.img08.is-inview,
.img09.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.img02 {
  width: 85%;
  margin: 0 auto 20px;
}
.img03 {
  width: 88%;
  margin: 0 auto 30px;
}
.img04 {
  width: 45%;
  margin: 0 auto 15px;
}
.img05 {
  width: 80%;
  margin: 0 auto 15px;
}
.img06 {
  width: 85%;
  margin: 0 auto 5px;
}
.img07 {
  width: 80%;
  margin: 0 auto 15px;
}
.img08 {
  width: 85%;
  margin: 0 auto 10px;
}
.img09 {
  width: 85%;
  margin: 0 auto 15px;
}
.img10 {
  width: 85%;
  margin: 0 auto 50px;
}

/* POP UP SHOP / WORKSHOP 開閉画像 */
#openImg[hidden] {
  display: none;
}
#openImg > img {
  width: 80%;
  margin: 0 auto 30px;
}
#workshopImg[hidden] {
  display: none;
}
#workshopImg > img {
  width: 80%;
  margin: 0 auto 30px;
}

/* ==========================================================================
   10. ボタン・汎用レイヤー
   ========================================================================== */

.btnImg {
  display: block;
  width: 80%;
  margin: 0 auto 20px;
}

.coution {
  font-size: 1.2rem;
  line-height: 1.6;
}
.coution a {
  text-decoration: underline;
}
.coution2 {
  width: 86%;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}
#anchor06 {
  position: relative;
  z-index: 3;
}
section {
  position: relative;
  z-index: 1;
}
/* ==========================================================================
   11. セクション見出し
   ========================================================================== */

.tit01 {
  position: relative;
  padding: 6% 6% 35px;
  margin: 0 0 30px;
  background: #000;
}
.tit01 img {
  width: 97%;
}
.tit02 {
  position: relative;
  padding: 6% 11% 30px;
  margin: 0 0 30px;
  background: #000;
}
.tit03 {
  position: relative;
  padding: 6% 11% 30px;
  margin: 0 0 30px;
  background: #000;
}
.tit04 {
  position: relative;
  padding: 6% 22% 30px;
  margin: 0 0 30px;
  background: #000;
}
.tit05 {
  position: relative;
  padding: 6% 6% 30px;
  margin: 0 0 30px;
  background: #000;
}
.tit06 {
  position: relative;
  padding: 6% 4% 30px;
  margin: 0 0 30px;
  background: #000;
}
.stit {
  width: 90%;
  margin: 0 auto 10px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3em;
  background: #b98c82;
  border-radius: 50px;
}
.stit01 {
  width: 80%;
  margin: 0 auto 5px;
}
.stit02 {
  width: 70%;
  margin: 0 auto 20px;
}
.stit03 {
  width: 70%;
  margin: 0 auto 25px;
}
.stit04 {
  width: 80%;
  margin: 0 auto 25px;
}
.stit05 {
  width: 100%;
  padding: 12px 12%;
  margin: 0 auto 25px;
  background: #eb5500;
}
.stit06 {
  width: 100%;
  margin: 0 auto 5px;
}
.stit11 {
  width: 85%;
  margin: 0 auto 20px;
}
/* ==========================================================================
   12. バナー・施設一覧
   ========================================================================== */

ul.facilities {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0 auto 40px;
}
ul.facilities li {
  width: calc(100% / 3 - 5px);
  margin: 0 0 8px;
}
/* 最後の要素を左寄せ */
ul.facilities::after {
  width: calc(100% / 3 - 5px);
  margin: 0 0 8px;
  content: "";
}

/* ==========================================================================
   13. フッター・SNS・ページトップ
   ========================================================================== */

.bgWhite {
  position: relative;
  z-index: 5;
  padding: 40px 0 1px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
}
footer {
  overflow: hidden;
  background: #fff;
}

#sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sns ul.sns:last-child {
  gap: 9.5%;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
ul.sns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center; /* 垂直方向の揃え */
  justify-content: space-between; /* 水平方向の揃え */
  width: calc(45% - 10px);
  padding: 0;
  margin: 0 auto 30px;
}
ul.sns li {
  width: 27%;
  font-weight: 700;
  white-space: nowrap;
}
ul.sns li a {
  width: 100%;
}
ul.sns li:nth-child(1) {
  width: 100%;
  padding: 0 0 5px;
  font-size: 1.4rem;
  text-align: center;
}

#goTop {
  position: fixed;
  /* PCでは pcMainArea 右端基準の位置をJSで --goTopRight に設定する(3カラムレイアウトのため画面右端基準だと中央カラムから離れて見える) */
  right: var(--goTopRight, 10px);
  bottom: 10px;
  z-index: 100000;
  width: 12%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

@media screen and (min-width: 769px) {
  #goTop {
    width: 48px;
  }
}
/* ==========================================================================
   14. SPレイアウト（768px以下）
   ========================================================================== */

@media screen and (max-width: 768px) {
  /* 要件対応: SPではリボンアニメーションを常時動作させる */
  .ribon03Track,
  .ribon05Track {
    animation-play-state: running !important;
  }

  .pcLayout {
    display: block;
    width: 100%;
    min-height: 100dvh;
  }

  .pcMainArea {
    /* SPは端末幅に追従させ、420px未満でも横にはみ出さない */
    width: 100%;
    min-width: 0;
    min-height: 100dvh;
    margin: 0 auto;
    overflow-x: hidden;
    /* SPにはpcSideTapesがないため、ローディング後は待たずに即時表示 */
    transition: none;
    position: relative;
    z-index: 1000;
  }

  .pcMainArea .main {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  #loadingBox {
    width: min(80vw, 380px);
    height: min(80vw, 380px);
    transform: translateX(-1.2vw) translateY(-8vh);
  }

  #loadingBox .icon01 {
    position: absolute;
    top: 2%;
    left: 50%;
    width: 100%;
    margin: 0;
    transform: translateX(-50%);
  }

  #loadingBox .icon02 {
    position: absolute;
    top: 27.5%;
    left: 51%;
    width: 85%;
    margin: 0;
  }

  #progressWrapper {
    top: auto;
    bottom: -20%;
    left: 55%;
    z-index: 3;
    width: min(72vw, 280px);
    margin: 0;
    transform: translateX(-50%);
  }

  #loading #container,
  #loading #container svg {
    height: 8px;
  }

  #loading .percent-symbol {
    font-size: 1.2rem;
  }

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

  .navCloseButton {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: block;
    width: 12%;
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    appearance: none;
  }

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

  .navPanelInner {
    padding-top: 64px;
  }

  /* SPナビ：黒背景を持つ内側だけを下からカーテン状に開閉する */
  .pcAnchorArea.navPanel .navPanelInner {
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateY(100%);
    will-change: transform;
  }

  body.isAnchorOpen .pcAnchorArea.navPanel .navPanelInner {
    transform: translateY(0);
  }

  body.isAnchorClosing .pcAnchorArea.navPanel .navPanelInner {
    transform: translateY(100%);
  }

  .pcAnchorArea {
    display: block;
    pointer-events: none;
  }

  body.isAnchorOpen .pcAnchorArea,
  body.isAnchorClosing .pcAnchorArea {
    pointer-events: auto;
  }

  ul.sns li:nth-child(1) {
    font-size: 1.1rem;
  }
}
/* ==========================================================================
   15. 状態表示・補助パーツ
   ========================================================================== */

/* ページトップ表示状態 */
#goTop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* IE11互換 */
@media all and (-ms-high-contrast: none) {
  svg {
    display: none;
  }
}
/* 時刻表・終了表示・補助テキスト */

.finish {
  position: relative;
}
.finish:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  white-space: pre-line;
  content: "ららぽーと堺での開催は\A終了しました";
  background: rgba(100, 100, 100, 0.7);
}

.navTit {
  position: relative;
  z-index: 4;
  width: 70%;
  margin: 0 auto 25px;
}
.read {
  padding: 60px 10%;
  margin: 0 auto;
}
ul.season {
  margin: 0 auto 50px;
}
ul.season li {
  margin: 0 0 20px;
}
ul.season li:nth-child(4) {
  width: 82%;
}
ul.season2 {
  margin: 0 auto 50px;
}
ul.season2 li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
  column-gap: 5px;
  margin: 0 0 20px;
  line-height: 1;
}
ul.season2 li > img {
  display: block;
  width: 100%;
  margin: 0 auto 5px 0;
}
ul.season2 li:nth-child(1) > img {
  width: 85%;
}
ul.season2 li:nth-child(2) > img {
  width: 82%;
}
ul.season2 li:nth-child(3) > img {
  width: 90%;
}
ul.season2 li:nth-child(4) > img {
  width: 82%;
}
ul.season2 li:nth-child(1) {
  width: 100%;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: solid 5px #eb5500;
}
ul.season2 li:nth-child(2) {
  width: 100%;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: solid 5px #eb5500;
}
ul.season2 li:nth-child(3) {
  width: 100%;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: solid 5px #eb5500;
}
ul.season2 li:nth-child(4) {
  width: 100%;
}
ul.season2 li > a {
  line-height: 1;
  width: calc((100% - 10px) / 3);
}
.bnr01 {
  margin: 0 auto 50px;
}
.wBox {
  box-sizing: border-box;
  width: 92%;
  padding: 0 0 30px;
  margin: 0 auto 30px;
  background: #fff;
  border: solid 5px #fff;
  box-shadow: inset 0 0 0 5px #333;
}
table.faciTable {
  width: 100%;
  margin: 0 auto 10px;
  color: #eb5500;
  /* テーブルのギャップ */
  border-collapse: separate;
}
table.faciTable th {
  font-size: clamp(1.1rem, 1.15vw, 1.35rem);
  font-weight: normal;
  line-height: 1.6;
  text-align: right;
  white-space: nowrap;
  padding: 0 10px 0 0;
}
table.faciTable td {
  font-size: clamp(1.1rem, 1.15vw, 1.35rem);
  line-height: 1.6;
}
.orange a {
  color: #eb5500;
}
.bagueBox {
  width: 97.5%;
  padding: 3% 4%;
  margin: 0 auto 15px;
  background: #f7bb99;
}
.box {
  width: 100%;
  padding: 5px 0;
  margin: 0 auto 10px;
  text-align: center;
  border: solid 1px #000;
}
.copy01 {
  width: 30%;
  margin: 0 4% 40px auto;
}
.icon_limited {
  width: 40%;
  margin: 0 auto 20px;
}

.icon_limited img {
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  table.faciTable th,
  table.faciTable td {
    font-size: clamp(1.05rem, 3.1vw, 1.25rem);
    line-height: 1.7;
  }
}
a.link {
  color: #eb5500;
}
.openCont {
  width: 80%;
  margin: 0 auto;
}



