@charset "utf-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--main-color);
  background-image: url(../img/haikei_img/haikei_blue.png);
  background-repeat: no-repeat;
   background-size: cover; /*画像が画面いっぱいに */
  background-position: center center; /* 中央配置 */
}

.main-area {
  width: 100%;
}

/* 素材置き場の役割として色サイズ「--」を頭に */
:root {
  /* カラー設定 */
  --main-color: #53727d;
  --sub-color: #ccc;

  /* フォント設定 */
  --font-main: 'Zen Kaku Gothic New', sans-serif;   /* 本文：日本語中心 */
  --font-en: 'Quicksand', sans-serif;                /* 英字：ナビや英語見出し用 */
  --font-accent: 'Caveat', cursive;                  /* サブタイトルなど手書き風 */
}

/* 余裕があれば…英語テキストにクラス名をつけてフォント指定する */
.english-text {
  font-family: var(--font-en);
}

/* スクロールした時のアニメーション */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(30px) ;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-up.scroll-fade-up--active {
  opacity: 1 ;
  transform: translateY(0) ;
}

/* リセットCSSここから */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

/* ファーストビュー */
.hero-header--top {
  position: relative;
  width: 100%;          /* ブラウザ幅に追従する */
  aspect-ratio: 24 / 13; /* 縦横比を1200*650に */
  margin: 0 auto;
  overflow: hidden;
}


.hero-header--top::before,
.hero-header--sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* ←暗さの調整 */
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.video-fallback-text {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 1em;
}
.video-fallback-text img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  border-radius: 8px;
}

/* 共通：ロゴの画像の基本設定 */
.hero-logo img {
  display: block;
  height: auto;
  margin: 0 auto 0.3rem;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
}

/* TOPページ専用（可変） */
.hero-header--top .hero-logo--top img {
  width: clamp(200px, 30vw, 400px);
}

/* SUBページ専用（固定） */
.hero-header--sub .hero-logo--sub img {
  width: 180px;
  max-width: none;
}

.hero-subtitle {
  font-size: clamp(1.4rem, 2.2vw, 2.6rem);/* maxを少し引き上げる */
  margin: 0 0 0.8rem 0;  /* ← 上マージンなし・下は少し */
  color: #75E9FC;
  letter-spacing: 0.1em;
  white-space: nowrap;  /* 改行防止 */
}

.hero-date {
  font-size: clamp(1.6rem, 2.5vw, 3rem); /* 上限3remで整える */
  color: #FED742;
  letter-spacing: 0.06em;
  white-space: nowrap;  /* 改行防止 */
}

.hero-subtitle,
.hero-date {
  font-family: var(--font-accent);
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

/* SUBページ専用オーバーレイ */
  .hero-header--sub {
    position: relative;
    width: 100%;
    height: auto;         /* 高さを自動に */
    aspect-ratio: 4 / 1;  /* 高さはアスペクト比で調整 */  
    max-height: 300px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .hero-header--sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

/* 2カラムの横並び */
.sub-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center; /* 中央寄せ */
  gap: 2rem;               /* 要素間のスペース */
  margin: 0 auto;
  flex-wrap: nowrap; /* 折り返しなしに */
}

.hero-logo--sub img {
  width: clamp(80px, 20vw, 180px); /* 最小120px・最大180px */
  height: auto;
  max-width: 100%;
  display: block;
}

/* テキストブロック（右側） */
.sub-hero-textblock {
  max-width: 50vw; /* 画面幅の半分まで */
  min-width: 140px; /* 小さくなりすぎないように */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  word-wrap: break-word;
}

/* サブタイトルと日付（SUB用に少し小さめ） */
.hero-subtitle--sub {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #75E9FC;
  letter-spacing: 0.08em;
  font-family: var(--font-accent);
  margin: 0;
}

.hero-date--sub {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: #FED742;
  letter-spacing: 0.06em;
  font-family: var(--font-accent);
  margin: 0;
}


/* スクロールダウンボタン */
.scroll-down_07 {
  position: absolute;
  bottom: 2vh;
  right: 0;
  transform: translateX(-50%);
  text-align: center;
  font-family: Quicksand;
  color: #77EAFD;
  font-size: clamp(12px, 1.4vw, 16px); /* ← 可変対応！ */
  font-weight: bold;
  text-decoration: none;
}

.mouse-icon {
  width: clamp(20px, 2.5vw, 30px);  /* 可変対応 */
  height: clamp(35px, 4vw, 50px);   /* 可変対応 */
  border: 2px solid #77EAFD;
  border-radius: 20px;
  position: relative;
  margin-inline:auto;
  margin-bottom: 6px;
}
.mouse-icon::before {
  content: "";
  width: 2px;
  height: clamp(6px, 1.2vw, 10px); /* 可変対応 */
  position: absolute;
  top: clamp(6px, 1.4vw, 10px);    /* 可変対応 */
  left: 50%;
  transform: translateX(-50%);
  background-color: #77EAFD ;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, clamp(12px, 2.5vw, 20px)); /* ← アニメの移動距離も可変に！ */
  }
}
/* スクロールダウンボタンここまで */

