@charset "UTF-8";

/* ========================================
   CSS Variables (デザインルールの適用)
======================================== */
/*:root {
    --color-bg: #F7F5F0;       
    --color-main: #2C4234;     
    --color-accent: #D96D2B;   
    --color-text: #333333;     
    --color-white: #FFFFFF;
    --font-mincho: "游明朝", "Yu Mincho", "筑紫Aオールド明朝", serif;
    --font-body: "Noto Sans JP", "游ゴシック", "Yu Gothic", sans-serif;
    --font-body: "Zen Kaku Gothic New", sans-serif;
}
*/

:root {
  /* 背景を温かみのあるクリーム色に */
  --color-bg: #FFF9F0;       
  /* メインカラーを、明るく親しみやすい「森の緑」に */
  --color-main: #4A7A59;     
  /* アクセントを、元気でポップな「オレンジ」に */
  --color-accent: #F5903D;   
  /* 文字色を少し柔らかいダークグレーに */
  --color-text: #4A4A4A;     
  --color-white: #FFFFFF;

  /* フォントをすべて「丸ゴシック」に統一！ */
  --font-mincho: "Zen Maru Gothic", sans-serif;
  --font-body: "Zen Maru Gothic", sans-serif;
}
/* ========================================
   Base / Reset
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  background-color: #fdfaf6;
  background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
  background-position: center;
  background-attachment: fixed; /* 背景を固定 */
  
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

/* ユーティリティクラス */
.font-mincho {
    font-family: var(--font-mincho);
    font-weight: normal;
}

/* ========================================
   Common Layout (Header, Footer)
======================================== */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg); /* ベースカラー */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 900; 
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  height: 64px;
}

.header-logo a {
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: bold;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo-image {
    width: 100px;
    height: 100px;
}

/* ハンバーガーボタン */
.hamburger-btn {
  width: 32px;
  height: 24px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 902;
}

.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 11px; }
.hamburger-line:nth-child(3) { bottom: 0; }

.hamburger-btn.is-active .hamburger-line:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger-btn.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active .hamburger-line:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* フルスクリーンナビゲーション */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 901;
}

.global-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  text-align: center;
}

.nav-list li {
  margin-bottom: 24px;
}

.nav-list a {
  color: var(--color-main);
  font-size: 1.25rem;
}

/* フッター */
.global-footer {
  background-color: var(--color-main);
  color: #F7F5F0;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: 60px;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.footer-info {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.footer-info p { margin-bottom: 16px; }
.footer-tel a { color: #F7F5F0; font-size: 1.2rem; font-weight: bold; }
.footer-link { margin-bottom: 40px; }

.btn-access {
  display: inline-block;
  border: 1px solid #F7F5F0;
  color: #F7F5F0;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-access:hover {
  background-color: #F7F5F0;
  color: var(--color-main);
}

.footer-copyright { font-size: 0.75rem; opacity: 0.7; }

/* ========================================
   ボタン類 (Sticky, Main, Outline)
======================================== */
.sticky-btn-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.sticky-btn-wrapper.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 400;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(217, 109, 43, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}
.btn-accent:active { transform: scale(0.95); }

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-text-wrapper .main-text { font-size: 1.1rem; font-weight: bold; letter-spacing: 0.05em; }
.btn-text-wrapper .sub-text { font-size: 0.65rem; opacity: 0.9; margin-top: 4px; }

.btn-main {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-white);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 10px rgba(44, 66, 52, 0.2);
  transition: all 0.3s ease;
}
.btn-main:hover {
  background-color: rgba(30, 45, 35, 1);
  box-shadow: 0 6px 15px rgba(44, 66, 52, 0.3);
  transform: translateY(-2px);
}

.btn-outline-main {
  display: inline-block;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  padding: 16px 32px;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-outline-main:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

/* ========================================
   Modal
======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal.is-open .modal-content { transform: translateY(0); }

.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(44, 66, 52, 0.8);
}

.modal-content {
    background-color: var(--color-bg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow-y: auto;
    z-index: 1;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-close-btn {
    position: absolute;
    top: 12px; right: 12px;
    background: none; border: none; font-size: 1.5rem; color: var(--color-main); cursor: pointer;
}

.modal-title { color: var(--color-main); margin-bottom: 12px; text-align: center; }
.modal-desc { font-size: 0.85rem; margin-bottom: 24px; text-align: center; }

.simulation-form-placeholder {
    background-color: var(--color-white);
    border: 1px dashed var(--color-main);
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 24px;
}

/* ========================================
   Top Page Styles
======================================== */
.top-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); z-index: 2; }
.hero-text { position: relative; z-index: 10; text-align: center; color: var(--color-white); padding: 0 20px; }
.hero-text h2 { font-size: 1.5rem; line-height: 2; letter-spacing: 0.05em; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.top-intro { padding: 60px 20px; text-align: center; }
.intro-title { color: var(--color-main); font-size: 1.4rem; margin-bottom: 24px; }
.intro-text { font-size: 0.95rem; line-height: 2.2; color: var(--color-text); }

.top-facilities { padding: 0 20px 60px; }
.facility-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
.facility-card { display: block; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.facility-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.card-badge { position: absolute; top: 16px; left: 16px; background-color: var(--color-accent); color: var(--color-white); padding: 6px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; z-index: 10; }
.card-img-wrapper { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.facility-card:hover .card-img-wrapper img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-title { color: var(--color-main); font-size: 1.25rem; margin-bottom: 12px; border-bottom: 1px solid rgba(44, 66, 52, 0.2); padding-bottom: 12px; }
.card-desc { font-size: 0.9rem; margin-bottom: 16px; color: var(--color-text); }
.card-link-text { display: inline-block; color: var(--color-accent); font-size: 0.9rem; font-weight: bold; position: relative; }
.card-link-text::after { content: "→"; margin-left: 4px; transition: margin-left 0.3s ease; }
.facility-card:hover .card-link-text::after { margin-left: 8px; }

.top-commitment { padding: 60px 20px; background-color: var(--color-main) !important; color: var(--color-white); text-align: center; } /* ここはモジュールUIの色除外のため !important 指定 */
.commitment-inner { max-width: 600px; margin: 0 auto; }
.commitment-title { font-size: 1.4rem; margin-bottom: 24px; }
.commitment-text { font-size: 0.9rem; line-height: 2; margin-bottom: 32px; }
.btn-outline { display: inline-block; border: 1px solid var(--color-white); color: var(--color-white); padding: 16px 32px; border-radius: 50px; transition: background-color 0.3s ease, color 0.3s ease; }
.btn-outline:hover { background-color: var(--color-white); color: var(--color-main); }


/* ========================================
   下層ページ共通
======================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.page-hero h2 { font-size: 1.25rem; line-height: 1.8; }

.section-title {
  text-align: center;
  color: var(--color-main);
  font-size: 1.5rem;
  margin-bottom: 40px;
  position: relative;
}
.section-title::after { content: ''; display: block; width: 40px; height: 2px; background-color: var(--color-accent); margin: 16px auto 0; }

.page-bottom-cta { padding: 80px 20px; text-align: center; }
.cta-message { color: var(--color-main); font-size: 1.3rem; margin-bottom: 32px; }

.large-cta-btn, .large-cta-btn-main {
  display: inline-flex; flex-direction: column; align-items: center; padding: 20px 40px;
  border-radius: 50px; /* ストーリーページと同じ美しい丸み */
  transition: transform 0.3s, box-shadow 0.3s; /* フワッと浮く動きの準備 */
  text-decoration: none;
}
.large-cta-btn { box-shadow: 0 8px 20px rgba(217, 109, 43, 0.3); }
.large-cta-btn-main { box-shadow: 0 8px 20px rgba(44, 66, 52, 0.15); }

/* ホバー（タップ）時に少し浮き上がる動き */
.large-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(217, 109, 43, 0.4); }
.large-cta-btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(44, 66, 52, 0.25); }

