.blank {
  width: 100%;
  height: 50px;
  top: 10px;
}
/* ========================================
   CSS変数の定義（カスタムプロパティ）
   ======================================== */
:root {
  /* カラーパレット */
  --color-primary: #ddccb0; /* メインベージュ */
  --color-secondary: #b98d3f; /* ゴールドボーダー */
  --color-text-primary: #000; /* 黒テキスト */
  --color-text-white: #fff; /* 白テキスト */
  --color-background-modal: #d9d9d9; /* モーダル背景 */
  --color-overlay: rgba(0, 0, 0, 0.75); /* オーバーレイ */

  /* フォントファミリー */
  --font-title: 'Abril Fatface', serif;
  --font-body: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans', sans-serif;
  --font-bodoni: 'Libre Bodoni', serif;
  --font-inter: 'Inter', sans-serif;

  /* サイズ */
  --viewport-width: 1440px;
  --viewport-height: 1080px;
  --section-width: 1008px; /* セクション幅 */
  --content-max-width: 840px; /* コンテンツ最大幅 */

  /* スペーシング */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 60px;
  --spacing-xl: 80px;

  /* トランジション */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* シャドウ */
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   リセットとベーススタイル
   ======================================== */
* {
  margin: 0; /* 全要素の外側余白をリセット */
  padding: 0; /* 全要素の内側余白をリセット */
  box-sizing: border-box; /* ボーダーとパディングを幅・高さに含める */
}

html {
  scroll-behavior: smooth; /* スムーススクロール有効化 */
}

body {
  font-family: var(--font-body); /* デフォルトフォント: Noto Serif JP */
  background: linear-gradient(135deg, #e8d7c3 0%, #c9b79c 100%);
  overflow-x: hidden; /* 横スクロール防止 */
  overflow-y: scroll; /* 縦スクロール有効 */
  padding: 40px 20px; /* パディング */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  align-items: center; /* 中央揃え */
  min-height: 100vh; /* 最小高さ */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* モーダルが開いている時のbodyスクロール防止 */
body.modal-open {
  overflow: hidden; /* スクロール無効化 */
  position: fixed; /* 位置固定 */
  width: 100%; /* 幅100% */
}
#bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  transition: background 0.8s cubic-bezier(0.5, 0.1, 0.5, 1);
}
#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
/* ========================================
  メインコンテナ：修正版
   ======================================== */
.hero-section {
  width: 100vw; /* 画面幅いっぱい */
  min-height: 100vh; /* 画面高いっぱい（上下空白を消す） */
  margin: 0;
  padding: 0;
  background: #085b66; /* or 画像のベタ色 */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center; /* 縦横中央揃え（テキストをど真ん中にしたい場合） */
}
.hero-container {
  position: relative;
  width: 1920px;
  height: 1080px;
  /* 上端・左端を明示的に0に指定(ズレ防止) */
  margin: 0;
  padding: 0;
  /* コンテナ内のはみ出しを非表示に */
  overflow: hidden;
}
.logo1,
.logo2,
.logo3,
.logo4,
.logo5 {
  opacity: 0;
}

.logo1 {
  position: absolute;
  top: 25.6dvh;
  left: 41.4dvw;
  width: 17%;
}
.logo2 {
  position: absolute;
  top: 33dvh;
  left: 36dvw;
  width: 28%;
}
.logo3 {
  position: absolute;
  top: 47dvh;
  left: 38dvw;
  width: 24%;
}
.logo4 {
  position: absolute;
  top: 52.5dvh;
  left: 36dvw;
  width: 28%;
}

.logo5 {
  position: absolute;
  top: 60.5dvh;
  left: 36dvw;
  width: 29%;
}

/* ========================================
   回転画像：共通スタイル
   - 絶対配置で画面中央(left: 50%)に配置
   - transform-origin: center bottomで下端を軸に回転
   ======================================== */
.rotate-image1,
.rotate-image2,
.rotate-image3,
.rotate-image4 {
  position: absolute;
  left: 50%; /* 中央基準 */
  transform-origin: center bottom; /* 下端を回転軸に */
  width: 100%; /* コンテナ幅いっぱいに表示 */
  object-fit: cover;
}

/* z-indexで重なり順を制御(数字が大きいほど手前) */
.rotate-image1 {
  z-index: 2; /* 左画像1枚目：後ろ */
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg) scale(1.5); /* 最初は左に倒れている、かつ中央外ポジション等 */
  transition: opacity 0s, transform 0s; /* 一瞬でも変化しないように（最短） */
}

.rotate-image2 {
  z-index: 3; /* 左画像2枚目：前 */
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg) scale(1.5); /* 最初は左に倒れている、かつ中央外ポジション等 */
  transition: opacity 0s, transform 0s; /* 一瞬でも変化しないように（最短） */
}

.rotate-image3 {
  z-index: 2; /* 右画像1枚目：後ろ */
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(90deg) scale(1.5); /* 右用の初期回転 */
  transition: opacity 0s, transform 0s;
}

.rotate-image4 {
  z-index: 3; /* 右画像2枚目：前 */
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(90deg) scale(1.5); /* 右用の初期回転 */
  transition: opacity 0s, transform 0s;
}

/* ========================================
   回転アニメーション：左右で異なる動き
   ======================================== */

/* 左画像用クラス：左回転から展開 */
.upLeft1 {
  opacity: 1;
  animation: rotateUpLeft 1s ease-out forwards;
  animation-fill-mode: forwards;
}
.upLeft2 {
  opacity: 1;
  animation: rotateUpLeft 2s ease-out forwards;
  animation-fill-mode: forwards;
} /* 
    - 1s: アニメーション時間1秒
    - ease-out: 開始は速く、終わりに向けて減速(自然な停止感)
    - forwards: アニメーション終了後も最終状態を維持
  */

