/* ========================================
   EAT JAPAN! 2026 - Main Stylesheet
   ======================================== */

/* ----- リセット & ベース ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
z
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   イントロ動画オーバーレイ
   ======================================== */
.introContainer {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.introVideo {
  max-height: 99vh;
}

.intro-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  transition: opacity 0.6s ease;
}

.intro-video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-video-overlay.is-done {
  opacity: 0;
  pointer-events: none;
}

/* ========================================
   PC 3カラムレイアウト
   ======================================== */
.wrapper {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url('../assets/bg_pc.jpg');
  background-size: cover;
  background-position: center;
}

/* ----- 左パネル ----- */
.panel-left {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.panel-left-message {
  position: absolute;
  right: clamp(4px, 4%, 70px);
  top: 71%;
  transform: translateY(-55%);
  width: clamp(120px, 22vw, 500px);
  z-index: 2;
  pointer-events: none;
}

.panel-left-logo {
  position: absolute;
  top: clamp(16px, 10vh, 150px);
  left: 40%;
  transform: translateX(-50%);
  width: clamp(120px, 15vw, 300px);
  z-index: 2;
  pointer-events: none;
}

/* ----- スマホコンテンツエリア ----- */
.phone-container {
  width: 390px;
  flex-shrink: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 10;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.phone-frame {
  min-height: 100%;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

/* ---- PC右パネル ----- */
.panel-right {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.admission-free-badge {
  position: absolute;
  left: 2.2vw;
  top: 92%;
  transform: translateY(-50%);
  width: clamp(28px, 1.6vw, 50px);
  z-index: 5;
  pointer-events: none;
}

/* 右パネルのナビゲーション */
.panel-nav {
  position: relative;
  z-index: 2;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16vh;
  /* padding-bottom: 10px; */
  padding-right: 52%;
  padding-left: 6%;
  gap: 0;
  overflow: hidden;
}

.panel-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 57%;        /* 左右交互のためmargin-autoが効く幅 */
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex: 1 1 0;
  max-height: clamp(80px, 7vh, 140px);
  justify-content: center;
}

.panel-nav-btn:hover {
  transform: translateY(5px);
  opacity: 0.88;
}

.panel-nav-btn.panel-nav-btn--soon {
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
  /* max-height: clamp(88px, 12vh, 120px); */
  position: relative;
}

.btn-pos--left {
  margin-right: auto;
  margin-left: 0;
}

.btn-pos--right {
  margin-left: auto;
  margin-right: 0;
}

/* ボタン画像：高さはボタン枠に合わせて縮小 */
.panel-nav-btn > img {
  width: 100%;
  /* height: 100%; */
  display: block;
  object-fit: contain;
  object-position: center;
}

.coming-soon-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(8px, 0.8vw, 11px);
  color: rgba(60, 30, 5, 0.7);
  letter-spacing: 0.04em;
  /* margin-top: 1px; */
  text-align: center;
  position: absolute;
  flex-shrink: 0;
}

/* ========================================
   サイトヘッダー
   ======================================== */
.site-header {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 14px;
  background: linear-gradient(rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0%);
}

.header-logo img {
  height: 44px;
  width: auto;
}

.menu-btn {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #2c3e50;
  border: none;
  cursor: pointer;
  padding: 8px 9px;
  border-radius: 4px;
  color: #fff;
  transform: translate(0%, 50%);
}

.menu-btn-label {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-icon span {
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================================
   ハンバーガーメニューオーバーレイ
   ======================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(36, 59, 85, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-overlay-inner {
  margin-left: 4rem;
}

.menu-logo {
  margin-top: 2rem;
}

.menu-logo img {
  width: 90%;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.menu-link {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: #fff;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.menu-link:hover {
  color: #f5c400;
  transform: scale(1.05);
}

.menu-sns {
  width: 15%;
}

/* ========================================
   ファーストビュー
   ======================================== */
.section-firstview {
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  /* max-height: 80vh;
  overflow: hidden; */
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ビデオコントロール */
.video-controls {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  padding-top: 20px;
  display: none;
}

.vc-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 13px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.vc-btn:hover {
  background: rgba(255,255,255,0.4);
}

.vc-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.vc-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.1s linear;
}

/* ヒーロースクロール（動画と重なるオーバーラップ実装） */
.hero-scroll-outer {
  position: relative;
  z-index: 5;
  margin-top: -300px;
  background: transparent;
  overflow: visible;
  padding: 0;
}

.hero-scroll-clip {
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
}

.hero-scroll-track {
  display: flex;
  animation: heroMarquee 50s linear infinite;
  width: max-content;
  cursor: grab;
  user-select: none;
}

.hero-scroll-track:active {
  cursor: grabbing;
}

.hero-scroll-outer,
.hero-scroll-track {
  touch-action: pan-y;
}

@keyframes heroMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-scroll-set {
  display: flex;
  gap: 30px;
  padding: 0;
  padding-right: 30px;
}

.hero-item {
  flex-shrink: 0;
  width: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 0.2s ease;
}

.hero-item:hover {
  opacity: 0.8;
}

.hero-item img {
  height: 300px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  display: block;
}

.hero-item-label {
  display: none;
}

/* ========================================
   セクション共通
   ======================================== */
.section-title-wrap {
  padding: 0 0 12px 10px;
}

.section-title-flex {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 10px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 32px;
  color: #2b2521;
  letter-spacing: 0.02em;
  display: block;
  line-height: normal;
}

.view-more-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2b2521;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}

.view-more-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #e86c3c;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 4px;
}

/* ========================================
   INFORMATION セクション
   ======================================== */
.section-information {
  position: relative;
  /*
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  overflow: hidden;
  padding: 100px 0 100px;
  */
}

/* .section-information {
  padding: 0 0 40px;
  position: relative;
  background-image: url('../assets/information_bg.png');
  background-size: cover;
  background-position: center;
  background-color: #f8f2e8;
}
 */

.space-video-container {
  /* position: absolute;
  top: 0;
  left: 0; */
  position: relative;
  width: 100%;
  height: 30vh;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.7;
}

.space-video {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  object-fit: cover;
}

.bg-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  clip-path: inset(0 0 0 0);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.bg-information {
  width: 100%;
  height: auto;
  background-image: url('../assets/information_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-information {
  position: relative;
  top: -17px;
}

/* モバイル用「入場無料」バッジ */
.admission-free-mobile {
  display: none; /* PC では非表示、モバイルCSSで表示 */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  z-index: 5;
}

.info-content {
  padding: 0 30px;
}

.info-table {
  width: 100%;
}

.info-row {
  display: grid;
  grid-template-columns: 119px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(43, 37, 33, 0.2);
  align-items: start;
}

.info-row:first-child {
  border-top: 1px solid rgba(43, 37, 33, 0.2);
}

.info-row dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2b2521;
  padding-top: 2px;
}

.info-row dd {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2b2521;
}

.info-row dd .venue-sub {
  font-size: 14px;
  color: #2b2521;
}

/* ========================================
   ABOUT US セクション
   ======================================== */
.section-about {
  /* 
  padding: 0 0 40px;
  background-color: transparent;
  background-image: none;
  overflow: hidden;
  */
  position: relative;
}

/* 背景画像の上に重ねるtealデザインオーバーレイ（2層目） */
.bg-about {
  /* 
  position: absolute;
  inset: 0;
  */
  position: relative;
  background-color: rgba(174, 207, 207, 0.82);
  background-image: url('../assets/ABOUTUSbg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.section-about .section-title-wrap {
  margin-bottom: 0;
  position: relative;
}

.section-about .section-title {
  color: #3D4B4B;
}

.content-about {
  position: relative;
  top: -17px;
}

.about-text {
  padding: 16px 20px 24px;
  font-size: 14px;
  line-height: 2;
  color: #2b2521;
  position: relative;
  z-index: 2;
}

.about-text .about-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-text .about-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text p + p {
  margin-top: 14px;
}

/* イベント写真グリッド */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 0 4px;
  position: relative;
  z-index: 2;
}

.about-photo-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
}

.about-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 装飾野菜イラスト */
.deco-veg-parent {
  position: relative;
  overflow: hidden;
}

.deco-veg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}

.deco-veg--renkon {
  width: 160px;
  top: 00px;
  right: -30px;
  transform: rotate(20deg);
}

.deco-veg--tamanegi {
  width: 130px;
  bottom: 80px;
  left: -30px;
  transform: rotate(-15deg);
}

.deco-veg--renkon2 {
  width: 100px;
  bottom: 200px;
  right: 10px;
  transform: rotate(-30deg);
  opacity: 0.12;
}

.deco-veg--tamanegi2 {
  width: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  opacity: 0.1;
}

/* 背景動画ストリップ（独立した背景イメージ帯） */
.bg-video-strip {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 100%;
}

/* ========================================
   SPONSOR セクション
   ======================================== */
.section-sponsor {
  padding: 15vh 0;
  position: relative;
}

.co-content {
  margin-bottom: 5vh;
}

.official-content {
  margin-top: 10vh;
}

/* 出演者募集 独立セクション */
.section-performers {
  /* 
  padding: 100px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
　height: 100vh;
  min-height: 500px;
   */
  position: relative;
}

.content-performers {
  position: relative;
  top: -17px
}

.bg-performers {
  background-image: url('../assets/花火1.png'), url('../assets/出演者募集_bg.png');
  background-size: 48% auto, cover;
  background-position: right -10px top -10px, center;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff8eb;
  text-align: left;
  position: relative;
  z-index: 1;
}

.performers-content {
  padding: 0 24px;
}

.performers-text {
  font-size: 13px;
  line-height: 1.9;
  color: #2b2521;
  margin-bottom: 24px;
}

.performer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.circle-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #2b2521;
  transition: opacity 0.2s;
}

.circle-link::after {
  content: '›';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e07a10;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 3px;
}

.circle-link:hover {
  opacity: 0.75;
}

/* ========================================
   ALBUM2025 セクション
   ======================================== */
.section-album {
  padding: 0;
  background: #9ab4b4;
}

.content-album {
  position: relative;
  top: -17px
}

.album-title-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 10px;
}

