/* ============================================================
   PET TOURISM ZONE 2026 — EXHIBITION STYLE
   ex_pet2026.css  |  scope: #ex-pet2026
   Tone & Manner: lp_foodex-wine.php / lp_sake-japan.php に準拠
   Brand colors: pet green (#224f1c / #3b8630) & gold (#cca352) 維持
   ============================================================ */


/* ============================================================
   UTILITIES（アニメーション・クリップパス）
   ============================================================ */

/* カスタムスクロールバー */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f2f7f1; }
::-webkit-scrollbar-thumb { background: #3b8630; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #224f1c; }

/* フェードインアニメーション */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* グラフバーアニメーション */
.bar-grow {
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}
.bar-grow.animate {
  width: var(--target-width);
}

/* 浮遊アニメーション */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.floating { animation: float 6s ease-in-out infinite; }

/* 斜めセクション用クリップパス */
.clip-slant {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}
@media (max-width: 768px) {
  .clip-slant {
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
  }
}


/* ============================================================
   FOOTER FIXES（Tailwind の display:contents 上書き）
   ============================================================ */
#footer_memu .contents,
#footer_contact .contents {
  display: block !important;
  width: clamp(320px, 90%, 1280px) !important;
  max-width: 1280px !important;
}


/* ============================================================
   CSS カスタムプロパティ
   ============================================================ */
#ex-pet2026 {
  --pet-dark:  #224f1c;
  --pet:       #3b8630;
  --pet-light: #5aa84e;
  --pet-sage:  #f2f7f1;
  --pet-gold:  #cca352;
  --pet-soft:  #fbf9f1;
  --line:      rgba(59, 134, 48, .14);
  --line-gold: rgba(204, 163, 82, .30);

  /* sake ページ準拠フォントファミリー */
  --font-cond: "Roboto Condensed", "Noto Sans JP", sans-serif;
  --font-mono: "Roboto Mono", "Noto Sans JP", monospace;
  --font-jp:   "Noto Sans JP", "Roboto", sans-serif;
  --font-sans: "Roboto", "Noto Sans JP", sans-serif;
}


/* ============================================================
   COMMON.CSS 競合リセット
   h1〜h6 の text-align:center を継承に変更
   ============================================================ */
#ex-pet2026 :is(h1, h2, h3, h4, h5, h6),
#ex-pet2026 span {
  text-align: inherit;
}


/* ============================================================
   角丸 → エディトリアル調：シャープに統一
   sake / wine ページと同じく、直線的な造形感へ
   SVG 要素は border-radius を使用しないため影響なし
   ============================================================ */
#ex-pet2026 *:not(svg):not(svg *) {
  border-radius: 0 !important;
}


/* ============================================================
   BASE TYPOGRAPHY — sake / wine ページ準拠フォントシステム
   Roboto Condensed（見出し）× Roboto Mono（数値・アイブロウ）× Noto Sans JP（本文）
   細字と太字を交互に使うエディトリアルリズム
   ============================================================ */

/* ─── ベース：全体を Noto Sans JP weight 300 ─── */
#ex-pet2026 {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-weight: 300;
}
#ex-pet2026 p,
#ex-pet2026 li {
  font-family: "Noto Sans JP", "Roboto", sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  color: #000 !important;
}
/* 出典・注記・デザインアクセント系は小さいままキープ */
#ex-pet2026 p.text-right,
#ex-pet2026 p.tracking-widest {
  font-size: inherit !important;
}
/* ダーク背景セクション：本文を白系に維持 */
#ex-pet2026 section:first-of-type p {
  color: #fff !important;
}
#ex-pet2026 .pet-challenge p {
  color: rgba(255, 255, 255, .85) !important;
}
#ex-pet2026 #cta p {
  color: #f1f5f9 !important;
}

/* ─── h2：ヒーロー大見出し ─── */
#ex-pet2026 h2 {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -.02em !important;
}
/* ヒーロー h2 はさらに大きく */
#ex-pet2026 section:first-of-type h2.font-black {
  font-size: clamp(36px, 6vw, 64px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

/* ─── h3：セクション大見出し（wine ページ準拠：46px / weight 900）─── */
#ex-pet2026 h3 {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
  line-height: 1.2 !important;
}
#ex-pet2026 h3.font-black {
  font-size: clamp(28px, 4vw, 46px) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
}

/* ─── h4：サブ見出し ─── */
#ex-pet2026 h4 {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
  margin-bottom: 0 !important;
}

