/**
 * アジアン料理ナビ - Refined Design 2026
 * ぐるなび風デザイン
 */
:root {
  --refined-font-sans: "Outfit", "Noto Sans JP", sans-serif;
  --refined-font-jp: "Noto Sans JP", sans-serif;
  --refined-bg: #faf8f5;
  --refined-bg-card: #ffffff;
  --refined-text: #2d2a26;
  --refined-text-muted: #6b6560;
  --refined-accent: #e60012;
  --refined-accent-hover: #cc0011;
  --refined-accent-soft: rgba(230, 0, 18, 0.08);
  --refined-border: rgba(45, 42, 38, 0.08);
  --refined-shadow: 0 2px 12px rgba(45, 42, 38, 0.06);
  --refined-shadow-hover: 0 12px 32px rgba(45, 42, 38, 0.12);
  --refined-radius: 16px;
  --refined-radius-sm: 12px;
}

body.refined-body {
  font-family: var(--refined-font-jp);
  background: var(--refined-bg);
  color: var(--refined-text);
  line-height: 1.7;
}

/* Header */
.refined-header {
  background: var(--refined-bg-card);
  border-bottom: 1px solid var(--refined-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.refined-header .navbar {
  padding: 0.75rem 0;
}

.refined-brand {
  font-family: var(--refined-font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--refined-text) !important;
  letter-spacing: -0.02em;
}

.refined-header .nav-link {
  font-weight: 500;
  color: var(--refined-text-muted) !important;
  transition: color 0.2s;
}

.refined-header .nav-link:hover {
  color: var(--refined-accent) !important;
}

/* Hero */
.refined-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 var(--refined-radius) var(--refined-radius);
}

.refined-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d2a26 0%, #4a4239 50%, #5c5248 100%);
}

.refined-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.refined-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,42,38,0.3) 0%, rgba(45,42,38,0.85) 100%);
}

.refined-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.refined-hero h1 {
  font-family: var(--refined-font-sans);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.refined-hero .lead {
  opacity: 0.95;
  font-size: 1rem;
}

.refined-hero .form-control,
.refined-hero .form-select {
  border: none;
  border-radius: var(--refined-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.refined-hero .btn-hero-search {
  background: var(--refined-accent);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--refined-radius-sm);
  transition: background 0.2s;
}

.refined-hero .btn-hero-search:hover {
  background: var(--refined-accent-hover);
  color: #fff;
}

.refined-hero-sm { min-height: 320px !important; }

/* タグメニュー（ぐるなび風） */
.refined-tag-section { }
.refined-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.refined-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--refined-text);
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: 2rem;
  text-decoration: none !important;
  transition: all 0.2s;
}
.refined-tag:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
  background: var(--refined-accent-soft);
}

/* 写真を小さく */
.refined-img-sm { aspect-ratio: 16/8 !important; max-height: 140px; object-fit: cover; }
.refined-card-body-sm { padding: 1rem 1.25rem !important; }
.refined-card-sm .refined-card-title { font-size: 0.95rem !important; }

/* エリアカード（写真付き） */
.refined-area-card-img {
  position: relative;
  display: block;
  border-radius: var(--refined-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none !important;
  padding: 0;
  border: 1px solid var(--refined-border);
  transition: box-shadow 0.2s;
}
.refined-area-card-img:hover {
  box-shadow: var(--refined-shadow);
}
.refined-area-card-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.refined-area-card-img:hover .refined-area-card-img-el { transform: scale(1.05); }
.refined-area-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ジャンルカード（写真付き） */
.refined-genre-card {
  position: relative;
  display: block;
  border-radius: var(--refined-radius-sm);
  overflow: hidden;
  aspect-ratio: 2/1;
  text-decoration: none !important;
}
.refined-genre-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.refined-genre-card:hover .refined-genre-card-img { transform: scale(1.05); }
.refined-genre-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* 写真カード（料理・エリア・スパイス・食材） */
.refined-photo-card {
  position: relative;
  display: block;
  border-radius: var(--refined-radius-sm);
  overflow: hidden;
  aspect-ratio: 16/10;
  text-decoration: none !important;
}
.refined-photo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.refined-photo-card:hover .refined-photo-card-img { transform: scale(1.05); }
.refined-photo-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Cards */
.refined-card {
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
  overflow: hidden;
  box-shadow: var(--refined-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.refined-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--refined-shadow-hover);
}

.refined-card-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.refined-card-body {
  padding: 1.25rem 1.5rem;
}

.refined-card-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--refined-text);
}

.refined-badge-genre {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35em 0.65em;
  background: var(--refined-accent-soft);
  color: var(--refined-accent);
  border-radius: 6px;
}

.refined-badge-featured {
  background: linear-gradient(135deg, #e60012, #ff1a2d);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.65em;
  border-radius: 6px;
}

/* Area / Genre cards */
.refined-area-card {
  display: block;
  text-decoration: none !important;
  color: var(--refined-text);
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius-sm);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.refined-area-card:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
  box-shadow: var(--refined-shadow);
}

.refined-area-card .refined-area-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--refined-accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Content cards */
.refined-content-card {
  display: block;
  text-decoration: none !important;
  color: var(--refined-text);
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
  overflow: hidden;
  transition: all 0.25s;
}

.refined-content-card:hover {
  border-color: var(--refined-accent);
  box-shadow: var(--refined-shadow-hover);
}

.refined-content-card .refined-content-img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

/* Promotion banner */
.refined-promo {
  background: linear-gradient(135deg, var(--refined-accent-soft) 0%, rgba(230,0,18,0.04) 100%);
  border: 1px solid rgba(230,0,18,0.2);
  border-radius: var(--refined-radius);
  padding: 1.5rem 2rem;
}

.refined-promo h5 {
  font-weight: 600;
  color: var(--refined-text);
}

/* Section titles */
.refined-section-title {
  font-family: var(--refined-font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--refined-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Footer */
.refined-footer {
  background: #2d2a26;
  color: rgba(255,255,255,0.85);
  margin-top: 4rem;
}
/* index.php / recipe.php 共通：ヘッダー・本文・フッターの横幅を 1200px に統一 */
.refined-footer .container {
  max-width: 1200px;
}

.refined-footer-brand {
  font-family: 'Yusei Magic', var(--refined-font-sans);
  font-weight: 400;
  color: #fff;
  font-size: 1.1rem;
}

.refined-footer-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.refined-footer-head {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}

.refined-footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.refined-footer-links a:hover {
  color: var(--refined-accent);
}

.refined-footer-divider {
  border-color: rgba(255,255,255,0.1);
}

.refined-footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

.refined-footer-cms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}
.refined-footer-block--wide {
  grid-column: 1 / -1;
}
.refined-footer-links li + li {
  margin-top: 0.42rem;
}
.refined-footer-all-link {
  margin: 1rem 0 0;
  text-align: right;
}
.refined-footer-all-link a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
}
.refined-footer-collapse-toggle {
  display: none;
}

/* フッター：国別レシピ＋定番料理（SEO） */
.refined-footer-teiban .refined-footer-head {
  margin-bottom: 0.75rem;
}

.refined-footer-teiban-country-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.refined-footer-teiban-country-link:hover {
  color: var(--refined-accent);
}

.refined-footer-teiban-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.refined-footer-teiban-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.refined-footer-teiban-tag:hover {
  color: #fff;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 767px) {
  .refined-footer-cms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }
  .refined-footer-block--wide {
    grid-column: 1 / -1;
  }
  .refined-footer-block.is-mobile-collapsed .refined-footer-desktop-head {
    display: none;
  }
  .refined-footer-block.is-mobile-collapsed .refined-footer-collapse-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: rgba(255,255,255,0.85);
    background: none;
    border: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
  }
  .refined-footer-block.is-mobile-collapsed .refined-footer-collapsible {
    display: none;
    margin-top: 1rem;
  }
  .refined-footer-block.is-mobile-collapsed.is-open .refined-footer-collapsible {
    display: block;
  }
  .refined-footer-block.is-mobile-collapsed.is-open .refined-footer-collapse-toggle span:last-child {
    transform: rotate(45deg);
  }
}

.refined-site-page {
  max-width: 900px;
}
.refined-site-page > article,
.refined-site-contact {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--refined-border);
  border-radius: 12px;
  background: #fff;
}
.refined-site-page-body h2 {
  margin-top: 2rem;
}
.refined-site-contact-form {
  display: grid;
  gap: 1rem;
}
.refined-site-contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}
.refined-site-contact-form input,
.refined-site-contact-form select,
.refined-site-contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--refined-border);
  border-radius: 6px;
  font: inherit;
  font-weight: 400;
}
.refined-site-contact-form .refined-site-contact-consent {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.refined-site-contact-consent input {
  width: auto;
}
.refined-contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Breadcrumb */
.refined-breadcrumb .breadcrumb-item a {
  color: var(--refined-text-muted);
  text-decoration: none;
}

.refined-breadcrumb .breadcrumb-item a:hover {
  color: var(--refined-accent);
}

/* Buttons */
.btn-refined {
  background: var(--refined-accent);
  border: none;
  color: #fff;
  font-weight: 500;
  border-radius: var(--refined-radius-sm);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s;
}

.btn-refined:hover {
  background: var(--refined-accent-hover);
  color: #fff;
}

/* Shop detail */
.refined-shop-hero-wrap {
  display: inline-block;
  max-width: 100%;
}
.refined-shop-hero-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  background: var(--refined-accent);
  color: #fff;
  border-radius: 4px;
}
.refined-shop-hero-img {
  display: block;
  max-height: 200px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: var(--refined-radius);
}
.refined-product-thumb,
.refined-course-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--refined-radius-sm);
}
.refined-gallery-caption {
  line-height: 1.4;
}
.refined-news-img {
  display: block;
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--refined-radius-sm);
}

.refined-news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.refined-news-card {
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius-sm);
  padding: 1rem 1.1rem;
  background: #fff;
}

.refined-news-card + .refined-news-card {
  margin-top: 0;
}

