/**
 * Automancy Custom Single Post Reine Template Stylesheet
 */

:root {
  --gold: #b8973d;
  --gold-deep: #8a7040;
  --gold-pale: rgba(184,151,61,0.12);
  --gold-border: rgba(184,151,61,0.3);
  --ink: #2a1f0e;
  --ink-soft: #5a4520;
  --text-body: #4a3f2c;
  --text-muted: #8a8270;
  --bg-page: #fafafa;
  --bg-card: #ffffff;

  --c-rikujin: #5b6aa8;
  --c-rikujin-bg: #eceffa;
  --c-rikujin-dark: #3c4878;

  --c-sanmei: #b8973d;
  --c-sanmei-bg: #f8f0db;
  --c-sanmei-dark: #8a6c1f;

  --c-daneki: #b25b3e;
  --c-daneki-bg: #f9e7de;
  --c-daneki-dark: #7e3c25;

  --c-kigaku: #5e8a5e;
  --c-kigaku-bg: #ebf3eb;
  --c-kigaku-dark: #3d603d;

  --c-eki: #7a5d96;
  --c-eki-bg: #efe9f4;
  --c-eki-dark: #523e69;

  --c-teso: #a85a73;
  --c-teso-bg: #f8e9ee;
  --c-teso-dark: #763c4f;
}

* { box-sizing: border-box; }
body.single-post {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== breadcrumb ===== */
.breadcrumb {
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 0 5%;
  font-family: "M PLUS 1", sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }

/* ===== layout ===== */
.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 5% 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
}
@media (max-width: 880px) {
  .page-wrap { grid-template-columns: 1fr; }
}

/* ===== article ===== */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
}

.article-body { padding: 40px 42px 8px; }

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "M PLUS 1", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 16px 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,0.04);
}
.category-badge .dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

/* 占術ごとのカテゴリーカラーバリエーション */
.category-badge.cat-rikujin { background: var(--c-rikujin-bg); color: var(--c-rikujin-dark); }
.category-badge.cat-rikujin .dot { background: var(--c-rikujin); }

.category-badge.cat-sanmei { background: var(--c-sanmei-bg); color: var(--c-sanmei-dark); }
.category-badge.cat-sanmei .dot { background: var(--c-sanmei); }

.category-badge.cat-daneki { background: var(--c-daneki-bg); color: var(--c-daneki-dark); }
.category-badge.cat-daneki .dot { background: var(--c-daneki); }

.category-badge.cat-kigaku { background: var(--c-kigaku-bg); color: var(--c-kigaku-dark); }
.category-badge.cat-kigaku .dot { background: var(--c-kigaku); }

.category-badge.cat-eki { background: var(--c-eki-bg); color: var(--c-eki-dark); }
.category-badge.cat-eki .dot { background: var(--c-eki); }

.category-badge.cat-teso { background: var(--c-teso-bg); color: var(--c-teso-dark); }
.category-badge.cat-teso .dot { background: var(--c-teso); }

.article-title {
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 16px;
  color: var(--ink);
}

.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "M PLUS 1", sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-border);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tag-pill {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11.5px;
  padding: 4px 13px;
  border-radius: 50px;
  background: #faf7f0;
  color: var(--ink-soft);
  border: 1px solid var(--gold-border);
}
.tag-pill::before { content: "#"; color: var(--gold); margin-right: 2px; }
.tag-pill:hover { text-decoration: none; background: var(--gold-pale); }

.article-content { font-size: 15.5px; color: var(--text-body); }
.article-content h1,
.article-content h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 42px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
  position: relative;
}
.article-content h1::before,
.article-content h2::before {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 56px; height: 2px;
  background: var(--gold);
}
.article-content h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 14px;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 6px;
}
.article-content p { margin: 0 0 22px; }
.article-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 15px 0; }