/* グローバルナビ本体 */
.global-nav {
  padding: 1.2rem 2.4rem;
  max-width: 1100px;  /* 最大幅を1100pxに */
  margin-left: auto;  /* 左右中央寄せのため */
  margin-right: auto;
}

/* ナビメニューリスト（横並び＆均等配置） */
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  position: relative; /* 疑似要素を基準に配置 */
  display: inline-block; /* 念のため指定 */
  line-height: 1.2;       /* これが下線位置のブレ防止に重要！ */
  font-size: 3.6rem;
  color:var(--main-color);
  padding: 0.8rem 1.2rem;
  transition: color 0.3s ease;
  text-decoration: none; /* 下線なし */
}

/* 下線アニメーション用の疑似要素 */
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem; /* ← 下線がきっちり文字の下にくるように調整！ */
  transform: translateX(-50%) scaleX(0); /* 中央からスタート */
  transform-origin: center;              /* 拡大の起点を中央に */
  width: 100%;
  height: 3px;
  background-color: #F9C46B;    /* 下線の色 */
  border-radius: 999px; /* 下線の両端を丸くする */
  transition: transform 0.4s ease-in-out;
}

/* ホバー時：色＋下線を表示 */
 .nav-menu li a:hover {
 color: #85bcd0;
}

.nav-menu li a:hover::after {
  transform: translateX(-50%) scaleX(1); /* 横にビヨ〜ンと広がる */
}

/* PCなどの通常幅ではハンバーガーメニューを非表示にしておく */
.nav-menu-wrapper {
  display: none;
}