/* 右画像用クラス：右回転から展開 */
.upRight1 {
  opacity: 1;
  animation: rotateUpRight 1.5s ease-out forwards;
  animation-fill-mode: forwards;
}
.upRight2 {
  opacity: 1;
  animation: rotateUpRight 2.5s ease-out forwards;
  animation-fill-mode: forwards;
}
/* 左回転アニメーション定義 */
@keyframes rotateUpLeft {
  0% {
    /* 初期状態：-90度回転(左に倒れた状態)、150%拡大、上下左右に-50%移動 */
    transform: translateX(-50%) translateY(-50%) rotate(-90deg) scale(150%);
  }
  100% {
    /* 最終状態：回転なし(0度)、サイズ100%、左に-50%移動のみ */
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
}

/* 右回転アニメーション定義 */
@keyframes rotateUpRight {
  0% {
    /* 初期状態：+90度回転(右に倒れた状態)、150%拡大、上下左右に-50%移動 */
    transform: translateX(-50%) translateY(-50%) rotate(90deg) scale(150%);
  }
  100% {
    /* 最終状態：回転なし、左に-50%移動のみ */
    transform: translateX(-50%) rotate(0deg);
  }
}

/* ========================================
   装飾要素(ornament)：共通スタイル
   - 初期状態は透明(opacity: 0)
   - 回転アニメ完了後にバウンスしながら登場
   ======================================== */
.ornament1,
.ornament2,
.ornament3,
.ornament4,
.ornament5,
.ornament6 {
  opacity: 0; /* 初期状態：非表示 */
  transition: opacity 2s; /* 透明度変化を0.3秒でスムーズに */
  position: absolute;
  z-index: 10; /* 回転画像(z-index: 2-3)より手前に表示 */
  width: 800px; /* 基本サイズ(個別に調整可能) */
  pointer-events: none; /* クリックイベントを無効化(背景要素として) */
}

/* バウンスアニメーション適用クラス */
.smoothBounce {
  animation: smoothBounceObj 2s cubic-bezier(0.19, 0.72, 0.41, 1.57) forwards;
  /* 
    - 0.8s: アニメーション時間0.8秒
    - cubic-bezier: カスタムイージング(バウンス感のある曲線)
    - forwards: 終了後も最終状態を維持
  */
}

/* 装飾要素の個別配置 */
.ornament1 {
  left: 3%;
  top: 0;
  width: 6%; /* サイズ調整 */
}

.ornament2 {
  left: 10%;
  top: 0;
  width: 1.7%;
}

.ornament3 {
  left: 27%;
  top: 0;
  width: 5.5%;
}

.ornament4 {
  left: 71.5%;
  top: 0;
  width: 6%;
}

.ornament5 {
  left: 78.5%;
  top: 5;
  width: 5.5%;
}

.ornament6 {
  left: 93.5%;
  top: -10;
  width: 1.7%;
}

.backornament1,
.backornament2,
.backornament3,
.backornament4,
.backornament5,
.backornament6 {
  opacity: 0; /* 初期状態：非表示 */
  position: absolute;
  pointer-events: none; /* クリックイベントを無効化(背景要素として) */
  transition: opacity 1.2s cubic-bezier(0.62, 0.17, 0.43, 0.93);
}
.backornament1 {
  left: 2%;
  top: 16%;
  width: 9%;
  z-index: 9; /* 装飾要素より後ろ */
}
.backornament2 {
  left: 6.7%;
  top: 6%;
  width: 8%;
  z-index: 9; /* 装飾要素より後ろ */
}
.backornament3 {
  left: 24%;
  top: 0.5%;
  width: 11%;
  z-index: 9; /* 装飾要素より後ろ */
}
.backornament4 {
  left: 70%;
  top: 10%;
  width: 9%;
  z-index: 9; /* 装飾要素より後ろ */
}
.backornament5 {
  left: 75%;
  top: 1%;
  width: 12%;
  z-index: 9; /* 装飾要素より後ろ */
}
.backornament6 {
  left: 90%;
  top: 9%;
  width: 8%;
  z-index: 9; /* 装飾要素より後ろ */
}
.backornament-glow {
  box-shadow: 0 0 40px 18px rgba(255, 255, 210, 1), 0 0 8px #fff;
  transition: box-shadow 0.7s cubic-bezier(0.62, 0.17, 0.43, 0.93);
}

/* ========================================
   オブジェクト要素(object)：共通スタイル
   - 初期状態は透明(opacity: 0)
   - 回転アニメ完了後に表示され、揺れ続ける
   - ★ smoothBounceは適用しない(即座にswingのみ)
   ======================================== */
.object1,
.object2,
.object3,
.object4,
.object5,
.object6,
.object7,
.object8,
.object9 {
  opacity: 0; /* 初期状態：非表示 */
  transform: scale(0.96);
  transition: opacity 1.2s cubic-bezier(0.24, 0.82, 0.51, 1.46),
    transform 1.2s cubic-bezier(0.24, 0.82, 0.51, 1.46);
  z-index: 15; /* 装飾要素(z-index: 10)よりさらに手前 */
  position: absolute;
  pointer-events: none; /* クリックイベント無効化 */
  transform-origin: center top; /* 上端を揺れの軸に(振り子のように) */
}
.object-appear {
  opacity: 1;
  transform: scale(1);
}
/* オブジェクトの個別配置 */
/*おもちゃの兵隊*/
.object1 {
  left: 79%;
  top: 15%;
  width: 7.2%;
}
/*ジンジャーブレッドマン*/
.object2 {
  left: 90%;
  top: 25%;
  width: 8%;
}
/*プレゼントBOX*/
.object3 {
  left: 91%;
  top: 48%;
  width: 8.5%;
}
/*ヒイラギ*/
.object4 {
  left: 81%;
  top: 59%;
  width: 15%;
}
/*キャンディケイン*/
.object5 {
  left: 4%;
  top: 61%;
  width: 8%;
}
/*オーナメント*/
.object6 {
  left: 13%;
  top: 43%;
  width: 10%;
}
/*靴下*/
.object7 {
  left: 3%;
  top: 30%;
  width: 7%;
}
/*ベル*/
.object8 {
  left: 14%;
  top: 28%;
  width: 12%;
}
/*ヒイラギ2*/
.object9 {
  left: 17%;
  top: 12%;
  width: 13%;
}

/* 揺れアニメーション適用クラス */
/*
    - 2s: 1周期2秒
    - ease-in-out: 滑らかな加減速(自然な揺れ)
    - infinite: 無限ループ
  */
.swing1 {
  animation: swing 2s ease-in-out infinite;
}
.swing2 {
  animation: swing 3s ease-in-out infinite;
}
.swing3 {
  animation: swing 4s ease-in-out infinite;
}
/* 揺れアニメーション定義 */
@keyframes swing {
  0% {
    transform: rotate(-6deg); /* 左に6度傾ける */
  }
  20% {
    transform: rotate(4deg); /* 右に4度傾ける */
  }
  40% {
    transform: rotate(-4deg); /* 左に4度傾ける */
  }
  60% {
    transform: rotate(6deg); /* 右に6度傾ける */
  }
  80% {
    transform: rotate(-2deg); /* 左に2度傾ける */
  }
  100% {
    transform: rotate(-6deg); /* 左に6度傾けて1周(0%に戻る) */
  }
}
@keyframes swing2 {
  0% {
    transform: rotate(6deg); /* 左に6度傾ける */
  }
  20% {
    transform: rotate(-4deg); /* 右に4度傾ける */
  }
  40% {
    transform: rotate(4deg); /* 左に4度傾ける */
  }
  60% {
    transform: rotate(-6deg); /* 右に6度傾ける */
  }
  80% {
    transform: rotate(2deg); /* 左に2度傾ける */
  }
  100% {
    transform: rotate(6deg); /* 左に6度傾けて1周(0%に戻る) */
  }
}
@keyframes swing3 {
  0% {
    transform: rotate(-4deg); /* 左に6度傾ける */
  }
  20% {
    transform: rotate(6deg); /* 右に4度傾ける */
  }
  40% {
    transform: rotate(-6deg); /* 左に4度傾ける */
  }
  60% {
    transform: rotate(4deg); /* 右に6度傾ける */
  }
  80% {
    transform: rotate(-8deg); /* 左に2度傾ける */
  }
  100% {
    transform: rotate(-4deg); /* 左に6度傾けて1周(0%に戻る) */
  }
}
.star1 {
  width: 4%;
  position: absolute;
  top: 5%;
  z-index: 20;
  left: 15%;
}
.star2 {
  width: 3%;
  position: absolute;
  top: 4%;
  z-index: 20;
  left: 45%;
}
.star3 {
  width: 4%;
  position: absolute;
  top: 4%;
  z-index: 20;
  left: 65%;
}
.star4 {
  width: 3%;
  position: absolute;
  top: 6%;
  z-index: 20;
  left: 88%;
}
.star5 {
  width: 5%;
  position: absolute;
  top: 40%;
  z-index: 20;
  left: 81%;
}
.star6 {
  width: 3%;
  position: absolute;
  top: 50%;
  z-index: 20;
  left: 83%;
}
.star7 {
  width: 3%;
  position: absolute;
  top: 30%;
  z-index: 20;
  left: 25%;
}
.star8 {
  width: 2%;
  position: absolute;
  top: 66%;
  z-index: 20;
  left: 95%;
}
.star9 {
  width: 5%;
  position: absolute;
  top: 47%;
  z-index: 20;
  left: 2%;
}
.star10 {
  width: 2%;
  position: absolute;
  top: 20%;
  z-index: 20;
  left: 2%;
}
.star11 {
  width: 2%;
  position: absolute;
  top: 25%;
  z-index: 20;
  left: 5%;
}
.star1,
.star2,
.star3,
.star4,
.star5,
.star6,
.star7,
.star8,
.star9,
.star10,
.star11 {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.65, 0, 0.65, 1); /* 出現・消灯どちらも滑らか */
}