.album-title {
  color: #3d4b4b;
  font-size: 28px;
}

.album-single {
  width: 100%;
}

.album-single img {
  width: 100%;
  height: auto;
  display: block;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px 0 0;
}

.album-item {
  aspect-ratio: 1;
  background: #7a9898;
  position: relative;
  overflow: hidden;
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   NEWS セクション
   ======================================== */
.section-news {
  padding: 15vh 0;
  position: relative;
}

.content-news {
  position: relative;
  top: -17px
}

.news-list {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-item {
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-date {
  flex-shrink: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #2B2521;
  background-color: #FDE8C4;
  border-radius: 20px;
  padding: 2px 10px;
}

.news-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: bold;
  padding-top: 10px;
}

.news-inner {
  position: relative;
  z-index: 1;
  background-image: url('../assets/NEWS_bg.png');
  background-size: cover;
  background-position: center;
  padding: 0 0 32px;
}

/* ========================================
   CONTACT セクション
   ======================================== */
.section-contact {
  /* padding: 0 0 40px; */
  background: #dd8b78;
}

.content-contact {
  position: relative;
  top: -17px;
}

.contact-form {
  padding: 0 20px;
  position: relative;
  top: -20px;
}

.contact-cover {
  padding: 10px;
  background: #e6a397;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  /* margin-bottom: 6px; */
  letter-spacing: 0.04em;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.form-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: #c0392b;
  background: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.badge-required {
  flex-shrink: 0;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  /* border-radius: 3px; */
  margin-right: 5px;
  letter-spacing: 0.04em;
}

.form-submit-wrap {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #c0392b;
  cursor: pointer;
}

.submit-btn {
  background: #e85d2a;
  color: #fff;
  border: none;
  padding: 14px 40px;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.75em;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.submit-btn:hover {
  background: #a93226;
  transform: translateY(-1px);
}

/* ========================================
   フッター
   ======================================== */
.section-footer-video {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.section-footer-video .bg-video {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: #24344f;
  color: #fff;
  padding: 40px 20px 24px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  margin: 0 auto;
}
.footer-sns {
  padding: 0 2vw;
  margin-bottom: 20px;
}

.footer-sns a {
  display: inline-block;
}

.footer-sns img {
  width: 40px;
  height: 40px;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 2vw;
  margin-bottom: 32px;
  text-align: left;
}

.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #aaa;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #f5c400;
}

.footer-nav-col {
  list-style: none;
}

.footer-nav-col > li {
  margin-bottom: 10px;
}

.footer-nav-col > li > a {
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.footer-nav-col > li > a:hover {
  opacity: 0.75;
}

.footer-subnav {
  list-style: none;
  margin-top: 8px;
  margin-bottom: 4px;
  padding-left: 22px;
}

.footer-subnav a {
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.footer-subnav a:hover {
  opacity: 0.75;
}

.footer-map {
  margin-bottom: 2rem;
  height: 200px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-copy {
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
  font-size: 16px;
}

/* ========================================
   モバイル（767px以下）
   ======================================== */
@media (max-width: 767px) {
  .wrapper {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .panel-left,
  .panel-right {
    display: none;
  }

  .phone-container {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .phone-frame {
    box-shadow: none;
  }

  .video-wrapper {
    aspect-ratio: 9/16;
  }

  .hero-item img {
    height: 240px;
    width: auto;
  }

  .hero-scroll-track {
    animation-duration: 80s;
  }

  .section-title {
    font-size: 28px;
  }

  /* アルバム: モバイルは3列 */
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 入場無料: モバイルはINFORMATIONセクション右端に表示 */
  .admission-free-mobile {
    display: block;
  }

  /* イントロオーバーレイ: タップで閉じられるように */
  .intro-video-overlay {
    cursor: pointer;
  }

  /* ABOUT US: SP版背景色
  .about-color-overlay {
    background-color: #afc4c2;
    background-image: none;
  }
 */

  .footer-logo,
  .footer-sns,
  .footer-nav {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ========================================
   タブレット（768px〜1199px）
   ======================================== */
@media (min-width: 768px) and (max-width: 1199px) {
  .panel-left {
    min-width: 200px;
  }

  .panel-right {
    min-width: 180px;
  }

  .phone-container {
    width: 340px;
  }

  .panel-nav-btn {
    height: 54px;
  }

  .btn-label {
    font-size: 12px;
  }

  .ccp-gokan,
  .ccp-oishii {
    font-size: 13px;
  }

  .ccp-kaimaku {
    font-size: clamp(30px, 4vw, 44px);
  }
}

/* ========================================
   ワイドスクリーン（1600px以上）
   ======================================== */
@media (min-width: 1600px) {
  .phone-container {
    width: 440px;
  }

  .panel-nav-btn {
    /* max-height: 170px; */
  }

  .panel-nav-btn.panel-nav-btn--soon {
      /* max-height: 56px; */
  }

  .menu-btn {
    display: none;
  }
}

/* ========================================
   背景メディアレイヤー（img → video 切替対応）
   ======================================== */
.section-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

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

/* フッターに position を付与 */
.site-footer {
  position: relative;
  overflow: hidden;
}

/* NEWSの既存コンテンツを前面に */
.section-news .section-title-wrap,
.section-news .news-list {
  position: relative;
  z-index: 1;
}

/* フッターの既存コンテンツを前面に */
.footer-logo,
.footer-nav,
.footer-privacy,
.footer-map-area,
.footer-social,
.footer-copy {
  position: relative;
  z-index: 1;
}

/* ========================================
   スクロールバー（PC phone-containerのみ）
   ======================================== */
.phone-container::-webkit-scrollbar {
  width: 4px;
}

.phone-container::-webkit-scrollbar-track {
  background: transparent;
}

.phone-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .section-information, */
/* .section-about, */
.section-album,
/* .section-news, */
.section-contact,
.section-single,
.section-page {
  animation: fadeInUp 0.5s ease both;
}

/* ========================================
   NEWS個別記事・固定ページ共通
   ======================================== */
.page-section {
  padding: 0 0 48px;
  position: relative;
  min-height: 60vh;
}

.single-post {
  /* 
  padding: 0 16px;
  position: relative;
  z-index: 1;
  */
}

.single-post-wrapper {
  background-color: #afc4c2;
  position: relative;
  padding: 16px;
  margin: 0 16px;
}

.single-post-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 12px;
  position: relative;
  z-index: 1;
}

.single-post-title {
  font-family: 'Noto Sans JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: #2b2521;
  line-height: 1.5;
  margin-top: 8px 0;
}

.single-post-content {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  position: relative;
  z-index: 1;
}

.single-post-content p {
  margin-bottom: 1em;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

.single-post-nav {
  padding: 20px 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.back-to-news {
  font-size: 13px;
  font-weight: 700;
  color: #5a7a3a;
  text-decoration: none;
}

.back-to-news:hover {
  text-decoration: underline;
}

/* ページネーション */
.navigation.pagination {
  padding: 20px 16px;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #5a7a3a;
  border: 1px solid #5a7a3a;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
  background: #5a7a3a;
  color: #fff;
}

.navigation.pagination .page-numbers.dots {
  border: none;
}

/* 固定ページコンテンツ */
.page-content {
  padding: 0 16px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.page-content p {
  margin-bottom: 1em;
}

.page-content img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}
