@charset "utf-8";
/* ==========================================
   1. フォントと全体の基本設定
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Zen+Maru+Gothic:wght@500;700&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif;
}

h1, h2, h3, .news-card-title, .hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}

/* ==========================================
   2. メニューバー・ナビゲーション
   ========================================== */
.header-logo-area {
  padding: 25px 0 15px;
  text-align: center;
}

.main-navigation {
  background-color: #ffffff;
  border-top: 2px solid #f2f2f2;
  border-bottom: 2px solid #f2f2f2;
  margin-bottom: 40px;
  text-align: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  display: inline-block; 
  margin: 0 25px;
}

.nav-list a {
  display: block;
  padding: 20px 15px;
  text-decoration: none;
}

.nav-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.nav-en {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: #609282; 
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.nav-ja {
  display: block;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 0.78rem;
  color: #888888;
  font-weight: 500;
}

.nav-list a:hover .nav-en { color: #e08880; }
.nav-list a:hover .nav-ja { color: #333333; }
.nav-list a:hover .nav-icon { opacity: 1; }

/* ==========================================
   3. メインビジュアル (Hero)
   ========================================== */
.hero-outer {
  background-image: url('image/Top.jpg');
  background-size: cover;
  background-position: center;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.88);
  padding: 45px 60px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 75%;
  opacity: 0;
  animation: fadeUpAnim 1.5s ease-out 0.3s forwards; 
}

.hero-title {
  font-size: 3.5rem;
  color: #609282;
  letter-spacing: 0.05em;
  margin: 0 0 15px 0;
}

.hero-text {
  font-size: 1.15rem;
  color: #444444;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@keyframes fadeUpAnim {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   4. 見出しの背景共通設定
   ========================================== */
.news-heading-container {
  background-color: #fdf5f4; 
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.news-main-title {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.news-main-title .ja {
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.1em;
}

.news-main-title .en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e08880;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==========================================
   5. イベント＆ニュース（トップ用カード）
   ========================================== */
.news-section {
  font-family: "メイリオ", Meiryo, sans-serif;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.news-card {
  flex: 0 0 340px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #f7f7f7;
  overflow: hidden;
}

.news-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tag-ev { background-color: #c97a8e; }
.tag-nw { background-color: #609282; }

.news-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.news-card-sub {
  display: block;
  font-size: 0.8rem;
  color: #888888;
  font-weight: normal;
  margin-top: 5px;
}

.news-btn-box {
  margin-top: auto;
  padding-top: 15px;
}

.news-btn {
  display: block;
  background-color: #e08880; 
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  border-radius: 6px;
  letter-spacing: 0.15em;
  transition: opacity 0.3s ease;
}

.news-btn:hover { opacity: 0.85; }

/* ==========================================
   6. WEBチラシセクション
   ========================================== */
.chirashi-heading-container {
  text-align: center;
  background-color: #fdf5e6;    
  padding: 25px 0;              
  margin-top: 80px;             
  margin-bottom: 45px;          
  border-top: 1px solid #f5e6d3;   
  border-bottom: 1px solid #f5e6d3;
}

.chirashi-main-title { display: inline-block; }

.chirashi-main-title .ja {
  display: block;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 2.0rem;
  font-weight: 800;
  color: #d48a37;
  letter-spacing: 0.1em;
}

.chirashi-main-title .en {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #bfa68f;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.chirashi-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.chirashi-box {
  background-color: #fbfbfb;
  border: 2px dashed #eadecc;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
}

.chirashi-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
  opacity: 0.7;
}

.chirashi-notice {
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 0.95rem;
  color: #665e55;
  margin: 0;
  line-height: 2.0;
}

/* ==========================================
   7. TOPページ：店舗情報＆基本案内
   ========================================== */
.top-info-heading-container {
  background-color: #fdf5e6;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.top-info-heading-container .news-main-title .en { color: #d48a37; }

.top-basic-info-container {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: center;
}

.top-slider-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.top-slider-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.slide-top { animation: fadeSlider 8s infinite; }
@keyframes fadeSlider { 0%, 20%, 100% { opacity: 0; } 40%, 80% { opacity: 1; } }

.top-detail-box .info-data-table td {
  font-size: 1.05rem;
  padding: 20px 0;
}

.keep-together { white-space: nowrap; }

/* ==========================================
   8. フロアガイド基本ページ設定 (PC用)
   ========================================== */
.floor-content-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.floor-map-box {
  background-color: #ffffff;
  border: 2px dashed #e2ece9;
  border-radius: 12px;
  padding: 20px !important;
  text-align: center;
}

.floor-map-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.floor-sub-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.floor-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #e2ece9;
  max-width: 200px;
}

.divider-icon {
  margin: 0 15px;
  font-size: 1.2rem;
  color: #609282;
  opacity: 0.7;
}

.floor-heading-special {
  background-color: #e6f3fb !important;
  border-bottom: 1px solid #d1e7f5 !important;
}

.floor-heading-special .news-main-title .en { color: #7ab2e1 !important; }

/* ==========================================
   9. ショップリストテーブル (PC用: 横並び2列)
   ========================================== */
.floor-shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.shop-group {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.group-title {
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.shop-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dotted #ccc;
}

.shop-no {
  background: #333;
  color: #fff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-right: 12px;
  font-size: 0.8rem;
}

.shop-name { flex-grow: 1; }

.shop-tel {
  font-family: sans-serif;
  font-weight: bold;
  color: #333;
}

.shop-tel a {
  color: inherit !important;
  text-decoration: none !important;
}

@media (hover: hover) {
  .shop-tel a:hover { opacity: 0.7; }
}

/* カテゴリ別カラー定義 */
.fashion   { background: #d0f0f7; color: #007a99; }
.goods     { background: #e8f5e9; color: #2e7d32; }
.food      { background: #fce4ec; color: #c2185b; }
.living    { background: #e0f2d5; color: #5a8c3d; } 
.service   { background: #ede7f6; color: #512da8; }
.foodplaza { background: #fff3e0; color: #e65100; }
.amusement { background: #fce4ec; color: #d81b60; }
.cafe      { background: #efebe9; color: #5d4037; }

/* ナンバーポッチ色変更 */
.group-title.fashion ~ .shop-row .shop-no { background-color: #007a99; }
.group-title.goods ~ .shop-row .shop-no { background-color: #2e7d32; }
.group-title.food ~ .shop-row .shop-no { background-color: #c2185b; }
.group-title.living ~ .shop-row .shop-no { background-color: #a8d08d !important; }
.group-title.foodplaza ~ .shop-row .shop-no { background-color: #e65100; }
.group-title.service ~ .shop-row .shop-no { background-color: #512da8; }
.group-title.cafe ~ .shop-row .shop-no { background-color: #5d4037; }
.group-title.amusement ~ .shop-row .shop-no { background-color: #d81b60 !important; }

/* ==========================================
   10. インフォメーションページ
   ========================================== */
.info-page-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  font-family: "メイリオ", Meiryo, sans-serif;
}

.info-section-block { margin-bottom: 60px; }

.info-section-title {
  font-size: 1.4rem;
  background-color: #fff9e6 !important;
  border-left: 5px solid #d48a37 !important;
  color: #554023 !important;
  padding: 12px 18px;
  margin-bottom: 30px;
  border-radius: 0 6px 6px 0;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.info-main-pic {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.info-data-table { width: 100%; }
.info-data-table td {
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.95rem;
}
.info-data-lbl {
  width: 100px;
  font-weight: bold;
  color: #609282;
}
.info-data-val {
  color: #444444;
  line-height: 1.5;
}
.info-data-sub {
  font-size: 0.8rem;
  color: #888888;
  display: block;
  margin-top: 4px;
}

.time-card {
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  border: 1px solid #f2f2f2;
  height: 250px;
  box-sizing: border-box;
}

.time-card h4 {
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
  font-weight: bold;
}

.card-green  { background-color: #f6faf8; }
.card-green h4  { color: #3b6e5e; border-bottom-color: #d1e2dd; }
.card-blue   { background-color: #f4f8fc; }
.card-blue h4   { color: #2b5797; border-bottom-color: #d2e1f0; }
.card-orange { background-color: #fffbf5; }
.card-orange h4 { color: #b87014; border-bottom-color: #f5e2cc; }

.time-card-hours-large {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  margin-top: 45px;
}

.time-card-details {
  text-align: left;
  font-size: 0.88rem;
  color: #444444;
  line-height: 1.4;
}
.time-card-details p { margin: 6px 0; }

/* ==========================================
   11. 駐車場情報 (PC用)
   ========================================== */
.parking-intro {
  color: #666666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.parking-map-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.top-parking-wrapper {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.top-parking-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 15px !important;
  align-items: start;
}

.parking-box {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
}

.parking-box img {
  width: 100% !important;
  height: 120px !important;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.parking-box h5 {
  font-size: 0.9rem !important;
  margin: 5px 0 !important;
  white-space: nowrap;
}

.parking-box p {
  font-size: 0.75rem !important;
  color: #666;
  margin: 0;
}

.p-dot { font-size: 0.9rem; margin-right: 2px; }
.dot-g { color: #59b17a; }
.dot-o { color: #f6ad49; }
.dot-b { color: #89c3eb; }
.dot-br { color: #a96b5c; }

/* ==========================================
   12. アクセス・マップ
   ========================================== */
.map-wrapper {
  max-width: 900px;
  margin: 0 auto 40px;
}

.map-wrapper iframe {
  height: 380px !important;
}

/* ==========================================
   13. イベントカレンダー
   ========================================== */
.event-page-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  font-family: "メイリオ", Meiryo, sans-serif;
}

.event-section-block { margin-bottom: 60px; }

.event-section-title {
  font-size: 1.4rem;
  color: #333333;
  padding: 12px 18px;
  border-left: 5px solid #609282;
  background-color: #f4f7f6;
  margin-bottom: 30px;
  border-radius: 0 6px 6px 0;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.cal-wrapper {
  max-width: 900px;
  margin: 0 auto !important;
  padding: 15px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px !important;
  background-color: #e6f3fb;
  border-radius: 12px;
}

.cal-card {
  width: 270px !important;
  height: 320px;
  padding: 15px 10px !important;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.cal-title-bg {
  background-color: #a4d35e;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cal-year {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.cal-month {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  margin: 10px 0;
}

.cal-month-text { font-size: 2.5rem; margin-left: 5px; }

.cal-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.cal-shop { font-size: 1.5rem !important; font-weight: 900; margin: 0 0 5px 0; color: #111; line-height: 1.3; }
.cal-desc { font-size: 0.95rem; color: #555; margin: 0 0 15px 0; font-weight: bold; }

.cal-img {
  width: 100% !important;
  max-width: 180px !important;
  height: 110px !important;
  object-fit: contain !important;
  display: block;
  margin: 10px auto !important;
  border-radius: 8px;
}

/* ▼ 日にちが少ないお店用（大きくして余白を埋める！） ▼ */
.cal-date-box {
  font-size: 1.7rem !important; /* ← 思い切って大きく！ */
  word-wrap: break-word;
  line-height: 1.4 !important;
  margin-top: auto !important;
  padding-bottom: 5px;
  font-weight: bold;
  color: #000;
}

/* ▼ 日にちが多いお店用（Panda de panda用・スッキリ収める） ▼ */
.cal-date-box-small {
  font-size: 1.1rem !important; /* ← 今のままのサイズ */
  word-wrap: break-word;
  line-height: 1.6 !important; /* ← 行間を少し広げて読みやすく */
  margin-top: auto !important;
  padding-bottom: 5px;
  font-weight: bold;
  color: #000;
}

.d-blk, .d-blu, .d-red {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  vertical-align: middle;
  margin-left: 2px;
  margin-right: 5px;
}
.d-blk { background-color: #333333; }
.d-blu { background-color: #2b5797; }
.d-red { background-color: #d32f2f; }

.cal-recruit-text { font-size: 0.9rem; font-weight: bold; color: #444; line-height: 1.6; text-align: left; margin: 20px 0; }
.cal-recruit-contact { color: #2b5797; font-weight: bold; }
.cal-recruit-contact .tel { font-size: 1.5rem; margin-top: 5px; }

/* ==========================================
   14. LINE案内
   ========================================== */
.news-line-container {
  background-color: #f9f9f9;
  border: 2px solid #609282;
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
}
.line-box { display: flex; align-items: center; justify-content: space-around; gap: 20px; }
.line-text h4 { font-size: 1.5rem; color: #2b5797; margin: 0 0 10px 0; }
.line-text p { font-size: 1rem; line-height: 1.8; color: #333; }
.qr-placeholder {
  width: 150px; height: 150px; background-color: #ddd; border: 2px dashed #999;
  display: flex; align-items: center; justify-content: center; color: #666; font-weight: bold; border-radius: 8px;
}

/* ==========================================
   ★復活！！★ フッター（一番下の案内）
   ========================================== */
.site-footer {
  background-color: #f4f7f6;
  padding: 50px 20px 30px;
  margin-top: 80px;
  border-top: 1px solid #e2ece9;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #609282;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-address, .footer-hours {
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 0.88rem;
  color: #555555;
  margin: 8px 0;
  letter-spacing: 0.03em;
}

.footer-copyright {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  color: #999999;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2ece9;
  letter-spacing: 0.05em;
}

/* ==========================================
   🌻 カレンダーだけ夏仕様！ 🌻
   ========================================== */
/* 1. カレンダー全体を囲む背景を「明るい夏の青空ブルー」に */
.cal-wrapper {
  background-color: #bfe5f9 !important; /* パッと目を引く明るい水色 */
}

/* 2. カレンダーの左上「7月」のカードを「元気なひまわりオレンジ」に */
.cal-title-bg {
  background-color: #ff9900 !important;
  background-image: linear-gradient(135deg, #ffb700 0%, #ff8800 100%) !important; /* 綺麗な夏のグラデーション */
  color: #ffffff !important;
}

/* 3. カレンダー内の文字（店名・説明・日にち）をすべて中央揃えにする */
.cal-shop,
.cal-desc,
.cal-date-box,
.cal-date-box-small {
  text-align: center !important;
}


/* ==========================================
   15. 📱 スマホ対応設定（画面幅768px以下で一括適用）
   ========================================== */
@media screen and (max-width: 768px) {
  
  /* 【超重要】スマホのときだけショップリストの横幅制限を完全に解除する */
  .floor-shop-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* 水色の帯（カテゴリ）もスマホ画面幅にピタッと収める */
  .shop-group, .group-title {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* メインの余白調整 */
  .shop-list-wrapper, .news-section {
    padding: 0 10px !important;
    margin: 20px auto !important;
  }

/* ▼ メニューを上3個・下2個に分ける特別ルール ▼ */
@media screen and (max-width: 1000px) {
  .main-navigation {
    padding: 10px 0; /* 上下の余白を少し整える */
  }
  .nav-list {
    display: flex !important;
    flex-wrap: wrap !important;     /* 改行を許可する */
    justify-content: center !important; /* 中央に寄せる（これで下の2個が真ん中に来ます） */
    gap: 15px 0 !important;         /* 上下の隙間をあける */
  }
  .nav-list li {
    width: 32% !important;          /* 1行に3個入るように、横幅を約3分の1（32%）にする */
    margin: 0 !important;           /* はみ出さないように元の余白をリセット */
    box-sizing: border-box !important;
  }
}
  /* ★イベントカレンダーを1列にして、スマホでも確実に文字を中央揃えにする特別仕様★ */
  .cal-card {
    width: 90% !important;
    height: auto !important;
    align-items: center !important; /* 子要素の配置を真ん中に寄せる */
    text-align: center !important;
  }
  .cal-shop,
  .cal-desc,
  .cal-date-box,
  .cal-date-box-small {
    width: 100% !important;
    text-align: center !important;
  }

  /* ひまわりトップ画像の文字枠をコンパクトに */
  .hero-content {
    padding: 20px !important;
    max-width: 90% !important;
  }
  .hero-title { font-size: 2.0rem !important; }
  .hero-text { font-size: 0.9rem !important; }

  /* 駐車場の写真をスマホでは2列にする */
  .top-parking-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .parking-box { padding: 8px; }
  .parking-box img { height: 90px !important; }
  .parking-box h5 { font-size: 0.8rem !important; white-space: normal; }
  
  img[alt="駐車場連絡通路のご案内"], 
  img[alt="本館屋上駐車場入口"] {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
  }
  
  /* 雨の日も安心枠の調整 */
  .top-parking-full-section div[style*="background-color: #fff9e6"] {
    padding: 15px 20px !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
  }
  .top-parking-full-section div[style*="font-size: 1.05rem"] {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
  }
  
  .parking-notice-box {
    display: block !important;
    margin: 0 auto !important;
    width: 92% !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .parking-notice-box span[style*="font-size: 1.6rem"] {
    display: inline-block !important;
    font-size: 1.3rem !important;
    white-space: nowrap !important;
  }
}


/* ▼ 絶対に上3個・下2個にする強制ルール ▼ */
@media screen and (max-width: 1024px) {
  .nav-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 10px 0 !important;
    width: 100% !important;
  }
  .nav-list li {
    width: 32% !important; /* 絶対に3分の1の幅 */
    min-width: 0 !important; /* 横幅の制限を解除 */
    margin: 5px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================
   16. タイトル帯の色を一括変更（明るい緑へ）
   ========================================== */
.event-section-title {
    background-color: #f0f7f4 !important; /* 明るい薄緑の背景 */
    border-left: 5px solid #a8c6b5 !important; /* 優しく明るい緑の縦線 */
    color: #334d40 !important; /* 少し濃い緑の文字色で見やすく */
}

/* おいでん花火大会の案内エリアの背景を明るい黄色系に変更 */
#oiden-hanabi .news-line-container {
    background-color: #fffdf0 !important; /* とても薄いクリームイエロー */
    border: 2px solid #fcebb6 !important; /* 少し濃いめの黄色系の枠線 */
}