/* ======================
       メインコンテナ
       ====================== */
.main-container {
  max-width: 1600px;
  margin: 0 auto;
}
content-wrapper
/* ======================
       ツリーセクション
       ====================== */
.tree-section {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.tree-wrapper {
  position: absolute;
  display: block;
  max-width: 1000px;
  width: 70%;
  left: 24%;
  top: 65%;
}

.tree-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.tree-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  color: #2c3e50;
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 500;
  text-align: center;
}

/* ======================
       電飾（交互点滅）
       ====================== */
.lights-container {
  width: 800%;
  margin: 0 0 0 30px;
  position: relative;
  z-index: 10;
  left: -40%;
  height: 120px;
}

.lights-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* グループ1（奇数番目の電球） */
.lights-odd {
  animation: flickerOdd 2s infinite ease-in-out;
}

/* グループ2（偶数番目の電球） */
.lights-even {
  animation: flickerEven 2s infinite ease-in-out;
}

@keyframes flickerOdd {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1.4) saturate(1.3)
      drop-shadow(0 0 8px rgba(255, 200, 100, 0.6));
  }
  50% {
    opacity: 0.3;
    filter: brightness(0.5) saturate(0.7)
      drop-shadow(0 0 2px rgba(255, 200, 100, 0.2));
  }
}

@keyframes flickerEven {
  0%,
  100% {
    opacity: 0.3;
    filter: brightness(0.5) saturate(0.7)
      drop-shadow(0 0 2px rgba(100, 200, 255, 0.2));
  }
  50% {
    opacity: 1;
    filter: brightness(1.4) saturate(1.3)
      drop-shadow(0 0 8px rgba(100, 200, 255, 0.6));
  }
}

/* ======================
       ナビゲーション全体
       ====================== */
.main-nav {
  max-width: 1600px;
  margin: 0 auto;
}

/* ======================
       PC表示：Flexboxで横並び
       ====================== */
.nav-grid {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
}

/* ======================
       各ナビゲーションリンク（基本スタイル）
       ====================== */