.refined-news-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.45rem;
}

.refined-news-card-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--refined-text);
  letter-spacing: 0.02em;
}

.refined-news-card-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: #eef2f7;
  color: #3d4f63;
}

.refined-news-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--refined-text);
  line-height: 1.4;
}

.refined-news-card-inner {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.refined-news-card-inner.has-thumb .refined-news-card-text {
  flex: 1;
  min-width: 0;
}

.refined-news-card-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--refined-radius-sm);
  display: block;
}

.refined-news-thumb-btn {
  display: block;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--refined-radius-sm);
  cursor: zoom-in;
  line-height: 0;
  overflow: hidden;
}

.refined-news-thumb-btn:hover .refined-news-card-thumb,
.refined-news-thumb-btn:focus-visible .refined-news-card-thumb {
  opacity: 0.88;
}

.refined-news-thumb-btn:focus-visible {
  outline: 2px solid var(--refined-accent);
  outline-offset: 2px;
}

.refined-news-image-modal .modal-content {
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
}

.refined-news-modal-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  max-height: calc(100vh - 10rem);
  overflow: auto;
}

.refined-news-modal-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: calc(100vh - 10rem);
  margin: 0 auto;
  object-fit: contain;
}

.refined-news-modal-img.is-loading {
  visibility: hidden;
}

.refined-news-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  transition: background-color 0.18s ease, opacity 0.18s ease;
}

.refined-news-modal-nav:hover,
.refined-news-modal-nav:focus-visible {
  background: rgba(0, 0, 0, 0.72);
}

.refined-news-modal-nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.refined-news-modal-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.refined-news-modal-nav-prev {
  left: 0.75rem;
}

.refined-news-modal-nav-next {
  right: 0.75rem;
}

.refined-news-modal-text {
  max-width: min(100%, 780px);
  margin-left: auto;
  margin-right: auto;
}

.refined-news-modal-body {
  color: var(--refined-text);
  white-space: pre-line;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.refined-news-excerpt-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--shop-news-excerpt-lines, 4);
  overflow: hidden;
}

.refined-news-read-more {
  margin-top: 0.35rem;
  font-weight: 600;
  text-decoration: none;
}

.refined-news-read-more:hover {
  text-decoration: underline;
}

.refined-media-modal .modal-content,
.refined-media-modal-content {
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
}

.refined-media-modal-stage {
  position: relative;
}

.refined-media-modal-media-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  max-height: calc(100vh - 10rem);
  overflow: auto;
}

.refined-media-modal-img,
.refined-media-modal-video {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: calc(100vh - 10rem);
  margin: 0 auto;
  object-fit: contain;
}

.refined-media-modal-img.is-loading {
  visibility: hidden;
}

.refined-media-modal-video {
  background: #000;
}

.refined-media-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  transition: background-color 0.18s ease, opacity 0.18s ease;
}

.refined-media-modal-nav:hover,
.refined-media-modal-nav:focus-visible {
  background: rgba(0, 0, 0, 0.72);
}

.refined-media-modal-nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.refined-media-modal-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.refined-media-modal-nav-prev {
  left: 0.75rem;
}

.refined-media-modal-nav-next {
  right: 0.75rem;
}

.refined-media-modal-text {
  max-width: min(100%, 780px);
  margin-left: auto;
  margin-right: auto;
}

.refined-media-modal-body {
  color: var(--refined-text);
  white-space: pre-line;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.refined-media-modal-header--menu {
  justify-content: flex-end;
}

.refined-media-modal--menu .refined-media-modal-text {
  display: none;
}

.refined-media-modal--full-body .refined-media-modal-body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  white-space: pre-line;
}

.refined-gallery-thumb-btn,
.refined-post-gallery-thumb-btn,
.refined-post-gallery-video-btn,
.refined-course-thumb-btn,
.refined-product-thumb-btn {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
  cursor: zoom-in;
  line-height: 0;
}

.refined-gallery-thumb-btn:hover .refined-gallery-img,
.refined-post-gallery-thumb-btn:hover .refined-post-gallery-img,
.refined-course-thumb-btn:hover .refined-course-thumb,
.refined-product-thumb-btn:hover .refined-product-thumb {
  opacity: 0.88;
}

.refined-gallery-thumb-btn:focus-visible,
.refined-post-gallery-thumb-btn:focus-visible,
.refined-post-gallery-video-btn:focus-visible,
.refined-course-thumb-btn:focus-visible,
.refined-product-thumb-btn:focus-visible {
  outline: 2px solid var(--refined-accent);
  outline-offset: 2px;
  border-radius: var(--refined-radius-sm);
}

.refined-post-gallery-video-btn {
  cursor: pointer;
}

.refined-post-gallery-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--refined-radius-sm);
  background: #000;
}

.refined-post-gallery-video-preview {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  pointer-events: none;
}

.refined-media-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.refined-media-play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}

@media (min-width: 576px) {
  .refined-news-card-thumb {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 575.98px) {
  .refined-news-modal-nav,
  .refined-media-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .refined-news-modal-nav-prev,
  .refined-media-modal-nav-prev {
    left: 0.5rem;
  }

  .refined-news-modal-nav-next,
  .refined-media-modal-nav-next {
    right: 0.5rem;
  }
}
.refined-post-gallery-img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--refined-radius-sm);
}

.refined-post-gallery-comment {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.45;
  margin-top: 0.15rem;
}

.refined-post-gallery-video {
  display: block;
  max-width: 100%;
  border-radius: var(--refined-radius-sm);
  background: #000;
}
.refined-post-gallery-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f1ee;
  border: 1px dashed var(--refined-border);
  border-radius: var(--refined-radius-sm);
  color: var(--refined-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.refined-shop-no-image {
  width: 100%;
  height: 200px;
  max-height: 200px;
  border-radius: var(--refined-radius);
  border: 1px dashed var(--refined-border);
  background: #f3f1ee;
  color: var(--refined-text-muted);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-sizing: border-box;
}

.refined-sidebar-card {
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
  overflow: hidden;
  box-shadow: var(--refined-shadow);
}

.refined-gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--refined-radius-sm);
}

.refined-shop-pagination-info {
  color: var(--refined-text-muted, #6c757d);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.refined-shop-pagination__desktop {
  display: flex;
}

.refined-shop-pagination__mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.refined-shop-pagination__mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--refined-border, #dee2e6);
  border-radius: var(--refined-radius-sm, 0.375rem);
  background: #fff;
  color: var(--refined-text, #212529);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
}

.refined-shop-pagination__mobile-btn:hover,
.refined-shop-pagination__mobile-btn:focus-visible {
  background: var(--refined-bg-soft, #f8f9fa);
  color: var(--refined-text, #212529);
}

.refined-shop-pagination__mobile-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.refined-shop-pagination__mobile-status {
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 4.5rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .refined-shop-pagination__desktop {
    display: none;
  }
  .refined-shop-pagination__mobile {
    display: flex;
  }
}

.refined-menu-text {
  color: var(--refined-text);
  line-height: 1.75;
}

.refined-menu-excerpt-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--shop-menu-excerpt-lines, 6);
  overflow: hidden;
}

.refined-menu-read-more {
  margin-top: 0.35rem;
  font-weight: 600;
  text-decoration: none;
}

.refined-menu-read-more:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .refined-shop-preview-md-only {
    display: none !important;
  }
}

.refined-shop-prose {
  color: var(--refined-text);
  line-height: 1.75;
  font-size: 0.95rem;
}

.refined-shop-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.refined-shop-page [id].refined-shop-scroll-target {
  scroll-margin-top: 5rem;
}

.refined-shop-info-subheading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--refined-text-muted);
  text-transform: uppercase;
}

.refined-shop-info-th {
  width: 110px;
}

.refined-shop-info-section-divider {
  margin: 1rem 0;
  opacity: 0.35;
}

.refined-shop-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 245, 0.96);
  border-top: 1px solid var(--refined-border);
}

.refined-shop-mobile-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  font-size: 0.875rem;
  padding: 0.5rem 0.5rem;
}

.refined-shop-page .refined-breadcrumb {
  margin-bottom: 1rem !important;
}
.refined-shop-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--refined-text-muted);
}

/* 店名上メタ（ぐるなび風：ラベル＝淡グレー帯＋太字、値は通常テキスト） */
.refined-shop-set-a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--refined-text, #333);
}
.refined-set-a-item {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  max-width: 100%;
}
.refined-set-a-title {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.12rem 0.45rem;
  border-radius: 3px;
  background: #ececec;
  color: #222;
  white-space: nowrap;
}
.refined-set-a-value {
  font-weight: 400;
  color: #333;
  word-break: break-word;
}
.refined-shop-list .refined-set-a-item .refined-set-a-value.refined-set-a-value-genre {
  color: #c00 !important;
}

/* 店舗の特徴タグ（shops.tags）：recipe.php カードの .recipe-tag-detail と同系の淡イエロー */
.refined-shop-page .refined-shop-feature-tag {
  display: inline-block;
  font-size: 0.74rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 180, 80, 0.5);
  background: rgba(255, 248, 200, 0.8);
  color: #4a5a6b;
  line-height: 1.35;
}
.refined-shop-list .refined-shop-feature-tag {
  display: inline-block;
  font-size: 0.74rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 180, 80, 0.5);
  background: rgba(255, 248, 200, 0.8);
  color: #4a5a6b;
  line-height: 1.35;
}

.refined-shop-main-row {
  margin-top: 0 !important;
}

.refined-shop-main-row > [class*="col-"] {
  margin-top: 0 !important;
}

.refined-shop-page .refined-sidebar-card {
  margin-top: 0.25rem;
}

.refined-shop-map-row {
  margin-top: 0.75rem !important;
}

@media (max-width: 991.98px) {
  .refined-sidebar-card.sticky-top {
    position: static;
    top: auto;
  }
  .refined-card-body {
    padding: 1rem 1rem;
  }
}