/* ▼ ストーリーページと同じ、上品なフォントスタイルに統一 */
.large-cta-btn .main-text, .large-cta-btn-main .main-text { 
  font-size: 1.1rem; 
  font-weight: normal; /* 太字(bold)をやめて上品に */
  line-height: 1.5; 
  margin-bottom: 4px; 
}
.large-cta-btn .sub-text, .large-cta-btn-main .sub-text { 
  font-size: 0.85rem; 
  opacity: 0.9; 
  font-weight: normal;
}
/* 予約ステップガイド */
.reservation-steps-guide {
  display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 600px; margin: 0 auto;
  padding: 24px 16px; border-radius: 16px;
}
.step-item { display: flex; flex-direction: column; align-items: center; flex: 1; text-align: center; }
.step-num { background: var(--color-accent); color: #fff; font-size: 0.7rem; font-weight: bold; padding: 2px 10px; border-radius: 20px; margin-bottom: 8px; letter-spacing: 0.05em; }
.step-icon { font-size: 2rem; margin-bottom: 8px; }
.step-item p { font-size: 0.8rem; line-height: 1.4; color: var(--color-main); font-weight: bold; margin: 0; }
.step-arrow { color: #ccc; font-size: 1.2rem; }

/* FAQアコーディオン */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-item summary { display: block; padding: 20px 40px 20px 0; cursor: pointer; position: relative; font-size: 1.05rem; color: var(--color-main); font-weight: bold; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '＋'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--color-accent); font-size: 1.2rem; }
.faq-item[open] summary::after { content: '－'; }
.faq-answer { padding: 0 0 20px; font-size: 0.95rem; line-height: 1.8; color: var(--color-text); }


/* ========================================
   各ページ独自コンポーネント (Fishing, Restaurant, BBQ, Dogrun, Story, Access)
   ※レイアウト（paddingやgrid）のみ残し、不要な背景色は削除
======================================== */

/* --- Fishing --- */
.fishing-appeal { padding: 60px 20px; text-align: center; }
.appeal-inner { max-width: 700px; margin: 0 auto; }
.appeal-title { color: var(--color-accent); font-size: 1.4rem; margin-bottom: 24px; letter-spacing: 0.05em; }
.appeal-text { font-size: 1rem; line-height: 2.2; color: var(--color-text); }

.fishing-rules { padding: 60px 20px; }
.rules-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }

.fishing-pricing { padding: 60px 20px; }
.pricing-header { text-align: center; margin-bottom: 40px; }
.pricing-lead { font-size: 1rem; color: var(--color-text); }
.pricing-lead strong { color: var(--color-accent); font-size: 1.2rem; }
.pricing-card { border-radius: 12px; padding: 32px 24px; position: relative; }
.pricing-card.pattern-a { border: 2px solid var(--color-accent); }