.nav-link {
  position: relative;
  display: block;
  overflow: visible;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-link:hover {
  transform: translateY(-8px);
}

/* ======================
       画像共通のスタイル
       ====================== */
.nav-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

.nav-image-base {
  position: relative;
  z-index: 1;
}

.nav-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nav-link:hover .nav-image-overlay {
  opacity: 1;
}

.nav-link:hover .nav-image-base {
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

/* ======================
       PC表示：個別の大きさと位置
       ====================== */

/* 屋台1：大きなシンボルツリー */
.nav-link:nth-child(1) {
  width: 280px;
  margin-bottom: 0px;
  /* margin-right: 20px; */
}

/* 屋台2：クリスマスマーケット */
.nav-link:nth-child(2) {
  width: 180px;
  margin-bottom: -50px;
}

/* 屋台3：クリスマス抽選会 */
.nav-link:nth-child(3) {
  width: 200px;
  margin-bottom: 10px;
  margin-right: 65px;
}

/* 屋台4：フォトスポット */
.nav-link:nth-child(4) {
  width: 180px;
  margin-bottom: -50px;
}

/* 屋台5：AR体験 */
.nav-link:nth-child(5) {
  width: 200px;
  margin-bottom: 5px;
}

/* ========================================
   ページセクション（各セクション）
   ======================================== */

.page-section {
  width: 100%; /* 画面幅いっぱい */
  display: flex; /* フレックスボックス */
  justify-content: center; /* 水平中央揃え */
  align-items: center; /* 垂直中央揃え */
  margin-bottom: 40px; /* セクション間の余白 */
  position: relative; /* 相対位置 */
  min-height: 100vh;
}

/* ========================================
   背景コンテナ（全セクション共通）
   ======================================== */
.container {
  width: var(--section-width); /* 固定幅: 1008px */
  height: 1778px; /* 固定高さ */
  background-color: var(--color-primary); /* ベージュ背景 */
  position: relative; /* 相対位置 */
  box-shadow: var(--shadow-lg); /* 大きな影 */
  overflow: hidden; /* オーバーフロー非表示 */
  flex-shrink: 0; /* 縮小しない */
  .container {
    background-color: transparent; /* もしくは rgba(221,204,176,0.7); など必要で半透明 */
  }
}

/* ========================================
   装飾フレーム本体（全セクション共通）
   ======================================== */
.frame {
  position: absolute; /* 絶対位置 */
  top: 41px; /* 上から41px */
  left: 34px; /* 左から34px */
  width: 940px; /* 固定幅 */
  height: 1696px; /* 固定高さ */
  display: flex; /* フレックスボックス */
  justify-content: center; /* 水平中央揃え */
  align-items: flex-start; /* 上端揃え */
}

/* ========================================
   SVGボーダー（全セクション共通）
   ======================================== */
.frame-border {
  position: absolute; /* 絶対位置 */
  top: 50%; /* 上から50% */
  left: 50%; /* 左から50% */
  transform: translate(-50%, -50%); /* 中央に配置 */
  pointer-events: none; /* クリックイベントを無視 */
  z-index: 1; /* レイヤー順序 */
}
.frame-corner {
  position: absolute;
  width: 100px; /* ← ここで絶対に80pxにする */
  height: auto; /* 縦横比を画像に合わせて自動調整 */
  max-width: none; /* ほかのmax-width指定を無効化 */
  object-fit: cover; /* はみ出し防止（必要に応じて） */
  z-index: 999;
}

/* 左上の角画像 */
.frame-corner--tl {
  top: 0;
  left: 0;
  transform: translate(-445%, -5%);

  /* 少し外側に逃がして、枠線と自然に重なるように調整 */
}

.frame-corner--br {
  right: 0;
  bottom: 0;
  transform: translate(430%, 1340%) !important;
}
.frame-corner--tr {
  top: 0;
  left: 0;
  transform: translate(430%, 5%) !important;
}
.frame-corner--bl {
  top: 0;
  left: 0;
  transform: translate(-430%, 1678%) !important;
}
.frame-corner--sp1 {
  top: 10px;
  left: 385px;
  position: absolute;
  width: 50px;
  z-index: 999;
}
.frame-corner--sp2 {
  top: 10px;
  left: 430px;
  position: absolute;
  width: 40px;
}
.frame-corner--sp3 {
  top: 30px;
  left: 480px;
  position: absolute;
  width: 50px;
}

.frame-corner--bl2 {
  width: 150px !important;
  height: auto !important;
  top: 50px;
  left: 50px;
  transform: translate(-325%, 1700%) !important;
  z-index: 9999 !important;
}

/* ========================================
   .frame-corner　アニメーション
   ======================================== */
/* リースにゆっくりしたbounceアニメーションを付ける */
.lease-bounce {
  animation: leaseBounce 2.5s ease-in-out infinite;
}

/* 自作のbounce（軽めの上下運動） */
@keyframes leaseBounce {
  0%,
  100% {
    transform: translate(-445%, -5%) translateY(0);
  }
  50% {
    transform: translate(-445%, -5%) translateY(-10px);
  }
}
/* 初回だけ1回アニメーションさせる例 */
.snowman {
  animation-duration: 1.2s;
  animation-iteration-count: 1;
}
.cockie-swing2 {
  animation: swing2 6s linear infinite;
  transform-origin: center bottom;
  display: inline-block;
}
/* .orna-anim1 {
  animation: swingX 3s ease-in-out infinite alternate;
  display: inline-block;
}
.orna-anim2 {
  animation: swingY 3s ease-in-out infinite alternate;
  display: inline-block;
}
.orna-anim3 {
  animation: swingZ 3s ease-in-out infinite alternate;
  display: inline-block;
}
@keyframes swingX {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(18deg);
  }
  50% {
    transform: rotate(-13deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes swingY {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swingZ {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
} */
/* 
  dome 1.webp、santaclaus 1.webp用のボックス風アニメ
  動き：最初左向き、途中で回転ゼロ＆y方向浮遊、最後右向き
*/
.dome-box-anim {
  animation: box-animation 3s ease-in-out infinite alternate;
  display: inline-block;
}
.santa-box-anim {
  animation: box-animation 3s ease-in-out infinite alternate;
  display: inline-block;
}
@keyframes box-animation {
  20% {
    transform: translate(0, 0) rotate(1deg);
  }
  40% {
    transform: rotate(-0.5deg);
  }
  60% {
    transform: translate(0, -7px) rotate(0.5deg);
  }
  80% {
    transform: rotate(-0.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.tree-box-anim {
  animation: box-animation 2.4s ease-in-out infinite;
  display: inline-block;
  /* 画像の位置や回転をこのdivでアニメ制御 */
}
@keyframes box-animation {
  20% {
    transform: translate(0, 0) rotate(1deg);
  }
  40% {
    transform: rotate(-0.5deg);
  }
  60% {
    transform: translate(0, -7px) rotate(0.5deg);
  }
  80% {
    transform: rotate(-0.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.bell-animetion {
  /* ベル用のアニメーション指定 */
  animation: bell-animetion 3s ease-in-out infinite alternate;
  display: inline-block; /* 画像にtransform効く！ */
}

/* ベルゆらゆらアニメーション（猿でもわかるコメント付き） */
@keyframes bell-animetion {
  20% {
    transform: rotate(0.2deg);
  }
  40% {
    transform: rotate(-0.1deg);
  }
  60% {
    transform: rotate(0.2deg);
  }
  80% {
    transform: rotate(-0.2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ========================================
   コンテンツエリア（全セクション共通）
   ======================================== */
.content {
  width: 100%; /* 幅100% */
  height: 100%; /* 高さ100% */
  position: relative; /* 相対位置 */
  z-index: 2; /* SVGボーダーより前面 */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  align-items: center; /* 水平中央揃え */
  max-width: var(--content-max-width); /* 最大幅: 840px */
  margin: 0 auto; /* 中央揃え */
  padding: var(--spacing-lg) 0 100px 0; /* パディング */
}

/* ========================================
   ■ セクション1: イルミネーション（大きなツリー）
   ======================================== */

/* メインタイトル */
#illumination .main-title {
  margin-top: 0px; /* 上から122px */
  width: var(--content-max-width); /* 固定幅: 840px */
  height: 159px; /* 固定高さ */
  color: var(--color-text-primary); /* 黒テキスト */
  text-align: center; /* 中央揃え */
  font-family: var(--font-title); /* Abril Fatface */
  font-size: 34px; /* フォントサイズ */
  font-style: normal; /* 通常スタイル */
  font-weight: 400; /* 標準の太さ */
  line-height: 53px; /* 行の高さ */
  display: flex; /* フレックスボックス */
  align-items: center; /* 垂直中央揃え */
  justify-content: center; /* 水平中央揃え */
}

/* 説明文 */
#illumination .description {
  margin-top: 55px; /* 上から55px */
  margin-bottom: 16px;
  width: 835px; /* 固定幅 */
  min-height: 95px; /* 最小高さ */
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-style: normal; /* 通常スタイル */
  font-weight: 400; /* 標準の太さ */
  line-height: 28px; /* 行の高さ */
  text-align: center;
}
#illumination .image-box {
  margin: 0; /* 段落の外側余白リセット */
  height: 900px;
  width: var(--content-max-width); /* 固定幅: 840px */
  background-image: url('./images/スークツリー1.webp');
  background-size: cover;
  background-position: center;
}
/* 
#illumination .main-image {
  margin-top: 72px;
  width: var(--content-max-width); 
  height: auto; 
  width: 100%; 
  object-fit: cover; 
  display: block; 
  border-radius: 5px; 
  box-shadow: var(--shadow-sm); 
}
*/
/* ARセクション */
#illumination .ar-section {
  margin-top: 77px; /* 上から77px */
  width: var(--content-max-width); /* 固定幅: 840px */
  display: flex; /* フレックスボックス */
  justify-content: space-between; /* 要素間に均等な間隔 */
  gap: var(--spacing-md); /* カード間の間隔: 40px */
}

/* ARカード */
#illumination .ar-card {
  width: 400px; /* 固定幅 */
  flex-shrink: 0; /* 縮小しない */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  align-items: center; /* 水平中央揃え */
}

/* AR画像 */
#illumination .ar-image {
  width: 100%; /* 幅100% */
  max-width: 400px; /* 最大幅 */
  height: auto; /* 高さ自動 */
  aspect-ratio: 10/7; /* アスペクト比10:7 */
  border-radius: 4px; /* 角を丸める */
  object-fit: cover; /* 画像を枠に合わせて切り抜き */
  margin-bottom: var(--spacing-sm); /* 下に20px余白 */
  box-shadow: var(--shadow-sm); /* 小さな影 */
}

/* AR説明文 */
#illumination .ar-description {
  width: 100%; /* 幅100% */
  max-width: 400px; /* 最大幅 */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  line-height: 28px; /* 行の高さ */
  color: var(--color-text-primary); /* 黒テキスト */
  text-align: left; /* 左揃え */
}
/*-----------------------------
鈴木さんアニメーションエリア
------------------------------*/

/* ========================================
   ■ セクション2: Christmas Market
   ======================================== */

/* マーケット専用コンテンツ */
.content--market {
  padding: var(--spacing-lg) 0; /* パディング調整 */
}

/* タイトルセクション */
#market .title-section {
  text-align: center; /* 中央揃え */
  margin-bottom: 62px; /* 下に62px余白 */
  position: relative; /* 相対位置 */
}

#market .main-title {
  width: 835px; /* 固定幅 */
  height: 43px; /* 固定高さ */
  color: var(--color-text-primary); /* 黒テキスト */
  text-align: center; /* 中央揃え */
  font-family: var(--font-title); /* Abril Fatface */
  font-size: 34px; /* フォントサイズ */
  font-style: normal; /* 通常スタイル */
  font-weight: 400; /* 標準の太さ */
  line-height: normal; /* 通常の行の高さ */
  margin: 0 auto; /* 中央揃え */
}

/* 雪だるまアニメーション */
.snowman-animation {
  position: absolute; /* 絶対位置 */
  top: -20px; /* 上から-20px */
  right: -100px; /* 右から-100px */
  width: 100px; /* 幅 */
  height: 100px; /* 高さ */
  cursor: pointer; /* ポインターカーソル */
}

/* 説明文 */
#market .description-text {
  width: 835px; /* 固定幅 */
  min-height: 112px; /* 最小高さ */
  margin: 0 auto 82px; /* 中央揃え、下に82px余白 */
}

#market .description-text p {
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  line-height: 28px; /* 行の高さ */
  text-align: center; /* 左揃え */
}