/* 検索結果ページ（ぐるなび風） */
.refined-search-header { }
.refined-search-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--refined-text);
}
.refined-current-location-address {
  font-size: 0.9rem;
  color: var(--refined-text-muted);
}
.refined-current-location-label {
  font-weight: 600;
  margin-right: 0.25rem;
}
.refined-search-form .form-control-sm { max-width: 200px; }

.refined-sidebar-filter {
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
  padding: 1.25rem;
  box-shadow: var(--refined-shadow);
}
.refined-filter-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--refined-text-muted);
  margin-bottom: 0.5rem;
}
.refined-filter-list a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--refined-text);
  text-decoration: none;
  transition: color 0.2s;
}
.refined-filter-list a:hover,
.refined-filter-list a.active {
  color: var(--refined-accent);
}

.refined-sidebar-section-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.refined-sidebar-pref-details {
  margin-bottom: 0.25rem;
}
.refined-sidebar-pref-summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 0.2rem 0;
}
.refined-sidebar-pref-summary::-webkit-details-marker {
  display: none;
}
.refined-sidebar-pref-summary::before {
  content: '▸ ';
  display: inline-block;
  transition: transform 0.15s ease;
}
.refined-sidebar-pref-details[open] .refined-sidebar-pref-summary::before {
  transform: rotate(90deg);
}
.refined-sidebar-pref-areas {
  margin-top: 0.15rem;
}
.refined-sidebar-area-more {
  display: none;
}
.refined-sidebar-pref-details.is-expanded .refined-sidebar-area-more {
  display: list-item;
}
.refined-sidebar-pref-details.is-expanded .refined-sidebar-more-row {
  display: none;
}
.refined-sidebar-more-btn {
  font-size: 0.85rem;
  color: var(--refined-accent);
}
.refined-sidebar-cuisine-more {
  display: none;
}
.refined-sidebar-cuisine-list.is-expanded .refined-sidebar-cuisine-more {
  display: list-item;
}
.refined-sidebar-cuisine-list.is-expanded .refined-sidebar-cuisine-more-row {
  display: none;
}
.refined-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.refined-active-filters-label {
  margin-right: 0.15rem;
}
.refined-active-filter-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.82rem;
  border-radius: 999px;
  background: #f3f1ee;
  border: 1px solid var(--refined-border);
  color: var(--refined-text);
  text-decoration: none;
}
.refined-active-filter-chip:hover {
  color: var(--refined-accent);
  border-color: var(--refined-accent);
}

/* スマホ：サイドバー全体を折りたたみ（第1段階） */
.refined-sidebar-mobile-details {
  margin-bottom: 0;
}
.refined-sidebar-mobile-summary {
  display: none;
}
@media (max-width: 991.98px) {
  .refined-sidebar-mobile-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    list-style: none;
    cursor: pointer;
    min-height: 44px;
    padding: 0.65rem 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--refined-text);
    background: var(--refined-bg-card);
    border: 1px solid var(--refined-border);
    border-radius: var(--refined-radius);
    box-shadow: var(--refined-shadow);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .refined-sidebar-mobile-summary::-webkit-details-marker {
    display: none;
  }
  .refined-sidebar-mobile-summary::after {
    content: '▸';
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--refined-text-muted);
    transition: transform 0.15s ease;
  }
  .refined-sidebar-mobile-details[open] .refined-sidebar-mobile-summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
  }
  .refined-sidebar-mobile-details[open] .refined-sidebar-mobile-summary::after {
    transform: rotate(90deg);
  }
  .refined-sidebar-mobile-details[open] .refined-sidebar-filter {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
  }
  .refined-sidebar-mobile-details:not([open]) .refined-sidebar-filter {
    display: none;
  }
  .refined-sidebar-mobile-summary-label {
    flex: 1;
    min-width: 0;
  }
  .refined-sidebar-mobile-summary-badge {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--refined-accent);
    background: rgba(0, 0, 0, 0.04);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
  }
  .refined-filter-list a {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .refined-sidebar-section-details + .refined-sidebar-section-details {
    border-top: 1px solid var(--refined-border);
  }
  .refined-sidebar-section-summary {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    cursor: pointer;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--refined-text);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .refined-sidebar-section-summary::-webkit-details-marker {
    display: none;
  }
  .refined-sidebar-section-summary::after {
    content: '▸';
    flex-shrink: 0;
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--refined-text-muted);
    transition: transform 0.15s ease;
  }
  .refined-sidebar-section-details[open] > .refined-sidebar-section-summary::after {
    transform: rotate(90deg);
  }
  .refined-sidebar-section-title {
    flex-shrink: 0;
  }
  .refined-sidebar-section-value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    color: var(--refined-accent);
    text-align: right;
    padding-right: 0.25rem;
  }
  .refined-sidebar-section-body {
    padding: 0 0.75rem 0.75rem;
  }
  .refined-sidebar-section-heading-pc {
    display: none;
  }
}
@media (min-width: 992px) {
  .refined-sidebar-section-summary {
    display: none;
  }
  .refined-sidebar-section-details > .refined-sidebar-section-body {
    display: block;
  }
  .refined-sidebar-section-heading-pc {
    display: block;
  }
  .refined-sidebar-section-area .refined-sidebar-section-heading-pc {
    margin-top: 0;
  }
}

.refined-result-count {
  font-size: 0.9rem;
  color: var(--refined-text-muted);
}

.refined-shop-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.refined-shop-item {
  background: var(--refined-bg-card);
  border: 1px solid var(--refined-border);
  border-radius: var(--refined-radius);
  overflow: hidden;
  box-shadow: var(--refined-shadow);
  transition: box-shadow 0.2s;
}
.refined-shop-item:hover {
  box-shadow: var(--refined-shadow-hover);
}
/* 案B-1: スタンダード＝左ボーダーのみ（プレミアムは PICK UP バッジのみ） */
.refined-shop-item--plan-standard {
  border-left: 4px solid var(--refined-accent);
}
.refined-shop-item-link {
  display: flex;
  text-decoration: none !important;
  color: inherit;
}
.refined-shop-item-img {
  flex: 0 0 200px;
  width: 200px;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}
.refined-shop-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.refined-shop-item-no-image {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f1ee;
  color: var(--refined-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px dashed var(--refined-border);
}
.refined-shop-item-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--refined-accent);
  color: #fff;
  border-radius: 4px;
  z-index: 2;
}
.refined-shop-item-badge-res {
  top: auto;
  bottom: 0.5rem;
  left: 0.5rem;
  background: #2d6a4f;
}
.refined-shop-item-badge-status {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
  background: #64748b;
  font-size: 0.65rem;
  z-index: 2;
}
.refined-shop-listing-status-alert {
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
}
.refined-shop-listing-status-alert--temp {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}
.refined-shop-listing-status-alert--reloc {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}
.refined-shop-listing-status-alert--closed {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.refined-shop-listing-status-table-value--temp {
  color: #b45309;
  font-weight: 600;
}
.refined-shop-listing-status-table-value--reloc {
  color: #2563eb;
  font-weight: 600;
}
.refined-shop-listing-status-table-value--closed {
  color: #475569;
  font-weight: 600;
}
.refined-shop-item-badge-status--temp {
  background: #b45309;
}
.refined-shop-item-badge-status--reloc {
  background: #2563eb;
}
.refined-shop-item-badge-status--closed {
  background: #475569;
}
.refined-shop-item-body {
  flex: 1;
  padding: 1rem 1.25rem;
  min-width: 0;
}
.refined-shop-item-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--refined-text);
}
.refined-shop-item-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  color: var(--refined-text-muted);
}
.refined-shop-item-concept {
  font-size: 0.85rem;
  color: var(--refined-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.refined-shop-item-meta {
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  margin-bottom: 0.35rem;
}
.refined-shop-item-budget { margin-right: 0.5rem; }
.refined-shop-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.refined-shop-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--refined-accent-soft);
  color: var(--refined-accent);
  border-radius: 4px;
}
.refined-shop-item-address {
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--refined-border);
  font-size: 0.78rem;
  color: var(--refined-text-muted);
}
.refined-shop-distance {
  margin-top: 0.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  color: var(--refined-accent);
  font-weight: 500;
}

@media (max-width: 767px) {
  .refined-shop-item-link { flex-direction: column; }
  .refined-shop-item-img {
    flex: none;
    width: 100%;
    height: 180px;
    min-height: 0;
    max-height: 180px;
  }
  .refined-shop-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .refined-shop-item-no-image {
    min-height: 0;
    height: 100%;
  }
}

