/*
Theme Name: 街をナビっと
Theme URI: https://example.com
Author: 株式会社ライフブリッジ
Description: 地域店舗ポータル・予約サイト「街をナビっと」カスタムテーマ
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Private
Text Domain: machi-navi
*/

/* =============================
   CSS Variables
   ============================= */
:root {
  --color-primary:    #1A6BAF;  /* ロゴのメインブルー */
  --color-secondary:  #5BB8F5;  /* ロゴの明るいブルー */
  --color-accent:     #7CC63A;  /* ロゴのグリーン */
  --color-bg:         #F4F8FC;
  --color-bg-white:   #FFFFFF;
  --color-text:       #222222;
  --color-text-muted: #6B7A8D;
  --color-border:     #D8E4EE;
  --color-star:       #F5A623;
  --color-success:    #28A745;
  --color-danger:     #DC3545;
  --color-warning:    #FFC107;

  --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --max-width: 1200px;
  --header-height: 64px;
}

/* =============================
   Reset & Base
   ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* =============================
   Layout
   ============================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.page-content { padding: 40px 0 80px; }

/* =============================
   Header
   ============================= */
.site-header {
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.site-header .container { height: 100%; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--color-secondary); }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { font-size: 0.9rem; color: var(--color-text); font-weight: 500; }
.site-nav a:hover { color: var(--color-secondary); text-decoration: none; }
.header-btn {
  background: var(--color-secondary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.header-btn:hover { background: var(--color-primary); }

/* =============================
   Hero / Search Section
   ============================= */
.hero {
  background: linear-gradient(135deg, #1A6BAF 0%, #3AAAE0 60%, #5BB8F5 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.hero__title { font-size: 2.4rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.hero__subtitle { font-size: 1.1rem; opacity: 0.85; margin-bottom: 36px; }
.search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}
.search-box select,
.search-box input[type="text"] {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  flex: 1;
  min-width: 140px;
  height: 44px;
}
.search-box select:focus,
.search-box input:focus { outline: 2px solid var(--color-secondary); border-color: transparent; }
.btn-search {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0 28px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.btn-search:hover { background: #e0704e; transform: translateY(-1px); }

/* =============================
   Genre Category Bar
   ============================= */
.genre-bar { background: #fff; border-bottom: 1px solid var(--color-border); padding: 16px 0; }
.genre-bar__list { display: flex; gap: 8px; flex-wrap: wrap; }
.genre-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.2s;
  white-space: nowrap;
}
.genre-tag:hover, .genre-tag.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
  text-decoration: none;
}

/* =============================
   Section Title
   ============================= */
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-secondary);
  display: inline-block;
}

/* =============================
   Shop Cards Grid
   ============================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.shop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.shop-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); text-decoration: none; }
.shop-card__image {
  width: 100%; height: 180px;
  object-fit: cover;
  background: var(--color-border);
}
.shop-card__image--placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #e8edf2, #cdd5de);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 2.5rem;
}
.shop-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.shop-card__genre {
  font-size: 0.75rem; font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.shop-card__name { font-size: 1.05rem; font-weight: 700; color: var(--color-primary); line-height: 1.4; }
.shop-card__rating { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; }
.stars { color: var(--color-star); letter-spacing: 1px; }
.rating-score { font-weight: 700; color: var(--color-text); }
.review-count { color: var(--color-text-muted); font-size: 0.82rem; }
.shop-card__area { font-size: 0.83rem; color: var(--color-text-muted); }
.shop-card__footer {
  padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: space-between;
}
.shop-card__reserve-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
}
.shop-card__available { font-size: 0.8rem; color: var(--color-success); font-weight: 600; }

/* =============================
   Shop Detail
   ============================= */
.shop-detail { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.shop-detail__main {}
.shop-detail__sidebar {}
.shop-hero-image {
  width: 100%; height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  background: var(--color-border);
}
.shop-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
.shop-gallery img { border-radius: var(--radius-sm); height: 80px; object-fit: cover; cursor: pointer; }
.shop-info-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.shop-info-table th, .shop-info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.shop-info-table th { width: 130px; color: var(--color-text-muted); font-weight: 600; }

/* =============================
   Reserve Box (Sidebar)
   ============================= */
.reserve-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 16px);
}
.reserve-box__title { font-size: 1.15rem; font-weight: 700; color: var(--color-primary); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: 6px; }
.form-label .required {
  color: var(--color-danger); font-size: 0.75rem; margin-left: 4px;
  background: #fdecea; padding: 1px 5px; border-radius: 3px;
}
.form-control {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--color-text);
}
.form-control:focus { outline: none; border-color: var(--color-secondary); box-shadow: 0 0 0 3px rgba(58,143,183,0.15); }
.btn-reserve {
  width: 100%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-reserve:hover { background: #e0704e; }
.btn-reserve:disabled { background: #ccc; cursor: not-allowed; }

/* =============================
   Calendar (予約カレンダー)
   ============================= */
.reserve-calendar { margin-bottom: 16px; }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.calendar-nav button { background: none; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 4px 10px; font-size: 0.9rem; }
.calendar-month { font-weight: 700; font-size: 0.95rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; text-align: center; }
.calendar-day-label { font-size: 0.75rem; color: var(--color-text-muted); padding: 4px 0; font-weight: 600; }
.calendar-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.calendar-day:hover:not(.disabled):not(.empty) { background: var(--color-secondary); color: #fff; }
.calendar-day.selected { background: var(--color-accent); color: #fff; font-weight: 700; }
.calendar-day.disabled { color: #ccc; cursor: not-allowed; }
.calendar-day.empty { cursor: default; }
.calendar-day.available { border-color: var(--color-success); }
.calendar-day.full { color: #ccc; cursor: not-allowed; }

/* =============================
   Time Slots
   ============================= */
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.time-slot {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
  font-size: 0.82rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
}
.time-slot:hover:not(.full) { border-color: var(--color-secondary); color: var(--color-secondary); }
.time-slot.selected { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); font-weight: 700; }
.time-slot.full { background: var(--color-bg); color: #ccc; cursor: not-allowed; font-size: 0.78rem; }

/* =============================
   Reviews
   ============================= */
.review-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { background: #fff; border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); }
.review-item__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-border); object-fit: cover; }
.review-user { font-weight: 700; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--color-text-muted); }
.review-text { font-size: 0.9rem; line-height: 1.7; color: var(--color-text); }
.review-reply { background: var(--color-bg); border-left: 3px solid var(--color-secondary); padding: 12px 16px; margin-top: 12px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.review-reply__label { font-size: 0.8rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 4px; }
.review-reply__text { font-size: 0.88rem; }

/* =============================
   Pagination
   ============================= */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-text);
  background: #fff;
  transition: all 0.15s;
}
.pagination a:hover { border-color: var(--color-secondary); color: var(--color-secondary); text-decoration: none; }
.pagination .current { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; font-weight: 700; }

/* =============================
   Footer
   ============================= */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; }
.footer-heading { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: 0.05em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; text-align: center; font-size: 0.8rem; }

/* =============================
   Badges / Labels
   ============================= */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--new { background: #e8f5e9; color: #2e7d32; }
.badge--popular { background: #fff3e0; color: #e65100; }
.badge--premium { background: #fce4ec; color: #880e4f; }

/* =============================
   Alert / Notice
   ============================= */
.alert { padding: 14px 18px; border-radius: var(--radius-md); margin-bottom: 20px; font-size: 0.9rem; }
.alert--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert--error   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }
.alert--info    { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

/* =============================
   Responsive
   ============================= */
@media (max-width: 960px) {
  .shop-detail { grid-template-columns: 1fr; }
  .reserve-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero__title { font-size: 1.7rem; }
  .hero { padding: 48px 0 40px; }
  .search-box { padding: 16px; }
  .site-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}

/* =============================
   Hero Banner（トップページ）
   ============================= */
.hero-banner {
  background: linear-gradient(135deg, #1A6BAF 0%, #2E9BD6 50%, #7CC63A 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-banner__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.hero-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
}
.hero-search {
  display: flex;
  gap: 0;
  max-width: 560px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-search__input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  color: var(--color-text);
}
.hero-search__btn {
  background: #7CC63A;
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-search__btn:hover { background: #6ab52e; }

/* =============================
   2カラムレイアウト
   ============================= */
.site-body { background: var(--color-bg); padding: 24px 0 60px; }
.site-body__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .site-body__container {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
  }
  .sidebar {
    position: static !important;
    display: block !important;
  }
  .sidebar__genre-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0 !important;
  }
  .sidebar__genre-item { margin: 0 !important; }
  .sidebar__genre-link {
    padding: 5px 12px !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 99px !important;
    font-size: 0.82rem !important;
    display: inline-flex !important;
    background: #fff;
  }
  .sidebar__area-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 0 !important;
  }
  .sidebar__area-list li { margin: 0 !important; }
  .sidebar__area-link {
    padding: 4px 10px !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 99px !important;
    font-size: 0.82rem !important;
    display: inline-block !important;
  }
  .sidebar__pr-box { display: none !important; }
  .main-content { min-width: 0; }
}

/* =============================
   左サイドバー
   ============================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-height) + 16px);
  min-width: 0;
}
.sidebar__section {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar__heading {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  letter-spacing: 0.04em;
}
.sidebar__genre-list { margin: 0; padding: 6px 0; }
.sidebar__genre-item { margin: 0; }
.sidebar__genre-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.sidebar__genre-link:hover {
  background: #EAF4FD;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  text-decoration: none;
}
.sidebar__genre-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0.7;
}

.sidebar__area-list { padding: 8px 0; }
.sidebar__area-list li { margin: 0; }
.sidebar__area-link {
  display: block;
  padding: 7px 14px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  transition: color 0.15s, background 0.15s;
}
.sidebar__area-link:hover { color: var(--color-primary); background: #f0f6fb; text-decoration: none; }

.sidebar__pr-box {
  padding: 16px 14px;
  text-align: center;
}
.sidebar__pr-box p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.sidebar__pr-btn {
  display: block;
  background: var(--color-accent);
  color: #fff;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
}
.sidebar__pr-btn:hover { background: #6ab52e; text-decoration: none; }

/* =============================
   ジャンルセクション
   ============================= */
.genre-section {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  overflow: hidden;
}
.genre-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-left: 5px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
}
.genre-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.genre-section__more {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.genre-section__more:hover { text-decoration: underline; }

/* 店舗カード横並び（4枚グリッド） */
.shop-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px;
  padding: 16px;
}
.shop-row__card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--color-text);
}
.shop-row__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.shop-row__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #dce8f0;
}
.shop-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-row__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: linear-gradient(135deg, #dce8f0, #c5d8e8);
}
.shop-row__badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(26,107,175,0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
}
.shop-row__body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.shop-row__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}
.shop-row__station {
  font-size: 0.76rem;
  color: var(--color-secondary);
  font-weight: 500;
}
.shop-row__desc {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.genre-section__footer {
  padding: 10px 20px 16px;
  text-align: right;
}
.genre-section__more-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.genre-section__more-btn:hover { opacity: 0.85; text-decoration: none; }

/* =============================
   Responsive（モバイル完全対応）
   ============================= */
@media (max-width: 768px) {
  /* サイドバーをスマホでは非表示 */
  .sidebar { display: none !important; }

  /* 1カラムレイアウト */
  .site-body__container {
    grid-template-columns: 1fr !important;
    padding: 0 12px !important;
    gap: 0 !important;
  }
  .main-content { padding: 0 !important; }

  /* ジャンルタグをコンパクトに上部表示 */
  .site-body::before {
    content: '';
    display: block;
  }

  /* ヒーローバナー */
  .hero-banner { padding: 28px 16px 32px; }
  .hero-banner__title { font-size: 1.3rem; line-height: 1.5; }
  .hero-banner__sub { font-size: 0.85rem; }
  .hero-search { flex-direction: column; gap: 8px; }
  .hero-search__input { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .hero-search__btn { width: 100%; padding: 12px; }

  /* ジャンルバー（スマホ用） */
  .mobile-genre-bar {
    display: flex !important;
    overflow-x: auto;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-genre-bar::-webkit-scrollbar { display: none; }
  .mobile-genre-bar a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    padding: 6px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: 99px;
    font-size: 0.82rem;
    color: var(--color-text);
    background: #fff;
    text-decoration: none;
    flex-shrink: 0;
  }
  .mobile-genre-bar a:hover { border-color: var(--color-primary); color: var(--color-primary); }

  /* 店舗グリッド */
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .shop-card__name { font-size: 0.85rem; }
  .shop-card__genre { font-size: 0.72rem; }
  .shop-card__area { font-size: 0.75rem; }

  /* ジャンルセクション */
  .genre-section { margin-bottom: 24px; }
  .genre-section__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

  /* 店舗詳細 */
  .shop-detail { flex-direction: column !important; }
  .shop-detail__main { padding: 16px !important; }
  .shop-detail__sidebar {
    width: 100% !important;
    padding: 16px !important;
    border-left: none !important;
    border-top: 1px solid var(--color-border);
    position: static !important;
  }
  .reserve-box { border-radius: var(--radius-md); }
  .shop-info-table th { width: 80px; font-size: 0.82rem; }
  .shop-info-table td { font-size: 0.85rem; }

  /* 予約カレンダー */
  .calendar-day { min-width: 32px; min-height: 32px; font-size: 0.78rem; padding: 4px 2px; }
  .time-slots { grid-template-columns: repeat(3, 1fr) !important; gap: 6px !important; }
  .time-slot { padding: 8px 4px; font-size: 0.82rem; }

  /* フォーム */
  .form-control { font-size: 0.95rem; padding: 10px 12px; }
  .form-group { margin-bottom: 14px; }

  /* ページ */
  .page-content { padding: 20px 0 60px; }

  /* 管理画面 */
  .owner-stat-cards { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .owner-tabs { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .shop-card {
    flex-direction: row !important;
    height: 110px;
    border-radius: var(--radius-md);
  }
  .shop-card__image {
    width: 110px !important;
    min-width: 110px !important;
    height: 110px !important;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }
  .shop-card__image--placeholder {
    width: 110px !important;
    min-width: 110px !important;
    height: 110px !important;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 2rem !important;
  }
  .shop-card__body {
    padding: 10px 12px !important;
    flex: 1;
    gap: 4px !important;
    overflow: hidden;
  }
  .shop-card__name { font-size: 0.9rem !important; }
  .shop-card__genre { font-size: 0.72rem !important; }
  .shop-card__area { font-size: 0.75rem !important; }
  .shop-card__footer { display: none !important; }
  .owner-stat-cards { grid-template-columns: 1fr !important; }
}

/* =============================
   WordPress管理バー対応
   ============================= */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* =============================
   店舗カード説明文
   ============================= */
.shop-row__desc:empty::before {
  content: '詳細はこちら';
  color: var(--color-secondary);
  font-size: 0.75rem;
}

/* =============================
   ヒーローバナー上部余白（管理バー考慮）
   ============================= */
.admin-bar .hero-banner {
  margin-top: 0;
}

/* =============================
   今日のお知らせ
   ============================= */
.shop-news { margin-bottom: 24px; }
.shop-news__list { display: flex; flex-direction: column; gap: 10px; }
.shop-news__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
  animation: newsSlideIn 0.3s ease;
}
@keyframes newsSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shop-news__item--vacancy  { border-left-color: #2e7d32; }
.shop-news__item--limited  { border-left-color: #e65100; }
.shop-news__item--event    { border-left-color: #6c3483; }
.shop-news__item--closed   { border-left-color: #c62828; }

.shop-news__badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop-news__badge--vacancy { background: #e8f5e9; color: #2e7d32; }
.shop-news__badge--limited { background: #fff3e0; color: #e65100; }
.shop-news__badge--event   { background: #f5f0ff; color: #6c3483; }
.shop-news__badge--closed  { background: #fdecea; color: #c62828; }

.shop-news__body { flex: 1; min-width: 0; }
.shop-news__text { font-size: 0.92rem; color: var(--color-text); line-height: 1.6; }
.shop-news__time { font-size: 0.76rem; color: var(--color-text-muted); margin-top: 4px; }

/* オーナー投稿フォーム */
.news-post-form {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}
.news-post-form__types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.news-type-btn {
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
}
.news-type-btn.active,
.news-type-btn:hover { color: #fff; border-color: transparent; }
.news-type-btn[data-type="vacancy"].active  { background: #2e7d32; }
.news-type-btn[data-type="limited"].active  { background: #e65100; }
.news-type-btn[data-type="event"].active    { background: #6c3483; }
.news-type-btn[data-type="closed"].active   { background: #c62828; }

/* トップページ・一覧のお知らせバッジ */
.shop-card__news-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e65100;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  z-index: 1;
}

/* =============================
   予約カレンダー
   ============================= */
.reserve-calendar { background:#fff; border-radius:var(--radius-lg); padding:16px; box-shadow:var(--shadow-sm); }
.reserve-cal__nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.reserve-cal__month { font-weight:700; font-size:1rem; color:var(--color-primary); }
.reserve-cal__nav-btn { background:none; border:1px solid var(--color-border); border-radius:6px; width:32px; height:32px; cursor:pointer; font-size:1.1rem; color:var(--color-text); }
.reserve-cal__grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.reserve-cal__dow { text-align:center; font-size:0.75rem; font-weight:700; color:var(--color-text-muted); padding:4px 0; }
.reserve-cal__day { text-align:center; padding:8px 4px; border-radius:6px; font-size:0.88rem; cursor:default; min-height:36px; display:flex; align-items:center; justify-content:center; }
.reserve-cal__day--available { background:#e8f5e9; color:#2e7d32; cursor:pointer; font-weight:600; }
.reserve-cal__day--available:hover { background:#c8e6c9; }
.reserve-cal__day--full { background:#fff3e0; color:#e65100; cursor:pointer; }
.reserve-cal__day--full:hover { background:#ffe0b2; }
.reserve-cal__day--closed { background:var(--color-bg); color:var(--color-text-muted); }
.reserve-cal__day--past { color:#ccc; }
.reserve-cal__day--empty { }
.reserve-cal__day--selected { outline:2px solid var(--color-primary); background:#e3f0fb !important; color:var(--color-primary) !important; }

/* 時間スロットボタン */
.reserve-slot-btn { padding:10px 16px; border-radius:8px; border:1.5px solid var(--color-secondary); background:#fff; color:var(--color-secondary); font-size:0.88rem; font-weight:700; cursor:pointer; min-width:80px; text-align:center; transition:all .15s; }
.reserve-slot-btn:hover { background:var(--color-secondary); color:#fff; }
.reserve-slot-btn--full { border-color:var(--color-border); color:var(--color-text-muted); cursor:pointer; }
.reserve-slot-btn--selected { background:var(--color-secondary); color:#fff; }

/* =============================
   レスポンシブ・デザイン改善
   ============================= */

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 20px;
  z-index: 99;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-primary); text-decoration: none; }

@media (max-width: 768px) {
  /* ヘッダー */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* コンテナ */
  .container { padding: 0 16px; }
  .page-content { padding: 24px 0 60px; }

  /* ヒーローバナー */
  .hero-banner { padding: 32px 16px; }
  .hero-banner__title { font-size: 1.4rem; }
  .hero-banner__sub { font-size: 0.88rem; }
  .hero-search { flex-direction: column; gap: 8px; }
  .hero-search__input { width: 100%; font-size: 0.95rem; }
  .hero-search__btn { width: 100%; }

  /* 2カラムレイアウト */
  .site-body__container {
    flex-direction: column;
    gap: 0;
  }
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 16px;
  }
  .sidebar__genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .sidebar__genre-item { width: auto; }
  .sidebar__genre-link {
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: 99px;
    font-size: 0.82rem;
    display: inline-flex;
  }
  .sidebar__area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }
  .sidebar__area-link {
    padding: 4px 10px;
    border: 1px solid var(--color-border);
    border-radius: 99px;
    font-size: 0.82rem;
  }
  .sidebar__pr-box { display: none; }
  .main-content { padding: 16px; }

  /* 店舗一覧グリッド */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .shop-card__name { font-size: 0.88rem; }

  /* 店舗詳細 */
  .shop-detail {
    flex-direction: column;
    gap: 0;
  }
  .shop-detail__main { padding: 16px; }
  .shop-detail__sidebar {
    width: 100%;
    padding: 16px;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
  .reserve-box { border-radius: var(--radius-md); }

  /* 予約カレンダー */
  .calendar-day { min-width: 36px; min-height: 36px; font-size: 0.82rem; }

  /* 店舗情報テーブル */
  .shop-info-table { font-size: 0.88rem; }
  .shop-info-table th { width: 80px; font-size: 0.82rem; }

  /* フォーム */
  .form-control { font-size: 0.95rem; }

  /* オーナー管理画面 */
  .owner-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .owner-stat-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .owner-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .owner-table-wrap table { min-width: 600px; }

  /* マイページ */
  .mypage-tabs { overflow-x: auto; white-space: nowrap; }

  /* ページネーション */
  .pagination { gap: 4px; }
}

@media (max-width: 480px) {
  /* 極小画面 */
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card { flex-direction: row; height: 100px; }
  .shop-card__image,
  .shop-card__image--placeholder { width: 100px; min-width: 100px; height: 100px; }
  .shop-card__body { flex: 1; padding: 8px 10px; }
  .shop-card__footer { display: none; }
  .hero-banner__title { font-size: 1.2rem; }
  .owner-stat-cards { grid-template-columns: 1fr; }
}

/* =============================
   スマホ追加修正
   ============================= */
@media (max-width: 768px) {
  /* ヘッダーロゴ中央寄せ */
  .site-header__inner {
    justify-content: center;
    position: relative;
  }
  .site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburger {
    position: absolute;
    right: 0;
  }

  /* ジャンルセクションの店舗を横長カードに */
  .genre-section__grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .shop-row__card {
    flex-direction: row !important;
    height: 90px !important;
    border-radius: var(--radius-md) !important;
  }
  .shop-row__img-wrap {
    width: 90px !important;
    min-width: 90px !important;
    height: 90px !important;
    border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
    overflow: hidden;
  }
  .shop-row__img,
  .shop-row__img-placeholder {
    width: 90px !important;
    height: 90px !important;
    border-radius: 0 !important;
  }
  .shop-row__body {
    padding: 8px 12px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px !important;
    overflow: hidden;
  }
  .shop-row__name { font-size: 0.88rem !important; line-height: 1.3 !important; }
  .shop-row__station { font-size: 0.75rem !important; }
  .shop-row__desc { display: none !important; }
  .shop-row__badge { font-size: 0.7rem !important; padding: 2px 6px !important; }

  /* フッターロゴ */
  .footer-logo img { height: 44px !important; }
}

/* =============================
   新UI（食べログ風）
   ============================= */

/* 検索バー */
.mn-searchbar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 16px;
  position: sticky;
  top: var(--header-height);
  z-index: 90;
}
.mn-searchbar__form {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 99px;
  padding: 8px 16px;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.mn-searchbar__icon { width: 18px; height: 18px; color: var(--color-text-muted); flex-shrink: 0; }
.mn-searchbar__input {
  border: none;
  background: none;
  flex: 1;
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
}

/* タグスクロール */
.mn-tag-scroll {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mn-tag-scroll::-webkit-scrollbar { display: none; }
.mn-tag-scroll--genre { background: var(--color-bg); }

.mn-tag {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 5px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 99px;
  font-size: 0.82rem;
  color: var(--color-text);
  background: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.15s;
}
.mn-tag:hover, .mn-tag--active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #e8f0fb;
  text-decoration: none;
}

.mn-genre-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
}
.mn-genre-tag:hover { background: #e8f0fb; text-decoration: none; }
.mn-genre-tag__icon { font-size: 1.4rem; }
.mn-genre-tag__name { font-size: 0.75rem; color: var(--color-text); white-space: nowrap; }

/* メインレイアウト */
.mn-main { background: var(--color-bg); padding: 0 0 60px; }
.mn-main__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

/* サイドバー */
.mn-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 120px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mn-sidebar__section {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.mn-sidebar__heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mn-sidebar__list { display: flex; flex-direction: column; gap: 2px; }
.mn-sidebar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.15s;
}
.mn-sidebar__link:hover { background: var(--color-bg); text-decoration: none; }
.mn-sidebar__pr { text-align: center; }
.mn-sidebar__pr p { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 12px; line-height: 1.6; }
.mn-sidebar__pr-btn {
  display: block;
  background: var(--color-accent);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.mn-sidebar__pr-btn:hover { opacity: 0.85; text-decoration: none; }

/* セクション */
.mn-section { margin-bottom: 32px; }
.mn-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mn-section__title {
  font-size: 1rem;
  font-weight: 700;
  border-left: 3px solid;
  padding-left: 10px;
}
.mn-section__more {
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
}
.mn-section__more:hover { text-decoration: underline; }
.mn-section__btn {
  display: block;
  text-align: center;
  border: 1.5px solid;
  border-radius: var(--radius-md);
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.15s;
}
.mn-section__btn:hover { opacity: 0.8; text-decoration: none; }

/* 店舗カード */
.mn-shop-list { display: flex; flex-direction: column; gap: 1px; background: var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.mn-shop-card {
  display: flex;
  background: #fff;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.15s;
  gap: 0;
}
.mn-shop-card:hover { background: #f8fbff; text-decoration: none; }

/* 写真エリア */
.mn-shop-card__photos {
  display: flex;
  flex-direction: row;
  width: 240px;
  min-width: 240px;
  height: 120px;
  flex-shrink: 0;
}
.mn-shop-card__img-main {
  flex: 2;
  position: relative;
  overflow: hidden;
}
.mn-shop-card__img-main img,
.mn-shop-card__img-placeholder {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.mn-shop-card__img-placeholder {
  background: linear-gradient(135deg, #e8edf2, #cdd5de);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.mn-shop-card__img-sub {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
}
.mn-shop-card__img-sub img {
  flex: 1;
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
}
.mn-shop-card__news {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: #e53935;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

/* 情報エリア */
.mn-shop-card__body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}
.mn-shop-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mn-shop-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.82rem;
}
.mn-shop-card__stars { color: var(--color-star); }
.mn-shop-card__score { font-weight: 700; }
.mn-shop-card__count { color: var(--color-text-muted); font-size: 0.75rem; }
.mn-shop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.mn-shop-card__price { color: var(--color-primary); font-weight: 600; }

/* スマホ対応 */
@media (max-width: 768px) {
  .mn-main__inner {
    grid-template-columns: 1fr !important;
    padding: 12px 0 !important;
    gap: 0 !important;
  }
  .mn-sidebar { display: none !important; }
  .mn-content { padding: 0 12px; }

  .mn-shop-card__photos {
    width: 130px !important;
    min-width: 130px !important;
    height: 100px !important;
  }
  .mn-shop-card__img-main img,
  .mn-shop-card__img-placeholder { height: 100px !important; }
  .mn-shop-card__img-sub { display: none !important; }
  .mn-shop-card__body { padding: 10px 12px !important; gap: 3px !important; }
  .mn-shop-card__name { font-size: 0.88rem !important; white-space: normal; }
  .mn-shop-card__meta { font-size: 0.75rem !important; }

  .mn-section { margin-bottom: 20px; }
  .mn-section__btn { font-size: 0.82rem; padding: 9px; }
}

/* =============================
   食べログ風カード（新版）
   ============================= */
.mn-card {
  display: block;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.15s;
}
.mn-card:first-child { padding-top: 0; }
.mn-card:hover { background: #f8fbff; text-decoration: none; }
.mn-card:last-child { border-bottom: none; }

/* 写真3枚横並び */
.mn-card__imgs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
}
.mn-card__img { overflow: hidden; position: relative; }
.mn-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mn-card__img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8edf2, #cdd5de);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.mn-card__img-ph--sm { font-size: 1.2rem; }
.mn-card__news {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: #e53935;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}

/* 店舗情報 */
.mn-card__body { padding: 0 2px; }
.mn-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.mn-card__sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.mn-card__sep { color: #ccc; }
.mn-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mn-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mn-card__stars { color: var(--color-star); font-size: 0.85rem; }
.mn-card__score { font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.mn-card__rcount { font-size: 0.75rem; color: var(--color-text-muted); }
.mn-card__price { font-size: 0.82rem; color: var(--color-text-muted); }

/* スマホ対応 */
@media (max-width: 768px) {
  .mn-card__imgs { height: 120px; }
  .mn-card__name { font-size: 0.92rem; }
  .mn-card { padding: 12px 0; }
}
@media (max-width: 480px) {
  .mn-card__imgs { height: 100px; gap: 2px; }
  .mn-card__img--sub:last-child { display: none; }
  .mn-card__imgs { grid-template-columns: 3fr 2fr; }
}

/* =============================
   新トップページ（食べログ風）
   ============================= */

/* ヒーロー */
.tp-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.tp-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 700px;
}
.tp-hero__copy {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin: 10px 0 20px;
}
.tp-hero__search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 99px;
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.tp-hero__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--color-text);
}
.tp-hero__search button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
}

/* ボディ */
.tp-body { background: var(--color-bg); padding: 0 0 80px; }
.tp-body__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 28px;
  align-items: start;
}

/* セクション */
.tp-section { margin-bottom: 36px; }
.tp-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tp-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.tp-section__more {
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
}
.tp-section__more:hover { text-decoration: underline; }

/* エリアグリッド */
.tp-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tp-area-card {
  position: relative;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.2s;
}
.tp-area-card:hover { transform: scale(1.02); text-decoration: none; }
.tp-area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}
.tp-area-card__body {
  position: relative;
  z-index: 1;
  padding: 12px;
}
.tp-area-card__name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.tp-area-card__count { color: rgba(255,255,255,0.8); font-size: 0.78rem; }

/* ジャンルグリッド */
.tp-genre-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.tp-genre-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--color-text);
  padding: 8px 4px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.tp-genre-card:hover { background: #e8f0fb; text-decoration: none; }
.tp-genre-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.tp-genre-card__name { font-size: 0.72rem; font-weight: 600; text-align: center; line-height: 1.3; }
.tp-genre-card__count { font-size: 0.68rem; }

/* 店舗リスト */
.tp-shop-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.tp-card {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.15s;
}
.tp-card:last-child { border-bottom: none; }
.tp-card:hover { background: #f8fbff; text-decoration: none; }

/* 写真3枚 */
.tp-card__imgs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}
.tp-card__img { position: relative; overflow: hidden; }
.tp-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-card__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8edf2, #cdd5de);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.tp-card__ph--sm { font-size: 1.2rem; }
.tp-card__badge {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: #e53935;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}

/* 店舗情報 */
.tp-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.tp-card__meta {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin-bottom: 5px;
}
.tp-card__sep { color: #ddd; }
.tp-card__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.tp-card__tag {
  font-size: 0.72rem;
  background: var(--color-bg);
  color: var(--color-text-muted);
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
}
.tp-card__row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.tp-card__stars { color: var(--color-star); font-size: 0.88rem; }
.tp-card__score { font-weight: 700; font-size: 0.9rem; }
.tp-card__rcount { font-size: 0.75rem; color: var(--color-text-muted); }
.tp-card__price { font-size: 0.82rem; color: var(--color-text-muted); margin-left: auto; }

/* もっと見るボタン */
.tp-more-btn {
  display: block;
  text-align: center;
  border: 1.5px solid;
  border-radius: var(--radius-md);
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.15s;
  background: #fff;
}
.tp-more-btn:hover { opacity: 0.8; text-decoration: none; }

/* サイドバー */
.tp-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }
.tp-sidebar__box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tp-sidebar__heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.tp-sidebar__link {
  display: block;
  padding: 6px 8px;
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.tp-sidebar__link:hover { background: var(--color-bg); text-decoration: none; }
.tp-sidebar__pr { text-align: center; }
.tp-sidebar__pr p { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 10px; line-height: 1.6; }
.tp-sidebar__pr-btn {
  display: block;
  background: var(--color-accent);
  color: #fff;
  padding: 9px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.tp-sidebar__pr-btn:hover { opacity: 0.85; text-decoration: none; }

/* スマホ対応 */
@media (max-width: 768px) {
  .tp-hero { height: 260px; }
  .tp-hero__copy { font-size: 0.88rem; margin: 8px 0 14px; }
  .tp-body__inner {
    grid-template-columns: 1fr !important;
    padding: 16px 12px !important;
    gap: 0 !important;
  }
  .tp-sidebar { display: none !important; }
  .tp-genre-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 6px !important; }
  .tp-genre-card__icon { width: 44px !important; height: 44px !important; font-size: 1.3rem !important; }
  .tp-genre-card__name { font-size: 0.68rem !important; }
  .tp-genre-card__count { display: none; }
  .tp-area-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .tp-area-card { height: 90px; }
  .tp-card__imgs { height: 120px; }
  .tp-card { padding: 12px; }
  .tp-card__name { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .tp-genre-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .tp-card__imgs { grid-template-columns: 3fr 2fr !important; }
  .tp-card__img--sub:last-child { display: none !important; }
  .tp-card__imgs { height: 100px; }
}

/* =============================
   スライドショー
   ============================= */
.tp-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tp-slideshow {
  position: absolute;
  inset: 0;
}
.tp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.tp-slide.active { opacity: 1; }
.tp-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.tp-slide__content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
}
.tp-slide__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}
.tp-slide__sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.tp-slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.tp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.tp-dot.active {
  background: #fff;
  transform: scale(1.3);
}
.tp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 60px;
}
.tp-hero__logo { margin-bottom: 8px; display: flex; justify-content: center; }
.tp-hero__copy {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin: 0 0 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.tp-hero__search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 99px;
  padding: 8px 8px 8px 16px;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.tp-hero__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--color-text);
  min-width: 0;
}
.tp-hero__search button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tp-hero { height: 280px; }
  .tp-slide__title { font-size: 1.1rem; }
  .tp-slide__content { bottom: 50px; }
  .tp-hero__inner { margin-bottom: 40px; }
  .tp-hero__logo img { height: 44px !important; }
}

/* スライドショーフェード改善 */
.tp-slide {
  transition: opacity 1.2s ease-in-out !important;
}

/* =============================
   新ヘッダー（検索バー内蔵型）
   ============================= */
.new-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  height: 60px;
  width: 100%;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.new-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ロゴ */
.new-header__logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.new-header__logo:hover { opacity: 0.85; }

/* 検索バー */
.new-header__search {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 99px;
  padding: 7px 8px 7px 14px;
  gap: 8px;
  transition: border-color 0.2s;
}
.new-header__search:focus-within {
  border-color: var(--color-primary);
  background: #fff;
}
.new-header__search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--color-text);
  min-width: 0;
}
.new-header__search button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.new-header__search button:hover { background: var(--color-secondary); }

/* 右ナビ */
.new-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.new-header__nav-link {
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}
.new-header__nav-link:hover { color: var(--color-primary); }
.new-header__nav-link--muted { color: var(--color-text-muted); font-size: 0.8rem; }
.new-header__nav-btn {
  background: var(--color-accent);
  color: #fff;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.new-header__nav-btn:hover { opacity: 0.85; text-decoration: none; }

/* ハンバーガー */
.new-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.new-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.new-header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.new-header__hamburger.active span:nth-child(2) { opacity: 0; }
.new-header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー（右からスライド） */
.new-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
  padding: 20px 0;
}
.new-mobile-menu.open { right: 0; }
.new-mobile-menu__search {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 99px;
  padding: 8px 10px 8px 14px;
  gap: 8px;
  margin: 0 16px 16px;
}
.new-mobile-menu__search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 0.88rem;
  min-width: 0;
}
.new-mobile-menu__search button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.new-mobile-menu__links { display: flex; flex-direction: column; }
.new-mobile-menu__links a {
  display: block;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.new-mobile-menu__links a:hover { background: var(--color-bg); }

/* オーバーレイ */
.new-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.new-mobile-menu__overlay.open { opacity: 1; pointer-events: all; }

/* スマホ対応 */
@media (max-width: 768px) {
  .new-header__search { display: flex; }
  .new-header__nav { display: none; }
  .new-header__hamburger { display: flex; }
  .new-header__inner { justify-content: space-between; gap: 10px; }
  .new-header { height: 56px; }
  .new-header__search button { display: none; }
}

/* WordPress管理バー対応 */
.admin-bar .new-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .new-header { top: 46px; }
}

/* =============================
   透明ヘッダー→白切り替え
   ============================= */

/* 透明状態（トップページ初期） */
.new-header--transparent {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease !important;
}

/* 透明時のテキスト・ボタンを白に */
.new-header--transparent .new-header__nav-link {
  color: rgba(255,255,255,0.9) !important;
}
.new-header--transparent .new-header__nav-link--muted {
  color: rgba(255,255,255,0.6) !important;
}
.new-header--transparent .new-header__search {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.3) !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.new-header--transparent .new-header__search input::placeholder {
  color: rgba(255,255,255,0.7);
}
.new-header--transparent .new-header__hamburger span {
  background: #fff !important;
}

/* スクロール後（白背景） */
.new-header--scrolled {
  background: #fff !important;
  border-bottom: 1px solid var(--color-border) !important;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08) !important;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease !important;
}
.new-header--scrolled .new-header__nav-link {
  color: var(--color-text) !important;
}
.new-header--scrolled .new-header__nav-link--muted {
  color: var(--color-text-muted) !important;
}
.new-header--scrolled .new-header__search {
  opacity: 1 !important;
  pointer-events: all !important;
  background: var(--color-bg) !important;
  border-color: var(--color-border) !important;
}
.new-header--scrolled .new-header__hamburger span {
  background: var(--color-text) !important;
}

/* スマホ：ロゴ非表示 */
@media (max-width: 768px) {
  .new-header__logo { display: none; }
  .new-header--transparent { background: transparent !important; }
  .new-header--scrolled { background: #fff !important; }
}

/* スライドショーをヘッダーの後ろまで伸ばす */
.tp-hero {
  margin-top: -60px !important;
  padding-top: 60px !important;
}
@media (max-width: 768px) {
  .tp-hero {
    margin-top: -56px !important;
    padding-top: 56px !important;
  }
}
.admin-bar .tp-hero {
  margin-top: -60px !important;
}