/* ▼ 共通：ハンバーガーアイコンスタイル */
.nav-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border: none;
  background: var(--main-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ハンバーガー中身（三本線） */
.hamburger {
  position: relative;
  width: 25px;
  height: 2px;
  background: #ebebeb;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: #ebebeb;
  transition: 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* メニュー開いたときのバツ印 */
.nav-toggle.open .hamburger {
  background: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.global-nav,
.global-nav a {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ABOUT */
.about-highlight {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 2.2rem; /* 好みに応じて調整してOK！ */
  display: block; /* 改行を含むなら block指定がオススメ */
  margin-bottom: 0.5em; /* 少し余白もあると読みやすい */
}

.about-highlight-wrap {
  margin-bottom: 30px; /* ← ここで調整！（20〜40pxお好みで） */
}


.about-subtext {
  line-height: 1.8;
}

.about {
  background-color: rgba(255, 255, 255, 0.4); /* 透過率40%の白 */
  max-width: 1100px;
  margin: 0px auto 40px;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-logo {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text {
  flex: 1;
  max-width: 600px;
  font-size: 1.6rem;
  line-height: 1.2;
}

/* ABOUT文の改行のため（スマホなど狭い幅では改行しない） */
.br-pc {
  display: none;
}

.about-subtext p,
.ticket-text p,   
.food-text p {
  margin: 1.2em 0; /* これで段落間に自然な余白ができる */
  line-height: 1.8;
}


/* FOODテキストの真上の余白を消す */
.food-text p:first-of-type {
  margin-top: 0;
}


/* 各セクションタイトルの中央揃え */
.about-card,
.food-section,
.goods-section,
.access-section,
.contact-section {
  text-align: center; /* ここがポイント！h2を中央に */
}

/* FOOD/GOODSセクションの左右の余白 */
.food-section,
.goods-section {
  padding: 0 1.5rem;
}

.access-section .section-inner {
  position: relative;
}

.about-title,
.ticket-title,
.goods-title,
.contact-title {
  position: relative;
  display: inline-block;  /* ←追加 */
  font-family: var(--font-en);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--main-color);
  /* 重なり順の調整 */
  z-index: 1;
}

/* 擬似要素で色ずらしコピー */
.about-title::before,
.ticket-title::before,
.goods-title::before,
.contact-title::before{
  content: attr(data-text); /* data-text属性から文字を取得 */
  position: absolute;
  top: 0;
  left: 4px;  /* 右にずらす（調整OK） */
  color: #FF6F61;
  z-index: -1; /* 背面に */
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.1em;
  user-select: none; /* 文字の選択を防ぐ */
  pointer-events: none; /* マウス操作を無効化 */
}






/* 見出し */
.artist-title,
.ticket-title,
.food-title,
.goods-title,
.access-title,
.contact-title
 {
  position: relative;
  font-family: var(--font-en);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--main-color);
}

.ticket-title {
  margin-top: 40px;
}

.artist-title,
.food-title {
  position: relative;
  display: inline-block;  /* ←追加 */
  margin-bottom: 3rem;
  text-align: center;
  /* 重なり順の調整 */
  z-index: 1;
}


/* 擬似要素で色ずらしコピー */
.artist-title::before,
.food-title::before {
  content: attr(data-text); /* data-text属性から文字を取得 */
  position: absolute;
  top: 0;
  left: 4px;  /* 右にずらす（調整OK） */
  color: #F9C46B;
  z-index: -1; /* 背面に */
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.1em;
  user-select: none; /* 文字の選択を防ぐ */
  pointer-events: none; /* マウス操作を無効化 */
}

/* アクセスタイトルだけいうこと聞かないので別記述 */
.access-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateX(4px); /* 中央基準で右にずらす */
  color: #F9C46B;
  z-index: -1;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
}


/* 説明文 */
.artist-text,
.ticket-text{
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  margin: 0 auto 3rem;  /* ←ここ！中央寄せには auto が必要 */
  line-height: 1.8;
  text-align: center;
  max-width: 900px; /* テキスト量に合わせて横幅制限で可読性UP */
  padding: 0 1.5rem; /* スマホでの左右余白 */
}

/* 強調テキスト（価格など） */
.ticket-text .about-highlight {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}


/* アーティスト一覧（2列→1列） */
.artist-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 3rem;
}

/* アーティストカード1枚 */
.artist-item {
  /* padding: 20px; */
  width: 45%;
  max-width: 500px;
  text-align: center;
}

/* アーティスト画像 */
.artist-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* アーティスト名 */
.artist-name {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0;
}

/* 説明文 */
.artist-description{
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.food-description {
  font-size: 1.4rem;
  margin: 2rem 0;
  text-align: left;
}

/* ボタン */
.artist-button {
  font-size: 1.4rem;
  /* font-weight: bold; */
  color: var(--main-color);
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
}

/* 他のアーティスト紹介ボタン */
.artistpage-linkbutton {
  text-align: center;
  margin-top: 2rem;
}

.button-caption {
  font-size: 1.6rem;
  /* margin-bottom: 0.5rem;  マージンナシにしてみる*/
}



/* read moreボタン */
.artist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.2rem;
  font-size: 1.2rem;
  background-color: transparent;  /* ← 背景なし */
  color: var(--main-color);
  border: 1.5px solid var(--main-color);  /* 枠線を追加 */
  border-radius: 999px;                   /* Pill型 */
  text-decoration: none;
  transition: all 0.4s ease;
}

.artist-button:hover {
  background-color: #ffd100;;    /* ホバー時は塗りつぶし */
  color: var(--main-color);                        
  transform: translateY(3px); /* ← 下に3px沈む */
}

.artistpage-linkbutton,
.ticket-linkbutton,
.foodpage-linkbutton,
.goodspage-linkbutton,
.accesspage-linkbutton {
  text-align: center;
  margin-top: 35px;
}

.common-button {
  display: inline-flex;            
  align-items: center;            /* 縦方向の中央揃え */
  justify-content: center;        /* 横方向の中央揃え（念のため） */
  margin: 0.5rem auto 0;         /* ← 上余白 & 水平方向の中央寄せ */
  width: 90%;
  max-width: 500px;
  height: 70px; /* ← 高さは固定（全ページ共通） */
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); /* ← ボタン幅に応じて文字サイズ可変 */
  line-height: 1;        /* テキストの高さを抑えてflexで揃える */
  padding: 0;            /* 余計な上下余白を削除 */
  background-color: var(--main-color);
  color: #e4e3e3;
  text-decoration: none;
  border: none;                /* ← 念のためボーダーをリセット */
  border-radius: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.5s ease, transform 0.5s ease; /* ← transformにも滑らかさ */
}

.common-button:hover {
  background-color: #ffd100;
  transform: translateY(3px); /* ← 下に3px沈む */
  color: #2f4d4d; /* ボタンの文字色を反転して引き締め感UP */
}

/* TOPページフッター上のボタン間の余白設定 */
.accesspage-linkbutton .common-button {
  margin-bottom: 40px;
}

/* access_contactページのボタンの上のための余白記述 */
.access_contact_page--button {
  margin-top: 35px;
}

  .artist-card,
  .food-section,
  .goods-section,
  .access-section,
  .contact-section
   {
    background-color: rgba(255, 255, 255, 0.4); /* 透過率40%の白 */
    max-width: 1100px;          /* カンプに合わせて幅指定 */
    margin: 40px auto;          /* 中央寄せ上下マージン40px */
    padding: 40px 0;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 下層３ページのグロナビ下の余白を消すための記述 */
.artist-card--first,
.food-card--first,
.access-section--first {
  margin-top: 0;
}

 .food-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--main-color);
  z-index: 1;
} 