/* メイン画像 */
#market .main-image {
  width: 840px; /* 固定幅 */
  height: 560px; /* 固定高さ */
  margin: 0 auto 88px; /* 中央揃え、下に88px余白 */
  overflow: hidden; /* オーバーフロー非表示 */
  border-radius: 5px; /* 角を丸める */
}

#market .main-image img {
  width: 100%; /* 幅100% */
  height: 100%; /* 高さ100% */
  object-fit: cover; /* 画像を枠に合わせて切り抜き */
  object-position: center; /* 中央配置 */
}

/* Foods/Goodsセクション */
#market .category-section {
  display: flex; /* フレックスボックス */
  justify-content: center; /* 中央揃え */
  gap: 114px; /* 項目間の間隔 */
  margin: 0 auto 50px; /* 中央揃え、下に50px余白 */
}

.category-item {
  cursor: pointer; /* ポインターカーソル */
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  /* ホバー時の変化アニメーション */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  align-items: center; /* 水平中央揃え */
}

.category-item:hover {
  transform: translateY(-5px); /* 上に5px移動 */
}

.category-item:hover .category-image {
  box-shadow: var(--shadow-md); /* 影を濃く */
}

.category-image {
  width: 227px; /* 固定幅 */
  height: 315px; /* 固定高さ */
  flex-shrink: 0; /* 縮小しない */
  background-size: cover; /* 背景画像をカバー */
  background-position: 50%; /* 中央配置 */
  background-repeat: no-repeat; /* 繰り返しなし */
  border-radius: 5px; /* 角を丸める */
  box-shadow: var(--shadow-sm); /* 小さな影 */
  transition: box-shadow var(--transition-normal); /* 影の変化 */
}

.category-label {
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 24px; /* フォントサイズ */
  font-weight: 600; /* 太字 */
  line-height: 28px; /* 行の高さ */
  margin-top: 22px; /* 上に22px余白 */
  text-align: center; /* 中央揃え */
}

/* 出店ラインアップ */
#market .lineup-section {
  width: 840px; /* 固定幅 */
  min-height: 140px; /* 最小高さ */
  margin: 0 auto; /* 中央揃え */
}

#market .lineup-section p {
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  line-height: px; /* 行の高さ */
  text-align: left; /* 左揃え */
}

#market .lineup-section strong {
  font-weight: 700; /* 太字 */
}

/* ========================================
   ■ モーダルウィンドウ（Foods/Goods共通）
   ======================================== */
