@charset "UTF-8";

/*!
Theme Name: Cocoon-Child-renamed
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ========================
   パチメシ トップページ CSS（アニメ背景＋統合最新版・調整済）
   ======================== */

/* 共通設定 */
body.home, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #004a1c;
  text-align: center;
  background: #fff;
}

/* Cocoonデフォルトヘッダー要素を非表示 */
body.home .header-container,
body.home #sidebar,
body.home .sns-area,
body.home .date-tags,
body.home .post-meta,
body.home .post-date,
body.home .entry-date,
body.home .published,
body.home .updated,
body.home .header,
body.home .navi,
body.home .logo-header,
body.home .site-name-text,
body.home .site-tagline,
body.home .main-menu,
body.home .mobile-menu-buttons,
body.home .fixed-header,
body.home #header-container {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

/* ── ここから調整 ── */
/* wrap と main は上部余白だけリセット */
body.home .wrap,
body.home .main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* content は普通に表示、下に余白をつける */
body.home .content {
  margin: 0 auto 60px; /* 下に余白を戻す */
  padding: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* フッターを必ず表示＆余白を確保 */
body.home .site-footer,
body.home #colophon {
  display: block !important;
  margin-top: 40px !important;
}
/* ── 調整ここまで ── */

/* ヒーローエリア全体（アニメ背景） */
.hero-area {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background-color: #000;
}

.hero-area::before,
.hero-area::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: 115%;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(0, 74, 28, 0.7);
  z-index: 0;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: opacity 2s ease-in-out;
}


@keyframes zoomFaster { from { background-size: 115%; } to { background-size: 125%; } }
@keyframes fadeBg1    { 0%,48% { opacity:1; } 50%,100% { opacity:0; } }
@keyframes fadeBg2    { 0%,48% { opacity:0; } 50%,100% { opacity:1; } }

.hero-area > * { position: relative; z-index: 1; }

/* ロゴ中央上 */
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1em;
}
.hero-logo img {
  width: 260px;
  height: auto;
  margin-bottom: 1em;
}

