@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --bg: #EFECE2;
  --surface: #FFFFFF;
  --ink: #23303A;
  --ink-soft: #5B6670;
  --line: #D9D3C2;
  --accent: #C15A2E;      /* 夕景の橙(かこがわ河口の夕陽イメージ) */
  --accent-deep: #9A431F;
  --river: #2E6B6E;       /* 加古川の水面をイメージした深緑がかった青 */
  --river-soft: #E4EEEC;
  --night: #2A2438;       /* ナイトライフ区分用の紫がかった夜色 */
  --night-soft: #EDE9F2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  line-height: 1.75;
}

h1, h2, h3, .site-logo-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  margin: 0;
}

a { color: var(--river); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- ヘッダー ---------- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.site-logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--river);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
}
.site-logo-text { font-size: 19px; letter-spacing: 0.04em; }
.site-nav a {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--river); text-decoration: none; }

.site-main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.site-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 12px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.site-footer p:first-child {
  margin-bottom: 10px;
}
.site-footer p:first-child a {
  color: var(--river);
  font-weight: 500;
}

/* ---------- ヒーロー(トップページ) ---------- */
.hero {
  text-align: center;
  padding: 40px 0 30px;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 10px;
}
.hero h1 { font-size: 32px; }
.hero p { color: var(--ink-soft); margin-top: 12px; }

.category-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
@media (max-width: 600px) { .category-cards { grid-template-columns: 1fr; } }

.category-card {
  display: block;
  border-radius: 6px;
  padding: 28px 24px;
  color: #fff;
}
.category-card.general { background: linear-gradient(135deg, var(--river), #1c4d50); }
.category-card.nightlife { background: linear-gradient(135deg, var(--night), #171225); }
.category-card h2 { font-size: 22px; color: #fff; }
.category-card p { color: rgba(255,255,255,0.8); font-size: 13px; margin-top: 8px; }

.area-links {
  margin-top: 30px;
}
.area-links h3 { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; }
.area-tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag-list a {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  color: var(--ink);
  background: var(--surface);
}
.area-tag-list a:hover { border-color: var(--river); color: var(--river); text-decoration: none; }

/* ---------- 検索/フィルタ ---------- */
.filter-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-bar select {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}
.filter-bar button {
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  background: var(--river);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- 店舗一覧 ---------- */
.shop-list { display: grid; gap: 16px; }
.shop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-card h3 { font-size: 18px; }
.shop-card .meta { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 12px;
  background: var(--river-soft);
  color: var(--river);
  margin-right: 6px;
}
.badge.nightlife { background: var(--night-soft); color: var(--night); }
.tag-chip {
  display: inline-block;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  margin: 3px 4px 0 0;
}
.shop-card .cta a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}
.shop-card .cta a:hover { background: var(--accent-deep); text-decoration: none; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}

/* ---------- 店舗詳細 ---------- */
.shop-detail h1 { font-size: 26px; margin-bottom: 6px; }
.shop-detail .meta-row { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }
.detail-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.detail-table th, .detail-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}
.detail-table th { width: 130px; color: var(--ink-soft); font-weight: 500; background: #FAF8F2; }
.detail-table tr:last-child th, .detail-table tr:last-child td { border-bottom: none; }

.age-notice {
  background: #FBEAE6;
  border: 1px solid #EFC9BE;
  color: var(--accent-deep);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 24px;
}

.reserve-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
}
.reserve-cta:hover { background: var(--accent-deep); text-decoration: none; }

/* ---------- フォーム(予約) ---------- */
form.card-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  max-width: 520px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field .required { color: var(--accent); font-weight: 400; margin-left: 4px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea { resize: vertical; min-height: 70px; }

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
button[type="submit"]:hover { background: var(--accent-deep); }

.notice-box {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 20px;
}
.notice-box.success { background: var(--river-soft); color: var(--river); border: 1px solid #bcdad8; }
.notice-box.error { background: #FBEAE6; color: var(--accent-deep); border: 1px solid #EFC9BE; }
.notice-box.info { background: #FFF6E4; color: #8a6215; border: 1px solid #f0dfab; }

.flow-hint {
  font-size: 12px;
  color: var(--ink-soft);
  background: #FFF6E4;
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

/* ---------- 確認/確定ページ ---------- */
.result-page {
  max-width: 480px;
  margin: 60px auto;
  text-align: center;
}
.result-page h2 { font-size: 22px; margin-bottom: 16px; }
.result-page.ok h2 { color: var(--river); }
.result-page.error h2 { color: var(--accent-deep); }