/* ===== ぐるなび風 トップページ ===== */
.gnavi-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: #333;
  overflow: hidden;
}
.gnavi-hero-bg {
  position: absolute;
  inset: 0;
}
.gnavi-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.gnavi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}
.gnavi-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 0;
}
.gnavi-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.gnavi-hero-lead {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
.gnavi-search-form { max-width: 640px; }
.gnavi-search-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.gnavi-select, .gnavi-input {
  flex: 1;
  min-width: 140px;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
}
.gnavi-search-btn {
  padding: 0.65rem 1.5rem;
  background: var(--refined-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.gnavi-search-btn:hover { background: var(--refined-accent-hover); }

.gnavi-container { padding-bottom: 3rem; }

/* キャンペーンバナー */
.gnavi-campaign {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 1px solid rgba(230,0,18,0.2);
  border-radius: 8px;
  overflow: hidden;
}
.gnavi-campaign-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  text-decoration: none !important;
  color: var(--refined-text);
  gap: 1rem;
}
.gnavi-campaign-link:hover { background: rgba(230,0,18,0.04); }
.gnavi-campaign-badge {
  background: var(--refined-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.gnavi-campaign-text { flex: 1; font-size: 0.95rem; }
.gnavi-campaign-arrow { color: var(--refined-accent); font-weight: 700; }

/* セクション */
.gnavi-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--refined-text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--refined-accent);
  display: inline-block;
}
.gnavi-section-desc { font-size: 0.9rem; color: var(--refined-text-muted); }
.gnavi-section .gnavi-section-desc { margin-top: -0.25rem; margin-bottom: 0.75rem; }

/* エリア */
.gnavi-area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 991px) { .gnavi-area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .gnavi-area-grid { grid-template-columns: repeat(2, 1fr); } }
.gnavi-area-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gnavi-area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.gnavi-area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-area-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.gnavi-note { font-size: 0.85rem; color: var(--refined-text-muted); }

/* 料理ジャンル（大きく3つ） */
.gnavi-genre-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) { .gnavi-genre-featured { grid-template-columns: 1fr; } }
.gnavi-genre-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.gnavi-genre-card:hover {
  border-color: var(--refined-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.gnavi-genre-card img {
  width: 140px;
  min-height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.gnavi-genre-card-body { padding: 1rem; flex: 1; min-width: 0; }
.gnavi-genre-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--refined-text);
}
.gnavi-genre-card-desc {
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ジャンル・条件タグリスト（もっと見るで展開） */
.gnavi-genre-list, .gnavi-condition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.gnavi-genre-list.gnavi-list-collapsed,
.gnavi-condition-list.gnavi-list-collapsed {
  max-height: 110px;
}
.gnavi-genre-list:not(.gnavi-list-collapsed),
.gnavi-condition-list:not(.gnavi-list-collapsed) {
  max-height: 600px;
}
.gnavi-genre-tag, .gnavi-condition-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 6px;
  color: var(--refined-text);
  text-decoration: none !important;
  transition: all 0.2s;
}
.gnavi-genre-tag:hover, .gnavi-condition-tag:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
  background: var(--refined-accent-soft);
}
.gnavi-more-btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--refined-accent);
  background: none;
  border: 1px solid var(--refined-accent);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.gnavi-more-btn:hover {
  background: var(--refined-accent-soft);
}

/* 条件・こだわり（大きく3つ） */
.gnavi-condition-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) { .gnavi-condition-featured { grid-template-columns: 1fr; } }
.gnavi-condition-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.gnavi-condition-card:hover {
  border-color: var(--refined-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.gnavi-condition-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--refined-text);
}
.gnavi-condition-desc {
  font-size: 0.85rem;
  color: var(--refined-text-muted);
  line-height: 1.5;
}

/* トレンドグルメ */
.gnavi-trend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gnavi-trend-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 6px;
  color: var(--refined-text);
  text-decoration: none !important;
  transition: all 0.2s;
}
.gnavi-trend-tag:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
  background: var(--refined-accent-soft);
}

/* おすすめ店舗スライダー */
.gnavi-shop-slider-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
.gnavi-shop-slider-wrap::-webkit-scrollbar {
  height: 6px;
}
.gnavi-shop-slider-wrap::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.gnavi-shop-slider {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
  min-width: min-content;
}
.gnavi-shop-slide {
  flex: 0 0 280px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.gnavi-shop-slide:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.gnavi-shop-slide-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gnavi-shop-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-shop-slide-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--refined-accent);
  color: #fff;
  border-radius: 4px;
}
.gnavi-shop-slide-body { padding: 1rem; }
.gnavi-shop-slide-genre {
  font-size: 0.7rem;
  color: var(--refined-accent);
  margin-bottom: 0.25rem;
}
.gnavi-shop-slide-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--refined-text);
}
.gnavi-shop-slide-concept {
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* コンテンツカード */
.gnavi-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) { .gnavi-content-grid { grid-template-columns: 1fr; } }
.gnavi-content-card {
  display: block;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.gnavi-content-card:hover {
  border-color: var(--refined-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.gnavi-content-card img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.gnavi-content-card-body { padding: 1rem; }
.gnavi-content-badge {
  font-size: 0.7rem;
  color: var(--refined-accent);
  margin-bottom: 0.25rem;
}
.gnavi-content-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--refined-text);
}
.gnavi-content-card p {
  font-size: 0.85rem;
  color: var(--refined-text-muted);
  margin: 0;
}

/* ===== ぐるなび完全模倣 トップページ v2 ===== */
.gnavi-header {
  background: #fff;
  border-bottom: 1px solid var(--refined-border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.gnavi-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* 2段構成：1行目＝左：ロゴ・説明／右：Language、2行目＝左：検索／右：ナビ */
.gnavi-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
}
.gnavi-header-row1 {
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  align-items: flex-start;
}
.gnavi-header-row2 {
  padding-bottom: 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--refined-border);
}
.gnavi-header-row2 .gnavi-header-left {
  flex: 0 1 auto;
  max-width: min(100%, 480px);
}
.gnavi-header-row2 .gnavi-header-right {
  flex: 1 1 auto;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  min-width: 0;
}
.gnavi-header-left {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gnavi-header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
/* ロゴ＋サイト説明（左側・サイト説明文だけ「アジアン料理ナビ」右端+10pxから） */
.gnavi-header-brand {
  display: grid;
  grid-template-columns: auto 10px 1fr;
  grid-template-rows: auto auto;
  gap: 0.25rem 0;
  align-items: baseline;
}
.gnavi-logo-wrap {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  flex-shrink: 0;
}
.gnavi-header-tagline {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: subgrid;
  align-items: baseline;
  min-width: 0;
}
.gnavi-header-tagline .gnavi-logo-sub {
  grid-column: 1;
  flex-shrink: 0;
}
.gnavi-header-tagline .gnavi-logo-sub-link {
  grid-column: 1;
  flex-shrink: 0;
}
.gnavi-header-desc-spacer {
  grid-column: 2;
  min-width: 10px;
}
.gnavi-header-tagline .gnavi-header-desc {
  grid-column: 3;
  min-width: 0;
  margin-left: 0;
}
.gnavi-header-desc {
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  margin: 0;
  line-height: 1.5;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  border-left: none;
  max-width: 100%;
}
.gnavi-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--refined-accent);
  line-height: 1.2;
}
.gnavi-logo-cute {
  font-family: 'Yusei Magic', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.gnavi-logo-sub {
  font-size: 0.7rem;
  color: var(--refined-text-muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.gnavi-logo-wrap:hover .gnavi-logo {
  color: var(--refined-accent);
  opacity: 0.9;
}
.gnavi-header-brand:hover .gnavi-logo-sub {
  color: var(--refined-accent);
  opacity: 0.85;
}
.gnavi-logo-sub-link {
  color: inherit;
  text-decoration: none;
}
.gnavi-logo-sub-link:hover .gnavi-logo-sub {
  color: var(--refined-accent);
  opacity: 0.85;
}
/* 検索：2行目左（トップ時のみ） */
.gnavi-header-search-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .gnavi-header-search-wrap {
    max-width: 420px;
  }
}
.gnavi-header-search-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--refined-accent);
  border-radius: 8px;
  background: #fff;
  color: var(--refined-accent);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gnavi-header-search-icon-btn:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
  background: #fffaf9;
}
.gnavi-header-geo-link {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: var(--refined-accent);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, opacity 0.2s;
}
.gnavi-header-geo-link:hover {
  color: var(--refined-accent);
  opacity: 0.85;
}
.gnavi-header-geo-link.gnavi-geo-loading {
  opacity: 0.7;
  cursor: wait;
}
.gnavi-header-search-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.35rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 10;
}
.gnavi-header-search-box.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gnavi-header-form { display: flex; gap: 0.5rem; }
.gnavi-header-input {
  flex: 1;
  min-width: 280px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.875rem;
}
.gnavi-header-search-btn {
  padding: 0.5rem 1rem;
  background: var(--refined-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.gnavi-header-search-btn:hover { opacity: 0.95; }
/* ナビリンク（区切りを明確に） */
.gnavi-header-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}
.gnavi-header-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--refined-text);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4rem 0.6rem;
  margin: 0 0.15rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.gnavi-header-link-home {
  flex-shrink: 0;
}
.gnavi-nav-icon {
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.85;
}
.gnavi-header-links a:hover .gnavi-nav-icon,
.gnavi-mobile-nav a:hover .gnavi-nav-icon {
  opacity: 1;
}
.gnavi-header-links a:hover {
  color: var(--refined-accent);
  background: rgba(220, 53, 69, 0.06);
}
/* 2項目目以降の前に区切り線（縦線） */
.gnavi-header-links a:not(:first-child) {
  position: relative;
  padding-left: 0.85rem;
  margin-left: 0.1rem;
}
.gnavi-header-links a:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: var(--refined-border);
  opacity: 0.9;
}
.gnavi-header-links a:not(:first-child):hover::before {
  background: var(--refined-accent);
  opacity: 0.4;
}
/* 2言語切り替え（shop_light_a1 と同じ仕様：アイコン＋ドロップダウン・色は refined に合わせてオシャレに） */
.gnavi-header-lang {
  flex-shrink: 0;
}
/* ヘッダー内に収める（fixed にしない） */
.gnavi-header .lang-switcher-global {
  position: relative;
  top: auto;
  right: auto;
  z-index: 10;
  font-family: inherit;
}
.gnavi-header .lang-switcher-details {
  position: relative;
}
.gnavi-header .lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  color: var(--refined-text-muted);
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.gnavi-header .lang-switcher-trigger::-webkit-details-marker { display: none; }
.gnavi-header .lang-switcher-trigger:hover {
  color: var(--refined-accent);
  border-color: var(--refined-accent);
  background: rgba(220, 53, 69, 0.06);
}
.gnavi-header .lang-switcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.gnavi-header .lang-switcher-icon svg {
  width: 18px;
  height: 18px;
}
.gnavi-header .lang-switcher-label {
  white-space: nowrap;
}
.gnavi-header .lang-switcher-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 140px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 1px solid var(--refined-border);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gnavi-header .lang-switcher-option {
  padding: 10px 14px;
  color: var(--refined-text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}
.gnavi-header .lang-switcher-option:hover {
  background: #f8f9fa;
  color: var(--refined-accent);
}
.gnavi-header .lang-switcher-option.is-current {
  background: rgba(220, 53, 69, 0.08);
  color: var(--refined-accent);
  font-weight: 600;
}
.gnavi-mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.gnavi-mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
}
.gnavi-mobile-nav {
  display: none;
  padding: 1rem;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}