/* ボタン類 */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1.5em;
}
.post-button, .today-button {
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 2em;
  border-radius: 10px;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.post-button { background: #e60023; color: #fff; }
.today-button { background: #fff; color: #004a1c; }

/* タブナビ */
.tab-nav { display: flex; justify-content: center; margin-top: .5em; gap:0; }
.tab-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  padding: .8em 1.2em;
  text-decoration: none;
  transition: .3s;
  border-left: none;
}
.tab-btn:first-child { border-left:2px solid white; border-radius:10px 0 0 10px; }
.tab-btn:last-child  { border-radius:0 10px 10px 0; }

/* 検索ボックス */
.search-box {
  display: flex;
  max-width: 600px;
  width: 90%;
  margin: 1.5em auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.search-box input[type="text"] {
  flex: 1;
  padding: 1em;
  border: none;
  font-size: 1em;
  color: #333;
  border-radius: 10px 0 0 10px;
  outline: none;
  width: auto;
}

.search-box input[type="submit"] {
  padding: 1em 1.5em;
  background-color: #e60023;
  color: white;
  font-weight: bold;
  border: none;
  font-size: 1em;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  width: auto;
}
/* 各種スマホ対応 */
@media screen and (max-width:768px){
  .hero-buttons { flex-direction:column; gap:.5em; }
  .tab-nav    { flex-direction:column; margin-top:1em; }
  .tab-btn    { width:100%; margin-bottom:.5em; }
}

/* 横並びレイアウト（説明＋新着） */
.review-and-intro-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  padding: 40px 20px;
  background-color: #f5fbf5;
  margin-bottom: 80px;
}

/* 説明ボックス（左） */
.intro-box {
  flex: 1 1 300px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  font-size: .95em;
  line-height: 1.7;
  color: #222;
}
.intro-box h2,
.intro-box h3 { color:#004a1c; margin-top:0; }
.intro-box ul { padding-left:1.2em; margin-bottom:1em; }
.intro-box li{ margin-bottom:.5em; }

/* 新着パチメシボックス（右） */
.review-list {
  flex: 1 1 600px;
}
.review-list h2 {
  color: #004a1c;
  margin-bottom: 1em;
}

/* 口コミカード */
.review-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom:30px;
  transition: transform .2s ease;
}
.review-item:hover { transform: scale(1.01); }
.review-item h3 a { color:#004a1c; text-decoration:none; }
.review-item h3 a:hover{ text-decoration:underline; }
.review-item p { margin:6px 0; line-height:1.6; }

/* 「もっと見る」 */
.more-button { text-align:center; }
.more-button a.btn {
  display:inline-block;
  background-color:#004a1c;
  color:#fff;
  padding:10px 24px;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
  transition: background-color .2s ease;
}
.more-button a.btn:hover { background-color:#006632; }

/* モバイル時は縦並び */
@media screen and (max-width:768px){
  .review-and-intro-container { flex-direction:column; }
  .intro-box, .review-list { flex:1 1 100%; }
  .review-item { padding:16px; }
}

button { cursor:pointer; }
/* ───────────────────────────────
   ページタイトル（.entry-header／.page-header）を非表示
──────────────────────────────── */

/* 固定ページ */
body.page .entry-header,
body.page .page-header {
  display: none !important;
}

/* 投稿（カスタム投稿含む） */
body.single .entry-header,
body.single .page-header {
  display: none !important;
}
/* === 全ページ共通：フッターを最下部に固定 === */
html:not(.home), body:not(.home) {
  height: 100%;
  margin: 0;
  padding: 0;
}

body:not(.home) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* メインエリアのラッパーがある場合だけ伸ばす */
body:not(.home) main,
body:not(.home) .main,
body:not(.home) .content,
body:not(.home) #content {
  flex: 1;
}

/* フッターを下に押し出す */
body:not(.home) footer,
body:not(.home) #footer,
body:not(.home) #footer-container,
body:not(.home) .site-footer {
  margin-top: auto;
}
/* 固定ページタイトルを非表示にする */
.page .entry-title,
.page .page-title {
  display: none !important;
}
/* ——— 市区町村検索エリアのバランス調整 ——— */
.hall-search-wrapper {
  max-width: 900px;      /* 全幅ではなく最大幅を900pxに */
  margin: 2em auto 3em;  /* 上2em／左右自動センタリング／下3em */
  padding: 0 1em;        /* 左右に1emの余白 */
  box-sizing: border-box;
}

/* 見出しを中央寄せ＆色と余白を調整 */
.hall-search-wrapper h2 {
  text-align: center;
  font-size: 1.4em;
  color: #004a1c;
  margin: 0 0 1em;
  padding: 0.5em 0;
  background: #f2fdf2;   /* お好みで背景色を付けてもOK */
  border-radius: 4px;
}

/* リスト出力部分にも余白を入れたい場合（ショートコード出力が <ul> なら） */
.hall-search-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hall-search-wrapper ul li {
  margin-bottom: 0.5em;
  padding: 0.5em;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* ◼︎ 「パチメシとは？」下のボタン用コンテナ */
body.home .intro-button-wrap {
  /* 左カラム幅に合わせて中央寄せ */
  flex: 1 1 300px;
  max-width: 420px;
  margin: 1.5em auto 0; 
  text-align: center;
}

/* ◼︎ 赤いボタン本体 */
body.home .cta-red-button {
  display: inline-block;
  background-color: #e60023;
  color: #fff;
  font-weight: bold;
  padding: 0.8em 1.6em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* ◼︎ ホバー時は濃いめの赤に */
body.home .cta-red-button:hover {
  background-color: #c4001f;
}
.fh-section {
  max-width: 720px;
  margin: 2em auto;
  background: #fff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  text-align: center;
}

.fh-date {
  font-size: 1.5em;
  text-align: center;
  font-weight: bold;
  border: 2px solid #0a4412;
  padding: 0.3em 1em;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1.5em;
}

.event-block {
  margin-bottom: 2em;
}

.event-label {
  font-size: 1.2em;
  font-weight: bold;
  color: #0a4412;
  margin-bottom: 0.5em;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
}

.event-list a {
  background-color: #e3f2e8;
  padding: 0.4em 1em;
  border-radius: 8px;
  text-decoration: none;
  color: #006633;
  font-weight: bold;
  transition: background 0.2s;
}

.event-list a:hover {
  background-color: #d1ebdb;
}

.no-event {
  font-size: 0.95em;
  background: #f4f4f4;
  padding: 0.4em 1em;
  border-radius: 6px;
  color: #888;
}
/* 横並びカード表示（PCのみ） */
@media screen and (min-width: 769px) {
  .fh-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fh-section .event-blocks {
    display: flex;
    gap: 2em;
    justify-content: center;
    width: 100%;
    margin-top: 1.5em;
  }

  .event-block {
    background: #fff;
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0,0,0,0.08);
    flex: 1;
    max-width: 320px;
  }

  .event-block .event-label {
    margin-bottom: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  .featured-halls-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
  }

  .fh-section {
    flex: 1 1 400px;
    max-width: 500px;
    background: #fff;
    padding: 1.5em;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
}
/* ————————————————————
   ホールページ 見出し
———————————————————— */
.single-hall-header {
  background: #004a1c;
  color: #fff;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}

/* ————————————————————
   冒頭説明文＋リンク
———————————————————— */
.hall-header-bar {
  max-width: 800px;
  margin: 0 auto 2em;
  padding: 0 1em;
  text-align: center;
}
.hall-header-bar .hall-description {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 1em;
}
.hall-header-bar .pworld-link {
  display: inline-block;
  padding: 0.5em 1.2em;
  background: #fff;
  border: 2px solid #004a1c;
  border-radius: 4px;
  color: #004a1c;
  text-decoration: none;
  font-weight: bold;
  transition: background .2s, color .2s;
}
.hall-header-bar .pworld-link:hover {
  background: #004a1c;
  color: #fff;
}
/* style.css に追加 */
.section-title {
  color: #004a1c;
  font-size: 1.6em;
  margin: 16px 0 8px;
}
.hero-copy {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  opacity: 0.95;
  z-index: 9999;
  margin: 0;
  pointer-events: none;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.intro-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 0.95em;
  line-height: 1.8;
}
.intro-list {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.cta-red-button {
  display: inline-block;
  background-color: #e60023;
  color: #fff;
  font-weight: bold;
  padding: 0.8em 1.6em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.review-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  text-align: left;
}
.review-thumb {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-date {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}
.btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}
#kachi-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  max-width: 90%;
  width: 500px;
}
.kachimeshi-genre {
  font-weight: bold;
  font-size: 2em;
  color: #c40000;
  margin: 4px 0;
  text-align: center;
}
.popup-close-wrap {
  text-align: center;
  margin-top: 10px;
}
.review-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  text-align: left;
}

.review-thumb {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.post-date {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}
@media screen and (max-width: 768px) {

  /* 背景が上下で切れないようにする */
  .hero-area::before,
  .hero-area::after {
    background-size: cover !important;
    background-position: center center !important;
  }

  /* タブボタン（探す3種） */
  .tab-nav {
    flex-direction: column;
    gap: 0.8em;
    margin-top: 1em;
  }

  .tab-btn {
    display: block;
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0.9em 1.2em;
    font-size: 1.05em;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    box-sizing: border-box;
  }

  /* 検索ボックスの「検索」ボタン対策 */
  .search-box input[type="submit"] {
    font-size: 0.95em;
    padding: 0.7em 1em;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 6px;
  }

  /* キャッチコピー（ロゴに被る問題を解消） */
  .hero-area h2 {
    font-size: 0.95em;
    margin-top: 0.5em;
    margin-right: 0.5em;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {

  .tab-nav {
    flex-direction: column !important;
    gap: 0.8em !important;
    margin-top: 1em !important;
  }

  .tab-btn {
    display: block !important;
    width: 88% !important;
    max-width: 320px !important;
    margin: 0.5em auto !important;
    padding: 0.9em 1.2em !important;
    font-size: 1.05em !important;
    text-align: center !important;
    border: 2px solid #ffffff !important;
    border-radius: 10px !important;
    background: transparent !important;
    color: #ffffff !important;
    box-sizing: border-box !important;
  }

  .search-box input[type="submit"] {
    font-size: 0.95em !important;
    padding: 0.7em 1em !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
  }

  .hero-area h2 {
    font-size: 0.85em !important;
    margin-top: 0.5em !important;
    margin-right: 0.5em !important;
    text-align: right !important;
  }
}
@media screen and (max-width: 360px) {
  .hero-area h2 {
    font-size: 0.7em !important;
    margin-top: 0.2em !important;
    margin-right: 0.3em !important;
    text-align: right !important;
  }

  .tab-btn {
    font-size: 0.9em !important;
    padding: 0.8em 1em !important;
    border-radius: 10px !important;
  }

  .hero-buttons .button,
  .hero-buttons a {
    font-size: 0.95em !important;
    padding: 0.9em 1.2em !important;
    border-radius: 10px !important;
  }

  .search-box input[type="submit"] {
    font-size: 0.85em !important;
    padding: 0.8em 1em !important;
  }

  .search-box input[type="text"] {
    font-size: 0.9em !important;
  }

  .hero-logo img {
    max-width: 90% !important;
    height: auto !important;
  }

  .hero-main {
    padding-bottom: 1.5em !important;
  }
}
/* ===== モバイル対応 全体修正（最大768px）===== */
@media screen and (max-width: 768px) {

  /* 1. ヒーロー見出し・キャッチコピー調整 */
  .hero-area h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero-area p.catch-copy {
    font-size: 0.9rem;
    text-align: right;
    margin: 0;
    padding-right: 0.5em;
  }

  /* 2. タブボタン（探す系）調整 */
  .tab-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    margin-top: 1.5em;
  }

  .tab-btn {
    display: block;
    width: 88%;
    max-width: 320px;
    padding: 0.9em 1em;
    font-size: 1em;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    box-sizing: border-box;
  }

  /* 3. 検索フォーム周り */
  .search-box {
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
    padding: 0 1em;
  }

  .search-box input[type="text"] {
    flex: 1;
    font-size: 1em;
    padding: 0.8em 1em;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
  }

  .search-box input[type="submit"] {
    font-size: 0.95em;
    padding: 0.8em 1em;
    border-radius: 0 8px 8px 0;
    background: #e4002b;
    color: #fff;
    border: none;
    white-space: nowrap;
  }

  /* 4. 背景画像切れ対策 */
  .hero-area::before,
  .hero-area::after {
    background-size: cover !important;
    background-position: center center !important;
  }
}
/* 検索フォームのスタイル調整（モバイル用） */
@media screen and (max-width: 768px) {
  .search-box {
    display: flex;
    justify-content: center;
    gap: 0.5em; /* ← ボタンとの間隔 */
    padding: 1em 0;
  }

  .search-box input[type="text"] {
    width: 60vw;       /* ← テキスト欄を少し短く */
    max-width: 240px;
    padding: 0.8em;
    font-size: 1em;
    border-radius: 8px;
    border: none;
  }

  .search-box input[type="submit"] {
    padding: 0.8em 1.2em;
    font-size: 1em;
    border-radius: 8px;
    border: none;
    background-color: #e6002f;
    color: #fff;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  /* ▼ 全体の検索フォーム（白い枠）をコンパクトにする */
  .search-box {
    padding: 0px 3px !important;        /* 上下4px, 左右10px → 枠の余白を減らす（高さを縮める） */
    border-radius: 10px !important;      /* 角丸を少し小さめに */
	  }
	   /* ▼ テキスト入力欄（「キーワードから探す」）を小さくする */
  .search-box input[type="text"] {
    height: 32px !important;             /* 高さを小さくする（デフォルトより短く） */
    font-size: 14px !important;          /* 文字サイズを小さめに */
    padding: 4px 20px !important;         /* 内側余白：上下4px、左右8px → 入力欄が細くなる */
  } }
/* PC（幅481px以上）のデフォルトスタイル */
.hero-copy {
  font-size: 8px;
  line-height: 1.4;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.area-label {
  font-size: 14px;
  margin-top: 5px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-copy-wrapper {
  margin-top: 10px;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .hero-copy {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .area-label {
    font-size: 12px !important;
  }

  .hero-copy-wrapper {
    padding: 0 10px !important;
  }
}

/* 親コンテナ */
.review-and-intro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
  padding: 40px 20px;
}

/* 左カラム（パチメシとは） */
.intro-box {
  flex: 0 1 320px;
  max-width: 400px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* 右カラム（新着パチメシ） */
.review-list {
  flex: 1 1 480px;
  max-width: 600px;
}

.review-list img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .review-and-intro-container {
    flex-direction: column;
    align-items: center;
  }

  .intro-box, .review-list {
    max-width: 90%;
  }
}
.hall-split-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}
.hall-column {
  flex: 1 1 400px;
  max-width: 500px;
}
.hall-column h2 {
  text-align: center;
  color: #004a1c;
}
#event-halls-list > div,
#anniv-halls-list > div {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1em;
  margin-bottom: 1em;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}
@media screen and (max-width: 768px) {
  .hall-split-container {
    flex-direction: column;
    align-items: center;
  }
}
.hall-days-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 1em;
}
.hall-day-block h3 {
  color: #00441c;
  margin-bottom: 0.5em;
}
.hall-split-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.hall-column {
  flex: 1 1 45%;
  background: #ffffff;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}
/* 背景色をhtml/body全体に適用 */
html, body {
  background-color: #f8fdf8; /* 今のうす緑水色（変更可） */
  height: 100%;
  margin: 0;
  padding: 0;
}

/* コンテンツを確実に最低でも画面高まで広げる */
body > .wrapper, .site, main {
  min-height: 100vh;
}
.hero-hidden-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-area {
  padding-top: 100px; /* ← ここでロゴの上に余白を作る */
}
.restaurant-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
	
}

.restaurant-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* テキスト情報（左側） */
.restaurant-content {
  flex: 1 1 100%;
}

/* 画像＋リンク（右側） */
.restaurant-footer {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 10px;
}

/* PC時：横並び（左右にゆとり） */
@media screen and (min-width: 768px) {
  .restaurant-content {
    flex: 1 1 60%;
  }
  .restaurant-footer {
    flex: 1 1 35%;
    text-align: left; /* ← 中央寄せにしたいなら center でもOK */
    padding-left: 20px;
  }
}

/* 画像共通 */
.restaurant-footer img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.hero-bg-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  animation: slowZoom 20s ease-in-out infinite;
}
.hero-bg-img.show {
  opacity: 1;
  z-index: 1;
}
@keyframes slowZoom {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* ────────────────
   パンくずリストをまるごと隠す
   ──────────────── */
.breadcrumb,
#breadcrumb,
.breadcrumb-area,
.breadcrumb-container {
  display: none !important;
}
/* ─────────────────────────────────────
   ヒーローエリアのオーバーレイを薄くする
───────────────────────────────────── */
.hero-area::before,
.hero-area::after {
  /* ここを 0.7 → 0.3 などに変更 */
  background-color: rgba(0, 74, 28, 0.5) !important;
}
@media screen and (max-width: 480px) {
  /* 🔍 検索フォームボックス全体（横並びを維持） */
  .search-box {
    display: flex;
    flex-direction: row;         /* ← 横並びに固定 */
    align-items: center;
    justify-content: center;
    gap: 6px;                    /* 入力欄とボタンの間 */
    padding: 0.5em 0.8em;        /* 上下左右の内側余白 */
    box-sizing: border-box;
    width: 96%;
  }

  /* 🧾 キーワード入力欄（テキストフィールド） */
  .search-box input[type="text"] {
    flex: 1;
    font-size: 14px;             /* テキストサイズ */
    padding: 10px 12px;          /* 上下10px・左右12px */
    border-radius: 6px 0 0 6px;  /* 左端のみ角丸 */
    border: none;
    box-sizing: border-box;
  }

  /* 🔴 検索ボタン */
  .search-box input[type="submit"] {
    font-size: 14px;             /* テキストサイズ */
    padding: 10px 16px;          /* 上下10px・左右14px */
    border-radius: 0 6px 6px 0;  /* 右端のみ角丸 */
    background-color: #e60023;
    color: white;
    border: none;
    white-space: nowrap;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .search-box {
    display: flex;
    flex-direction: row;         
    align-items: center;
    justify-content: center;
    gap: 8px;                    /* タブレットでは余裕あり */
    padding: 0.8em 1em;
    width: 95%;
    box-sizing: border-box;
  }

  .search-box input[type="text"] {
    flex: 1;
    font-size: 18px;             /* 少し大きめに */
    padding: 12px 16px;          /* 上下12px・左右16px */
    border-radius: 8px 0 0 8px;
    border: none;
    box-sizing: border-box;
  }

  .search-box input[type="submit"] {
    font-size: 16px;
    padding: 12px 18px;          /* 上下12px・左右18px */
    border-radius: 0 8px 8px 0;
    background-color: #e60023;
    color: white;
    border: none;
    white-space: nowrap;
  }
}
/* ▼ モバイル（～480px）とタブレット（481～768px）のときだけ中央寄せ */
@media screen and (max-width: 768px) {
  .intro-box h2 {
    text-align: center;           /* テキスト中央揃え */
    margin: 0 auto 1em auto;      /* 完全に中央に配置（上下・左右） */
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
#kachi-button {
  background-color: white;
  color: #004a1c;
  font-size: 1.1em;
  font-weight: bold;
  padding: 14px 26px;
  border: 2px solid #004a1c;
  border-radius: 8px;
  box-shadow: none;
  text-shadow: none;
  width: auto;
  display: inline-block;
  margin: 0 5px;
  transition: background-color 0.3s, color 0.3s;
}

#kachi-button:hover {
  background-color: #004a1c;
  color: white;
  cursor: pointer;
}
.search-item {
  border: 2px solid #dd3355;
  padding: 1em;
  margin: 1em 0;
  border-radius: 12px;
  background: #fffefc;
}

.search-title {
  font-size: 1.2em;
  color: #006633;
  margin-bottom: 0.5em;
}

.thumbnail img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

.meta-info p {
  margin: 0.3em 0;
  font-size: 0.95em;
}
/* モーダル全体は最初 hidden */
.area-filter-modal { display: none; position: fixed; inset: 0; z-index: 9999; }

/* 透過オーバーレイ */
.area-filter-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }

/* 中身 */
.area-filter-content {
  position: relative;
  width: 90%; max-width: 500px; max-height: 80vh;
  margin: 5vh auto; background: #fff; border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
}

/* ヘッダー */
.area-filter-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem; border-bottom: 1px solid #eee;
}
.close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* 本文：チェックリスト */
.area-filter-body {
  padding: 1rem; overflow-y: auto; flex: 1;
  display: flex; flex-wrap: wrap;
}
.area-filter-body label {
  width: 50%; margin-bottom: .5rem; cursor: pointer; font-size: .9rem;
}
.area-filter-body input { margin-right: .5em; }

/* フッター */
.area-filter-footer {
  padding: 1rem; border-top: 1px solid #eee; text-align: right;
}
.btn-apply {
  background: #0073aa; color: #fff; border: none;
  padding: .5rem 1rem; border-radius: 4px; cursor: pointer;
}
.btn-apply:hover { background: #005f8d; }
/* 隠し TOC */
#toc-source { display: none !important; }

/* モーダルの基本スタイル */
.area-filter-modal { display:none; position:fixed; inset:0; z-index:9999; }
.area-filter-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.5); }
.area-filter-content {
  position:relative; margin:5vh auto; width:90%; max-width:500px;
  background:#fff; border-radius:6px; overflow:hidden;
  display:flex; flex-direction:column; max-height:80vh;
}
.area-filter-header, .area-filter-footer {
  padding:1rem; border-bottom:1px solid #eee;
}
.area-filter-header { display:flex; justify-content:space-between; }
.close-btn { background:none; border:none; font-size:1.5rem; cursor:pointer; }
.area-filter-body {
  padding:1rem; overflow-y:auto; display:flex; flex-wrap:wrap; gap:0.5rem;
}
.area-filter-body label { width:50%; cursor:pointer; }
.btn-apply {
  background:#0073aa; color:#fff; border:none; padding:.5rem 1rem;
  border-radius:4px; cursor:pointer;
}
/* 区名ヘッダー */
.area-heading {
  font-size: 1.2rem;
  font-weight: bold;
  background: #f2f2f2;
  padding: 10px 14px;
  margin: 24px 0 10px;
  border-left: 5px solid #4CAF50;
  cursor: pointer;
}
/* 共通設定 */
.area-heading {
  background: #f2f2f2;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1.2rem;
  border-left: 6px solid #4CAF50;
  margin-top: 36px;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.area-heading:hover {
  background: #e8f5e9;
}
.area-heading::after {
  content: "▶";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.area-heading.open::after {
  content: "▼";
}

/* リスト全体 */
.hall-list {
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0 8px;
}
.hall-list.show {
  display: flex;
}

/* ホールごとのカード */
.hall-list li {
  list-style: none;
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  box-sizing: border-box;
}
.hall-list li a {
  display: block;
  background: #fff;
  border: 2px solid #4CAF50;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, transform 0.2s;
}
.hall-list li a:hover {
  background: #e8f5e9;
  transform: scale(1.03);
}

/* モバイルは1カラム、タブレットは2カラム */
@media screen and (max-width: 900px) {
  .hall-list li {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media screen and (max-width: 600px) {
  .hall-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .area-heading {
    font-size: 1.1rem;
    padding: 10px 14px;
  }
}
/* 2〜3カラムのグリッドレイアウト */
.hall-list {
  display: none;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 8px;
}
.hall-list.show {
  display: flex;
}

/* 各ホール項目をカードっぽく */
.hall-list li {
  list-style: none;
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  box-sizing: border-box;
}
.hall-list li a {
  display: block;
  background: #ffffff;
  border: 2px solid #4CAF50;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: background 0.3s, transform 0.2s;
}
.hall-list li a:hover {
  background: #e8f5e9;
  transform: scale(1.03);
}

/* タブレット：2カラム */
@media screen and (max-width: 900px) {
  .hall-list li {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
/* モバイル：1カラム */
@media screen and (max-width: 600px) {
  .hall-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