/* inline CTA block */
.inline-cta {
  margin: 34px 0;
  background: linear-gradient(160deg, #fffaf0, #fdf6e7);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.inline-cta .icon-circle {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.inline-cta .cta-text { flex: 1; }
.inline-cta .cta-label {
  font-family: "M PLUS 1", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: .08em;
  margin-bottom: 5px;
}
.inline-cta .cta-title {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.inline-cta .cta-desc { font-family: "M PLUS 1", sans-serif; font-size: 12.5px; color: var(--text-muted); }
.inline-cta .cta-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-family: "M PLUS 1", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(138,112,64,0.25);
}
.inline-cta .cta-btn:hover { opacity: .88; text-decoration: none; }

blockquote,
blockquote.point-box {
  margin: 30px 0;
  background: #fdfaf3;
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold) !important;
  border-radius: 4px;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
blockquote::before,
blockquote.point-box::before { content: ""; display: none; }
blockquote p,
blockquote.point-box p { margin-bottom: 0; font-style: normal; }

/* share buttons */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 42px 0 8px;
  padding: 22px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.share-row .share-label {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-right: 6px;
}
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "M PLUS 1", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--gold-border);
  color: var(--ink-soft);
  background: #fff;
}
.share-btn:hover { background: var(--gold-pale); text-decoration: none; }

/* prev/next */
.prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 26px 0 4px; }
.prevnext a {
  font-family: "M PLUS 1", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  display: block;
  padding: 15px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  background: #fffdf8;
}
.prevnext a:hover { border-color: var(--gold); text-decoration: none; }
.prevnext .pn-label { font-size: 10.5px; color: var(--text-muted); display: block; margin-bottom: 5px; }
.prevnext .next { text-align: right; }