.modal {
  display: none; /* 初期状態は非表示 */
  position: fixed; /* 画面に固定 */
  top: 0; /* 上端から0px */
  left: 0; /* 左端から0px */
  width: 100%; /* 幅100% */
  height: 100%; /* 高さ100% */
  background-color: var(--color-overlay); /* 半透明黒背景 */
  z-index: 2000; /* 最前面に表示 */
  overflow: hidden; /* スクロール無効 */
}

.modal.active {
  display: flex; /* フレックスボックスで表示 */
  justify-content: center; /* 水平中央揃え */
  align-items: center; /* 垂直中央揃え */
}

.modal-content {
  background-color: var(--color-primary); /* ベージュ背景 */
  width: 90%; /* 幅90% */
  max-width: 800px; /* 最大幅 */
  max-height: 85vh; /* 最大高さ */
  border-radius: 10px; /* 角を丸める */
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5); /* 大きな影 */
  position: relative; /* 相対位置 */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  overflow: hidden; /* オーバーフロー非表示 */
}

/* Foodsモーダルヘッダー */
.modal-header-foods {
  background-color: var(--color-background-modal); /* グレー背景 */
  color: var(--color-text-primary); /* 黒テキスト */
  padding: var(--spacing-md) 25px; /* パディング */
  text-align: center; /* 中央揃え */
  position: relative; /* 相対位置 */
  flex-shrink: 0; /* 縮小しない */
}

.modal-header-foods h2 {
  font-family: var(--font-sans); /* Noto Sans */
  font-size: 32px; /* フォントサイズ */
  font-weight: 700; /* 太字 */
  line-height: 51.83px; /* 行の高さ */
  margin: 0; /* マージン削除 */
}

/* Foodsモーダルボディ */
.modal-body-foods {
  padding: var(--spacing-lg) var(--spacing-md); /* パディング */
  overflow-y: auto; /* 縦スクロール有効 */
  flex-grow: 1; /* 残りのスペースを占める */
  background-color: var(--color-background-modal); /* グレー背景 */
  max-height: calc(85vh - 132px); /* 最大高さ */
}

.food-item {
  margin-bottom: 75px; /* 下に75px余白 */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  align-items: center; /* 水平中央揃え */
}

.food-item:last-child {
  margin-bottom: 0; /* 最後の項目は下余白なし */
}

.food-image {
  width: 100%; /* 幅100% */
  max-width: 400px; /* 最大幅 */
  height: auto; /* 高さ自動 */
  aspect-ratio: 10/7; /* アスペクト比10:7 */
  object-fit: cover; /* 画像を枠に合わせて切り抜き */
  border-radius: 8px; /* 角を丸める */
  margin-bottom: 22px; /* 下に22px余白 */
  box-shadow: var(--shadow-sm); /* 小さな影 */
}

.food-title {
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-sans); /* Noto Sans */
  font-size: 20px; /* フォントサイズ */
  font-weight: 700; /* 太字 */
  line-height: normal; /* 通常の行の高さ */
  margin-bottom: 21px; /* 下に21px余白 */
  width: 100%; /* 幅100% */
  max-width: 400px; /* 最大幅 */
  text-align: left; /* 左揃え */
}

.food-description {
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  line-height: 28px; /* 行の高さ */
  width: 100%; /* 幅100% */
  max-width: 414px; /* 最大幅 */
  text-align: left; /* 左揃え */
}

/* スクロールバーのカスタマイズ */
.modal-body-foods::-webkit-scrollbar {
  width: 10px; /* 幅 */
}

.modal-body-foods::-webkit-scrollbar-track {
  background: #c0c0c0; /* トラック背景 */
  border-radius: 10px; /* 角を丸める */
}

.modal-body-foods::-webkit-scrollbar-thumb {
  background: #808080; /* つまみ背景 */
  border-radius: 10px; /* 角を丸める */
}

.modal-body-foods::-webkit-scrollbar-thumb:hover {
  background: #606060; /* ホバー時の色 */
}