.gnavi-mobile-nav.show { display: block; }
.gnavi-mobile-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.4rem 0.5rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0.25rem;
  background: #fff;
  border-radius: 8px;
  min-width: 0;
}
.gnavi-mobile-lang-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--refined-text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.gnavi-mobile-lang-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--refined-accent);
}
.gnavi-mobile-lang-links {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.gnavi-mobile-lang-links a {
  display: inline;
  padding: 0.25rem 0.4rem;
  white-space: nowrap;
  color: var(--refined-text);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.gnavi-mobile-lang-links a:hover {
  color: var(--refined-accent);
  background: var(--refined-accent-soft);
}
.gnavi-mobile-lang-links a.is-current {
  font-weight: 700;
  color: var(--refined-accent);
}
.gnavi-mobile-lang-sep {
  color: var(--refined-text-muted);
  font-weight: 500;
  pointer-events: none;
}
.gnavi-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  color: var(--refined-text);
  text-decoration: none;
}
@media (min-width: 992px) {
  .gnavi-mobile-nav { display: none !important; }
}
@media (max-width: 991px) {
  .gnavi-header-row1 { padding-top: 0.5rem; padding-bottom: 0.2rem; }
  .gnavi-header-row2 { padding-top: 0.2rem; padding-bottom: 0.5rem; }
  .gnavi-header-search-wrap { max-width: none; }
  .gnavi-header-links { display: none; }
  .gnavi-header-lang { display: none; }
  .gnavi-mobile-menu-btn { display: flex; }
  .gnavi-mobile-nav.show { display: block !important; }
}
@media (max-width: 575px) {
  .gnavi-logo { font-size: 1.15rem; }
  .gnavi-logo-sub { font-size: 0.65rem; }
  .gnavi-header-desc { display: none; }
}

/* 案2：スマホのみヘッダー直下にサイト紹介文バー */
.gnavi-header-tagline-bar {
  display: none;
  padding: 0.4rem 1rem;
  background: #f2f2f2;
  border-bottom: 1px solid var(--refined-border);
  max-width: 100%;
  overflow: hidden;
}
.gnavi-header-tagline-bar-text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--refined-text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (min-width: 576px) {
  .gnavi-header-tagline-bar { display: none !important; }
}
@media (max-width: 575px) {
  .gnavi-header-tagline-bar { display: block; }
}

/* トップスライダー枠（サイトの売りをアピール） */
.gnavi-hero-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #333;
}
.gnavi-hero-slider-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.gnavi-hero-slider-fade-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.gnavi-hero-slider-fade-layer.is-active {
  opacity: 1;
  visibility: visible;
}
/* タイマーフェード中はトラックを完全に隠し、フェードレイヤーのみ表示 */
.gnavi-hero-slider-inner.timer-fade-active .gnavi-hero-slider-track {
  visibility: hidden !important;
  pointer-events: none;
}
.gnavi-hero-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.gnavi-hero-fade-slide.show {
  opacity: 1;
}
.gnavi-hero-fade-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-hero-slider-track {
  position: relative;
  z-index: 0;
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}
.gnavi-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  text-decoration: none !important;
  pointer-events: none;
}
.gnavi-hero-slider-track .gnavi-hero-slide.active {
  pointer-events: auto;
}
.gnavi-hero-slider-track .gnavi-hero-slide.gnavi-hero-slide-clone {
  pointer-events: none;
}
.gnavi-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 3.5rem 2.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}
@media (min-width: 1200px) {
  .gnavi-hero-slide-overlay {
    padding-left: calc((100vw - 1200px) / 2 + 1rem);
  }
}
.gnavi-hero-slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: pre-line;
}
@media (max-width: 991px) {
  .gnavi-hero-slider { height: 300px; }
  .gnavi-hero-slide-title { font-size: 1.25rem; }
}
@media (max-width: 575px) {
  .gnavi-hero-slider { height: 240px; }
  .gnavi-hero-slide-overlay { padding: 1rem 2rem 1.5rem 1rem; }
  .gnavi-hero-slide-title { font-size: 1.1rem; }
}
.gnavi-hero-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.gnavi-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.gnavi-hero-dot:hover {
  background: rgba(255,255,255,0.5);
}
.gnavi-hero-dot.active {
  background: #fff;
  border-color: #fff;
}

/* スライダー左右ナビボタン（参考：楽天ぐるなび風・ヘッダー幅に合わせて配置） */
.gnavi-hero-slider-prev,
.gnavi-hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(60, 60, 60, 0.85);
  color: #fff;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gnavi-hero-slider-prev:hover,
.gnavi-hero-slider-next:hover {
  background: rgba(80, 80, 80, 0.95);
}
.gnavi-hero-slider-prev {
  left: 1rem;
}
.gnavi-hero-slider-next {
  right: 1rem;
}
@media (min-width: 1200px) {
  .gnavi-hero-slider-prev {
    left: calc((100vw - 1200px) / 2 + 1rem);
  }
  .gnavi-hero-slider-next {
    right: calc((100vw - 1200px) / 2 + 1rem);
  }
}
/* 左向き矢印（前へ） */
.gnavi-hero-slider-prev::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10px solid currentColor;
  margin-left: -2px;
}
/* 右向き矢印（次へ） */
.gnavi-hero-slider-next::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  margin-right: -2px;
}