/* ─── h5：小見出し・カードタイトル ─── */
#ex-pet2026 h5 {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
}
/* ─── 製品ショーケース内 h5 ─── */
#ex-pet2026 .pet-showcase h5 {
  font-size: 18px !important;
}

/* ─── アイブロウラベル（"MARKET TREND" "WHY VISIT" "SHOWCASE" 等）
       Roboto Mono で等幅タイプセッター感 ─── */
#ex-pet2026 span.tracking-widest,
#ex-pet2026 p.tracking-widest {
  font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
  font-size: 10.5px !important;
  letter-spacing: .22em !important;
  font-weight: 400 !important;
}

/* ─── 出典・注記（右寄せ小文字）：Roboto Mono ─── */
#ex-pet2026 p.text-right {
  font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
  font-weight: 300 !important;
}

/* ─── グラフ数値（span/div 限定）：Roboto Mono weight 900 ─── */
#ex-pet2026 span.text-5xl,
#ex-pet2026 span.text-4xl,
#ex-pet2026 span.text-6xl,
#ex-pet2026 div.text-5xl,
#ex-pet2026 div.text-4xl {
  font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
  font-weight: 900 !important;
}

/* ─── .font-black / .font-bold を Condensed で上書き ─── */
#ex-pet2026 .font-black {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
}
#ex-pet2026 .font-bold {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 700 !important;
}
#ex-pet2026 .font-semibold {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 600 !important;
}

/* ゴールドアクセントライン */
#ex-pet2026 .w-16.h-1,
#ex-pet2026 .w-12.h-1 {
  height: 1px !important;
}


/* ============================================================
   HERO タイポグラフィ：太細ミックス用カスタムクラス
   ============================================================ */

/* 太字パーツ（"選ばれる宿・施設" "ヒント"）*/
#ex-pet2026 .ex-bold {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
}

/* 細字パーツ（"づくりの" "がここに。"）*/
#ex-pet2026 .ex-thin {
  font-family: "Noto Sans JP", "Roboto", sans-serif !important;
  font-weight: 200 !important;
}

/* ─── HERO タイトル：太細ミックス専用（PHP <style> ブロックと二重定義） ─── */
#ex-pet2026 .ex-hero-title {
  font-size: clamp(1.75rem, 5vw, 42px) !important;
  line-height: 1.15 !important;
  letter-spacing: -.01em !important;
}
#ex-pet2026 .ex-hero-bold {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
}
#ex-pet2026 .ex-hero-thin {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 200 !important;
}
#ex-pet2026 .ex-hero-gold {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  color: #cca352 !important;
}

/* Focus Categories タグ（sake ページ準拠） */
#ex-pet2026 .ex-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(204, 163, 82, .45);
  background: rgba(34, 79, 28, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 16px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .08em;
  color: #fff !important;
  transition: background .2s ease, border-color .2s ease;
}
#ex-pet2026 .ex-tag:hover {
  background: rgba(34, 79, 28, .75);
  border-color: rgba(204, 163, 82, .7);
}


/* ============================================================
   HERO セクション
   ヒーロー内の "特別企画" バッジをエディトリアル風に
   ============================================================ */
#ex-pet2026 section:first-of-type .inline-flex.items-center.gap-2.bg-\[\#fbf9f1\]\/85 {
  border-left: 3px solid #cca352;
  padding-left: 12px;
  background: rgba(251, 249, 241, .88) !important;
}


/* ============================================================
   MARKET TREND セクション
   アンケートグラフカード：左ボーダーアクセント
   ============================================================ */
#ex-pet2026 .bg-brand-sage\/40 {
  border-left: 3px solid #3b8630 !important;
  box-shadow: none !important;
}

/* チャレンジ & ソリューションボード */
#ex-pet2026 .bg-\[\#f5f9f4\] {
  border-top: 3px solid #3b8630 !important;
  box-shadow: none !important;
}

/* ソリューション内のアイコン枠 */
#ex-pet2026 .bg-white.shadow-sm.flex.items-center.justify-center.mb-5 {
  border: 1px solid var(--line-gold);
  box-shadow: none !important;
}


/* ============================================================
   WHY VISIT（来場すると分かること）
   カード：上ボーダーアクセント + フラットスタイル
   ============================================================ */