/* related posts inside article */
.related-block { padding: 26px 42px 42px; border-top: 1px solid var(--gold-border); margin-top: 8px; }
.related-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.related-heading::before { content: ""; width: 4px; height: 17px; background: var(--gold); display: inline-block; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { border: 1px solid var(--gold-border); border-radius: 6px; overflow: hidden; background: #fff; }
.related-card .thumb { height: 90px; display: flex; align-items: center; justify-content: center; font-family: "M PLUS 1", sans-serif; font-size: 11px; }
.related-card .rc-body { padding: 13px 15px; }
.related-card .rc-cat { font-family: "M PLUS 1", sans-serif; font-size: 10.5px; font-weight: 700; margin-bottom: 6px; }
.related-card .rc-title { font-family: "Noto Serif JP", serif; font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.6; display: block; }
.related-card .rc-title:hover { text-decoration: none; color: var(--gold-deep); }

/* ===== sidebar ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.side-card { background: var(--bg-card); border: 1px solid var(--gold-border); border-radius: 6px; padding: 24px; }
.side-card-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: .06em;
  margin: 0 0 18px;
}

/* author box */
.author-box { text-align: center; }
.author-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gold-border);
  overflow: hidden;
}
.author-name { font-family: "Shippori Mincho", serif; font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.author-name .kana { font-family: "M PLUS 1", sans-serif; font-size: 10.5px; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.author-bio { font-family: "M PLUS 1", sans-serif; font-size: 12px; color: var(--text-body); text-align: left; line-height: 1.85; margin-top: 12px; }
.author-field-note {
  margin-top: 16px;
  font-family: "M PLUS 1", sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  background: var(--gold-pale);
  border-radius: 6px;
  padding: 9px 11px;
  text-align: left;
  line-height: 1.7;
}

/* sidebar app promo */
.promo-card { background: linear-gradient(160deg, var(--ink), var(--gold-deep)); border: none; color: #fff; }
.promo-card .side-card-title { color: rgba(255,255,255,.7); }
.promo-card .promo-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.promo-card .promo-title { font-family: "Shippori Mincho", serif; font-size: 15.5px; font-weight: 700; margin-bottom: 7px; }
.promo-card .promo-desc { font-family: "M PLUS 1", sans-serif; font-size: 12px; opacity: .82; line-height: 1.8; margin-bottom: 18px; }
.promo-card .promo-btn {
  display: inline-block;
  background: #fff;
  color: var(--gold-deep);
  font-family: "M PLUS 1", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
}
.promo-card .promo-btn:hover { text-decoration: none; opacity: .9; }

/* sidebar related list */
.side-list { display: flex; flex-direction: column; gap: 15px; }
.side-list-item { display: flex; gap: 11px; }
.side-list-item .thumb-sm {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: "M PLUS 1", sans-serif;
  font-size: 10px;
  text-align: center;
  line-height: 1.3;
}
.side-list-item .sl-title { font-family: "Noto Serif JP", serif; font-size: 12.5px; line-height: 1.7; color: var(--ink); display: block; }
.side-list-item .sl-title:hover { color: var(--gold-deep); text-decoration: none; }
.side-list-item .sl-date { font-family: "M PLUS 1", sans-serif; font-size: 10px; color: var(--text-muted); margin-top: 4px; display: block; }

/* category list */
.cat-list { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-list a {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11.5px;
  padding: 5px 13px;
  border-radius: 50px;
  background: #faf7f0;
  color: var(--ink-soft);
  border: 1px solid var(--gold-border);
}
.cat-list a:hover { background: var(--gold-pale); color: var(--gold-deep); text-decoration: none; }

.annot {
  display: inline-block;
  font-family: "M PLUS 1", sans-serif;
  font-size: 9.5px;
  background: var(--ink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 7px;
  vertical-align: middle;
  font-weight: 400;
}

/* ===== Archive page layout & responsive grid (v3.5.0) ===== */
.archive-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 5% 70px;
}
.archive-title-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 30px;
  border-bottom: 1.5px solid var(--gold-border);
  padding-bottom: 15px;
  position: relative;
}
.archive-title-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1.5px;
  width: 60px; height: 1.5px;
  background: var(--gold);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC 3カラム */
  gap: 28px;
}

/* カード形式 */
.post-card {
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,151,61,0.1);
  border-color: var(--gold);
}
.post-card .post-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(184,151,61,0.1);
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.post-card:hover .post-thumb img {
  transform: scale(1.04);
}
.post-card .post-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card .post-title-link {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.post-card .post-title-link:hover {
  color: var(--gold-deep);
  text-decoration: none;
}
.post-card .post-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  font-family: "M PLUS 1", sans-serif;
}

/* ページネーション */
.pagination-wrap {
  margin-top: 50px;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
}
.pagination-wrap .nav-links {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* レスポンシブ (タブレット 2カラム) */
@media (max-width: 880px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .archive-wrap {
    padding: 14px 4% 50px;
  }
}

/* レスポンシブ (スマホ 2カラム) */
@media (max-width: 480px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .post-card .post-thumb {
    height: 110px;
  }
  .post-card .post-info {
    padding: 12px;
  }
  .post-card .post-title-link {
    font-size: 13px;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
  }
  .archive-title-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
/* ===== Reine Shortcodes Grid & Card style (v3.6.0) ===== */
.reine-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC 3カラム */
  gap: 24px;
  margin: 30px 0;
}

.reine-card {
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(184,151,61,0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(184,151,61,0.08);
  border-color: var(--gold);
}

.reine-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(184,151,61,0.08);
}

.reine-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reine-card:hover .reine-card-thumb img {
  transform: scale(1.03);
}

.reine-fallback-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 16px;
}

.reine-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.reine-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 10px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.reine-card-title:hover {
  color: var(--gold-deep);
  text-decoration: none;
}

.reine-card-meta {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
  font-family: "M PLUS 1", sans-serif;
}

/* タブレット (2カラム) */
@media (max-width: 880px) {
  .reine-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* スマホ (1カラム) */
@media (max-width: 480px) {
  .reine-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reine-card-thumb {
    height: 180px;
  }
}

/* ==========================================================================
   Reine ショートコード 2.0 新スタイル (v3.7.0)
   ========================================================================== */

/* --- ブログ記事一覧 [blog_cards] --- */
.reine-blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.reine-blog-card {
  display: flex;
  gap: 0;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius, 6px);
  overflow: hidden;
  transition: box-shadow .18s, border-color 0.18s;
  text-decoration: none;
}
.reine-blog-card:hover {
  box-shadow: 0 4px 18px rgba(184,151,61,0.13);
  border-color: var(--gold);
}

.reine-blog-card .color-bar {
  width: 5px;
  flex-shrink: 0;
}

.reine-blog-card .card-thumb {
  width: 140px;
  height: auto;
  min-height: 120px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--gold-border);
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reine-blog-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.reine-blog-card:hover .card-thumb img {
  transform: scale(1.03);
}
.reine-blog-card .card-thumb .reine-fallback-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 8px;
}

