/* ========================================
   TOPページ リッチ化セクション - kicchow
   ======================================== */

/* ===== 数字で見るバナー ===== */
.top-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 6px;
}
.top-stat {
  background: linear-gradient(160deg,#FFFDF8,#F3F7EC);
  border: 1.5px solid #E3DCC6;
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
}
.top-stat-num {
  font-family: 'Kaisei Decol', serif;
  font-size: 26px;
  font-weight: 700;
  color: #4A7A35;
  line-height: 1;
}
.top-stat-num small { font-size: 13px; margin-left: 2px; }
.top-stat-label {
  font-size: 11px;
  color: #6E6450;
  margin-top: 6px;
  font-weight: 700;
}

/* ===== 人気ランキング ===== */
.rank-list { display: flex; flex-direction: column; gap: 10px; }
.rank-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #EAE3D2;
  border-radius: 14px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.rank-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  border-color: #C4D4B4;
}
.rank-badge {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Kaisei Decol', serif;
  font-weight: 700; font-size: 16px;
  color: #fff;
  background: #C4B89A;
}
.rank-card:nth-child(1) .rank-badge { background: linear-gradient(135deg,#F4C842,#E0A800); }
.rank-card:nth-child(2) .rank-badge { background: linear-gradient(135deg,#C9CDD4,#9CA3AE); }
.rank-card:nth-child(3) .rank-badge { background: linear-gradient(135deg,#E0A56B,#C07A3A); }
.rank-body { flex: 1; min-width: 0; }
.rank-title {
  font-size: 13.5px; font-weight: 700; color: #2C3A24; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.rank-meta { font-size: 11px; color: #9A8F78; margin-top: 3px; }
.rank-emoji { font-size: 22px; }

/* ===== 誘導バナー（診断ツール等） ===== */
.top-cta-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg,#2C3A24,#4A7A35);
  border-radius: 18px;
  padding: 20px 22px;
  margin: 8px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.top-cta-banner .cta-emoji { font-size: 44px; flex: 0 0 auto; }
.top-cta-banner .cta-text { flex: 1; }
.top-cta-banner .cta-title {
  font-family: 'Kaisei Decol', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 4px;
}
.top-cta-banner .cta-sub { font-size: 12.5px; opacity: .9; line-height: 1.5; }
.top-cta-banner .cta-go {
  flex: 0 0 auto;
  background: #FFB02E; color: #2C2415;
  font-weight: 800; font-size: 13px;
  padding: 10px 18px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  cursor: pointer; border: none;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.top-cta-banner .cta-go:hover { background: #ffbe4d; }

/* ===== 季節のトピック ===== */
.season-box {
  background: linear-gradient(180deg,#FFF8E8,#FFFDF8);
  border: 2px dashed #E3C77A;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 8px 0;
}
.season-box h3 {
  font-family: 'Kaisei Decol', serif;
  font-size: 17px; color: #B0791E; margin: 0 0 8px;
}
.season-box p { font-size: 13px; color: #5C5443; line-height: 1.75; margin: 0; }

/* ===== サイドバー：ランキングウィジェット ===== */
.side-rank-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px dashed #ECE5D5;
  text-decoration: none; color: inherit;
}
.side-rank-item:last-child { border-bottom: none; }
.side-rank-no {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: #EAF3E1; color: #4A7A35; font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.side-rank-item:nth-child(2) .side-rank-no { background:#F4C842; color:#fff; }
.side-rank-ttl { font-size: 12.5px; line-height: 1.4; color:#3A3326; }
.side-rank-item:hover .side-rank-ttl { color:#4A7A35; }

/* ===== SNS / フォローボックス ===== */
.follow-box { text-align:center; }
.follow-box .follow-lead { font-size:12px; color:#6E6450; margin-bottom:10px; }
.follow-row { display:flex; gap:8px; justify-content:center; }
.follow-btn {
  flex:1; padding:9px 0; border-radius:10px; font-size:12px; font-weight:700;
  color:#fff; text-decoration:none;
}

/* スマホ */
@media (max-width: 768px) {
  .top-stats { grid-template-columns: repeat(2,1fr); }
  .top-cta-banner { flex-wrap: wrap; text-align:center; }
  .top-cta-banner .cta-text { flex: 1 1 100%; }
  .top-cta-banner .cta-emoji { flex: 1 1 100%; }
}