#ex-pet2026 .bg-white.flex.flex-col.justify-between.group {
  border-top: 3px solid #3b8630 !important;
  box-shadow: none !important;
  transition: box-shadow .3s ease, border-top-color .3s ease !important;
}
#ex-pet2026 .bg-white.flex.flex-col.justify-between.group:hover {
  box-shadow: 0 8px 32px rgba(34, 79, 28, .10) !important;
  border-top-color: #cca352 !important;
  transform: none !important;
}

/* カード内水平区切り */
#ex-pet2026 .border-t.border-slate-100 {
  border-top-color: rgba(59, 134, 48, .15) !important;
}

/* カード上部の画像エリア */
#ex-pet2026 .relative.h-48.overflow-hidden {
  border-bottom: 1px solid rgba(59, 134, 48, .12);
}


/* ============================================================
   CHALLENGE TO RESOLUTION（施設運営のお悩み）
   sake .three-points スタイル準拠：背景なし・ゴールドアクセント
   ============================================================ */
#ex-pet2026 .pet-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}
#ex-pet2026 .pet-point {
  padding: 28px 28px 28px 24px;
  border-right: 1px solid rgba(204, 163, 82, .2);
  background: rgba(10, 30, 8, 0.55);
}
#ex-pet2026 .pet-point:last-child {
  border-right: none;
}
#ex-pet2026 .pet-point:first-child {
  padding-left: 28px;
}
#ex-pet2026 .pet-pt-num {
  font-family: "Roboto Mono", monospace !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: .12em;
  color: rgba(204, 163, 82, .65);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
#ex-pet2026 .pet-pt-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(204, 163, 82, .2);
}
#ex-pet2026 .pet-pt-icon {
  width: 36px;
  height: 36px;
  color: rgba(204, 163, 82, .75);
  margin-bottom: 16px;
  display: block;
}
#ex-pet2026 .pet-pt-h {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  letter-spacing: .04em;
  color: #fff !important;
  margin-bottom: 15px !important;
  line-height: 1.4 !important;
}
#ex-pet2026 .pet-pt-p {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  #ex-pet2026 .pet-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #ex-pet2026 .pet-point {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(204, 163, 82, .12);
  }
  #ex-pet2026 .pet-point:nth-child(odd) {
    border-right: 1px solid rgba(204, 163, 82, .15);
  }
  #ex-pet2026 .pet-point:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  #ex-pet2026 .pet-points-grid {
    grid-template-columns: 1fr;
  }
  #ex-pet2026 .pet-point,
  #ex-pet2026 .pet-point:first-child {
    padding: 20px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(204, 163, 82, .12);
  }
  #ex-pet2026 .pet-point:last-child {
    border-bottom: none;
  }
}

/* RESOLVE ハイライトボックス */
#ex-pet2026 .mt-16.bg-white.border.text-center.max-w-4xl {
  border-top: 3px solid #cca352 !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(204, 163, 82, .20) !important;
  box-shadow: none !important;
}
/* ボックス内テキスト：白背景なので暗色に戻す */
#ex-pet2026 .mt-16.bg-white.border.text-center.max-w-4xl p {
  color: #224f1c !important;
}
#ex-pet2026 .mt-16.bg-white.border.text-center.max-w-4xl p:last-child {
  font-size: 22px !important;
  line-height: 1.6 !important;
}


/* ============================================================
   PRODUCTS SHOWCASE（製品・サービスカテゴリグリッド）
   カラフルな各色ボーダーをグリーン系で統一
   ============================================================ */
#ex-pet2026 .grid.grid-cols-2 .flex.flex-col.items-center.text-center,
#ex-pet2026 .grid.grid-cols-2.md\:grid-cols-3 .flex.flex-col.items-center.text-center {
  border: none !important;
  border-bottom: 2px solid rgba(59, 134, 48, .16) !important;
  background: #fdfefd !important;
  box-shadow: none !important;
  transition: border-color .25s ease, background .25s ease !important;
}
#ex-pet2026 .grid.grid-cols-2 .flex.flex-col.items-center.text-center:hover,
#ex-pet2026 .grid.grid-cols-2.md\:grid-cols-3 .flex.flex-col.items-center.text-center:hover {
  border-bottom-color: #3b8630 !important;
  background: #f5faf4 !important;
  box-shadow: none !important;
}


/* ============================================================
   SPECIAL FEATURE（モデルルーム展示）
   ============================================================ */

/* こんな方におすすめカード */
#ex-pet2026 .bg-white.rounded-2xl.p-6.border.border-brand-light\/10.shadow-lg {
  border-left: 3px solid #cca352 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: #fff !important;
}