/* Goodsモーダル（Foodsと同じスタイル） */
.modal-header-goods {
  background-color: var(--color-background-modal);
  color: var(--color-text-primary);
  padding: var(--spacing-md) 25px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.modal-header-goods h2 {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 51.83px;
  margin: 0;
}

.modal-body-goods {
  padding: var(--spacing-lg) var(--spacing-md);
  overflow-y: auto;
  flex-grow: 1;
  background-color: var(--color-background-modal);
  max-height: calc(85vh - 132px);
}

.goods-item {
  margin-bottom: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goods-item:last-child {
  margin-bottom: 0;
}

.goods-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 10/7;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.goods-title {
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 21px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.goods-description {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  width: 100%;
  max-width: 414px;
  text-align: left;
}

.modal-body-goods::-webkit-scrollbar {
  width: 10px;
}

.modal-body-goods::-webkit-scrollbar-track {
  background: #c0c0c0;
  border-radius: 10px;
}

.modal-body-goods::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 10px;
}

.modal-body-goods::-webkit-scrollbar-thumb:hover {
  background: #606060;
}

/* 閉じるボタン */
.close-btn {
  position: absolute; /* 絶対位置 */
  top: 15px; /* 上から15px */
  right: 20px; /* 右から20px */
  font-size: 40px; /* フォントサイズ */
  color: var(--color-text-white); /* 白テキスト */
  cursor: pointer; /* ポインターカーソル */
  background: none; /* 背景なし */
  border: none; /* ボーダーなし */
  line-height: 1; /* 行の高さ */
  transition: transform var(--transition-fast), color var(--transition-fast);
  /* ホバー時の変化アニメーション */
}

.close-btn:hover,
.close-btn:focus {
  transform: scale(1.2) rotate(90deg); /* 拡大・回転 */
  color: #ffd700; /* ゴールドに変化 */
}

/* ========================================
   ■ セクション3: クリスマス抽選会
   ======================================== */

/* 抽選会コンテナ */
.christmas-lottery-container {
  width: 100%; /* 幅100% */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  align-items: center; /* 水平中央揃え */
}

/* メインタイトル */
#lottery .main-title {
  margin-top: -50px;
  margin-bottom: -20px;
  width: 840px; /* 固定幅 */
  height: 159px; /* 固定高さ */
  font-family: var(--font-title); /* Abril Fatface */
  font-size: 40px; /* フォントサイズ */
  font-style: normal; /* 通常スタイル */
  font-weight: 400; /* 標準の太さ */
  line-height: 53px; /* 行の高さ */
  color: var(--color-text-primary); /* 黒テキスト */
  text-align: center; /* 中央揃え */
  display: flex; /* フレックスボックス */
  align-items: center; /* 垂直中央揃え */
  justify-content: center; /* 水平中央揃え */
}

/* キャンペーン説明文 */
.campaign-description {
  margin-top: -10px; /* 上から36px */
  width: 835px; /* 固定幅 */
  min-height: 112px; /* 最小高さ */
  color: var(--color-text-primary); /* 黒テキスト */
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  line-height: 28px; /* 行の高さ */
  text-align: center;
}

/* ========================================
   チケットカード - SVGフレーム版
   ======================================== */

/* チケットカード共通スタイル（既存を上書き） */
.ticket-card {
  margin-top: 10px; /* 上から10px */
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 724px;
  height: 225px;
}

/* チケットコンテンツ（既存を上書き） */
.ticket-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* チケットタイトル */
.ticket-title {
  color: #000;
  font-family: 'Libre Bodoni', serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px;
}

/* チケット金額 */
.ticket-amount {
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* チケット特典 */
.ticket-benefits {
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.ticket-benefits p {
  margin: 2px 0;
}

/* ショップ紹介セクション */
.shop-introduction {
  margin-top: 48px; /* 上から48px */
  width: 840px; /* 固定幅 */
  display: flex; /* フレックスボックス */
  justify-content: space-between; /* 要素間に均等な間隔 */
  gap: 40px; /* 間隔 */
  align-items: center; /* 垂直中央揃え */
}

/* ショップ画像 */
.shop-image {
  width: 400px; /* 固定幅 */
  height: 280px; /* 固定高さ */
  flex-shrink: 0; /* 縮小しない */
}

.shop-image img {
  width: 100%; /* 幅100% */
  height: 100%; /* 高さ100% */
  object-fit: cover; /* 画像を枠に合わせて切り抜き */
  border-radius: 5px; /* 角を丸める */
  box-shadow: var(--shadow-sm); /* 小さな影 */
}

/* ショップ情報 */
.shop-info {
  flex: 1; /* 残りのスペースを占める */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
}

/* ショップ名 */
.shop-name {
  font-family: var(--font-sans); /* Noto Sans */
  font-size: 20px; /* フォントサイズ */
  font-weight: 700; /* 太字 */
  color: var(--color-text-primary); /* 黒テキスト */
  margin-bottom: 16px; /* 下に16px余白 */
  line-height: 1.5; /* 行の高さ */
}

/* ショップ説明 */
.shop-description {
  font-family: var(--font-body); /* Noto Serif JP */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  color: var(--color-text-primary); /* 黒テキスト */
  line-height: 28px; /* 行の高さ */
}

/* エコバッグセクション */
.ecobag-section {
  margin-top: 48px; /* 上から48px */
  width: 840px; /* 固定幅 */
  display: flex; /* フレックスボックス */
  justify-content: space-between; /* 要素間に均等な間隔 */
  gap: 40px; /* 間隔 */
  align-items: center; /* 垂直中央揃え */
}

/* エコバッグ画像 */
.ecobag-image {
  width: 400px; /* 固定幅 */
  height: 280px; /* 固定高さ */
  flex-shrink: 0; /* 縮小しない */
}

.ecobag-image img {
  width: 100%; /* 幅100% */
  height: 100%; /* 高さ100% */
  object-fit: cover; /* 画像を枠に合わせて切り抜き */
  border-radius: 5px; /* 角を丸める */
  box-shadow: var(--shadow-sm); /* 小さな影 */
}

/* エコバッグ情報 */
.ecobag-info {
  flex: 1; /* 残りのスペースを占める */
  display: flex; /* フレックスボックス */
  flex-direction: column; /* 縦方向に配置 */
  justify-content: center; /* 垂直中央揃え */
}

/* エコバッグ説明 */
.ecobag-description {
  font-family: var(--font-body); /* Inter */
  font-size: 16px; /* フォントサイズ */
  font-weight: 400; /* 標準の太さ */
  color: var(--color-text-primary); /* 黒テキスト */
  line-height: 28px; /* 行の高さ */
}

/* ========================================
   ■ セクション4&5: Photo spot / クリスマスのAR体験
   ======================================== */

#photo-spot .main-title,
#ar-experience .main-title {
  margin-top: -70px;
  width: var(--content-max-width);
  height: 159px;
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-title);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#photo-spot .description,
#ar-experience .description {
  margin-top: 3px;
  max-width: 835px;
  width: 100%;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

#photo-spot .main-image,
#ar-experience .main-image {
  margin-top: 42px;
  width: 100%;
  max-width: 840px;
  height: auto;
  aspect-ratio: 840/560;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.sub-title {
  padding-top: 15px;
  position: relative;
  left: -12rem;
}
.sub-title h2 {
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-style: normal;
  text-align: start;
  margin-bottom: 10px;
}
.sub-title p {
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-style: bold;
  text-align: start;
}

#photo-spot .ar-section,
#ar-experience .ar-section {
  margin-top: 48px;
  width: 100%;
  max-width: 840px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

#photo-spot .ar-card,
#ar-experience .ar-card {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#photo-spot .ar-image,
#ar-experience .ar-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 10/7;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#photo-spot .ar-description,
#ar-experience .ar-description {
  width: 100%;
  max-width: 400px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text-primary);
  text-align: left;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/*--------------------------------------------
/______footer_________________________________
---------------------------------------------*/

/* デモ用のメインコンテンツエリア */
main {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== フッター本体 ===== */
.site-footer {
  position: relative;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #0a0f1f 0%, #343652 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  width: 100vw;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== グリッドレイアウト ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* ===== フェードインアニメーション ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== About セクション ===== */
.footer-about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-about p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* ===== ソーシャルメディアリンク ===== */
.social-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #d4af37;
}

.social-link:hover {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
}

.social-link:focus {
  outline: 2px solid #d4af37;
  outline-offset: 3px;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ===== Quick Links セクション ===== */
.footer-links h3 {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  font-size: 14px;
  opacity: 0.8;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:focus {
  outline: 2px solid #d4af37;
  outline-offset: 3px;
}

/* ===== Contact セクション ===== */
.footer-contact h3 {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-contact address {
  font-style: normal;
  font-size: 14px;
  color: white;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact .venue-name {
  color: #d4af37;
  font-weight: 600;
  font-size: 15px;
}

.footer-contact .access-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact .access-info p {
  margin-bottom: 0.3rem;
}

/* ===== ボトムバー ===== */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
/* =====================
    スマホ・タブレット対応（768px以下）
====================== */
@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }
  .tree-wrapper {
    width: 90%;
    max-width: 440px;
  }
  .tree-text {
    font-size: 0.75rem;
    line-height: 1.7;
    top: 20%;
  }
  .lights-container {
    margin-bottom: 20px;
    height: 50px;
  }
  .nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: end;
    justify-items: center;
  }
  /* ---以下、スマホでもホバー効果を有効化--- */
  .nav-link:active .nav-image-overlay {
    opacity: 1;
  }
  .nav-link:active {
    transform: translateY(-4px);
  }
  /* 1行目：TREE + MARKET（2つ並び） */
  .nav-link:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    width: 180px;
    margin-bottom: 0px;
    margin-right: 0;
    justify-self: end;
    margin-right: 40px;
  }
  .nav-link:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
    width: 100px;
    margin-bottom: -15px;
    margin-right: 0;
    justify-self: start;
    margin-left: 120px;
  }
  /* 2行目：PRESENT + PHOTO + AR（3つ並び） */
  .nav-link:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2;
    width: 120px;
    margin-bottom: 5px;
    margin-right: 0;
  }
  .nav-link:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2;
    width: 120px;
    margin-bottom: -70px;
    margin-right: 0;
  }
  .nav-link:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2;
    width: 130px;
    margin-bottom: -50px;
    margin-right: 0;
  }
}