.reine-blog-card .card-body {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reine-blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.reine-blog-card .card-cat {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.reine-blog-card .card-date {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11px;
  color: var(--text-muted, #8a8270);
}
.reine-blog-card .card-title {
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink, #2a1f0e);
  line-height: 1.5;
  margin-bottom: 6px;
  display: block;
}
.reine-blog-card:hover .card-title {
  color: var(--gold-deep);
}
.reine-blog-card .card-excerpt {
  font-family: "M PLUS 1", sans-serif;
  font-size: 12.5px;
  color: var(--text-muted, #8a8270);
  line-height: 1.7;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reine-blog-card .card-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.reine-blog-card .tag-chip {
  font-family: "M PLUS 1", sans-serif;
  font-size: 10.5px;
  padding: 2px 9px;
  border-radius: 50px;
  background: var(--bg-page, #fafaf7);
  color: var(--text-muted, #8a8270);
  border: 1px solid var(--gold-border);
}
.reine-blog-card .tag-chip::before {
  content: "#";
  color: var(--gold);
  margin-right: 1px;
}

/* スマホ表示時の上書き */
@media (max-width: 600px) {
  .reine-blog-card {
    flex-direction: column;
  }
  .reine-blog-card .color-bar {
    width: 100%;
    height: 4px;
  }
  .reine-blog-card .card-thumb {
    width: 100%;
    height: 160px;
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
}

/* --- ブログ一覧ページネーション [blog_cards_all] --- */
.reine-blog-list-wrapper {
  margin-bottom: 35px;
}

.reine-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.reine-blog-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid var(--gold-border, #e0dcd3);
  background: var(--bg-card, #ffffff);
  color: var(--ink, #2a1f0e);
  font-family: "M PLUS 1", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.reine-blog-pagination .page-numbers:hover:not(.disabled) {
  border-color: var(--gold, #b8973d);
  background: var(--gold-pale, rgba(184,151,61,0.04));
  color: var(--gold-deep, #8a7029);
}

.reine-blog-pagination .page-numbers.current {
  border-color: var(--gold, #b8973d);
  background: var(--gold, #b8973d);
  color: #ffffff;
  font-weight: 700;
}

.reine-blog-pagination .page-numbers.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-page, #fafaf7);
}

.reine-blog-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* --- フリーカード [free_cards] --- */
.reine-free-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .reine-free-grid {
    grid-template-columns: 1fr;
  }
}

.reine-free-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius, 6px);
  overflow: hidden;
  display: flex;
  transition: box-shadow .18s, border-color 0.18s;
  text-decoration: none;
}
.reine-free-card:hover {
  box-shadow: 0 4px 18px rgba(184,151,61,0.13);
  border-color: var(--gold);
}

.reine-free-card .color-bar {
  width: 5px;
  flex-shrink: 0;
}

.reine-free-card .card-thumb {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--gold-border);
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reine-free-card .card-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.reine-free-card:hover .card-thumb img {
  transform: scale(1.03);
}

.reine-free-card .card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reine-free-card .card-title {
  font-family: "Shippori Mincho", serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink, #2a1f0e);
  line-height: 1.4;
  margin-bottom: 6px;
  display: block;
}
.reine-free-card:hover .card-title {
  color: var(--gold-deep);
}
.reine-free-card .card-cta {
  font-family: "M PLUS 1", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-deep);
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .reine-free-card {
    flex-direction: column;
  }
  .reine-free-card .color-bar {
    width: 100%;
    height: 4px;
  }
  .reine-free-card .card-thumb {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
}

/* --- 占い師紹介 [fortune-tellers-top] --- */
.reine-tellers-top-wrap {
  margin: 24px 0 32px;
  text-align: center;
}
.reine-tellers-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 768px) {
  .reine-tellers-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .reine-tellers-top-grid {
    grid-template-columns: 1fr;
  }
}

.reine-teller-top-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius, 6px);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, border-color 0.18s;
  text-decoration: none;
  box-shadow: none;
}
.reine-teller-top-card:hover {
  box-shadow: 0 4px 18px rgba(184,151,61,0.13);
  border-color: var(--gold);
}

.reine-teller-top-card .avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--gold-border);
  background: var(--gold-pale, rgba(184,151,61,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.reine-teller-top-card .avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reine-teller-top-card .teller-name {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #2a1f0e);
  margin-bottom: 6px;
}

.reine-teller-top-card .teller-spec {
  font-family: "M PLUS 1", sans-serif;
  font-size: 12px;
  color: var(--text-muted, #8a8270);
  line-height: 1.5;
}

.reine-tellers-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff !important;
  font-family: "Noto Serif JP", serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 38px;
  border-radius: 50px;
  letter-spacing: .06em;
  box-shadow: 0 4px 14px rgba(184,151,61,0.3);
  transition: opacity 0.2s;
  text-decoration: none;
}
.reine-tellers-more-btn:hover {
  opacity: .88;
  text-decoration: none;
}