/* 特別展示企画バッジ */
#ex-pet2026 .inline-flex.items-center.gap-2.bg-brand-gold {
  letter-spacing: .14em;
}


/* ============================================================
   WHO SHOULD ATTEND（来場対象）
   ボーダーボトムのみのミニマルスタイル
   ============================================================ */
#ex-pet2026 .bg-white.border.border-slate-100.shadow-sm.text-center.group {
  border: none !important;
  border-bottom: 2px solid rgba(59, 134, 48, .15) !important;
  box-shadow: none !important;
  background: transparent !important;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  transition: border-color .25s ease !important;
}
#ex-pet2026 .bg-white.border.border-slate-100.shadow-sm.text-center.group:hover {
  border-bottom-color: #3b8630 !important;
  box-shadow: none !important;
}


/* ============================================================
   CTA セクション
   ============================================================ */

/* 入場無料バッジ */
#ex-pet2026 #cta .inline-flex.items-center.gap-2 {
  letter-spacing: .14em;
}

/* 登録ボタン：ボーダーラインスタイル */
#ex-pet2026 #cta a.inline-flex {
  border: 2px solid #cca352 !important;
  letter-spacing: .06em;
  transition: background .25s ease, color .25s ease, transform .2s ease !important;
}


/* ============================================================
   CTA STRIP（HERO 直下：来場事前登録）
   ============================================================ */
#ex-pet2026 .pet-cta-strip {
  background: #1a3d15;
  border-top: 1px solid rgba(204, 163, 82, .2);
  border-bottom: 1px solid rgba(204, 163, 82, .2);
  padding: 30px 0;
}
#ex-pet2026 .pet-cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#ex-pet2026 .pet-cta-strip-inner p {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,.6) !important;
  letter-spacing: .08em;
  line-height: 1 !important;
}
#ex-pet2026 .pet-cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 1px solid #cca352;
  color: #fff;
  padding: 20px 36px;
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  font-size: 17px !important;
  letter-spacing: .12em;
  text-decoration: none;
  transition: background .25s, color .25s;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
#ex-pet2026 .pet-cta-strip-btn:hover {
  background: #cca352;
  color: #1a3d15 !important;
}
#ex-pet2026 .pet-cta-strip-btn .cta-free {
  background: #cca352;
  color: #1a3d15;
  font-size: 10px !important;
  font-weight: 900 !important;
  padding: 2px 7px;
  letter-spacing: .14em;
  font-family: "Noto Sans JP", sans-serif !important;
}
#ex-pet2026 .pet-cta-strip-btn:hover .cta-free {
  background: #1a3d15;
  color: #cca352;
}
/* CSS矢印（wine ページ準拠） */
#ex-pet2026 .pet-cta-strip-btn .cta-arrow {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .25s ease;
  flex-shrink: 0;
}
#ex-pet2026 .pet-cta-strip-btn .cta-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
#ex-pet2026 .pet-cta-strip-btn:hover .cta-arrow {
  width: 44px;
}
@media (max-width: 600px) {
  #ex-pet2026 .pet-cta-strip-inner { padding: 20px 5vw; }
  #ex-pet2026 .pet-cta-strip-inner p { display: none; }
  #ex-pet2026 .pet-cta-strip-btn { width: 100%; justify-content: center; font-size: 14px !important; padding: 16px 24px; }
}


/* ============================================================
   WHY VISIT — sake ページ準拠リデザイン
   ============================================================ */