/* =====================
    タブレット対応（769px〜1024px）
====================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .tree-wrapper {
    width: 65%;
  }
  .nav-link:nth-child(1) {
    width: 300px;
  }
  .nav-link:nth-child(2),
  .nav-link:nth-child(3),
  .nav-link:nth-child(4),
  .nav-link:nth-child(5) {
    width: 220px;
  }
}

/* =====================
    タブレット・小型デスクトップ（1200px以下）
====================== */
@media (max-width: 1200px) {
  :root {
    --section-width: 900px;
    --content-max-width: 750px;
  }
  .container {
    width: var(--section-width);
  }
  .main-title {
    font-size: 30px;
    line-height: 48px;
  }
  .description,
  .description-text,
  .campaign-description {
    font-size: 15px;
    line-height: 26px;
  }
  .main-image {
    width: 100%;
    height: auto;
  }
  .ar-section {
    gap: 30px;
  }
  .ar-card {
    width: 350px;
  }
  .ar-image {
    max-width: 350px;
  }
  .ar-description {
    max-width: 350px;
    font-size: 15px;
    line-height: 26px;
  }
  .category-section {
    gap: 80px;
  }
  .category-image {
    width: 200px;
    height: 280px;
  }
  .ticket-card {
    width: 600px;
    height: 200px;
  }
  .ticket-inner,
  .ticket-content {
    width: 500px;
    height: 120px;
  }
  .shop-introduction,
  .ecobag-section {
    width: 750px;
    gap: 30px;
  }
}

/* =====================
    タブレット（1050px以下）
====================== */
@media (max-width: 1050px) {
  :root {
    --section-width: 95%;
    --content-max-width: 90%;
  }
  .page-section {
    height: auto;
    min-height: auto;
    padding: var(--spacing-md) 0;
  }
  .container {
    width: 95%;
    height: auto;
    min-height: auto;
  }
  .frame {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 34px;
  }
  .frame-border {
    display: none;
  }
  .content {
    max-width: 100%;
    padding: var(--spacing-md) var(--spacing-sm);
  }
  .main-title {
    width: 100%;
    font-size: 26px;
    margin-top: var(--spacing-lg);
  }
  .ar-section {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  .ar-card {
    width: 100%;
    max-width: 400px;
  }
  .ar-image,
  .ar-description {
    max-width: 100%;
  }
  .category-section {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .ticket-card {
    width: 90%;
    max-width: 600px;
  }
  .shop-introduction,
  .ecobag-section {
    flex-direction: column;
    width: 100%;
  }
  .shop-image,
  .ecobag-image {
    width: 100%;
    max-width: 400px;
  }
}

/* =====================
    スマートフォン（768px以下）
====================== */
@media (max-width: 768px) {
  :root {
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 40px;
    --spacing-xl: 50px;
  }
  .page-section {
    padding: var(--spacing-sm) 0;
  }
  .container {
    width: 98%;
  }
  .frame {
    padding: 20px;
  }
  .content {
    padding: var(--spacing-md) var(--spacing-xs);
  }
  .main-title {
    font-size: 22px;
    line-height: 36px;
    margin-top: var(--spacing-md);
  }
  .description,
  .description-text p,
  .campaign-description {
    font-size: 14px;
    line-height: 24px;
  }
  .main-image {
    margin-top: var(--spacing-md);
  }
  .ar-section {
    margin-top: var(--spacing-md);
  }
  .ar-description {
    font-size: 14px;
    line-height: 24px;
  }
  .category-label {
    font-size: 20px;
  }
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  .modal-header-foods h2,
  .modal-header-goods h2 {
    font-size: 26px;
    line-height: 40px;
  }
  .modal-body-foods,
  .modal-body-goods {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  .food-title,
  .goods-title {
    font-size: 18px;
  }
  .food-description,
  .goods-description {
    font-size: 14px;
    line-height: 24px;
  }
  .food-item,
  .goods-item {
    margin-bottom: 50px;
  }
  .snowman-animation {
    right: 10px;
    width: 70px;
    height: 70px;
  }
  .ticket-card {
    width: 95%;
    height: auto;
    min-height: 180px;
  }
  .ticket-title {
    font-size: 22px;
  }
  .ticket-amount {
    font-size: 12px;
  }
  .ticket-benefits {
    font-size: 11px;
  }
  .shop-name {
    font-size: 18px;
  }
  .shop-description,
  .ecobag-description {
    font-size: 14px;
    line-height: 24px;
  }
}

/* =====================
    小型スマートフォン（480px以下）
====================== */
@media (max-width: 480px) {
  .container {
    width: 100%;
  }
  .frame {
    padding: 15px;
  }
  .main-title {
    font-size: 20px;
    line-height: 32px;
  }
  .description,
  .description-text p,
  .campaign-description {
    text-align: center;
    font-size: 13px;
    line-height: 22px;
  }
  .category-image {
    width: 180px;
    height: 250px;
  }
  .category-label {
    font-size: 18px;
  }
  .ticket-card {
    width: 100%;
    min-height: 160px;
  }
  .ticket-title {
    font-size: 20px;
  }
  .ticket-amount {
    font-size: 11px;
  }
  .ticket-benefits {
    font-size: 10px;
  }
}

/* =====================
    印刷用スタイル
====================== */
@media print {
  body {
    background: white;
  }
  .frame-border {
    display: none;
  }
  .modal {
    display: none;
  }
  .page-section {
    page-break-after: always;
  }
  .snowman-animation {
    display: none;
  }
}

/* ===== フッター本体 ===== */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
