/* ============================================================
   障害福祉ナビ トップページ専用スタイル
   カラー: Navy #1e3a5f / Pink #d4698a / BG #faf9f7
   ============================================================ */

:root {
  --snv-navy:      #1e3a5f;
  --snv-navy-dark: #152c49;
  --snv-pink:      #d4698a;
  --snv-pink-lt:   #fce8ef;
  --snv-pink-mid:  #f5c2d0;
  --snv-bg:        #faf9f7;
  --snv-bg-gray:   #f4f4f2;
  --snv-text:      #2d2d2d;
  --snv-text-mid:  #555;
  --snv-text-light:#888;
  --snv-border:    #e8e5e0;
  --snv-radius:    10px;
  --snv-shadow:    0 2px 12px rgba(0,0,0,0.07);
  --snv-shadow-hv: 0 6px 20px rgba(0,0,0,0.11);
}

/* ── 全体 ── */
.snv-wrap {
  background: var(--snv-bg);
  overflow: hidden;
}

/* Cocoon の余分な余白を消す（フロントページのみ） */
body.home .entry-content,
body.home .l-article,
body.home .article {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
body.home .l-wrap,
body.home #main {
  padding: 0 !important;
}

/* ============================================================
   HERO
   ============================================================ */
.snv-hero {
  background: var(--snv-bg);
  overflow: hidden;
  position: relative;
}

.snv-hero-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
}

/* 左：テキスト */
.snv-hero-left {
  flex: 0 0 52%;
  padding: 56px 40px 48px 48px;
  position: relative;
  z-index: 2;
}

.snv-deco-tl {
  position: absolute;
  top: 16px; left: 12px;
  width: 70px; opacity: 0.8;
  pointer-events: none;
}

.snv-hero-title {
  font-size: 42px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  color: var(--snv-navy) !important;
  margin: 0 0 18px !important;
  letter-spacing: -0.5px;
}

.snv-hero-sub {
  font-size: 17px !important;
  color: var(--snv-text-mid) !important;
  line-height: 1.7 !important;
  margin: 0 0 28px !important;
}

.snv-accent {
  color: var(--snv-pink);
  font-size: 22px;
  font-weight: 800;
}

/* 検索バー */
.snv-search-form { margin-bottom: 20px; }

.snv-search-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.snv-search-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--snv-border);
  border-radius: 8px;
  padding: 0 14px;
  height: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.snv-search-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-right: 10px;
}

.snv-search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-size: 15px !important;
  color: var(--snv-text) !important;
  padding: 0 !important;
  height: auto !important;
}

.snv-search-input::placeholder { color: #b0aaa5; }

.snv-search-btn {
  background: var(--snv-pink);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 50px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.snv-search-btn:hover { background: #c45a7a; }

/* 人気キーワード */
.snv-popular {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.snv-popular-label {
  font-size: 13px;
  color: var(--snv-text-light);
}

.snv-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.snv-kw-tag {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--snv-pink-mid);
  color: var(--snv-navy);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.15s;
}
.snv-kw-tag:hover {
  background: var(--snv-pink-lt);
  border-color: var(--snv-pink);
}

/* 右：画像 */
.snv-hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.snv-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0 0 0 40px;
  background: #f3ede8;
  min-height: 380px;
}

/* 件数バッジ（右下） */
.snv-hero-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-align: center;
  min-width: 130px;
}

.snv-badge-label {
  font-size: 12px;
  color: var(--snv-text-light);
  margin-bottom: 2px;
}

.snv-badge-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--snv-navy);
  line-height: 1.1;
}
.snv-badge-num span {
  font-size: 16px;
  font-weight: 600;
}

.snv-badge-date {
  font-size: 11px;
  color: var(--snv-text-light);
  margin-top: 3px;
}

/* ヒーロー差別化タグ */
.snv-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.snv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid var(--snv-pink-mid);
  color: var(--snv-navy);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   TOPページ プレミアムPR枠
   ============================================================ */
.snv-top-pr {
  background: linear-gradient(135deg, #1e3a5f 0%, #152c49 100%);
  padding: 28px 0;
}

.snv-top-pr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.snv-top-pr-label {
  font-size: 14px;
  font-weight: 700;
  color: #f0c060;
  letter-spacing: 0.5px;
}

.snv-top-pr-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.snv-top-pr-note a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

.snv-top-pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.snv-top-pr-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--snv-radius);
  display: flex;
  align-items: stretch;
  text-decoration: none !important;
  color: #fff;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.snv-top-pr-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

