/*
Theme Name: Cocoon Child
Template: cocoon-master
*/

/* ===================================
   ピンクテーマ
=================================== */

/* 全体背景 */
body {
  background-color: #fff8fb;
}

/* リンク色 */
a { color: #d4548a; }
a:hover { color: #b03570; }

/* ===================================
   ヘッダー・ナビ
=================================== */
#header {
  box-shadow: 0 2px 8px rgba(212,84,138,0.15);
}
#navi .navi-in > ul > li > a:hover,
#navi .navi-in > ul > li.current-menu-item > a {
  color: #d4548a;
  border-bottom: 2px solid #d4548a;
}

/* ===================================
   記事カード
=================================== */
.entry-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(212,84,138,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,84,138,0.20);
}

/* カテゴリラベル */
.cat-label,
.cat-links a,
.post-cat-label {
  background: #d4548a !important;
  border-color: #d4548a !important;
  color: #fff !important;
  border-radius: 4px;
}

/* ===================================
   サイドバー
=================================== */
.widget-title,
.widgettitle {
  border-left: 4px solid #d4548a;
  padding-left: 10px;
  color: #d4548a;
}

/* ===================================
   ボタン・CTA
=================================== */
.btn, .button,
.wp-block-button__link,
.more-link {
  background: #d4548a !important;
  border-color: #d4548a !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.btn:hover, .button:hover {
  background: #b03570 !important;
  border-color: #b03570 !important;
}

/* ===================================
   トップページバナー
=================================== */
.recommend-box {
  background: linear-gradient(135deg, #fff0f7, #ffe4f0);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  text-align: center;
  border: 2px solid #f5c6e0;
}
.recommend-box h3 {
  color: #d4548a;
  font-size: 20px;
  margin-bottom: 8px;
}

/* ===================================
   人気記事ウィジェット番号
=================================== */
#wpp-widget h3 {
  border-left: 4px solid #d4548a;
  padding-left: 10px;
  font-size: 16px;
  margin-bottom: 12px;
  color: #d4548a;
}

/* ===================================
   カルーセル
=================================== */
.carousel-entry-card-thumb {
  border-radius: 8px;
}

/* ===================================
   フッター
=================================== */
#footer {
  background: #f9e0ee;
  color: #8a4060;
}
#footer a { color: #d4548a; }

/* ===================================
   見出し（h2・h3）
=================================== */
.entry-content h2 {
  border-left: 5px solid #d4548a;
  border-bottom: 1px solid #f5c6e0;
  padding: 8px 12px;
  background: #fff0f7;
  border-radius: 0 6px 6px 0;
}
.entry-content h3 {
  border-left: 4px solid #f48fbf;
  padding-left: 10px;
  color: #d4548a;
}

/* ===================================
   ページネーション
=================================== */
.page-numbers.current,
.pagination .current {
  background: #d4548a;
  color: #fff;
  border-color: #d4548a;
}
.page-numbers:hover {
  background: #f5c6e0;
  border-color: #d4548a;
  color: #d4548a;
}
/* カテゴリラベルをクリッカブルに見せる */
.cat-label {
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
.cat-label:hover {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.15s;
}