#ex-pet2026 .pet-why {
  background: #f2f7f1;
  padding: 80px 0 96px;
}
#ex-pet2026 .pet-why-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
  padding: 0 24px;
}
#ex-pet2026 .pet-why-eyebrow {
  display: block;
  font-family: "Roboto Mono", monospace !important;
  font-size: 10.5px !important;
  font-weight: 400 !important;
  letter-spacing: .22em;
  color: #3b8630;
  text-transform: uppercase;
  margin-bottom: 14px;
}
#ex-pet2026 .pet-why-title {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-size: clamp(26px, 4vw, 44px) !important;
  font-weight: 900 !important;
  color: #224f1c;
  line-height: 1.2 !important;
  margin-bottom: 16px;
}
#ex-pet2026 .pet-why-title .light {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 200 !important;
}
#ex-pet2026 .pet-why-rule {
  width: 48px;
  height: 1px;
  background: #cca352;
  margin: 0 auto;
}
#ex-pet2026 .pet-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4%, 40px);
}
@media (max-width: 500px) {
  #ex-pet2026 .pet-why-grid { grid-template-columns: 1fr; }
}
#ex-pet2026 .pet-why-card {
  background: #fff;
  padding: 32px 24px 28px;
  border-top: 3px solid #3b8630;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-top-color .25s, box-shadow .25s;
}
#ex-pet2026 .pet-why-card:hover {
  border-top-color: #cca352;
  box-shadow: 0 8px 32px rgba(34,79,28,.10);
}
#ex-pet2026 .pet-why-num {
  font-family: "Roboto Mono", monospace !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: .2em;
  color: #cca352;
}
#ex-pet2026 .pet-why-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
#ex-pet2026 .pet-why-h {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  color: #224f1c;
  line-height: 1.3 !important;
  margin: 0;
}
#ex-pet2026 .pet-why-card > p {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.9 !important;
  color: #4b5563 !important;
  flex: 1;
}
#ex-pet2026 .pet-why-foot {
  padding-top: 14px;
  border-top: 1px solid rgba(59,134,48,.15);
  font-family: "Roboto Mono", monospace !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: .1em;
  color: #3b8630 !important;
}


/* ============================================================
   セクション間のゴールド区切りライン
   wine / sake ページのような細かいディテール
   ============================================================ */
#ex-pet2026 section + section {
  border-top: 1px solid rgba(204, 163, 82, .12);
}


/* ============================================================
   レスポンシブ補足
   ============================================================ */
@media (max-width: 768px) {
  #ex-pet2026 h3 {
    letter-spacing: -.005em;
  }
  #ex-pet2026 .backdrop-blur-sm.p-5.flex.items-start.gap-3 {
    border-left-width: 2px !important;
  }
}


/* ============================================================
   MODEL ROOM GUIDE TOUR（ガイドツアー告知＋監修者カード）
   特別企画「ペットと泊まれる宿」セクション内
   ============================================================ */
#ex-pet2026 .pet-tour-wrap {
  margin-top: 64px;
}
#ex-pet2026 .pet-tour-card {
  background: #ffffff;
  border: 1px solid rgba(204, 163, 82, .22);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(34, 79, 28, .10);
}

/* ── Banner（左：告知＋監修ボックス ／ 右：モデルルーム写真）── */
#ex-pet2026 .pet-tour-banner {
  display: grid;
  grid-template-columns: minmax(500px, 55%) 1fr;
  align-items: stretch;
  min-height: 360px;
}
#ex-pet2026 .pet-tour-banner-text {
  background: linear-gradient(140deg, #1a3d15 0%, #224f1c 50%, #2d6321 100%);
  color: #ffffff;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#ex-pet2026 .pet-tour-banner-text::before {
  content: "";
  position: absolute;
  top: 14px; right: 14px; bottom: 14px; left: 14px;
  border: 1px solid rgba(204, 163, 82, .35);
  border-radius: 12px;
  pointer-events: none;
}
#ex-pet2026 .pet-tour-banner-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 8px 6px;
}
#ex-pet2026 .pet-tour-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 220px;
}
#ex-pet2026 .pet-tour-banner-title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: .06em;
  line-height: 1.4 !important;
  margin: 0;
}
#ex-pet2026 .pet-tour-banner-divider {
  width: 56%;
  max-width: 200px;
  height: 1px;
  background: rgba(204, 163, 82, .55);
}
#ex-pet2026 .pet-tour-banner-schedule {
  display: flex;
  align-items: center;
  gap: 14px;
}
#ex-pet2026 .pet-tour-day {
  background: #ffffff;
  color: #224f1c !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 5px 11px;
  border-radius: 4px;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}
#ex-pet2026 .pet-tour-times {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Roboto Mono", "Noto Sans JP", monospace !important;
  font-weight: 500 !important;
  font-size: 22px !important;
  line-height: 1.3;
  letter-spacing: .03em;
  color: #ffffff;
}
#ex-pet2026 .pet-tour-time {
  display: inline-block;
}
#ex-pet2026 .pet-tour-banner-cta {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #cca352 !important;
  letter-spacing: .08em;
  margin: 4px 0 0;
  line-height: 1.2;
}

#ex-pet2026 .pet-tour-banner-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
#ex-pet2026 .pet-tour-banner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
#ex-pet2026 .pet-tour-card:hover .pet-tour-banner-image img {
  transform: scale(1.04);
}

/* ── 監修者ボックス（緑バナー内）── */
#ex-pet2026 .pet-tour-supervisor-inset {
  flex: 0 1 320px;
  max-width: 320px;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(204, 163, 82, .35);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