.food-text {
  text-align: center;
  max-width: 800px; /*テキスト量に合わせて */
  margin: 0 auto 40px;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  line-height: 1.8;
  color: var(--main-color);
  padding: 0 1.5rem; /* モバイル時の左右余白を追加 */
}


.food-grid,
.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;

  max-width: 1024px; /* これで左右のはみ出しを防止 */
  margin: 0 auto;
}

.food-card,
.goods-card {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.food-card img,
.goods-card img {
  width: 300px;
  height: 300px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.food-card h3{
  margin-top: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-en);
  color: var(--main-color);
}

.goods-card h3 {
  margin-top: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-en);
  color: var(--main-color);
}

.access-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 20px auto;
  gap: 2rem; /* MAPとテキストの余白 */
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 30px; /* セクション左右に余白 */
}

/* 左カラム：Google Map */
.access-map-block {
  flex: 0 0 65%; /* 横幅を広めに確保 */
  min-width: 300px;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10; /* もしくは 16/9 でもOK */
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 右カラム：テキスト情報 */
.access-info-block {
  flex: 0 0 33%; /* MAPより少し狭め */
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 行ごとの間隔 */
  align-items: flex-start; /* 左揃え */
}

/* 扇町公園だけ目立たせる */
.access-info-block .access-row:first-of-type .label {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--main-color); /* メインカラーを維持 */
}

.access-info-block .access-row:first-of-type .label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 32%;
  height: 0.4em;
  background: #fefe72; /* 蛍光っぽい黄色。お好みで調整OK */
  z-index: -1; /* テキストの下に重ねる */
  border-radius: 4px;
}

.access-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem; /* お好みで1.5〜3remくらい */
}

.access-row .label {
  font-weight: bold;
  text-align: left;
  font-size: 1.8rem;
  color: var(--main-color);
}

.access-row .content {
  font-size: 1.6rem;
  color: var(--main-color);
  line-height: 2.0; /* ←2.0でゆったりめに */
}

.access-row .content p {
  text-align: left;
}

/* CONTACTテキストの1行目を太字で大きく */
.contact-description .highlight {
  font-weight: 600;
  font-size: 1.1em; 
  display: block; /* 下余白のためにインライン要素からブロック要素に */
  margin-bottom: 20px;
}

/* フォーム全体のスタイル */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 要素間の余白 */
  margin-top: 40px;
  padding: 0 2rem; /* ← 追加！左右に余白 */
}

/* 横並び２カラムに */
.form-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* ラベル */
.form-row label {
  width: 30%;
  font-weight: bold;
  font-size: 1.6rem;
  padding-top: 0.4rem;
  text-align: left; 
}

.form-row input,
.form-row textarea {
  background-color: #BED6DE;
  color: #333;
  flex: 1;
  padding: 1rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
} 

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--main-color);
  outline: none;
  background-color: #e1e1e1; /* 少し明るいトーンを加えてもOK */
  box-shadow: 0 0 5px rgba(47, 77, 77, 0.3);
}

/* テキストエリアの見た目調整 */
.contact-form textarea {
  height: 300px;  
  resize: vertical; /* 高さのみ調整可能に */
}

/* 送信ボタンは既存の .common-button を利用 */