/* 検索枠（ぐるなび風・絵文字は入力欄内表示） */
.gnavi-search-section {
  padding: 1.5rem 1rem 2rem;
  background: #f8f8f8;
  border-bottom: 1px solid var(--refined-border);
}
.gnavi-search-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.gnavi-search-heading-block {
  margin: 0 0 0.85rem;
}
.gnavi-search-heading {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}
.gnavi-search-lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}
.gnavi-search-dict-links {
  max-width: 1100px;
  margin: 0.65rem auto 0;
  padding: 0 0.15rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #666;
}
.gnavi-search-dict-links a {
  color: #2c7be5;
  text-decoration: none;
}
.gnavi-search-dict-links a:hover {
  text-decoration: underline;
}
.gnavi-search-dict-intro {
  margin-right: 0.35rem;
}
.gnavi-search-dict-sep {
  margin: 0 0.25rem;
  color: #aaa;
}
.gnavi-search-section .gnavi-search-form { max-width: none; }
.gnavi-search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gnavi-search-row1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
}
.gnavi-search-row1b {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 0.25rem;
}
.gnavi-search-field-keyword-full {
  flex: 1 1 100%;
  max-width: 100%;
  min-width: 0;
}
.gnavi-search-field-keyword-full .gnavi-search-input {
  min-width: 0;
}
/* 絵文字を入力欄・セレクト内に表示（枠内左側） */
.gnavi-search-field {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 100px;
  max-width: 180px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.gnavi-search-field:focus-within {
  border-color: var(--refined-accent);
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
}
.gnavi-search-icon-inner {
  flex-shrink: 0;
  font-size: 1rem;
  padding: 0 0.4rem 0 0.6rem;
  color: #666;
  filter: grayscale(1);
  opacity: 0.85;
}
.gnavi-search-input,
.gnavi-search-select {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.6rem;
  border: none;
  border-radius: 0;
  font-size: 0.85rem;
  color: var(--refined-text);
  background: transparent;
}
.gnavi-search-input::placeholder {
  color: var(--refined-text);
  opacity: 1;
}
/* フリーワード欄：プレースホルダー「フリーワード（店名・キーワード）」が切れない幅 */
.gnavi-search-field-keyword {
  max-width: none;
  min-width: 280px;
}
.gnavi-search-field-keyword .gnavi-search-input {
  min-width: 19em;
}
/* 料理の国：タイトル「料理の国」が切れない幅 */
.gnavi-search-field-genre {
  min-width: 135px;
}
.gnavi-search-field-genre .gnavi-search-select {
  min-width: 4.5em;
}
/* 料理名：カスタムドロップダウン（国一覧→国クリックで料理一覧＋戻る＋検索） */
.gnavi-search-field-dish {
  min-width: 100px;
  width: auto;
  max-width: 200px;
  gap: 0;
  overflow: visible;
}
/* エリア・駅：3段階ドロップダウン（ドロップが切れないように） */
.gnavi-search-field-area {
  gap: 0;
  overflow: visible;
}
/* スパイス・調味料・食材名：同上（ラベルが切れない幅） */
.gnavi-search-field-spice {
  min-width: 140px;
  width: auto;
  max-width: 240px;
  gap: 0;
  overflow: visible;
}
/* レシピ：スパイス欄と同じUX（国→有名料理・お菓子・スイーツ） */
.gnavi-search-field-recipe {
  min-width: 100px;
  width: auto;
  max-width: 220px;
  gap: 0;
  overflow: visible;
}
.gnavi-dish-select-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}
.gnavi-combo-wrap { position: relative; }
.gnavi-combo-search-wrap {
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid var(--refined-border);
  background: #fafafa;
}
.gnavi-combo-search {
  width: 100%;
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid var(--refined-border);
  border-radius: 4px;
  background: #fff;
}
.gnavi-combo-search:focus { outline: none; border-color: var(--refined-accent); }
.gnavi-combo-screen { padding: 0.35rem 0.5rem; }
.gnavi-combo-screen-countries { display: flex; flex-direction: column; gap: 0.15rem; }
.gnavi-combo-country-btn {
  display: block;
  width: 100%;
  padding: 0.4rem 0.6rem;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.gnavi-combo-country-btn:hover { background: rgba(220, 53, 69, 0.08); color: var(--refined-accent); }
/* 押すとさらに展開される項目の右に「>」を表示（関東→都道府県、国→料理一覧 など） */
.gnavi-combo-country-btn::after { content: ' \003e'; font-size: 0.9em; color: var(--refined-text-muted); margin-left: 0.15rem; }
.gnavi-area-pref-btn::after { content: ' \003e'; font-size: 0.9em; color: var(--refined-text-muted); margin-left: 0.15rem; }
.gnavi-combo-back {
  display: block;
  width: 100%;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.35rem;
  border: none;
  border-radius: 4px;
  background: #f0f0f0;
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.gnavi-combo-back:hover { background: #e0e0e0; color: var(--refined-text); }
.gnavi-combo-items-body { padding: 0 0 0.25rem 0; }
.gnavi-combo-items-body .gnavi-dish-group-label { margin-top: 0.5rem; }
.gnavi-combo-items-body .gnavi-dish-group-label:first-child { margin-top: 0; }
.gnavi-combo-item-btn { width: 100%; }
/* 国一覧表示中の全国横断検索結果 */
.gnavi-combo-screen-global-search { padding: 0.35rem 0.5rem; }
.gnavi-combo-global-search-hint {
  font-size: 0.7rem;
  color: var(--refined-text-muted);
  margin: 0 0 0.35rem 0;
  padding: 0;
}
.gnavi-combo-global-results .gnavi-combo-item-btn { margin-bottom: 0.15rem; }
.gnavi-combo-no-results {
  font-size: 0.85rem;
  color: var(--refined-text-muted);
  margin: 0.5rem 0;
  padding: 0 0.25rem;
}
.gnavi-dish-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  padding: 0.5rem 0.6rem;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 0.85rem;
  color: var(--refined-text);
  text-align: left;
  cursor: pointer;
}
.gnavi-dish-trigger-text { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gnavi-dish-trigger-arrow {
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.5rem;
  margin-left: 0.25rem;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 4 L6 8 L10 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gnavi-dish-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin-top: 2px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 1000;
  padding: 0;
}
.gnavi-dish-dropdown[aria-hidden="false"].is-open,
.gnavi-dish-dropdown.is-open { display: block !important; }
/* スパイス・食材ドロップダウンはラベルに合わせてやや広め */
.gnavi-search-field-spice .gnavi-dish-dropdown { min-width: 200px; }
.gnavi-search-field-recipe .gnavi-dish-dropdown { min-width: 200px; }
.gnavi-search-field-area .gnavi-dish-dropdown { min-width: 200px; }
/* エリア・駅：スマホでタップしやすい高さ（44px目安） */
.gnavi-area-combo-wrap .gnavi-combo-country-btn,
.gnavi-area-combo-wrap .gnavi-area-pref-btn,
.gnavi-area-combo-wrap .gnavi-combo-item-btn,
.gnavi-area-combo-wrap .gnavi-area-item-btn,
.gnavi-area-combo-wrap .gnavi-combo-back {
  min-height: 44px;
  padding: 0.5rem 0.65rem;
  box-sizing: border-box;
}
.gnavi-area-combo-wrap .gnavi-combo-back { min-height: 44px; }
.gnavi-dish-country { border-bottom: 1px solid #eee; }
.gnavi-dish-country:last-child { border-bottom: none; }
.gnavi-dish-country-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  background: #fafafa;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--refined-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.gnavi-dish-country-head:hover { background: #f0f0f0; }
.gnavi-dish-country-arrow {
  font-size: 0.6rem;
  color: var(--refined-text-muted);
  transition: transform 0.2s;
}
.gnavi-dish-country-head[aria-expanded="true"] .gnavi-dish-country-arrow { transform: rotate(90deg); }
.gnavi-dish-country-body {
  padding: 0.25rem 0.5rem 0.5rem 0.75rem;
  background: #fff;
}
.gnavi-dish-country-body[hidden] { display: none !important; }
.gnavi-dish-group { margin-top: 0.35rem; }
.gnavi-dish-group:first-child { margin-top: 0; }
.gnavi-dish-group-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--refined-text-muted);
  margin-bottom: 0.2rem;
  padding-left: 0.25rem;
}
.gnavi-dish-option {
  display: block;
  width: 100%;
  padding: 0.35rem 0.5rem;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-size: 0.8rem;
  color: var(--refined-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.gnavi-dish-option:hover { background: rgba(220, 53, 69, 0.08); color: var(--refined-accent); }
.gnavi-search-field-dish .gnavi-search-input,
.gnavi-search-field-spice .gnavi-search-input {
  font-size: 0.8rem;
}
.gnavi-search-input:focus,
.gnavi-search-select:focus {
  outline: none;
}
.gnavi-search-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 4 L6 8 L10 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.6rem auto;
}
/* 目的別・こだわり（2行目） */
.gnavi-search-purpose-label,
.gnavi-search-featured-area-label,
.gnavi-search-featured-label,
.gnavi-search-preferences-label,
.gnavi-search-keywords-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.85rem;
  color: var(--refined-text-muted);
  flex-shrink: 0;
}
.gnavi-search-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--refined-text-muted);
}
.gnavi-search-label-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.gnavi-search-purpose-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}
.gnavi-search-btn {
  padding: 0.55rem 1.2rem;
  background: var(--refined-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.gnavi-search-btn:hover { background: #c82333; }
.gnavi-search-geo-btn {
  font-size: 0.8rem;
  color: var(--refined-accent);
  text-decoration: none;
  white-space: nowrap;
}
.gnavi-search-geo-btn:hover { text-decoration: underline; }
.gnavi-search-geo-btn.gnavi-geo-loading {
  opacity: 0.7;
  cursor: wait;
}
/* 2行目：目的別＋こだわり（区切り線で別行） */
.gnavi-search-row2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}
/* 目的別：1行目として表示 */
.gnavi-search-row-purpose {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding-bottom: 0.25rem;
}
/* 注目ワード：目的別の下の行 */
.gnavi-search-row-featured-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding: 0.25rem 0;
}
.gnavi-search-featured-area-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}
.gnavi-search-row-featured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding: 0.25rem 0;
}
.gnavi-search-featured-label {
  /* 共通スタイルは .gnavi-search-purpose-label 側で定義 */
}
.gnavi-search-featured-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}
/* 区切り線（注目ワードとこだわりの間） */
.gnavi-search-divider {
  width: 100%;
  margin: 0.5rem 0;
  border: none;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
}
/* こだわり：2行目として表示（区切り線の下） */
.gnavi-search-row-preferences {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding-top: 0.25rem;
}
.gnavi-search-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
/* 3行目：検索する・現在地から探す（最下段） */
.gnavi-search-row3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}
.gnavi-search-row3-line1 {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.gnavi-search-row3-line2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
/* DB反映確認エリア */
.gnavi-db-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--refined-text);
}
.gnavi-db-status-label { margin: 0 0 0.35em 0; color: #495057; }
.gnavi-db-status-detail { margin: 0 0 0.5em 0; line-height: 1.5; }
.gnavi-db-status-items { font-weight: 500; color: var(--refined-accent); }
.gnavi-db-status-link { margin: 0; }
.gnavi-db-status-link a { color: var(--refined-accent); text-decoration: none; }
.gnavi-db-status-link a:hover { text-decoration: underline; }
.gnavi-search-check {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--refined-text);
}
.gnavi-search-check-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding: 0.25rem 0;
}
.gnavi-search-check-group--preview {
  flex-wrap: wrap;
  align-items: center;
}
.gnavi-search-check-group--preview .gnavi-search-purpose-checks {
  flex: 1 1 auto;
  min-width: 0;
}
.gnavi-search-check-group--preview.is-preview-collapsed .gnavi-search-check--overflow {
  display: none;
}
.gnavi-search-group-more {
  margin: 0;
  padding: 0.2rem 0.65rem;
  font-size: 0.8125rem;
  color: var(--refined-accent, #c82333);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
}
.gnavi-search-group-more:hover {
  border-color: var(--refined-accent, #c82333);
  background: #fff5f5;
}
.gnavi-search-rows-toggle-wrap {
  display: flex;
  width: 100%;
  padding: 0.35rem 0 0.15rem;
}
.gnavi-search-rows-more-btn {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  color: var(--refined-accent, #c82333);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
}
.gnavi-search-rows-more-btn:hover {
  border-color: var(--refined-accent, #c82333);
  background: #fff5f5;
}
.gnavi-search-rows-selected {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--refined-accent, #c82333);
  border-radius: 999px;
  line-height: 1.4;
}
.gnavi-search-rows-selected[hidden] {
  display: none !important;
}
.gnavi-search-row2--collapsible.is-rows-collapsed .gnavi-search-rows-more[hidden] {
  display: none !important;
}
.gnavi-search-check-group--collapsible {
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}
.gnavi-search-check-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
}
.gnavi-search-group-toggle {
  margin: 0;
  padding: 0.2rem 0.65rem;
  font-size: 0.8125rem;
  color: var(--refined-accent, #c82333);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
}
.gnavi-search-group-toggle:hover {
  border-color: var(--refined-accent, #c82333);
  background: #fff5f5;
}
.gnavi-search-purpose-checks--collapsible {
  max-height: 14rem;
  overflow-y: auto;
  width: 100%;
  padding: 0.35rem 0.25rem 0.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}
.gnavi-search-check input { margin: 0; }
/* 検索履歴で使用（ラベルは目的別等と共通で .gnavi-search-keywords-label） */
.gnavi-search-keyword-tag {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  background: #f0f0f0;
  color: var(--refined-text);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
}
.gnavi-search-keyword-tag:hover {
  background: var(--refined-accent);
  color: #fff;
}
.gnavi-search-history-item {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.gnavi-search-history-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--refined-text-muted);
  font-size: 0.7rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.2s, color 0.2s;
}
.gnavi-search-history-item:hover .gnavi-search-history-remove {
  opacity: 1;
}
.gnavi-search-history-remove:hover {
  background: var(--refined-accent);
  color: #fff;
}
@media (hover: none) {
  .gnavi-search-history-remove {
    opacity: 0.6;
    background: rgba(0,0,0,0.06);
    min-width: 22px;
    min-height: 22px;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }
}
.gnavi-search-history-clear-all {
  margin-left: 0.25rem;
  padding: 0.2rem 0.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s;
}
.gnavi-search-history-clear-all:hover {
  color: var(--refined-accent);
}
.gnavi-search-history {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e0e0e0;
}
.gnavi-search-history-visible {
  display: flex;
}
/* PC：1行目を横並びに最適化（1100px以上で1行固定） */
@media (min-width: 1100px) {
  .gnavi-search-row1 {
    flex-wrap: nowrap;
    gap: 0.6rem 0.75rem;
  }
  .gnavi-search-field-area { flex: 0 0 140px; }
  .gnavi-search-field-genre { flex: 0 0 145px; min-width: 145px; }
  .gnavi-search-field-dish { flex: 0 0 auto; min-width: 120px; max-width: 220px; }
  .gnavi-search-field-spice { flex: 0 0 auto; min-width: 180px; max-width: 260px; }
  .gnavi-search-field-recipe { flex: 0 0 auto; min-width: 110px; max-width: 220px; }
  .gnavi-search-field-type { flex: 0 0 160px; }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .gnavi-search-row1 { gap: 0.5rem 0.6rem; }
  .gnavi-search-field { max-width: 160px; }
  .gnavi-search-field-keyword { max-width: none; min-width: 260px; }
  .gnavi-search-field-genre { min-width: 130px; }
  .gnavi-search-field-dish { min-width: 100px; max-width: 200px; }
  .gnavi-search-field-spice { min-width: 140px; max-width: 220px; }
  .gnavi-search-field-recipe { min-width: 100px; max-width: 180px; }
  .gnavi-search-field-type { max-width: 160px; }
  .gnavi-search-input, .gnavi-search-select { font-size: 0.85rem; padding: 0.45rem 0.5rem; }
}
/* スマホ：検索枠を縦積み */
@media (max-width: 767px) {
  .gnavi-search-section { padding: 1rem 0.75rem 1.5rem; }
  .gnavi-search-box { padding: 1rem; }
  .gnavi-search-row1 {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .gnavi-search-field {
    max-width: none;
    min-width: 0;
  }
    .gnavi-search-field-dish { min-width: 0; max-width: none; }
    .gnavi-search-field-spice { min-width: 0; max-width: none; }
    .gnavi-search-field-recipe { min-width: 0; max-width: none; }
  .gnavi-search-row2 { flex-direction: column; align-items: flex-start; }
  .gnavi-search-preferences-label { margin-left: 0; padding-left: 0; border-left: none; }
  .gnavi-search-row3 {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .gnavi-search-btn { width: 100%; padding: 0.75rem; }
}
@media (max-width: 575px) {
  .gnavi-search-section { padding: 0.75rem 0.5rem 1.25rem; }
  .gnavi-search-input,
  .gnavi-search-select { font-size: 16px; }
}

/* ボディ */
.gnavi-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}
.gnavi-section {
  margin-bottom: 2.5rem;
}
.gnavi-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--refined-text);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--refined-accent);
  display: inline-block;
}

/* ぐるなびから探す（横スクロールカード） */
.gnavi-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.gnavi-scroll-wrap::-webkit-scrollbar { height: 6px; }
.gnavi-scroll-wrap::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.gnavi-from-cards {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 0.65rem 0.65rem;
  padding-bottom: 0.5rem;
  min-width: min-content;
}
.gnavi-from-card {
  width: 88px;
  text-align: center;
  text-decoration: none !important;
  color: var(--refined-text);
  transition: transform 0.2s;
}
.gnavi-from-card:hover { transform: translateY(-2px); }
.gnavi-from-card-img {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 0.35rem;
}
.gnavi-from-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gnavi-from-card > span:last-child { font-size: 0.74rem; font-weight: 500; display: block; line-height: 1.3; }
.gnavi-from-card-country {
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  padding: 0.12rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
}

/* ピックアップ店舗カード */
.gnavi-shop-card {
  flex: 0 0 280px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--refined-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.gnavi-shop-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.gnavi-shop-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gnavi-shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-shop-card-img .refined-shop-item-no-image {
  min-height: 100%;
  aspect-ratio: auto;
}
.gnavi-from-card-img .gnavi-card-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}
.gnavi-shop-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--refined-accent);
  color: #fff;
  border-radius: 4px;
}
.gnavi-shop-pr-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--refined-accent);
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.gnavi-shop-card-body { padding: 1rem; }
.gnavi-shop-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--refined-text);
}
.gnavi-shop-rating {
  font-size: 0.85rem;
  color: #e6a800;
  margin-bottom: 0.35rem;
}
.gnavi-shop-concept {
  font-size: 0.8rem;
  color: var(--refined-text-muted);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ピックアップ！注目のお店：エリア / 料理の国名タグ（1行目） */
.gnavi-shop-meta-line {
  font-size: 0.75rem;
  color: var(--refined-accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
/* ピックアップ！注目のお店：タグ共通 */
.gnavi-shop-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.gnavi-shop-tags--location { margin-bottom: 0.4rem; }
.gnavi-shop-tags--business { margin-bottom: 0.5rem; }
.gnavi-shop-tags--dish {
  margin-bottom: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--refined-border);
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gnavi-shop-tags--dish::-webkit-scrollbar { display: none; }
.gnavi-shop-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.gnavi-shop-tag--area {
  background: var(--refined-accent-soft);
  color: var(--refined-accent);
  border: 1px solid rgba(230, 0, 18, 0.25);
}
.gnavi-shop-tag--cuisine {
  background: rgba(45, 42, 38, 0.06);
  color: var(--refined-text);
  border: 1px solid var(--refined-border);
}
.gnavi-shop-tag--business {
  background: transparent;
  color: var(--refined-text-muted);
  border: 1px solid var(--refined-border);
  font-size: 0.65rem;
  font-weight: 500;
}
.gnavi-shop-tag--dish {
  background: rgba(45, 42, 38, 0.05);
  color: var(--refined-text-muted);
  border: 1px solid transparent;
  font-weight: 500;
  flex-shrink: 0;
}
/* ピックアップ！注目のお店：名物料理（名物商品）※旧レイアウト用 */
.gnavi-shop-signature {
  font-size: 0.8rem;
  color: var(--refined-text);
  font-weight: 500;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--refined-border);
  line-height: 1.35;
}
.gnavi-section--featured-shops .gnavi-shop-card-body {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.gnavi-section--featured-shops .gnavi-shop-name {
  margin-bottom: 0.4rem;
}
.gnavi-section--featured-shops .gnavi-shop-concept {
  flex: 1;
  margin-bottom: 0.35rem;
  min-height: 2.8em;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.gnavi-shop-meta {
  font-size: 0.8rem;
  color: var(--refined-text-muted);
}
.gnavi-shop-meta span:first-child { margin-right: 0.5rem; }
.gnavi-more-btn-red {
  background: var(--refined-accent);
  color: #fff;
  border-color: var(--refined-accent);
}
.gnavi-more-btn-red:hover { background: var(--refined-accent-hover); color: #fff; }

/* エリア大カード */
.gnavi-area-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) { .gnavi-area-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .gnavi-area-row { grid-template-columns: repeat(2, 1fr); } }
.gnavi-area-large {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.gnavi-area-large:hover { transform: scale(1.02); }
.gnavi-area-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-area-pref {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  display: inline-block;
  padding: 0.15rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.gnavi-area-pref--tokyo { background: #2563eb; }
.gnavi-area-pref--osaka { background: #059669; }
.gnavi-area-pref--kanagawa { background: #0891b2; }
.gnavi-area-pref--saitama { background: #7c3aed; }
.gnavi-area-pref--chiba { background: #d97706; }
.gnavi-area-pref--aichi { background: #dc2626; }
.gnavi-area-pref--kyoto { background: #b45309; }
.gnavi-area-pref--hyogo { background: #4f46e5; }
.gnavi-area-pref--fukuoka { background: #0d9488; }
.gnavi-area-pref--hokkaido { background: #0369a1; }
.gnavi-area-pref--other { background: #57534e; }
.gnavi-area-large-no-image {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnavi-area-large-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}
.gnavi-area-name { display: block; font-size: 1rem; font-weight: 700; }
.gnavi-area-count { font-size: 0.8rem; opacity: 0.9; }
.gnavi-station-links { margin-top: 1rem; }
.gnavi-station-label { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--refined-text-muted); }
.gnavi-area-tag-groups--after-cards { margin-top: 1rem; }
.gnavi-area-tag-group + .gnavi-area-tag-group { margin-top: 0.85rem; }
.gnavi-area-tag-group-heading {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--refined-text-muted, #666);
  letter-spacing: 0.02em;
}
.gnavi-area-tag-list { margin-top: 0; }
.gnavi-genre-tag-list { margin-top: 1rem; }
.gnavi-genre-item-no-image { min-height: 120px; font-size: 12px; }

/* タグリスト（もっと見る） */
.gnavi-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.gnavi-tag-list:not(.gnavi-list-collapsed) { max-height: 800px; }
.gnavi-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: var(--refined-text);
  text-decoration: none !important;
  transition: all 0.2s;
}
.gnavi-tag:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
  background: var(--refined-accent-soft);
}
.gnavi-more-btn {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--refined-accent);
  background: none;
  border: 1px solid var(--refined-accent);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.gnavi-more-btn:hover { background: var(--refined-accent-soft); }

/* 料理ジャンルグリッド */
.gnavi-genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) { .gnavi-genre-grid { grid-template-columns: repeat(2, 1fr); } }
.gnavi-genre-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.2s;
}
.gnavi-genre-item:hover { transform: scale(1.02); }
.gnavi-genre-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gnavi-genre-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* テーマグリッド */
.gnavi-theme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.gnavi-theme-item {
  padding: 0.75rem 1.25rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--refined-text);
  text-decoration: none !important;
  transition: all 0.2s;
}
.gnavi-theme-item:hover {
  border-color: var(--refined-accent);
  color: var(--refined-accent);
}

/* 特集バナー */
.gnavi-feature-banner {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.gnavi-feature-banner:hover { transform: scale(1.01); }
.gnavi-feature-banner img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}
.gnavi-feature-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

/* レシピカード */
.gnavi-recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) { .gnavi-recipe-grid { grid-template-columns: 1fr; } }
.gnavi-recipe-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s;
}
.gnavi-recipe-card:hover { transform: translateY(-2px); }
.gnavi-recipe-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.gnavi-recipe-card span {
  display: block;
  padding: 0.75rem;
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* 食材・スパイス */
.gnavi-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) { .gnavi-ingredient-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .gnavi-ingredient-grid { grid-template-columns: repeat(2, 1fr); } }
.gnavi-ingredient-card {
  text-align: center;
  text-decoration: none !important;
  color: var(--refined-text);
  transition: transform 0.2s;
}
.gnavi-ingredient-card:hover { transform: translateY(-2px); }
.gnavi-ingredient-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.gnavi-ingredient-card span { font-size: 0.9rem; font-weight: 500; }

/* 上に戻るボタン */
.gnavi-page-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.gnavi-page-top-btn:hover {
  background: rgba(0,0,0,0.85);
}
.gnavi-page-top-btn.gnavi-page-top-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 店舗詳細：お問い合わせフォーム（refined shop.php） */
.refined-shop-contact-card .refined-shop-contact-form .form-label {
  font-weight: 600;
  color: var(--refined-text);
}
.refined-shop-contact-card .refined-shop-contact-form textarea {
  min-height: 6rem;
}

/* 取材／特集 */
.refined-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.refined-feature-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.refined-feature-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  color: inherit;
}
.refined-feature-card-img {
  display: block;
  aspect-ratio: 16 / 10;
  background: #eee;
  overflow: hidden;
}
.refined-feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.refined-feature-card-img--empty {
  background: linear-gradient(135deg, #f0ebe3, #e4ddd2);
}
.refined-feature-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1.1rem;
}
.refined-feature-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
}
.refined-feature-card-lead {
  font-size: 0.9rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.refined-feature-card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  line-height: 1.3;
}
.refined-feature-card-tag--sponsored {
  background: #e8f1ff;
  color: #1a4a8a;
  font-weight: 600;
}
.refined-feature-card-tag--editorial {
  background: #f0f0f0;
  color: #6b6b6b;
  font-weight: 500;
  border: 1px solid #e2e2e2;
}
.refined-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
}
.refined-feature-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.3;
  text-decoration: none;
  color: #444;
  background: #f3f1ee;
  border: 1px solid #e4e0da;
  border-radius: 999px;
}
.refined-feature-chip:hover {
  color: #222;
  background: #ebe7e1;
}
.refined-feature-chip.is-active {
  color: #fff;
  background: #3d5a4c;
  border-color: #3d5a4c;
  font-weight: 600;
}
.refined-feature-card-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.refined-feature-card-genre {
  font-size: 0.72rem;
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
  background: #f5f0e8;
  color: #5a4a38;
  line-height: 1.3;
}
.refined-feature-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
}
.refined-feature-genre-chip {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-decoration: none;
  background: #f5f0e8;
  color: #5a4a38;
  border: 1px solid #e8dfd2;
}
.refined-feature-genre-chip:hover {
  color: #3d2f22;
  background: #efe6d8;
}
.refined-feature-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}
.refined-feature-type-label {
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.refined-feature-type-label--sponsored {
  color: #1a4a8a;
  font-weight: 600;
}
.refined-feature-type-label--editorial {
  color: #777;
  font-weight: 500;
}
.refined-feature-sponsored {
  /* 互換: 旧クラス名 */
  font-size: 0.85rem;
  color: #1a4a8a;
  margin-bottom: 0.5rem;
}
.refined-feature-lang-note {
  background: #f5f7fa;
  border-left: 3px solid #6c8ebf;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  margin: 0.75rem 0 1rem;
}
.refined-feature-cover {
  margin: 1rem 0 1.25rem;
}
.refined-feature-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}
.refined-feature-lead {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.25rem;
}
.refined-feature-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 0 1.5rem;
  border-radius: 8px;
  background: #000;
}
.refined-feature-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.refined-feature-body {
  line-height: 1.75;
  font-size: 1rem;
}
.refined-feature-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.75rem 0;
}
.refined-feature-body img.feature-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.refined-feature-body img.feature-img--lg { width: 100%; }
.refined-feature-body img.feature-img--md { width: 70%; }
.refined-feature-body img.feature-img--sm { width: 50%; }
.refined-feature-body iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 240px;
  border: 0;
  border-radius: 8px;
  margin: 1rem 0;
  background: #000;
}
.refined-feature-body .feature-embed {
  position: relative;
  margin: 1rem auto;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}
