/* =========================================================
 * KURA MAP 共通スタイルシート
 * 全テンプレート(front-page / 一覧 / 個別 / 固定ページ)で共有
 * ======================================================= */

/* ---- リセット・デザイントークン ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1208;
  --paper: #f8f4ed;
  --sake: #2d5a3d;
  --sake-dark: #1a3a2a;
  --sake-light: #e8f0eb;
  --gold: #c9a84c;
  --gold-light: #f5ecd0;
  --red: #8b1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

/* ---- サイトヘッダー ---- */
header.site-header {
  background: var(--ink);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-bar header.site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar header.site-header { top: 46px; } }

.logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.logo span { color: var(--gold); }

.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--gold); }

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: 0;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
}
@media (max-width: 600px) {
  header.site-header { position: relative; padding: 14px 20px; }
  .site-header nav { display: none; }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 16px 32px;
    gap: 16px;
    z-index: 100;
  }
  .nav-ham { display: flex; }
}

/* ---- サイトフッター ---- */
footer.site-footer {
  background: var(--ink);
  padding: 28px 32px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.site-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin: 0 8px;
}
.site-footer a:hover { color: var(--gold); }
.footer-links { margin-bottom: 10px; }

/* ---- ボタン ---- */
.btn-primary {
  background: var(--sake);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-primary:hover { background: #3a7050; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

/* =========================================================
 * トップページ
 * ======================================================= */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,90,61,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.15) 0%, transparent 50%);
}
.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.15em;
  position: relative;
  margin-bottom: 12px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
  position: relative;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.lede-band { background: var(--sake); padding: 36px 24px; }
.lede-band p {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  text-align: center;
}
.lede-band strong {
  color: var(--gold);
  font-size: 1.5em;
  font-weight: 900;
  margin: 0 2px;
}