/* topに戻るボタン */
.page-top {
  display: none; /* ← JSと合わせて、初期非表示を明示 */
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 100px;
  height: 50px;
  background-color: #ffd100;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #333;
  font-weight: 300; /* 軽めに */
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px; /* 少し小さめに */
  letter-spacing: 0.3px; /* 読みやすさを保つ */
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.page-top:hover {
  opacity: 0.8;
}

/* アクセスページだけ余白狭くするよう指示 */
.access-section {
  padding: 20px 0 !important;
}

/* フッター */
.footer {
  color: var(--main-color);
  padding: 3rem 1rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 0;
  list-style: none;
  z-index: 2;
}

.footer-sns img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover img {
  opacity: 0.7;
}

.copyright {
  font-size: 0.9rem;
  color: var(--main-color);
}





/* メディアクエリ */
@media screen and (max-width: 767px) {
  .hero-header--top {
    height: 480px;
  }

  .sub-hero-inner {
    gap: 1.5rem;
    justify-content: center;
  }

  .sub-hero-textblock {
    max-width: 90vw;
    min-width: unset;
    text-align: center;
  }

    .hero-header--sub {
    width: 100vw;
    height: auto;
    max-height: unset;
    aspect-ratio: auto;
    overflow: hidden;
    }

    .hero-header--sub img {
      width: 100%;
      height: auto;
      object-fit: cover; /* ← 念のため再指定してもOK */
      display: block;
    }

  .hero-logo--sub img {
    margin-bottom: 1rem;
    width: clamp(100px, 30vw, 150px);
  }

  .hero-logo img {
    max-width: 60%;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .hero-date {
    font-size: 1.8rem;
  }

  .hero-overlay {
    top: 45%;
    transform: translate(-50%, -45%);
    padding: 1rem;
  }

  /* ハンバーガーメニュー */
  .nav-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2100;
    width: 50px;
    height: 50px;
    border: none;
    background: #ffd100;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    bottom: 80px;  /* topに戻るボタンより上にレイアウト */
    right: 30px;
    width: 50px;
    height: 50px;
  }

  .nav-toggle:hover {
    opacity: 0.8;
  }

  .global-nav {
    position: relative;
    z-index: 2000;
  }
  

  /* 外側の全画面を覆う白半透明背景 */
  .nav-menu-wrapper {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); /* 背景透過 */
    backdrop-filter: blur(6px);
    z-index: 2000;
    justify-content: flex-end;   /* ←右寄せに */
    align-items: flex-end;       /* ←下寄せに */
    padding: 2rem; /* ← 左右の余白を確保して中央寄せしやすく */
  }

  /* ボタン押したら表示 */
  .nav-menu-wrapper.open {
    display: flex;
  }

  /* カード（メニュー本体） */
  .nav-menu {
    /* background: #f1efd4; 　色なしの方がスッキリするかも*/
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem 7rem;
    width: 70%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* テキストも右揃えに */
    transform: translateY(-50px);
    animation: slideUpFade 0.3s ease-out forwards;
  }

  .nav-menu li {
    margin: 0.6rem 0; /* 項目同士の余白を少なめに */
    list-style: none;
  }

  .nav-menu li a {
    font-size: 1.6rem;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 0.4rem 0;  
  }

  /* ハンバーガーメニューをふわっと登場させたい */
  @keyframes slideUpFade {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(-50px);
    }
  }

  /* 閉じる時もふわっと（JS必要） */
  @keyframes slideDownFade {
    0% {
      opacity: 1;
      transform: translateY(-50px);
    }
    100% {
      opacity: 0;
      transform: translateY(-10px);
    }
  }
  
  .nav-menu-wrapper.closing .nav-menu {
    animation: slideDownFade 0.3s ease-out forwards;
  }
  /* ハンバーガーメニューここまで */

  /* TOPに戻るボタンをモバイル幅では小さく */
  .page-top {
    width: 80px;  /* 100px の80% */
    height: 40px; /* 50px の80% */
    line-height: 40px; /* 高さに合わせて */
    font-size: 10.4px; /* 13pxの約80% */
    right: 15px; /* 位置も微調整OK */
    bottom: 15px;
  }

  .about-content {
    flex-direction: column; /* 縦並びに */
    gap: 4.5rem;             /* 縦並びの余白調整 */
  }

  .about-logo img {
    width: clamp(160px, 50vw, 240px); /* 小さめに調整しつつ可変 */
    height: auto;
  }

  .about-highlight {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .about-subtext {
    font-size: clamp(1.2rem, 4.2vw, 1.6rem);
    line-height: 1.6; 
  }

  .artist-item {
    width: 100%;
  }

  .artist-list {
    flex-direction: column;
    align-items: center;
  }

  .access-container {
    flex-direction: column; /* ← これで縦並びに */
    padding: 0 20px;
    gap: 3rem;
  }

  .access-map-block,
  .access-info-block {
    width: 100%;
    flex: 0 0 auto; /* ← 幅固定解除 */
  }

  .access-info-block {
    align-items: center; /* ← スマホでは中央揃え */
    text-align: center;
    margin-top: 20px;
  }

  .access-row {
    align-items: center; /* ラベルと本文も中央 */
    text-align: center;
  }

  .access-row .label {
    font-size: 1.6rem;
  }

  .access-row .content {
    font-size: 1.4rem;
  }

}