#ex-pet2026 .pet-tour-supervisor-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(204, 163, 82, .6);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}
#ex-pet2026 .pet-tour-supervisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#ex-pet2026 .pet-tour-supervisor-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
#ex-pet2026 .pet-tour-supervisor-label {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #cca352 !important;
  letter-spacing: .14em;
  margin-bottom: 2px;
}
#ex-pet2026 .pet-tour-supervisor-label::after {
  content: "";
  display: inline-block;
  flex: 1;
  min-width: 24px;
  max-width: 120px;
  height: 1px;
  background: rgba(204, 163, 82, .45);
  margin-left: 10px;
}
#ex-pet2026 .pet-tour-supervisor-titles {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
#ex-pet2026 .pet-tour-supervisor-titles p {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, .88) !important;
  line-height: 1.55 !important;
  margin: 0;
  letter-spacing: .02em;
}
#ex-pet2026 .pet-tour-supervisor-name {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: .05em;
  line-height: 1.2 !important;
  margin: 4px 0 0;
  white-space: nowrap;
}
#ex-pet2026 .pet-tour-supervisor-name .suffix {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #cca352 !important;
  margin-left: 4px;
}

/* ── レスポンシブ：タブレット（横並び維持・コンパクト化） ── */
@media (max-width: 1024px) {
  #ex-pet2026 .pet-tour-banner {
    grid-template-columns: minmax(440px, 68%) 1fr;
    min-height: 320px;
  }
  #ex-pet2026 .pet-tour-banner-text {
    padding: 24px 18px;
  }
  #ex-pet2026 .pet-tour-banner-frame {
    flex-direction: row;
    gap: 14px;
  }
  #ex-pet2026 .pet-tour-info {
    min-width: 0;
    flex: 0 1 auto;
  }
  #ex-pet2026 .pet-tour-banner-title {
    font-size: 22px !important;
  }
  #ex-pet2026 .pet-tour-times {
    font-size: 20px !important;
  }
  #ex-pet2026 .pet-tour-banner-cta {
    font-size: 19px !important;
  }
  #ex-pet2026 .pet-tour-supervisor-inset {
    flex: 0 1 250px;
    max-width: 250px;
    margin-top: 0;
    padding: 12px;
    gap: 10px;
  }
  #ex-pet2026 .pet-tour-supervisor-photo {
    width: 60px;
    height: 60px;
  }
  #ex-pet2026 .pet-tour-supervisor-titles p {
    font-size: 11px !important;
  }
  #ex-pet2026 .pet-tour-supervisor-name {
    font-size: 18px !important;
  }
}

/* ── レスポンシブ：スマホ（1列縦積みへ切り替え） ── */
@media (max-width: 768px) {
  #ex-pet2026 .pet-tour-wrap {
    margin-top: 48px;
  }
  #ex-pet2026 .pet-tour-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  #ex-pet2026 .pet-tour-banner-text {
    padding: 28px 18px;
  }
  #ex-pet2026 .pet-tour-banner-text::before {
    top: 10px; right: 10px; bottom: 10px; left: 10px;
  }
  #ex-pet2026 .pet-tour-banner-frame {
    flex-direction: column;
    gap: 14px;
  }
  #ex-pet2026 .pet-tour-info {
    width: 100%;
    flex: 1 1 auto;
  }
  #ex-pet2026 .pet-tour-banner-title {
    font-size: 22px !important;
  }
  #ex-pet2026 .pet-tour-times {
    font-size: 20px !important;
  }
  #ex-pet2026 .pet-tour-banner-cta {
    font-size: 20px !important;
  }
  #ex-pet2026 .pet-tour-banner-image {
    min-height: 200px;
    aspect-ratio: 16/9;
  }
  #ex-pet2026 .pet-tour-supervisor-inset {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    padding: 14px;
    gap: 12px;
    margin-top: 14px;
  }
  #ex-pet2026 .pet-tour-supervisor-photo {
    width: 68px;
    height: 68px;
  }
  #ex-pet2026 .pet-tour-supervisor-label {
    font-size: 10px !important;
  }
  #ex-pet2026 .pet-tour-supervisor-label::after {
    max-width: 80px;
  }
  #ex-pet2026 .pet-tour-supervisor-titles p {
    font-size: 11px !important;
  }
  #ex-pet2026 .pet-tour-supervisor-name {
    font-size: 19px !important;
  }
}