.premium-highlight { background-color: rgba(217, 109, 43, 0.08); border: 1px solid rgba(217, 109, 43, 0.2); border-radius: 8px; padding: 20px; text-align: center; margin-bottom: 32px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.premium-highlight.is-standard { background-color: var(--color-bg); border-color: rgba(44, 66, 52, 0.1); }
.highlight-label { font-size: 0.9rem; color: var(--color-text); }
.highlight-main { color: var(--color-accent); font-size: 1.6rem; font-weight: bold; letter-spacing: 0.05em; }
.premium-highlight.is-standard .highlight-main { color: var(--color-main); }
.highlight-sub { font-size: 0.8rem; color: #666; margin-top: 4px; }

.formula-area { margin-bottom: 32px; background-color: var(--color-bg); padding: 20px 16px; border-radius: 8px; }
.formula-lead { text-align: center; font-size: 0.85rem; margin-bottom: 12px; }
.formula-visual { display: flex; align-items: center; justify-content: center; gap: 8px; }
.formula-box { background-color: var(--color-white); border: 1px solid var(--color-main); color: var(--color-main); padding: 10px 16px; border-radius: 4px; font-size: 0.95rem; font-weight: bold; text-align: center; flex: 1; max-width: 200px; }
.formula-sign { color: var(--color-accent); font-weight: bold; font-size: 1.2rem; }

.price-menu-area { display: flex; flex-direction: column; gap: 24px; }
.menu-block-title { color: var(--color-main); font-size: 1.1rem; margin-bottom: 12px; border-bottom: 1px solid rgba(44, 66, 52, 0.2); padding-bottom: 8px; }
.menu-block-title small { font-size: 0.8rem; margin-left: 8px; color: #666; }
.menu-note { font-size: 0.85rem; color: #666; margin-bottom: 12px; }
.menu-list { list-style: none; padding: 0; }
.menu-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; margin-bottom: 4px; position: relative; }
.menu-list li::before { content: ""; position: absolute; left: 0; right: 0; bottom: 12px; border-bottom: 1px dotted #ccc; z-index: 1; }
.item-name, .item-price { background-color: var(--color-white); position: relative; z-index: 2; }
.item-name { padding-right: 8px; font-size: 0.95rem; color: var(--color-text); }
.item-price { padding-left: 8px; font-size: 1rem; font-weight: bold; color: var(--color-main); }

.menu-split-container { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
.menu-sub-title { background-color: var(--color-bg); color: var(--color-main); padding: 8px 12px; border-radius: 4px; font-size: 0.9rem; margin-bottom: 12px; text-align: center; font-weight: bold; letter-spacing: 0.05em; }
.item-name small { font-size: 0.75rem; color: #666; margin-left: 4px; }

.pricing-tabs-wrapper { max-width: 600px; margin: 0 auto 32px; }
.tabs-hint { text-align: center; font-size: 0.85rem; color: #666; margin-bottom: 8px; }
.pricing-tabs { display: flex; gap: 8px; }
.tab-btn { flex: 1; padding: 16px 8px; background-color: var(--color-bg); border: 1px solid rgba(44,66,52,0.2); color: var(--color-main); font-size: 0.95rem; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.tab-btn.is-active { background-color: var(--color-main); color: var(--color-white); border-color: var(--color-main); }
.tab-content { display: none; animation: fadeInTab 0.4s ease forwards; }
.tab-content.is-active { display: block; }

/* ========================================
   ステップ形式カードUI（釣り堀の料金・遊び方用）
======================================== */
.step-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 5px solid var(--color-main); /* 左側のアクセントライン */
}

/* お得なステップや重要なステップの色を変える */
.step-card.is-accent {
  border-left-color: var(--color-accent);
}

.step-card-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F5E6C8; /* 薄い背景色に合わせて調整 */
  color: var(--color-main);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.step-card.is-accent .step-card-badge {
  background: rgba(217, 109, 43, 0.1);
  color: var(--color-accent);
}

.step-card-badge span.step-text {
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 2px;
}

.step-card-badge span.step-num {
  font-size: 1.6rem;
  line-height: 1;
  font-family: Arial, sans-serif; /* 数字をくっきりと */
}

.step-card-content {
  flex-grow: 1;
}

.step-card-content h4 {
  font-size: 1.25rem;
  color: var(--color-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.step-card-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* カード内の料金リストの装飾 */
.step-card-content .menu-list {
  background: #F9F9F9;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
}

/* スマホ用の調整（縦並びにして見やすく） */
@media screen and (max-width: 600px) {
  .step-card {
      flex-direction: column;
      gap: 16px;
      padding: 20px;
  }
  .step-card-badge {
      width: 50px;
      height: 50px;
  }
  .step-card-badge span.step-text { font-size: 0.65rem; }
  .step-card-badge span.step-num { font-size: 1.3rem; }
}

@keyframes fadeInTab { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.fishing-faq { padding: 60px 20px; }


/* --- Restaurant --- */
.restaurant-hero { background-image: url('images/HP1.jpg'); background-size: cover; background-position: center; background-blend-mode: multiply; background-color: rgba(0, 0, 0, 0.4); flex-direction: column; }
.restaurant-hero h2 { color: var(--color-white); text-align: center; font-size: 1.4rem; line-height: 1.8; margin-bottom: 24px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.restaurant-concept { padding: 60px 20px; }
.concept-flex { display: flex; flex-direction: column; gap: 32px; }
.concept-text p { margin-bottom: 16px; }
.concept-image img { width: 100%; border-radius: 12px; }
.restaurant-experience { padding: 60px 20px; }
.experience-lead { text-align: center; margin-bottom: 40px; }
.experience-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.experience-card { border-radius: 12px; overflow: hidden; }
.exp-img { width: 100%; height: 200px; object-fit: cover; }
.exp-content { padding: 24px; }
.exp-content h4 { color: var(--color-main); font-size: 1.2rem; line-height: 1.5; margin-bottom: 12px; border-bottom: 1px dashed rgba(44, 66, 52, 0.3); padding-bottom: 12px; }
.restaurant-ingredients { padding: 60px 20px; }
.menu-card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
.menu-card { border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.menu-card-thumb { margin: 0; width: 100%; height: 220px; background-color: #eee; }
.menu-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.menu-card-title { color: var(--color-main); font-size: 1.25rem; line-height: 1.4; margin-bottom: 12px; border-bottom: 1px dashed rgba(44, 66, 52, 0.3); padding-bottom: 12px; }
.menu-card-desc { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.menu-card-price { color: var(--color-accent); font-size: 1.8rem; font-weight: bold; text-align: right; margin: 0; }
.menu-card-price .currency { font-size: 1rem; margin-left: 4px; }
.menu-card-list { margin: 0; padding: 0; }
.menu-list-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px dotted #ccc; }
.menu-list-row:last-child { border-bottom: none; padding-bottom: 0; }
.menu-list-row dt { font-size: 0.95rem; color: var(--color-text); }
.menu-list-row dt small { font-size: 0.8rem; color: #888; margin-left: 4px; }
.menu-list-row dd { font-size: 1.1rem; font-weight: bold; color: var(--color-main); margin: 0; }


/* --- BBQ --- */
.bbq-hero { position: relative; width: 100%; height: 80vh; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.bbq-hero .hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.bbq-hero::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 2; }
.bbq-hero .hero-content { position: relative; z-index: 3; text-align: center; padding: 0 20px; color: var(--color-white); }
.bbq-hero h2 { font-size: 1.6rem; line-height: 1.6; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); margin: 0; }
.bbq-hero .hero-badge { background-color: rgba(255, 255, 255, 0.9); padding: 8px 16px; border-radius: 50px; display: inline-block; }

.bbq-features { padding: 60px 20px; }
.feature-flex { display: flex; flex-direction: column; gap: 32px; }
.feature-text p { margin-bottom: 16px; line-height: 1.8; }
.feature-image img { width: 100%; border-radius: 12px; }

.bbq-dog-benefit { padding: 20px; }
.dog-benefit-box { background-color: #fffaf0; border: 3px solid var(--color-accent); border-radius: 16px; padding: 32px 24px; text-align: center; }
.dog-benefit-title { color: var(--color-accent); font-size: 1.4rem; line-height: 1.5; margin-bottom: 16px; }
.dog-benefit-title .icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.dog-benefit-desc { line-height: 1.8; color: var(--color-text); }
.dog-benefit-desc strong { font-size: 1.1rem; color: var(--color-main); background: linear-gradient(transparent 60%, rgba(200, 90, 23, 0.2) 60%); }

.bbq-plans { padding: 60px 20px; }
.attention-text { color: var(--color-accent); font-size: 0.9rem; font-weight: bold; margin-bottom: 32px; text-align: center; }
.plan-card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
.plan-card { border: 1px solid #ddd; border-radius: 12px; position: relative; display: flex; flex-direction: column; }
.plan-card.is-popular { border: 2px solid var(--color-accent); transform: translateY(-5px); }
.plan-card-thumb { margin: 0; width: 100%; height: 200px; background-color: #eee; overflow: hidden; border-radius: 12px 12px 0 0; }
.plan-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.plan-card:hover .plan-card-thumb img { transform: scale(1.05); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background-color: var(--color-accent); color: #fff; padding: 4px 16px; border-radius: 20px; font-weight: bold; font-size: 0.85rem; letter-spacing: 1px; z-index: 10;}
.plan-header { background-color: var(--color-main); color: #fff; padding: 24px 20px; text-align: center; border-radius: 10px 10px 0 0; }
.plan-card.is-popular .plan-header { background-color: var(--color-accent); }
.plan-header h4 { font-size: 1.3rem; margin-bottom: 8px; }
.plan-price { font-size: 2rem; font-weight: bold; }
.plan-price .currency { font-size: 1rem; font-weight: normal; margin-left: 4px; }
.plan-body { padding: 24px; flex-grow: 1; }
.plan-desc { font-size: 0.9rem; color: #555; margin-bottom: 20px; line-height: 1.5; border-bottom: 1px dashed #ccc; padding-bottom: 16px; }
.plan-items { list-style: none; padding: 0; margin: 0; }
.plan-items li { position: relative; padding-left: 20px; margin-bottom: 12px; line-height: 1.4; }
.plan-items li::before { content: "✓"; position: absolute; left: 0; color: var(--color-main); font-weight: bold; }
.plan-card.is-popular .plan-items li::before { color: var(--color-accent); }

.kids-price-info { padding: 24px; border-radius: 12px; text-align: center; background-color: var(--color-bg); }
.kids-price-info h4 { color: var(--color-main); margin-bottom: 12px; }

.bbq-drinks { padding: 60px 20px; }
.drink-list { max-width: 500px; margin: 0 auto; list-style: none; padding: 24px; border-radius: 12px; }
.drink-list li { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px dotted #ccc; font-weight: bold; }
.drink-list li:last-child { border-bottom: none; padding-bottom: 0; }
.drink-name { color: var(--color-text); }
.drink-price { color: var(--color-main); font-size: 1.1rem; }

.bbq-rules { padding: 60px 20px; }
.rule-list { list-style: none; padding: 0;}


/* --- Dog Run --- */
.dogrun-hero { position: relative; height: 70vh; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.dogrun-hero::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); z-index: 2; }
.dogrun-hero .hero-content { position: relative; z-index: 3; text-align: center; color: #fff; }
.dogrun-hero h2 { font-size: 1.8rem; line-height: 1.6; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.dogrun-hero .sub-copy { font-size: 1.1rem; display: block; margin-top: 10px; font-weight: normal; }

.dogrun-environment { padding: 60px 20px; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
.feature-item h4 { margin: 15px 0 10px; color: var(--color-main); font-size: 1.2rem; }
.feature-img-box img { width: 100%; border-radius: 12px; }

.dogrun-info { padding: 60px 20px; }
.info-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
.info-card { padding: 30px; border-radius: 15px; text-align: center; }
.info-icon { font-size: 2.5rem; margin-bottom: 15px; }
.info-card .highlight { color: var(--color-accent); font-weight: bold; }

.bbq-benefit-highlight { padding: 60px 20px; }
.benefit-container { background-color: var(--color-main); color: #fff; padding: 50px 30px; border-radius: 20px; text-align: center; position: relative; overflow: hidden; }
.benefit-badge { display: inline-block; background: var(--color-accent); padding: 4px 15px; border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }
.benefit-container .accent-text { color: #FFD27D; font-size: 1.4rem; display: block; margin-top: 10px; }
.benefit-desc { margin: 20px 0; line-height: 1.8; }
.benefit-proposal { font-size: 1.1rem; margin-bottom: 30px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }

.btn-outline-white { display: inline-block; border: 2px solid #fff; color: #fff; padding: 12px 30px; border-radius: 50px; text-decoration: none; transition: all 0.3s; }
.btn-outline-white:hover { background: #fff; color: var(--color-main); }


/* --- Story --- */
.story-hero { position: relative; height: 80vh; min-height: 500px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.story-hero::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 2; }
.story-hero .hero-content { position: relative; z-index: 3; color: #fff; text-align: center; padding: 0 20px; }
.story-hero h2 { font-size: 1.8rem; line-height: 1.6; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.story-philosophy { padding: 80px 20px; text-align: center; }
.story-philosophy .sub-title { display: block; color: var(--color-accent); letter-spacing: 2px; margin-bottom: 10px; }
.philosophy-text { max-width: 700px; margin: 40px auto 0; text-align: left; line-height: 2; color: var(--color-text); }
.philosophy-text p { margin-bottom: 24px; }

.story-ingredients { padding: 80px 20px; }
.ingredient-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px; }
.ingredient-card img { width: 100%; border-radius: 8px; margin-bottom: 20px; }
.ingredient-card h4 { color: var(--color-main); margin-bottom: 12px; font-size: 1.2rem; }

.story-space { padding: 80px 20px; }
.space-flex { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.space-image img { width: 100%; border-radius: 12px; }
.space-text h3 { margin-bottom: 20px; color: var(--color-main); font-size: 1.4rem; }

.story-closing { padding: 100px 20px; background-color: var(--color-main) !important; color: #fff; text-align: center; }
.closing-message { font-size: 1.2rem; line-height: 1.8; margin-bottom: 50px; }
.closing-plans { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 60px; }
.plan-info { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 8px; width: 100%; max-width: 400px; }
.plan-info h4 { margin-bottom: 8px; }

.btn-reservation-final { background-color: var(--color-accent); color: #fff; border: none; padding: 24px 40px; border-radius: 50px; font-size: 1.1rem; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; line-height: 1.5; text-decoration: none;}
.btn-reservation-final span { font-size: 0.85rem; opacity: 0.9; font-weight: normal; }
.btn-reservation-final:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }


/* --- Access --- */
.access-hero { position: relative; height: 60vh; min-height: 400px; display: flex; justify-content: center; align-items: center; overflow: hidden; background-color: var(--color-main) !important; }
.access-hero::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.35); z-index: 2; }
.access-hero .hero-content { position: relative; z-index: 3; text-align: center; color: #ffffff; padding: 0 20px; }
.access-hero .hero-sub { font-size: 1rem; margin-bottom: 8px; letter-spacing: 0.1em; }
.access-hero h2 { font-size: 2rem; line-height: 1.4; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.basic-info-section { padding: 60px 20px; }
.info-table-wrapper { max-width: 800px; margin: 0 auto; padding: 20px; border-radius: 12px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 20px 15px; border-bottom: 1px solid #eeeeee; text-align: left; vertical-align: top; }
.info-table th { width: 30%; font-weight: bold; color: var(--color-main); font-family: var(--font-mincho); white-space: nowrap; }
.info-table td { color: var(--color-text); line-height: 1.6; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.map-link, .tel-link { display: inline-block; margin-top: 8px; color: var(--color-accent); font-weight: bold; text-decoration: none; border-bottom: 1px solid var(--color-accent); }
.info-table .note { font-size: 0.85rem; color: #666666; display: inline-block; margin-top: 4px; }

.route-button-section { padding: 20px; }
.btn-route-search { display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 800px; margin: 0 auto; background-color: var(--color-accent); color: #ffffff; text-decoration: none; padding: 24px 20px; border-radius: 50px; transition: transform 0.3s, background-color 0.3s; }
.btn-route-search:active { transform: scale(0.98); }
.btn-route-search .main-text { font-size: 1.25rem; font-weight: bold; margin-bottom: 4px; }
.btn-route-search .sub-text { font-size: 0.85rem; opacity: 0.9; }

.car-access-section { padding: 60px 20px; }
.access-card { max-width: 800px; margin: 0 auto 60px; }
.access-card-text h4 { font-size: 1.4rem; color: var(--color-main); margin-bottom: 15px; }
.nav-guide { margin-top: 15px; padding: 15px; background: #f9f4f0; border-left: 4px solid var(--color-accent); font-size: 0.95rem; }
.guide-caption { padding: 15px; background: #fdfdfd; font-size: 0.9rem; line-height: 1.5; }

.parking-info-box { max-width: 800px; margin: 0 auto; padding: 30px; border-radius: 12px; }
.parking-flex { display: flex; align-items: flex-start; gap: 15px; margin-top: 20px; }
.p-icon { font-size: 2rem; }
.parking-note { margin-top: 20px; padding-top: 15px; border-top: 1px dashed #cccccc; font-size: 0.85rem; color: #555555; }


/* ========================================
   メディアクエリ (タブレット・PCレイアウト)
======================================== */
@media screen and (min-width: 768px) {
  .hero-text h2 { font-size: 2.5rem; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero h2 { font-size: 2rem; }
  .rules-grid { grid-template-columns: repeat(3, 1fr); }
  
  .restaurant-hero h2 { font-size: 2rem; }
  .concept-flex { flex-direction: row; align-items: center; }
  .concept-text, .concept-image { flex: 1; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
  
  .bbq-hero { height: 60vh; }
  .bbq-hero h2 { font-size: 2.4rem; }
  .feature-flex { flex-direction: row; align-items: center; }
  .feature-text, .feature-image { flex: 1; }
  .plan-card-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  
  .dogrun-hero h2 { font-size: 2.8rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .benefit-container { padding: 80px; }
  .benefit-container .accent-text { font-size: 2.2rem; }
  
  .story-hero h2 { font-size: 2.8rem; }
  .space-flex { flex-direction: row; }
  .space-image, .space-text { flex: 1; }
}

@media screen and (max-width: 768px) {
  .access-hero { height: 40vh; }
  .access-hero h2 { font-size: 1.6rem; }
  .info-table th, .info-table td { display: block; width: 100%; padding: 10px 5px; }
  .info-table th { border-bottom: none; padding-bottom: 0; font-size: 0.9rem; }
  .info-table td { padding-top: 5px; }
  .btn-route-search .main-text { font-size: 1.1rem; }
  
  .reservation-steps-guide { padding: 20px 10px; gap: 5px; }
  .step-icon { font-size: 1.6rem; }
  .step-item p { font-size: 0.75rem; }
}

/* ========================================
   Animation Utility
======================================== */
.fade-in-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-target.is-visible { opacity: 1; transform: translateY(0); }
.step-animation { animation: fadeInStep 0.4s ease-out forwards; }


/* ========================================
   全ページ共通：セクションごとの独立カードUI (モジュール型)
======================================== */

/* 1. ヒーロー以外の全セクションを独立したカードにする（HTML構造に依存しない最強の書き方） */
section:not(.page-hero):not(.bbq-hero):not(.restaurant-hero):not(.access-hero):not(.story-hero):not(.dogrun-hero):not(.top-hero) {
  margin: 24px 16px !important; 
  border-radius: 16px !important; 
  width: auto !important; 
  box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important; 
  overflow: hidden !important; 
}

/* 2. 背景色を白にする（元から色が付いている特殊なセクションは除外） */
section:not(.page-hero):not(.bbq-hero):not(.restaurant-hero):not(.access-hero):not(.story-hero):not(.dogrun-hero):not(.top-hero):not(.top-commitment):not(.story-closing) {
  background-color: #ffffff !important;
}

/* 3. PC向けの余白と幅の調整 */
@media screen and (min-width: 768px) {
  section:not(.page-hero):not(.bbq-hero):not(.restaurant-hero):not(.access-hero):not(.story-hero):not(.dogrun-hero):not(.top-hero) {
      margin: 40px auto !important;
      max-width: 1000px; 
  }
}

/* ========================================
 全ページ共通：ルール部分を「緑背景×白文字のカード」に統一
======================================== */

.pricing-rules-notice {
  background-color: var(--color-main) !important;
  border: none !important;
  padding: 32px 24px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(44, 66, 52, 0.2) !important;
}
.pricing-rules-notice h4 {
  color: #ffffff !important;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  padding-bottom: 12px;
}
.pricing-rules-notice li { color: #ffffff !important; }
.pricing-rules-notice li::before { color: var(--color-accent) !important; }
.pricing-rules-notice small { color: rgba(255, 255, 255, 0.75) !important; }

.fishing-rules .rule-card {
  background-color: var(--color-main) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 32px 24px !important; 
  border-radius: 12px !important; 
  box-shadow: 0 8px 20px rgba(44, 66, 52, 0.2) !important; 
  position: relative !important; 
  overflow: hidden !important; 
  z-index: 1 !important;
}
.fishing-rules .rule-card h4 {
  color: #ffffff !important;
  border-bottom: 1px dashed rgba(255,255,255,0.3) !important;
  padding-bottom: 12px !important;
}
.fishing-rules .rule-card p { color: #ffffff !important; }
.fishing-rules .rule-card .rule-number {
  position: absolute !important; 
  top: 10px !important;
  right: 15px !important;
  font-size: 4rem !important; 
  font-weight: bold !important;
  line-height: 1 !important;
  color: rgba(255, 255, 255, 0.15) !important;
  z-index: -1 !important;
}

.bbq-rules .rule-box {
  background-color: var(--color-main) !important;
  border: none !important;
  padding: 32px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(44, 66, 52, 0.2) !important;
}
.bbq-rules .rule-list dt {
  color: var(--color-accent) !important; 
  border-bottom: 1px dashed rgba(255,255,255,0.3) !important;
  padding-bottom: 8px !important;
}
.bbq-rules .rule-list dd { color: #ffffff !important; }
.bbq-rules .text-alert { color: #FFD27D !important; }

.dogrun-rules-box {
  background-color: var(--color-main) !important;
  border: none !important;
  padding: 32px 24px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(44, 66, 52, 0.2) !important;
}

.dogrun-rules-box,
.dogrun-rules-box * {
  color: #ffffff !important;
}

.dogrun-rules-box h3 {
  border-bottom: 1px dashed rgba(255,255,255,0.3) !important;
  padding-bottom: 16px !important;
  margin-bottom: 24px !important;
  font-size: 1.3rem !important;
  text-align: center !important;
}

.dogrun-rules-box p,
.dogrun-rules-box li {
  line-height: 1.8 !important;
  font-size: 0.95rem !important;
}

.dogrun-rules-box .rule-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.dogrun-rules-box .rule-list li {
  position: relative !important;
  padding: 16px 0 16px 2.2em !important;
  border-bottom: 1px dotted rgba(255,255,255,0.3) !important;
}

.dogrun-rules-box .rule-list li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.dogrun-rules-box .rule-list li::before {
  content: "🐾" !important;
  position: absolute !important;
  left: 0 !important;
  top: 16px !important;
  font-size: 1.1rem !important;
  filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.9)) !important;
}

.dogrun-rules-box .text-alert,
.dogrun-rules-box .text-alert * {
  color: #FFD27D !important;
}

/* ========================================
   全ページ共通：ヒーローセクション（トップ画像）の高さ統一
======================================== */
section.page-hero,
section.bbq-hero,
section.restaurant-hero,
section.dogrun-hero,
section.story-hero,
section.access-hero {
    height: 60vh !important; 
    min-height: 350px !important; 
}

@media screen and (min-width: 768px) {
    section.page-hero,
    section.bbq-hero,
    section.restaurant-hero,
    section.dogrun-hero,
    section.story-hero,
    section.access-hero {
        height: 70vh !important; 
        min-height: 480px !important; 
    }
}

/* ========================================
   全ページ共通：ヒーローセクションを画面いっぱい＆アーチ型に
======================================== */
section.page-hero,
section.bbq-hero,
section.restaurant-hero,
section.dogrun-hero,
section.story-hero,
section.access-hero,
section.top-hero {
    margin: 0 !important; 
    max-width: 100% !important;
    border-radius: 0 !important; 
    box-shadow: none !important; 
    position: relative;
    overflow: hidden; 
    -webkit-mask-image: radial-gradient(ellipse 100% 60px at 50% 100%, transparent 99%, black 100%);
    mask-image: radial-gradient(ellipse 100% 60px at 50% 100%, transparent 99%, black 100%);
}

@media screen and (min-width: 768px) {
    section.page-hero,
    section.bbq-hero,
    section.restaurant-hero,
    section.dogrun-hero,
    section.story-hero,
    section.access-hero,
    section.top-hero {
        margin: 0 !important;
        max-width: none !important;
    }
}

section.page-hero .hero-image,
section.bbq-hero .hero-image,
section.restaurant-hero .hero-image,
section.dogrun-hero .hero-image,
section.story-hero .hero-image,
section.access-hero .hero-image,
section.top-hero .hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1 !important; 
}

/* ========================================
   各ページ固有：ヒーローセクションのフィルター色設定
======================================== */

/* 1. 釣り堀（page-hero）：青色のフィルターを維持 */
section.page-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(26, 110, 138, 0.4); /* 透明感のある水色 */
  z-index: 2 !important; 
}

/* 2. ドッグラン（dogrun-hero）：赤っぽい（アンバー系）フィルター */
section.dogrun-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* 七宗遊園のアクセントカラーに近い、暖かみのある赤茶色 */
  background-color: rgba(217, 109, 43, 0.3); 
  z-index: 2 !important; 
}

/* 3. その他のページ：青色フィルターを解除（画像本来の色を表示） */
section.bbq-hero::after,
section.restaurant-hero::after,
section.story-hero::after,
section.access-hero::after,
section.top-hero::after {
  background-color: rgba(0, 0, 0, 0.3); 
}

/* フィルターを消したページで、文字が写真に紛れて読みにくい場合の対策 */
section:not(.page-hero):not(.dogrun-hero) .hero-text h2 {
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.5) !important;
}
section:not(.page-hero):not(.dogrun-hero) .hero-text p {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3) !important;
}

/* ★文字が背景の下に隠れないようにする最重要コード */
.hero-text {
    position: relative !important;
    z-index: 10 !important;
}

/* ========================================
   ステップカード内のリストテキスト背景を馴染ませる
======================================== */
.step-card-content .menu-list .item-name,
.step-card-content .menu-list .item-price {
    background-color: #F9F9F9 !important; /* リストの箱の背景色と同じ色を指定 */
}

/* ========================================
   無限スクロールアルバム（保存防止＆アニメーション）
======================================== */
.film-album {
  padding: 60px 0; /* 横幅いっぱいまで写真を流すため、左右の余白を0に */
  background-color: #FFF9F0; /* 優しいクリーム色 */
  text-align: center;
  overflow: hidden;
}
.film-album .album-inner {
  padding: 0 20px;
  margin-bottom: 32px;
}
.film-loop-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* スクロールする写真の帯（トラック） */
.film-track {
  display: flex;
  width: max-content; /* 中身の幅に合わせて広がる */
  /* 20秒かけて左へ流れる（数字を変えると速度が変わります） */
  animation: scrollFilm 20s linear infinite; 
}

/* 写真1枚1枚の枠設定 */
.film-item {
  position: relative;
  width: 200px; /* 写真の横幅 */
  height: 200px; /* 写真の縦幅（正方形） */
  margin-right: 16px; /* 写真と写真の間の隙間 */
  border-radius: 12px; /* 少し角を丸くして優しく */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 画像本体と保存防止バリア */
.film-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.film-item .glass-barrier {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5;
  background: transparent;
}

/* 無限スクロールのアニメーションの動き */
@keyframes scrollFilm {
  0% { transform: translateX(0); }
  /* 50%（1セット目）の幅まで進んだら、一瞬で0に戻ることで無限に見せる */
  100% { transform: translateX(-50%); } 
}

.film-item img,
.film-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいに広げる */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* ========================================
   モザイク型アルバム（ドッグラン用）
======================================== */
.mosaic-album {
  padding: 60px 16px;
  background-color: #FFF9F0;
  text-align: center;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホは画面を縦に2分割 */
  grid-auto-rows: 140px; /* 1マスの基本の高さを140pxに設定 */
  gap: 12px; /* 写真と写真の隙間 */
  max-width: 900px;
  margin: 32px auto 0;
  grid-auto-flow: dense;
}

/* 写真1枚1枚の枠設定 */
.mosaic-item {
  position: relative;
  border-radius: 12px; /* 角を少し丸くして優しい印象に */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mosaic-item video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← 魔法を「contain」に変更！ */
  background-color: #E8E4D9; /* 動画の上下左右に隙間ができた時のための背景色 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ▼ 大きさのバリエーションを作る魔法 ▼ */
.item-large {
  grid-column: span 2; /* 横に2マス分広げる */
  grid-row: span 2;    /* 縦に2マス分広げる */
}
.item-wide {
  grid-column: span 2; /* 横に2マス分広げる */
}
.item-tall {
  grid-row: span 2;    /* 縦に2マス分広げる */
}

/* 画像本体と保存防止バリア */
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠の形に合わせて綺麗に切り抜く */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.mosaic-item .glass-barrier {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5;
  background: transparent;
}

/* パソコンやタブレットなど、画面が広い時は3列にする */
@media screen and (min-width: 768px) {
  .mosaic-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 180px;
  }
}

/* ========================================
   トコトコ足跡アニメーション（超軽量版）
======================================== */
.paw-path {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none; /* 足跡がクリックの邪魔にならないようにする魔法 */
  z-index:10; /* 写真の奥（背景）に配置 */
}

.paw {
  position: absolute;
  font-size: 2.5rem;
  /* 七宗遊園の雰囲気に合う、薄くて優しいブラウン色 */
  color: rgba(160, 82, 45, 0.12); 
  opacity: 0;
  /* 6秒かけて現れて消えるアニメーションを無限ループ */
  animation: pawFade 6s infinite;
}

/* 右斜め上に向かって歩くような配置と角度（animation-delayで表示タイミングをズラす） */
.paw1 { bottom: 5%;  left: 5%;  transform: rotate(20deg); animation-delay: 0s; }
.paw2 { bottom: 15%; left: 15%; transform: rotate(35deg); animation-delay: 0.6s; }
.paw3 { bottom: 25%; left: 8%;  transform: rotate(15deg); animation-delay: 1.2s; }
.paw4 { bottom: 35%; left: 20%; transform: rotate(25deg); animation-delay: 1.8s; }
.paw5 { bottom: 45%; left: 12%; transform: rotate(10deg); animation-delay: 2.4s; }
.paw6 { bottom: 55%; left: 25%; transform: rotate(30deg); animation-delay: 3.0s; }

/* 足跡がポンッ、ポンッと踏みしめられるように現れるアニメーション */
@keyframes pawFade {
  0%   { opacity: 0; margin-bottom: -10px; } /* 少し下から */
  10%  { opacity: 1; margin-bottom: 0; }     /* ポンッと現れる */
  60%  { opacity: 1; }                       /* しばらく残る */
  100% { opacity: 0; }                       /* スーッと消える */
}

/* ========================================
   スライダー型アルバム（BBQ用）
======================================== */
.slider-album {
  padding: 60px 16px;
  background-color: #FDFBF7; /* いつもの優しい背景色に戻しました */
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out; /* スルッと滑らかに動く魔法 */
  width: 100%;
}

.carousel-slide {
  min-width: 100%; /* 1枚が画面の幅いっぱいになる */
  position: relative;
}

/* 画像の設定と保存防止バリア */
.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 400px; /* パソコン・タブレット用の高さ */
  object-fit: cover;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .carousel-slide img,
  .carousel-slide video {   /* ← ★スマホ用にも追加！ */
      height: 300px; 
  }
}
.carousel-slide .glass-barrier {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5;
  background: transparent;
}

/* 矢印ボタン */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  color: var(--color-main, #2C4234);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.carousel-btn:hover { background: #fff; }
.prev-btn { left: 16px; }
.next-btn { right: 16px; }

/* ドットインジケーター */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}
.dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* ========================================
   お天気ウィジェット（七宗遊園：詳細版）
======================================== */
.weather-widget {
  padding: 32px 20px;
  text-align: center;
}
.weather-inner {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  border: 2px solid rgba(74, 122, 89, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.weather-title {
  color: var(--color-main);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.weather-loading {
  color: #888;
  font-size: 0.9rem;
  animation: pulseGlow 1.5s infinite alternate;
}

/* ▼ 現在の天気 */
.weather-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(74, 122, 89, 0.3);
  margin-bottom: 20px;
}
.weather-current .w-icon { font-size: 4rem; line-height: 1; }
.weather-current .w-desc { font-size: 1.3rem; font-weight: bold; color: var(--color-text); margin-bottom: 4px; }
.weather-current .w-temps { font-size: 1rem; color: #555; display: flex; gap: 12px; font-weight: bold;}

/* ▼ 1時間ごとの天気（横スクロール） */
.weather-hourly-wrap {
  margin-bottom: 24px;
  text-align: left;
}
.weather-sub-title {
  font-size: 0.9rem;
  color: var(--color-main);
  margin-bottom: 12px;
  font-weight: bold;
}
.weather-hourly-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  /* スクロールバーを見えにくくする魔法 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.weather-hourly-scroll::-webkit-scrollbar { display: none; }
.hourly-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}
.hourly-time { font-size: 0.8rem; color: #666; }
.hourly-icon { font-size: 1.5rem; margin: 4px 0; }
.hourly-temp { font-size: 0.9rem; font-weight: bold; color: var(--color-text); }

/* ▼ 1週間の天気（縦リスト） */
.weather-daily-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.daily-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #FDFBF7;
  border-radius: 8px;
  border: 1px solid #E8E4D9;
}
.daily-date { width: 80px; text-align: left; font-size: 0.9rem; font-weight: bold; color: var(--color-text); }
.daily-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.daily-temps { width: 120px; text-align: right; font-size: 0.9rem; }

/* 共通の気温カラー */
.t-max { color: #D96D2B; font-weight: bold; }
.t-min { color: #4A90E2; font-weight: bold; }
.weather-error { color: #D96D2B; font-size: 0.85rem; text-align: center; }

/* ========================================
   リアルタイム営業ステータスバッジ
======================================== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 営業中のデザイン（メインカラー） */
.status-open {
  background-color: var(--color-main);
  color: #fff;
}
.status-open .status-dot {
  width: 10px; height: 10px;
  background-color: #A8E6CF; /* 明るい緑 */
  border-radius: 50%;
  /* 営業中であることをアピールする、チカチカ光るアニメーション */
  animation: blinkDot 1.5s infinite alternate;
}

/* 営業時間外・休業日のデザイン（落ち着いたグレー） */
.status-closed {
  background-color: #E8E4D9;
  color: #666;
  border: 1px solid #D8D2C4;
}
.status-closed .status-dot {
  width: 10px; height: 10px;
  background-color: #999;
  border-radius: 50%;
}

@keyframes blinkDot {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 8px rgba(168, 230, 207, 0.8); }
}