.snv-top-pr-img-wrap {
  width: 88px;
  flex-shrink: 0;
  position: relative;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.snv-top-pr-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.snv-top-pr-img-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  min-height: 90px;
  letter-spacing: -1px;
}

.snv-top-pr-badge {
  position: absolute;
  top: 5px; left: 5px;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}
.snv-badge-premium {
  background: #f0c060;
  color: #1e3a5f;
}

.snv-top-pr-body {
  flex: 1;
  padding: 12px 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.snv-top-pr-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.snv-top-pr-corp {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.snv-top-pr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.snv-top-pr-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.snv-top-pr-medical {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.snv-medical-tag {
  font-size: 11px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 2px 7px;
  color: #a8d8b0;
}
.snv-medical-more {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  padding: 2px 4px;
}

.snv-top-pr-arrow {
  display: flex;
  align-items: center;
  padding: 0 10px 0 4px;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.snv-cats {
  background: #fff;
  padding: 56px 0 48px;
}

.snv-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.snv-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.snv-section-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--snv-navy) !important;
  margin: 0 !important;
}

.snv-see-all {
  font-size: 14px;
  color: var(--snv-text-light);
  text-decoration: none !important;
  transition: color 0.15s;
}
.snv-see-all:hover { color: var(--snv-navy); }

/* 4カードグリッド */
.snv-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.snv-cat-card {
  border: 1px solid var(--snv-border);
  border-radius: var(--snv-radius);
  background: #fff;
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.snv-cat-card:hover {
  box-shadow: var(--snv-shadow-hv);
  transform: translateY(-2px);
  border-color: var(--snv-pink-mid);
}

.snv-cat-body {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.snv-cat-icon-circle {
  width: 40px; height: 40px;
  background: var(--snv-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.snv-cat-text { flex: 1; }

.snv-cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--snv-navy);
  margin-bottom: 2px;
}

.snv-cat-desc {
  font-size: 11px;
  color: var(--snv-text-light);
  line-height: 1.4;
  margin-bottom: 3px;
}

.snv-cat-count {
  font-size: 12px;
  color: var(--snv-pink);
  font-weight: 700;
}

/* 地域ボタン */
.snv-area-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.snv-area-label {
  font-size: 12px;
  color: var(--snv-text-light);
  white-space: nowrap;
  margin-right: 2px;
}

.snv-area-btn {
  display: inline-block;
  background: var(--snv-bg-gray);
  border: 1px solid var(--snv-border);
  color: var(--snv-text-mid);
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  text-decoration: none !important;
  transition: all 0.15s;
  white-space: nowrap;
}
.snv-area-btn:hover {
  background: var(--snv-navy);
  color: #fff;
  border-color: var(--snv-navy);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.snv-stats {
  background: var(--snv-bg-gray);
  padding: 36px 0;
  border-top: 1px solid var(--snv-border);
  border-bottom: 1px solid var(--snv-border);
}

.snv-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.snv-stat {
  text-align: center;
  padding: 16px;
}

.snv-stat-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.snv-stat-label {
  font-size: 13px;
  color: var(--snv-text-light);
  margin-bottom: 4px;
}

.snv-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--snv-navy);
  line-height: 1.15;
}

.snv-stat-text {
  font-size: 22px;
  line-height: 1.3;
}

.snv-stat-unit {
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
}

.snv-stat-unit-sm {
  font-size: 20px;
  font-weight: 700;
}

.snv-stat-note {
  font-size: 12px;
  color: var(--snv-text-light);
  margin-top: 3px;
}

/* ============================================================
   BOTTOM: 新着 + PR CTA
   ============================================================ */
.snv-bottom {
  padding: 56px 0 64px;
}

.snv-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* お役立ち情報 */
.snv-info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* 記事なし時のプレースホルダー */
.snv-info-empty {
  grid-column: span 3;
  background: var(--snv-bg-gray);
  border-radius: var(--snv-radius);
  padding: 28px 24px;
  text-align: center;
  color: var(--snv-text-mid);
  font-size: 14px;
}
.snv-info-coming {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.snv-info-coming-item {
  font-size: 15px;
  color: var(--snv-navy);
  font-weight: 600;
}

.snv-info-card {
  border: 1px solid var(--snv-border);
  border-radius: var(--snv-radius);
  background: #fff;
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.snv-info-card:hover {
  box-shadow: var(--snv-shadow-hv);
  transform: translateY(-2px);
}

.snv-info-img-wrap {
  height: 110px;
  overflow: hidden;
  background: #f5f0ec;
}

.snv-info-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.snv-info-img-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* カテゴリー別の背景色 */
.snv-cat-color-\e8\a1\8c\e6\94\bf\e6\83\85\e5\a0\b1,
.snv-cat-color-\e8\a1\8c\e6\94\bf { background: #eef3fb; }
.snv-cat-color-column,
.snv-cat-color-コラム  { background: #fef9ec; }
.snv-cat-color-feature,
.snv-cat-color-特集      { background: #fce8ef; }
.snv-cat-color-tips,
.snv-cat-color-豆知識 { background: #edfaf1; }
.snv-cat-color-info,
.snv-cat-color-お知らせ { background: #f5f0ec; }

.snv-info-body {
  padding: 12px 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.snv-info-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 10px;
  width: fit-content;
  /* デフォルト */
  background: var(--snv-pink-lt);
  color: var(--snv-pink);
}

/* カテゴリー別タグカラー */
.snv-info-tag-\e8\a1\8c\e6\94\bf\e6\83\85\e5\a0\b1,
.snv-info-tag-\e8\a1\8c\e6\94\bf  { background: #dce9fb; color: #1e4fa0; }
.snv-info-tag-tips,
.snv-info-tag-豆知識  { background: #d1f5e0; color: #166534; }
.snv-info-tag-feature,
.snv-info-tag-特集        { background: #fce8ef; color: var(--snv-pink); }

.snv-info-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--snv-navy);
  line-height: 1.5;
}

.snv-info-date {
  font-size: 11px;
  color: var(--snv-text-light);
}

.snv-info-excerpt {
  font-size: 12px;
  color: var(--snv-text-mid);
  line-height: 1.5;
  margin-top: 2px;
}

/* PR掲載 CTAボックス */
.snv-pr-box {
  background: #fff;
  border: 1px solid var(--snv-border);
  border-radius: 14px;
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--snv-shadow);
}

.snv-pr-deco {
  position: absolute;
  right: -8px; top: 10px;
  width: 60px;
  pointer-events: none;
}

.snv-pr-header {
  font-size: 12px;
  color: var(--snv-text-light);
  margin-bottom: 10px;
}

.snv-pr-title {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--snv-navy) !important;
  line-height: 1.55 !important;
  margin: 0 0 20px !important;
}

.snv-pr-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.snv-pr-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.snv-pr-point-icon {
  width: 38px; height: 38px;
  background: var(--snv-pink-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.snv-pr-point-text {
  font-size: 14px;
  color: var(--snv-text-mid);
  line-height: 1.4;
}

.snv-pr-btn {
  display: block;
  background: var(--snv-pink);
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.snv-pr-btn:hover { background: #c45a7a; }

/* ── 料金プラン表 ── */
.snv-plan-table {
  margin: 18px 0 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ライト：白抜き強調ブロック（紺背景の中で最も目立つ） */
.snv-plan-highlight {
  background: #fff;
  border-bottom: 2px solid var(--snv-pink);
  padding: 16px 18px;
  border-radius: 8px 8px 0 0;
}
.snv-plan-hl-badge {
  display: inline-block;
  background: var(--snv-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.snv-plan-hl-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--snv-navy);
  margin-bottom: 8px;
}
.snv-plan-hl-orig {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
}
.snv-plan-hl-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.snv-plan-hl-free {
  font-size: 48px;
  font-weight: 900;
  color: var(--snv-pink);
  line-height: 1;
}
.snv-plan-hl-term {
  font-size: 16px;
  font-weight: 800;
  color: var(--snv-navy);
  line-height: 1.3;
}

/* スタンダード・プレミアム */
.snv-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 8px;
}
.snv-plan-standard { background: rgba(255,255,255,0.07); }
.snv-plan-premium  { background: rgba(255,255,255,0.04); }
.snv-plan-row + .snv-plan-row { border-top: 1px solid rgba(255,255,255,0.08); }
.snv-plan-left { display: flex; align-items: center; gap: 8px; }
.snv-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.snv-plan-right { display: flex; align-items: center; gap: 8px; }
.snv-plan-price {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.snv-plan-price small { font-size: 10px; font-weight: 400; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
  .snv-hero-title    { font-size: 34px !important; }
  .snv-cat-grid      { grid-template-columns: repeat(2, 1fr); }
  .snv-top-pr-grid   { grid-template-columns: 1fr 1fr; }
  .snv-bottom-inner  { grid-template-columns: 1fr; }
  .snv-pr-box        { max-width: 600px; }
}

@media (max-width: 768px) {
  .snv-hero-inner   { flex-direction: column; }
  .snv-hero-left    { padding: 36px 24px 28px; flex: none; }
  .snv-hero-right   { min-height: 220px; }
  .snv-hero-title   { font-size: 28px !important; }
  .snv-hero-sub     { font-size: 15px !important; }
  .snv-hero-img     { border-radius: 0; min-height: 220px; }
  .snv-hero-badge   { bottom: 12px; right: 12px; padding: 10px 14px; min-width: 110px; }
  .snv-badge-num    { font-size: 24px; }

  .snv-cats, .snv-bottom { padding: 36px 0; }
  .snv-section-inner, .snv-bottom-inner { padding: 0 16px; }
  .snv-section-title { font-size: 18px !important; }
  .snv-cat-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .snv-cat-img-wrap  { height: 100px; }

  .snv-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .snv-stat-num    { font-size: 26px; }

  .snv-info-list { grid-template-columns: 1fr 1fr; }
  .snv-pr-box    { margin-top: 8px; }
  .snv-pr-title { font-size: 17px !important; }
}

@media (max-width: 480px) {
  .snv-cat-grid  { grid-template-columns: 1fr; }
  .snv-info-list { grid-template-columns: 1fr; }
  .snv-search-row { flex-direction: column; }
  .snv-search-btn { width: 100%; }
}

/* ===== コラム・お知らせ 分離スタイル ===== */
.snv-section-desc {
  font-size: 13px;
  color: #666;
  margin: -8px 0 14px;
}
.snv-info-tag-column { background: #fef3c7; color: #92400e; }
.snv-info-tag-news   { background: #dbeafe; color: #1e40af; }
.snv-cat-color-news  { background: #eef3fb; }
.snv-news { margin-top: 0; }

/* ===== コラム・お知らせ テキストリスト ===== */
.snv-row-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.snv-row-item {
  border-bottom: 1px solid #eee;
}
.snv-row-item:first-child {
  border-top: 1px solid #eee;
}
.snv-row-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.snv-row-link:hover {
  background: #f9f5f0;
}
.snv-row-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a3c5e;
  flex: 1;
  line-height: 1.5;
}
.snv-row-link:hover .snv-row-title {
  color: var(--snv-pink);
  text-decoration: underline;
}
.snv-row-date {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}
.snv-row-empty {
  font-size: 13px;
  color: #999;
  padding: 12px 0;
}

/* ===== PR枠（サイドバー用コンパクト版） ===== */
.snv-pr-sidebar {
  background: linear-gradient(135deg, #fff5f8 0%, #fef9f0 100%);
  border: 1px solid #f0d0dc;
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  text-align: center;
}
.snv-pr-sidebar-header {
  font-size: 11px;
  color: #c0607a;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.snv-pr-sidebar-title {
  font-size: 14px;
  font-weight: bold;
  color: #1a3c5e;
  line-height: 1.5;
  margin-bottom: 10px;
}
.snv-pr-sidebar-free {
  font-size: 22px;
  font-weight: bold;
  color: var(--snv-pink);
}
.snv-pr-sidebar-term {
  font-size: 11px;
  color: #888;
  display: block;
  margin-bottom: 12px;
}
.snv-pr-sidebar-btn {
  display: block;
  background: var(--snv-pink);
  color: white !important;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none !important;
  line-height: 1.4;
}
.snv-pr-sidebar-btn:hover {
  opacity: 0.88;
}

/* アイキャッチ画像：構図が右寄りのAI生成画像をセンタートリミングで補正 */
.eye-catch {
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.eye-catch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