/* CONTACTセクションの可変のためのブレイクポイント */
@media screen and (max-width: 760px) {
  .form-row {
    flex-direction: column;
    gap: 0.5rem; /* ラベルと入力の間を少しだけ開ける */
  }

  .form-row label {
    width: 100%;
    padding-top: 0;
    text-align: left;
  }

  .form-row input,
  .form-row textarea {
    width: 100%;
  }

  .contact-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    text-align: center;
    padding: 0 1.5rem;
  }

}





/* ▼ PC表示用（768px以上） */
@media screen and (min-width: 768px) {
  .nav-menu-wrapper {
    display: flex; /* ← これがないと消えちゃう！ */
    position: static;
    background: none;
    justify-content: center;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    color: inherit;
    flex-direction: row;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .nav-menu li a {
    font-size: clamp(1.6rem, 3vw, 3.6rem);
    padding: 0.6rem 1rem;
    color: var(--main-color);
  }
  .nav-menu li a::after {
    height: 2px; /* モバイル〜タブレットでは下線をやや細く */
  }

   /* ABOUTテキストレイアウトのため */
   .br-pc {
    
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
  
  }
}


/* FOOD/GOODSセクションの可変時に折り返させるためのブレイクポイント */
/* 中間幅：2列に変更（余白が崩れないように） */
@media screen and (max-width: 960px) {
  .food-grid,
  .goods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 狭い幅：1列に変更（カードが重ならない） */
@media screen and (max-width: 560px) {
  .food-grid,
  .goods-grid {
    grid-template-columns: 1fr;
  }
}

/* TOPページの各セクションの２列目だけを中央に配置する */
@media screen and (max-width: 960px) and (min-width: 561px) {
  .food-grid,
  .goods-grid {
    justify-content: center;
  }

  /* 最後の1個だけの行を中央にする */
  .food-grid > :nth-last-child(1):nth-child(odd),
  .goods-grid > :nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}




/* ACCESSMAPの可変時に縦に折り返すためのブレイクポイント */
@media screen and (max-width: 1065px) {
  .access-container {
    display: block;
    padding: 0 20px;
  }
  
  .access-info-block {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .access-row {
    align-items: center;
    text-align: center;
  }
  .access-info-block .access-row:first-of-type .label {
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 0.5em;
  }
  
  .access-info-block .access-row:first-of-type .label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.1em;
    transform: translateX(-50%);
    width: 100%; /* 必要に応じて調整 */
    height: 0.4em;
    background: #fefe72;
    z-index: -1;
    border-radius: 4px;
  }
}

/* 下層３ページのTOPロゴのためのブレイクポイント */

 /* @media screen and (max-width: 430px) {
  .hero-logo.hero-logo--sub img {
    width: 100px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

  .hero-date {
    font-size: 1.3rem !important;
  }

  .hero-overlay {
    top: 48%;
    transform: translate(-50%, -48%);
    padding: 0.8rem;
  }
}

@media screen and (min-width: 431px) and (max-width: 767px) {
  .hero-logo.hero-logo--sub img {
    width: clamp(110px, 28vw, 150px)!important;
    max-width: 100% !important;
    height: auto !important;
  }

  .hero-subtitle {
    font-size: 1.3rem !important;
  }

  .hero-date {
    font-size: 1.6rem !important;
  }

  .hero-overlay {
    top: 46%;
    transform: translate(-50%, -46%);
    padding: 1rem;
  }
}   */