.main-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: var(--sake);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.area-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sake);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.area-card:hover { border-color: var(--sake); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.area-card:hover::after { transform: scaleX(1); }
.area-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.area-count { font-size: 0.8rem; color: #888; margin-top: 4px; }
.area-brands { font-size: 0.72rem; color: var(--sake); margin-top: 6px; line-height: 1.5; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.kura-card {
  background: #fff;
  border: 1px solid #e0dbd0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.kura-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-3px); }
.kura-card-top { background: var(--sake); padding: 16px 18px 12px; }
.kura-area-tag { font-size: 0.7rem; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; margin-bottom: 4px; }
.kura-name { font-family: 'Noto Serif JP', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.kura-brand { font-size: 0.8rem; color: var(--gold); margin-top: 4px; }
.kura-card-body { padding: 14px 18px; }
.kura-address { font-size: 0.78rem; color: #888; margin-bottom: 10px; line-height: 1.5; }
.kura-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge { font-size: 0.7rem; padding: 2px 10px; border-radius: 20px; font-weight: 500; }
.badge-visit { background: var(--sake-light); color: var(--sake); }
.badge-nashi { background: #f5f5f5; color: #999; }
.badge-yoyaku { background: #fff8e8; color: #a07020; }

.front-more { text-align: center; margin-bottom: 56px; }
.front-more .btn-primary { font-size: 1rem; padding: 16px 48px; }

@media (max-width: 640px) {
  .hero { padding: 48px 20px; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
  .lede-band { padding: 28px 20px; }
  .lede-band p { font-size: 0.92rem; line-height: 2; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
}

/* =========================================================
 * 地図(トップ・一覧共通)
 * ======================================================= */
.kuramap-map {
  height: 460px;
  border-radius: 10px;
  border: 1px solid #e0d8cc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1;
}
.kuramap-map-section { margin-bottom: 32px; }
.main-wrap .kuramap-map-section { margin-bottom: 56px; }
.kuramap-legend {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 10px 2px 0;
  font-size: 0.8rem;
  color: #666;
}
.kuramap-legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  margin-right: 6px;
  vertical-align: -1px;
}
.kuramap-legend-dot.sakagura { background: var(--sake); }
.kuramap-legend-dot.sakaya { background: var(--gold); }
.kuramap-popup { font-family: 'Noto Sans JP', sans-serif; font-size: 0.85rem; line-height: 1.6; }
.kuramap-popup a { color: var(--sake); text-decoration: none; }
.kuramap-popup a:hover { text-decoration: underline; }
.kuramap-popup-type { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; }
.kuramap-popup-label { color: #777; font-size: 0.78rem; }
@media (max-width: 600px) {
  .kuramap-map { height: 340px; }
}

/* =========================================================
 * 一覧ページ(酒蔵・酒屋・エリア)
 * ======================================================= */
.archive-hero { background: var(--sake-dark); padding: 24px 32px 22px; position: relative; overflow: hidden; }
.archive-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 60%); }
.archive-hero-inner { max-width: 960px; margin: 0 auto; position: relative; }
.archive-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.archive-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.archive-breadcrumb a:hover { color: var(--gold); }
.archive-hero h1 { font-family: 'Noto Serif JP', serif; font-size: clamp(1.35rem, 3vw, 1.8rem); font-weight: 900; color: #fff; letter-spacing: 0.12em; margin-bottom: 4px; display: inline-block; margin-right: 14px; }
.archive-hero-sub { color: rgba(255,255,255,0.55); font-size: 0.85rem; letter-spacing: 0.06em; display: inline-block; margin-bottom: 0; }
.area-brands-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35); border-radius: 4px; padding: 5px 12px; font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 10px; }
.area-brands-badge strong { color: var(--gold); }

.archive-main { max-width: 960px; margin: 0 auto; padding: 32px 24px 60px; }
.area-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.area-tab { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 4px; font-size: 0.85rem; text-decoration: none; border: 1px solid #d4c8b0; color: var(--ink); background: #fff; transition: all 0.2s; letter-spacing: 0.04em; }
.area-tab:hover, .area-tab.active { background: var(--sake); color: #fff; border-color: var(--sake); }

.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; padding: 14px 18px; background: #fff; border-radius: 8px; border: 1px solid #e0d8cc; }
.filter-count { font-size: 0.9rem; color: #666; }
.filter-count strong { color: var(--sake); font-size: 1.05rem; }
.filter-search { position: relative; flex: 1; min-width: 200px; max-width: 320px; }
.filter-search input {
  width: 100%;
  padding: 8px 14px;
  border: 1px solid #d4c8b0;
  border-radius: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.filter-search input:focus { border-color: var(--sake); }
/* ヘッダー横断検索 */
.hd-search { position: relative; display: flex; align-items: center; margin-left: 20px; }
.hd-search input {
  width: 190px;
  padding: 7px 34px 7px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hd-search input::placeholder { color: rgba(255,255,255,0.45); }
.hd-search input:focus { border-color: var(--gold); background: rgba(255,255,255,0.14); }
.hd-search button[type="submit"] {
  position: absolute;
  right: 8px;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
}
.hd-search .kuramap-suggest { top: calc(100% + 8px); left: auto; right: 0; width: 320px; }
.suggest-group {
  padding: 8px 14px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #a07f2e;
  letter-spacing: 0.08em;
  background: #faf8f4;
  border-bottom: 1px solid #f0ece4;
}
.hd-search-toggle { display: none; background: none; border: 0; color: rgba(255,255,255,0.75); cursor: pointer; padding: 4px; }
@media (max-width: 760px) {
  .hd-search {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 16px;
    background: var(--ink);
    z-index: 99;
  }
  .site-header.search-open .hd-search { display: flex; }
  .hd-search input { flex: 1; width: auto; }
  .hd-search button[type="submit"] { right: 24px; }
  .hd-search .kuramap-suggest { left: 16px; right: 16px; width: auto; top: calc(100% - 2px); }
  .hd-search-toggle { display: flex; margin-left: auto; margin-right: 4px; }
  header.site-header { position: sticky; }
}
@media (max-width: 600px) {
  .hd-search-toggle { margin-left: 0; }
}

#kuramap-search-results, .kuramap-suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d4c8b0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}
#kuramap-search-results a, .kuramap-suggest a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  border-bottom: 1px solid #f0ece4;
}
#kuramap-search-results a:last-child, .kuramap-suggest a:last-child { border-bottom: none; }
#kuramap-search-results a:hover, .kuramap-suggest a:hover { background: var(--sake-light); }
#kuramap-search-results a span, .kuramap-suggest a span { display: block; font-size: 0.75rem; color: #999; }
.kuramap-search-empty { display: block; padding: 10px 14px; font-size: 0.8rem; color: #999; }
.filter-city select {
  padding: 8px 12px;
  border: 1px solid #d4c8b0;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.filter-visit { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; }
.filter-visit a { padding: 5px 14px; border-radius: 20px; border: 1px solid #d4c8b0; text-decoration: none; color: #555; transition: all 0.2s; }
.filter-visit a:hover, .filter-visit a.active { background: var(--sake); color: #fff; border-color: var(--sake); }

.sakagura-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.sakagura-card { background: #fff; border-radius: 10px; border: 1px solid #e0d8cc; text-decoration: none; color: inherit; transition: all 0.2s; overflow: hidden; display: flex; flex-direction: column; }
.sakagura-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); border-color: var(--sake); }
.card-top { background: var(--sake-dark); padding: 16px 20px 14px; }
.card-area-badge { display: inline-block; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); border-radius: 20px; padding: 2px 10px; font-size: 0.72rem; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 8px; }
.card-name { font-family: 'Noto Serif JP', serif; font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; line-height: 1.4; }
.card-body { padding: 14px 20px 16px; flex: 1; }
.card-brand { font-size: 0.9rem; color: var(--sake); font-weight: 500; margin-bottom: 8px; }
.card-brand::before { content: '銘柄 '; color: #999; font-size: 0.8rem; }
.card-address { font-size: 0.8rem; color: #777; line-height: 1.5; margin-bottom: 10px; }
.card-hours { font-size: 0.8rem; color: #555; margin-bottom: 4px; }
.card-hours::before { content: '営業 '; color: #999; font-size: 0.75rem; }
.card-holiday { font-size: 0.8rem; color: #555; }
.card-holiday::before { content: '定休 '; color: #999; font-size: 0.75rem; }
.card-visit-badge { display: inline-block; font-size: 0.75rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.card-visit-badge.ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.card-visit-badge.req { background: #fff8e1; color: #f57f17; border: 1px solid #ffcc02; }
.card-visit-badge.no { background: #f5f5f5; color: #999; border: 1px solid #e0e0e0; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 6px; font-size: 0.9rem; text-decoration: none; border: 1px solid #d4c8b0; color: var(--ink); background: #fff; transition: all 0.2s; }
.pagination a:hover { background: var(--sake); color: #fff; border-color: var(--sake); }
.pagination .current { background: var(--sake); color: #fff; border-color: var(--sake); font-weight: 700; }

.no-posts { text-align: center; padding: 60px 20px; color: #888; }
.no-posts p { margin-bottom: 16px; }
.no-posts a { color: var(--sake); text-decoration: none; }

@media (max-width: 600px) {
  .archive-hero { padding: 16px 18px 14px; }
  .archive-main { padding: 24px 16px 48px; }
  .sakagura-grid { grid-template-columns: 1fr; }
}

/* =========================================================
 * 個別ページ(酒蔵・酒屋)
 * ======================================================= */
.sg-wrap { max-width: 860px; margin: 0 auto; padding: 40px 24px 60px; }
.sg-breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 20px; }
.sg-breadcrumb a { color: var(--sake); text-decoration: none; }
.sg-breadcrumb a:hover { text-decoration: underline; }
.sg-header { background: linear-gradient(135deg, var(--sake-dark), var(--sake)); color: #fff; border-radius: 12px; padding: 32px; margin-bottom: 28px; }
.sg-area-badge { display: inline-block; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); border-radius: 20px; padding: 4px 14px; font-size: 0.85rem; color: var(--gold); margin-bottom: 12px; }
.sg-header h1 { font-family: 'Noto Serif JP', serif; font-size: 1.8rem; margin: 0 0 8px; color: #fff; }
.sg-brand { font-size: 1.1rem; opacity: 0.9; margin: 0; }
.sg-info-table { width: 100%; border-collapse: collapse; margin: 0 0 28px; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.sg-info-table th, .sg-info-table td { padding: 12px 16px; border-bottom: 1px solid #f0ece4; font-size: 0.95rem; text-align: left; }
.sg-info-table tr:last-child th, .sg-info-table tr:last-child td { border-bottom: none; }
.sg-info-table th { background: var(--sake-light); color: var(--sake); font-weight: 700; width: 130px; }
.sg-info-table a { color: var(--sake); }
.sg-visit-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; }
.visit-ok  { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.visit-no  { background: #f5f5f5; color: #777; border: 1px solid #e0e0e0; }
.visit-req { background: #fff8e1; color: #f57f17; border: 1px solid #ffcc02; }
.sg-note { font-size: 0.78rem; color: #999; line-height: 1.8; margin: -16px 0 28px; padding: 0 4px; }
.sg-note a { color: var(--sake); }
.sg-note-date { display: inline-block; margin-left: 8px; color: #b5ab99; }
.sg-content { background: #fff; border-radius: 10px; padding: 24px; margin-bottom: 28px; line-height: 1.9; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.sg-map { margin-bottom: 28px; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.buy-block {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.buy-block-title { font-family: 'Noto Serif JP', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.buy-block-note { font-size: 0.8rem; color: #999; margin: 4px 0 14px; }
.buy-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-bottom: 16px; }
.buy-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee6d8;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.2s;
  background: #fff;
}
.buy-item:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.buy-item img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 8px; }
.buy-item-name { display: block; font-size: 0.72rem; color: #555; line-height: 1.5; margin-bottom: 4px; }
.buy-item-price { display: block; font-size: 0.9rem; font-weight: 700; color: var(--red); }
.buy-block-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.buy-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.buy-rakuten { background: #bf0000; color: #fff; }
.buy-rakuten:hover { background: #a30000; }
.buy-amazon { background: #232f3e; color: #fff; }
.buy-amazon:hover { background: #131a22; }
@media (max-width: 600px) {
  .buy-btn { flex: 1; text-align: center; padding: 12px 10px; }
}
.sg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid #e0dbd0; }
.sg-nav a { color: var(--sake); text-decoration: none; font-size: 0.9rem; }
.sg-nav a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .sg-wrap { padding: 24px 16px 48px; }
  .sg-header { padding: 20px; }
  .sg-header h1 { font-size: 1.4rem; }
  .sg-info-table th { width: 90px; font-size: 0.85rem; }
  .sg-info-table td { font-size: 0.85rem; }
  .sg-nav { flex-direction: column; gap: 12px; text-align: center; }
}

/* =========================================================
 * 記事(読みもの)
 * ======================================================= */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.post-list-more { grid-column: 1 / -1; }
.post-card {
  background: #fff;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: block;
}
.post-card:hover { border-color: var(--sake); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.post-card-meta { display: flex; gap: 12px; align-items: center; font-size: 0.75rem; color: #999; margin-bottom: 10px; }
.post-card-cat { background: var(--sake-light); color: var(--sake); border-radius: 20px; padding: 2px 12px; font-weight: 500; }
.post-card-title { font-family: 'Noto Serif JP', serif; font-size: 1.18rem; font-weight: 700; color: var(--ink); line-height: 1.55; margin-bottom: 8px; }
.post-card-excerpt { font-size: 0.85rem; color: #777; line-height: 1.75; }
.post-card-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--sake);
  letter-spacing: 0.04em;
}
.post-card-more::after {
  content: '→';
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s;
}
.post-card:hover .post-card-more::after { transform: translateX(4px); }
.post-card:hover .post-card-title { color: var(--sake); }

/* 記事ハブ(/blog/) */
.featured-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gold);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 26px 30px;
  margin: 0 0 40px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.featured-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.featured-label {
  display: inline-block;
  background: var(--gold-light);
  color: #a07f2e;
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.featured-title {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.featured-card:hover .featured-title { color: var(--sake); }
.featured-dek { display: block; font-size: 0.9rem; color: #777; line-height: 1.7; }
.featured-card .post-card-more { color: var(--sake); }
.section-heading-sub { font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; font-weight: 400; color: #999; letter-spacing: 0.04em; margin-left: 10px; }
.hero-count { font-family: 'Noto Sans JP', sans-serif; font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.6); margin-left: 14px; }
.post-list-more {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--sake);
  text-decoration: none;
  padding: 6px 4px;
}
.post-list-more:hover { text-decoration: underline; }
.archive-main .post-list { margin-bottom: 48px; }
.archive-main .front-more { text-align: center; }
@media (max-width: 600px) {
  .featured-card { padding: 22px; }
  .featured-title { font-size: 1.15rem; }
}

/* 知る/巡る 2ブロック(トップ) */
.know-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
@media (max-width: 800px) { .know-grid { grid-template-columns: 1fr; } }
.know-col-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sake-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.know-col-title span { font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; font-weight: 400; color: #999; letter-spacing: 0.04em; }
.know-item {
  display: block;
  background: #fff;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.know-item:hover { border-color: var(--sake); transform: translateX(3px); }
.know-item-title { display: block; font-family: 'Noto Serif JP', serif; font-size: 0.98rem; font-weight: 700; color: var(--ink); line-height: 1.6; }
.know-item:hover .know-item-title { color: var(--sake); }
.know-item-dek { display: block; font-size: 0.78rem; color: #888; margin-top: 4px; line-height: 1.6; }
.know-chip {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #a07f2e;
  background: var(--gold-light);
  border-radius: 4px;
  padding: 1px 8px;
  margin-right: 8px;
  vertical-align: 2px;
}
.btn-outline-ink { color: var(--sake); border-color: var(--sake); }

/* 関連記事(エリア一覧・個別ページ) */
.related-articles { margin-top: 40px; }
.related-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sake-dark);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--gold);
}
.related-item {
  display: block;
  background: #fff;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.related-item:hover { border-color: var(--sake); transform: translateX(3px); }
.related-title { display: block; font-family: 'Noto Serif JP', serif; font-size: 0.95rem; font-weight: 700; color: var(--ink); line-height: 1.6; }
.related-item:hover .related-title { color: var(--sake); }
.related-dek { display: block; font-size: 0.78rem; color: #888; margin-top: 4px; line-height: 1.6; }
.nearby-km { float: right; font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; font-weight: 400; color: #999; }

.article-meta { display: flex; gap: 12px; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 8px; }
.article-cat { background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); border-radius: 20px; padding: 2px 12px; }
.article-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 32px; padding-top: 20px; border-top: 1px solid #e0dbd0; flex-wrap: wrap; }
.article-nav a { color: var(--sake); text-decoration: none; font-size: 0.9rem; }
.article-nav a:hover { text-decoration: underline; }
@media (max-width: 600px) { .article-nav { flex-direction: column; text-align: center; } }

/* =========================================================
 * 固定ページ
 * ======================================================= */
.page-hero { background: var(--sake-dark); padding: 22px 32px 20px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%); }
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.page-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.page-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-family: 'Noto Serif JP', serif; font-size: clamp(1.3rem, 2.8vw, 1.7rem); font-weight: 900; color: #fff; letter-spacing: 0.1em; line-height: 1.5; }

.page-main { max-width: 760px; margin: 0 auto; padding: 40px 24px 72px; }
.page-content { background: #fff; border-radius: 12px; border: 1px solid #e0d8cc; padding: 40px 44px; line-height: 1.9; }
.page-content h2 { font-family: 'Noto Serif JP', serif; font-size: 1.25rem; font-weight: 700; color: var(--sake-dark); border-left: 4px solid var(--gold); padding-left: 14px; margin: 36px 0 14px; letter-spacing: 0.05em; }
.page-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.page-content p { margin: 0 0 14px; font-size: 0.95rem; color: #333; }
.page-content a { color: var(--sake); }
.page-content a:hover { text-decoration: underline; }
.page-content ul, .page-content ol { padding-left: 24px; margin: 0 0 14px; font-size: 0.95rem; color: #333; }
.page-content li { margin-bottom: 6px; }
.page-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.page-content table th, .page-content table td { padding: 10px 14px; border: 1px solid #e0d8cc; text-align: left; }
.page-content table th { background: var(--sake-light); font-weight: 600; }
.page-content hr { border: none; border-top: 1px solid #e0d8cc; margin: 28px 0; }
.article-photo { margin: 0 0 28px; }
.article-photo img { width: 100%; height: auto; border-radius: 10px; display: block; }
.article-photo figcaption { font-size: 0.72rem; color: #a9a08e; margin-top: 6px; text-align: right; }
.article-toc {
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 18px 24px;
  margin: 0 0 28px;
}
.article-toc-title { font-family: 'Noto Serif JP', serif; font-size: 0.95rem; font-weight: 700; color: var(--sake-dark); margin-bottom: 8px; }
.article-toc ol { margin: 0; padding-left: 22px; font-size: 0.88rem; }
.article-toc li { margin-bottom: 4px; }
.article-toc a { color: var(--sake); text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }

/* Contact Form 7 */
.page-content .wpcf7-form p { margin-bottom: 18px; }
.page-content .wpcf7-form label { display: block; font-size: 0.88rem; color: #555; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.03em; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d4c8b0;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--sake);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.wpcf7-form textarea { min-height: 160px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--sake);
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--sake-dark); }
.wpcf7-spinner { display: none !important; }
.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 12px 16px !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
}

@media (max-width: 600px) {
  .page-hero { padding: 14px 18px 12px; }
  /* モバイルは枠カードをやめて全幅+ゆったり行間(文字がキュッとなる問題の対策)
     本文だけ全幅にし、あわせて読む・ナビ等の兄弟要素には余白を残す */
  .page-main { padding: 4px 18px 48px; }
  .page-content {
    border: none;
    border-radius: 0;
    padding: 24px 0;
    line-height: 2.0;
  }
  .page-content p { font-size: 1rem; margin-bottom: 1.4em; }
  .page-content ul, .page-content ol { font-size: 1rem; }
  .page-content table { font-size: 0.85rem; display: block; overflow-x: auto; }
  .article-toc { padding: 14px 16px; }
}