.refined-feature-body .feature-embed--landscape { aspect-ratio: 16 / 9; }
.refined-feature-body .feature-embed--portrait { aspect-ratio: 9 / 16; }
.refined-feature-body .feature-embed--landscape.feature-embed--lg { width: 100%; }
.refined-feature-body .feature-embed--landscape.feature-embed--md { width: 70%; max-width: 100%; }
.refined-feature-body .feature-embed--landscape.feature-embed--sm { width: 50%; max-width: 100%; }
.refined-feature-body .feature-embed--portrait.feature-embed--lg { width: 100%; max-width: 360px; }
.refined-feature-body .feature-embed--portrait.feature-embed--md { width: 100%; max-width: 280px; }
.refined-feature-body .feature-embed--portrait.feature-embed--sm { width: 100%; max-width: 220px; }
.refined-feature-body .feature-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.refined-feature-body h2,
.refined-feature-body h3,
.refined-feature-body h4 {
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
}
.refined-feature-body p {
  margin: 0 0 0.85rem;
}
.refined-feature-body ul,
.refined-feature-body ol {
  margin: 0 0 0.85rem;
  padding-left: 1.4rem;
}
.refined-feature-body hr.feature-hr,
.refined-feature-body hr {
  border: 0;
  margin: 1.5rem 0;
  height: 0;
}
.refined-feature-body hr.feature-hr--solid,
.refined-feature-body hr:not(.feature-hr--dashed) {
  border-top: 1px solid #c8c2b8;
}
.refined-feature-body hr.feature-hr--dashed {
  border-top: 1px dashed #b0a89e;
}
.refined-feature-shops {
  margin: 1.5rem 0 1.75rem;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #faf8f5;
}
.refined-feature-shops--top {
  margin-top: 0.5rem;
}
.refined-feature-shops--bottom {
  margin-top: 2rem;
  background: #f7f4ef;
}
.refined-feature-shops-head {
  margin-bottom: 0.85rem;
}
.refined-feature-shops-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}
.refined-feature-shops-lead {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.45;
}
.refined-feature-shops-preparing {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px dashed #c9c2b6;
  border-radius: 8px;
  color: #6b6560;
  font-size: 0.95rem;
}
.refined-feature-shop-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .refined-feature-shop-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.refined-feature-shop-card {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
  padding: 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  min-height: 88px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.refined-feature-shop-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transform: translateY(-1px);
  color: inherit;
}
.refined-feature-shop-media {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  align-self: center;
}
.refined-feature-shop-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.refined-feature-shop-media--empty {
  background: linear-gradient(135deg, #efeae3, #e2dbd1);
}
.refined-feature-shop-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}
.refined-feature-shop-name {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.3;
}
.refined-feature-shop-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.1rem 0;
  font-size: 0.82rem;
  color: #7a6f63;
  line-height: 1.4;
}
.refined-feature-shop-meta-sep {
  margin: 0 0.15rem;
  color: #b0a89e;
}
.refined-feature-shop-meta-item {
  white-space: nowrap;
}
.refined-feature-shop-area {
  font-size: 0.82rem;
  color: #7a6f63;
}
.refined-feature-shop-concept {
  font-size: 0.86rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.refined-feature-shop-cta {
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #8b4513;
}
.refined-feature-shop-card:hover .refined-feature-shop-cta {
  text-decoration: underline;
}

/* 確認用プレビュー帯（admin_preview・ログイン必須） */
.shop-preview-banner {
  background: #7c2d12;
  color: #fff7ed;
  padding: 10px 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
  border-bottom: 3px solid #ea580c;
  position: relative;
  z-index: 50;
}
.shop-preview-banner__title {
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 700;
}
.shop-preview-banner__body {
  display: inline;
  font-weight: 500;
}
@media (max-width: 640px) {
  .shop-preview-banner__title,
  .shop-preview-banner__body {
    display: block;
  }
  .shop-preview-banner__title {
    margin: 0 0 0.25rem;
  }
}

/* お店公式ミニサイト（/hp/{店舗ID}/） */
.shop-hp-header {
  background: #fff;
  border-bottom: 1px solid #e8e4de;
  position: sticky;
  top: 0;
  z-index: 40;
}
.shop-hp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.shop-hp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
}
.shop-hp-brand:hover {
  color: #1a1a1a;
  text-decoration: none;
}
.shop-hp-brand__logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f3f1ee;
}
.shop-hp-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.shop-hp-brand__name {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-hp-brand__meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: #6f675f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-hp-lang .owner-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 2px;
  border: 1px solid #d8d2ca;
  border-radius: 999px;
  background: #f7f5f2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.shop-hp-lang .owner-lang__item {
  color: #1a1a1a;
  text-decoration: none;
  min-width: 40px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
}
.shop-hp-lang a.owner-lang__item:hover {
  background: rgba(0, 0, 0, 0.06);
  text-decoration: none;
}
.shop-hp-lang .owner-lang__item.is-current {
  background: #1a1a1a;
  color: #fff;
  font-weight: 800;
}
.shop-hp-lang .owner-lang__sep {
  display: none;
}
.shop-hp-main {
  padding-top: 12px;
}
.shop-hp-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 1rem 88px;
  text-align: center;
}
.shop-hp-powered {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: #6b6560;
}
.shop-hp-powered a {
  color: #6b6560;
  text-decoration: none;
}
.shop-hp-powered a:hover {
  text-decoration: underline;
}
.shop-hp-powered__domain {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #8a8278;
}
@media (max-width: 991.98px) {
  .shop-hp-header__inner {
    padding: 8px 12px;
  }
}
