/* =============================================
   さなのおなにっき - メインスタイルシート
   Cocoon子テーマ用
============================================= */

:root {
  --bg:         #fdf5f7;
  --surface:    #ffffff;
  --surface2:   #fef0f3;
  --border:     #f0d8df;
  --text:       #3d2c31;
  --muted:      #b08a94;
  --pink:       #e8607a;
  --pink-light: #f4a0b0;
  --pink-pale:  #fce8ec;
  --pink-glow:  rgba(232,96,122,0.10);
  --pink-hover: rgba(232,96,122,0.06);
  --font-ui:    'M PLUS Rounded 1c', sans-serif;
  --font-body:  'Noto Serif JP', serif;
}

/* ── リセット・ベース ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Cocoonのデフォルトスタイルをリセット */
#container, #main, .site-content { max-width: none; padding: 0; margin: 0; }
.cocoon-block-wrap { display: none; } /* Cocoonデフォルトラッパーを非表示 */

/* ── ハートCanvas ── */
#heart-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
}

/* ── 年齢確認モーダル ── */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(61,44,49,.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate-box {
  background: var(--surface);
  border: 2px solid var(--pink-light);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 360px; width: 100%;
}
.age-gate-icon { font-size: 36px; margin-bottom: 12px; }
.age-gate-title {
  font-size: 18px; font-weight: 500;
  color: var(--pink); letter-spacing: .12em; margin-bottom: 16px;
}
.age-gate-text {
  font-size: 13px; color: var(--muted);
  line-height: 1.9; margin-bottom: 24px;
}
.age-gate-text strong { color: var(--text); }
.age-gate-btns { display: flex; flex-direction: column; gap: 10px; }
.age-gate-yes {
  background: var(--pink); color: white;
  border: none; border-radius: 30px;
  padding: 12px 24px; font-size: 14px;
  font-family: var(--font-ui); font-weight: 500;
  letter-spacing: .08em; cursor: pointer;
  transition: opacity .2s;
}
.age-gate-yes:hover { opacity: .85; }
.age-gate-no {
  font-size: 12px; color: var(--muted);
  text-decoration: none; padding: 8px;
  transition: color .2s;
}
.age-gate-no:hover { color: var(--pink); }

/* ── Cocoonデフォルト要素を非表示 ── */
#header,
#header .header-container,
#navi,
#navi .navi-in,
.footer-wrap,
#footer,
#footer-widget-area,
.cocoon-breadcrumb,
#breadcrumb,
.tagline,
.header-logo-image { display: none !important; }

/* Cocoonのメインコンテナをリセット */
#container { background: transparent; }
#main, .main, #content, .content,
.singular .main,
.entry-content { padding: 0 !important; margin: 0 !important; max-width: none !important; }

/* ── ヘッダー ── */
#site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--pink-light);
  padding: 0 28px; height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(232,96,122,.08);
}
.site-title { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; }
.site-title .main { font-size: 20px; font-weight: 500; color: var(--pink); letter-spacing: .18em; }
.site-title .sub  { font-size: 9px; letter-spacing: .22em; color: var(--muted); font-weight: 300; }

.pc-nav { display: flex; gap: 4px; }
.pc-nav a {
  font-size: 11px; letter-spacing: .1em; color: var(--muted);
  text-decoration: none; padding: 4px 10px; border-radius: 20px;
  transition: background .2s, color .2s;
}
.pc-nav a:hover { background: var(--pink-pale); color: var(--pink); }

/* ── ハンバーガー ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none; z-index: 300;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--pink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── ドロワー ── */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(61,44,49,.32); z-index: 240;
  opacity: 0; transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; }
.drawer {
  display: none; position: fixed;
  top: 0; right: 0; bottom: 0; width: 260px;
  background: var(--surface); border-left: 1px solid var(--border);
  z-index: 250; padding: 80px 0 32px; flex-direction: column;
  box-shadow: -4px 0 20px rgba(232,96,122,.08);
  transform: translateX(100%); transition: transform .3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-size: 14px; font-weight: 400;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
  letter-spacing: .08em; transition: background .2s, color .2s;
}
.drawer a:hover { background: var(--pink-pale); color: var(--pink); }
.d-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.drawer-x { border: none !important; margin-top: auto; padding-top: 20px !important; }
.x-icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.x-icon svg { width: 16px; height: 16px; fill: var(--muted); }
.drawer-x:hover .x-icon svg { fill: var(--pink); }

/* ── ヒーロー ── */
.hero {
  position: relative; width: 100%; min-height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 64px 20px 56px;
  border-bottom: 2px solid var(--pink-light); z-index: 2;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; inset: -40px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, #ffd6e0 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 80% 70%, #ffe0ec 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 20%, #fff0f5 0%, transparent 60%),
    #fdf0f4;
  animation: bgDrift 12s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ''; position: absolute; inset: -60px;
  background:
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(248,180,200,.5) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 30% 70%, rgba(252,210,225,.4) 0%, transparent 50%);
  animation: bgDrift2 9s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0%   { transform: scale(1)    translate(0,0);       }
  33%  { transform: scale(1.04) translate(12px,-8px); }
  66%  { transform: scale(1.02) translate(-8px,10px); }
  100% { transform: scale(1.05) translate(6px,-4px);  }
}
@keyframes bgDrift2 {
  0%   { transform: scale(1)    translate(0,0);        opacity: .7; }
  50%  { transform: scale(1.06) translate(-14px,8px);  opacity: 1;  }
  100% { transform: scale(1.03) translate(10px,-12px); opacity: .8; }
}
.hero-overlay { position: absolute; inset: 0; background: rgba(253,240,244,.70); z-index: 2; }
.hero-inner {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.hero-label {
  font-size: 9px; letter-spacing: .4em; color: var(--pink); font-weight: 500;
  text-transform: uppercase; background: rgba(255,255,255,.72);
  padding: 4px 16px; border-radius: 20px; border: 1px solid var(--pink-light);
}
.hero-copy {
  font-size: 24px; font-weight: 500; color: var(--text);
  letter-spacing: .08em; line-height: 1.7;
  text-shadow: 0 1px 12px rgba(253,240,244,.9);
}
.hero-copy em { font-style: normal; color: var(--pink); }
.hero-copy small {
  display: block; font-size: 13px; font-weight: 300;
  color: var(--muted); letter-spacing: .12em; margin-top: 4px;
}
.hero-profile {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.85); border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 20px 8px 8px; backdrop-filter: blur(4px);
}
.hero-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg,#f9c0cc,#f4a0b0);
  border: 2px solid var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hero-name { font-size: 15px; font-weight: 500; color: var(--pink); letter-spacing: .18em; }
.hero-desc { font-size: 10px; color: var(--muted); letter-spacing: .06em; }

/* ── メインレイアウト ── */
.wrapper {
  position: relative; z-index: 2;
  max-width: 1040px; margin: 0 auto;
  padding: 28px 20px 60px;
  display: grid; grid-template-columns: 1fr 220px; gap: 36px;
}

/* ── セクションヘッダー ── */
.section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.section-head h2 {
  font-size: 11px; letter-spacing: .25em; color: var(--pink);
  font-weight: 500; text-transform: uppercase; white-space: nowrap; margin: 0;
}
.section-head::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── カードグリッド ── */
.card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: border-color .22s, box-shadow .22s, background .22s;
  animation: rise .45s ease both;
}
.post-card:nth-child(1) { animation-delay: .03s; }
.post-card:nth-child(2) { animation-delay: .08s; }
.post-card:nth-child(3) { animation-delay: .13s; }
.post-card:nth-child(4) { animation-delay: .18s; }
.post-card:hover {
  border-color: var(--pink-light);
  box-shadow: 0 4px 20px var(--pink-glow);
  background: var(--pink-hover);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg,#fce0e8,#f9c8d4);
  position: relative !important; overflow: hidden; flex-shrink: 0;
  display: block;
}
/* WPのアイキャッチimgを確実に親に収める */
.thumb img,
.thumb .thumb-img,
.thumb .wp-post-image {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  position: absolute !important; inset: 0 !important;
  margin: 0 !important; padding: 0 !important;
  display: block !important;
}
.thumb-label {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 9px; letter-spacing: .12em; color: white;
  background: var(--pink); padding: 2px 8px; border-radius: 20px; font-weight: 500;
}
.audio-thumb { background: linear-gradient(135deg,#f5d0d8,#f0b8c8); }
.audio-wave {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 3px;
}
.audio-wave span {
  display: block; width: 3px; border-radius: 2px;
  background: rgba(255,255,255,.55); animation: wave 1.2s ease-in-out infinite;
}
.audio-wave span:nth-child(1){height:12px;animation-delay:0s}
.audio-wave span:nth-child(2){height:22px;animation-delay:.1s}
.audio-wave span:nth-child(3){height:32px;animation-delay:.2s}
.audio-wave span:nth-child(4){height:18px;animation-delay:.3s}
.audio-wave span:nth-child(5){height:28px;animation-delay:.15s}
.audio-wave span:nth-child(6){height:14px;animation-delay:.05s}
.audio-wave span:nth-child(7){height:24px;animation-delay:.25s}
@keyframes wave {
  0%,100%{ transform: scaleY(.5); opacity: .5; }
  50%    { transform: scaleY(1.2); opacity: 1;  }
}

.card-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.card-meta { display: flex; align-items: center; gap: 6px; }
.card-date { font-size: 9px; color: var(--muted); letter-spacing: .08em; }
.card-cat  { font-size: 9px; color: var(--pink); background: var(--pink-pale); padding: 1px 7px; border-radius: 20px; }
.card-title { font-size: 13px; font-weight: 500; line-height: 1.6; color: var(--text); }
.card-excerpt { font-size: 11px; color: var(--muted); line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }

.post-card.featured { grid-column: 1/-1 !important; flex-direction: row !important; }
.post-card.featured .thumb {
  width: 280px !important; aspect-ratio: auto !important;
  flex-shrink: 0 !important; min-height: 160px !important;
  align-self: stretch !important;
}
.post-card.featured .card-title { font-size: 15px; }
.post-card.featured .card-excerpt { -webkit-line-clamp: 3; }

/* ページネーション */
.pagination {
  margin-top: 24px; display: flex; justify-content: center;
  flex-wrap: wrap; gap: 6px;
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--muted);
  text-decoration: none; font-size: 13px;
  transition: background .2s, color .2s, border-color .2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--pink); border-color: var(--pink); color: white;
}

/* ── パンくず ── */
.breadcrumb {
  position: relative; z-index: 2;
  max-width: 1040px; margin: 0 auto;
  padding: 12px 20px 0;
  font-size: 10px; color: var(--muted); letter-spacing: .08em;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb-sep { color: var(--border); }

/* ── 記事 ── */
.article-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden; margin: 0;
}

.eyecatch {
  width: 100%; aspect-ratio: 16/7;
  background: linear-gradient(135deg,#fcdce6,#f8b4c8 50%,#fde8d0);
  position: relative; overflow: hidden;
}
.eyecatch img { width: 100%; height: 100%; object-fit: cover; }
.eyecatch-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(253,245,247,.6) 100%);
}
.eyecatch-noimg { display: flex; align-items: center; justify-content: center; }
.eyecatch-deco { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.eyecatch-deco span { display: block; border-radius: 2px; background: rgba(255,255,255,.35); }

.article-head { padding: 28px 32px 20px; border-bottom: 1px solid var(--border); }
.article-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.article-cat {
  font-size: 9px; color: var(--pink); background: var(--pink-pale);
  padding: 2px 10px; border-radius: 20px; letter-spacing: .08em; font-weight: 500;
  text-decoration: none;
}
.article-date { font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.article-tag-pill {
  font-size: 9px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 1px 8px; border-radius: 20px;
  text-decoration: none; letter-spacing: .05em;
  transition: border-color .2s, color .2s;
}
.article-tag-pill:hover { border-color: var(--pink-light); color: var(--pink); }
h1.article-title {
  font-family: var(--font-ui);
  font-size: 22px; font-weight: 500;
  line-height: 1.6; letter-spacing: .06em; color: var(--text); margin: 0;
}

.article-body {
  padding: 28px 32px 32px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  line-height: 2.1; color: var(--text); letter-spacing: .04em;
}
.article-body p { margin-bottom: 1.6em; }
.article-body p:first-child::first-letter {
  font-size: 2.4em; line-height: 1; float: left;
  margin: .05em .1em 0 0; color: var(--pink); font-weight: 400;
}
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }
.article-body blockquote {
  border-left: 3px solid var(--pink-light); margin: 1.8em 0;
  padding: 12px 20px; background: var(--surface2);
  border-radius: 0 8px 8px 0; font-size: 14px; color: var(--muted); font-style: italic;
}
.article-body em { font-style: normal; color: var(--pink); font-weight: 400; }

/* 本文内関連記事 */
.related-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  text-decoration: none; color: inherit; margin: 2em 0;
  transition: border-color .2s, box-shadow .2s;
}
.related-card:hover { border-color: var(--pink-light); box-shadow: 0 2px 12px var(--pink-glow); }
.related-thumb { width: 72px; height: 48px; border-radius: 6px; background: linear-gradient(135deg,#fde0ea,#f8c8d8); flex-shrink: 0; overflow: hidden; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-label { font-size: 8px; color: var(--pink); letter-spacing: .1em; margin-bottom: 3px; }
.related-title { font-size: 12px; font-weight: 500; line-height: 1.5; font-family: var(--font-ui); }

/* いいね */
.like-wrap { display: flex; justify-content: center; padding: 20px 0 4px; }
.like-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  padding: 10px 28px; border-radius: 30px;
  border: 2px solid var(--pink-light); background: var(--surface);
  color: var(--pink); cursor: pointer;
  transition: background .2s, border-color .2s;
  user-select: none; font-family: var(--font-ui);
}
.like-btn:hover { background: var(--pink-pale); border-color: var(--pink); }
.like-btn.liked { background: var(--pink); border-color: var(--pink); color: white; }
.like-btn.pop   { animation: likePop .3s ease; }
.like-heart { font-size: 18px; transition: transform .2s; display: inline-block; }
.like-btn.liked .like-heart { transform: scale(1.25); }
@keyframes likePop {
  0%  { transform: scale(1); }
  40% { transform: scale(1.15); }
  70% { transform: scale(.95); }
  100%{ transform: scale(1); }
}

/* 記事フッター */
.article-foot {
  border-top: 1px solid var(--border); padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 10px; color: var(--muted); background: var(--bg);
  border: 1px solid var(--border); padding: 2px 10px; border-radius: 20px;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.tag:hover { border-color: var(--pink-light); color: var(--pink); }

/* タグクラウド（サイドバー） */
.tag-cloud {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.tag-cloud-item {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.tag-cloud-item:hover { border-color: var(--pink-light); color: var(--pink); background: var(--pink-pale); }
.tag-cloud-count {
  font-size: 9px; color: var(--pink);
  background: var(--pink-pale); border-radius: 10px;
  padding: 0 4px; line-height: 1.6;
}
.share-btns { display: flex; gap: 8px; }
.share-btn {
  font-size: 10px; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--muted); cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  display: flex; align-items: center; gap: 5px;
}
.share-btn:hover { background: var(--pink-pale); color: var(--pink); border-color: var(--pink-light); }
.share-btn svg { width: 12px; height: 12px; fill: currentColor; }

/* 前後ナビ */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.post-nav a {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: 4px;
}
.post-nav a:hover { border-color: var(--pink-light); box-shadow: 0 2px 12px var(--pink-glow); }
.post-nav a.next { text-align: right; }
.nav-label { font-size: 9px; color: var(--pink); letter-spacing: .15em; }
.nav-title  { font-size: 12px; font-weight: 500; line-height: 1.5; color: var(--text); }

/* ── サイドバー ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sb-block { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px 14px; }
.sb-title {
  font-size: 10px; letter-spacing: .25em; color: var(--pink); font-weight: 500;
  border-bottom: 1px solid var(--border); padding-bottom: 8px; margin-bottom: 12px;
  text-transform: uppercase; text-align: center;
}
.char-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.char-avatar { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg,#fce0e8,#f9c0cc); border: 2px solid var(--pink-light); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.char-name { font-size: 15px; font-weight: 500; color: var(--pink); letter-spacing: .2em; }
.char-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin: 2px 0 4px; }
.char-tag  { font-size: 9px; background: var(--pink-pale); color: var(--pink); padding: 2px 8px; border-radius: 20px; }
.char-desc { font-size: 11px; color: var(--muted); line-height: 1.85; text-align: center; }

.cat-list { display: flex; flex-direction: column; }
.cat-list-item { padding: 0; margin: 0; }
.cat-list-item a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text); text-decoration: none;
  padding: 6px 0; border-bottom: 1px solid var(--border);
  transition: color .2s; font-weight: 300;
}
.cat-list-item:last-child a { border-bottom: none; }
.cat-list-item a:hover { color: var(--pink); }
.cat-list-name { flex: 1; }
/* 旧ul/liベースの記述（念のため残す） */
.cat-list li { list-style: none !important; padding: 0 !important; margin: 0 !important; background: none !important; }
.cat-list li::before { display: none !important; content: none !important; }
.cat-list li a { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color .2s; font-weight: 300; }
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover { color: var(--pink); }
.cat-count { font-size: 10px; color: var(--muted); background: var(--surface2); padding: 1px 7px; border-radius: 20px; }

.recent-list { list-style: none !important; margin: 0 !important; padding: 0 !important; display: flex; flex-direction: column; }
.recent-list li { list-style: none !important; padding: 0 !important; margin: 0 !important; background: none !important; }
.recent-list li::before { display: none !important; content: none !important; }
.recent-list li a { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: color .2s; }
.recent-list li:last-child a { border-bottom: none; }
.recent-list li a:hover .recent-title { color: var(--pink); }
.recent-thumb { width: 44px; height: 30px; border-radius: 4px; background: linear-gradient(135deg,#fce0e8,#f9c8d4); flex-shrink: 0; overflow: hidden; }
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-title { font-size: 11px; line-height: 1.5; color: var(--text); font-weight: 400; }
.recent-date  { font-size: 9px; color: var(--muted); margin-top: 2px; }

.audio-mini { list-style: none !important; margin: 0 !important; padding: 0 !important; display: flex; flex-direction: column; gap: 8px; }
.audio-mini li { list-style: none !important; padding: 0 !important; margin: 0 !important; background: none !important; display: flex; align-items: flex-start; gap: 7px; font-size: 11px; color: var(--muted); line-height: 1.5; }
.audio-mini li::before { display: none !important; content: none !important; }
.audio-mini li a { color: var(--muted); text-decoration: none; }
.audio-mini li a:hover { color: var(--pink); }
.play-btn { width: 18px; height: 18px; border-radius: 50%; background: var(--pink-pale); border: 1px solid var(--pink-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 8px; color: var(--pink); margin-top: 1px; }

/* ランキング */
.ranking-block { display: flex; flex-direction: column; gap: 8px; }
.ranking-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s; }
.ranking-item:hover { border-color: var(--pink-light); box-shadow: 0 2px 8px var(--pink-glow); }
.ranking-num { font-size: 17px; font-weight: 500; min-width: 22px; text-align: center; flex-shrink: 0; }
.ranking-num.gold   { color: #d4a843; }
.ranking-num.silver { color: #a0a8b0; }
.ranking-num.bronze { color: #c07848; }
.ranking-body { flex: 1; }
.ranking-name { font-size: 11px; color: var(--text); font-weight: 400; line-height: 1.4; }
.ranking-site { font-size: 9px; color: var(--muted); margin-top: 1px; }
.ranking-vote { display: block; text-align: center; margin-top: 10px; font-size: 10px; letter-spacing: .12em; color: var(--pink); background: var(--pink-pale); border: 1px solid var(--pink-light); padding: 7px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.ranking-vote:hover { background: #f8d0d8; }

/* スペシャル */
.special-block { display: flex; flex-direction: column; gap: 10px; }
.special-card { display: block; text-decoration: none; color: inherit; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s; }
.special-card:hover { border-color: var(--pink-light); box-shadow: 0 2px 12px var(--pink-glow); }
.special-thumb { width: 100%; height: 72px; display: flex; align-items: center; justify-content: center; font-size: 28px; position: relative; overflow: hidden; }
.special-thumb.live { background: linear-gradient(135deg,#fcdce6,#f8b8cc); }
.special-thumb.live::after { content: 'LIVE'; position: absolute; top: 8px; right: 8px; font-size: 8px; font-weight: 500; letter-spacing: .15em; color: white; background: var(--pink); padding: 2px 6px; border-radius: 4px; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{ opacity: 1; } 50%{ opacity: .6; } }
.special-info { padding: 10px 12px 12px; background: var(--surface); }
.special-label { font-size: 9px; color: var(--pink); letter-spacing: .12em; margin-bottom: 3px; }
.special-title { font-size: 12px; font-weight: 500; line-height: 1.5; color: var(--text); }
.special-desc  { font-size: 10px; color: var(--muted); margin-top: 3px; line-height: 1.6; }

/* ── フッター ── */
#site-footer {
  position: relative; z-index: 2;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 18px 28px; display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: var(--muted); letter-spacing: .1em;
}
.footer-links a { color: var(--muted); text-decoration: none; margin-right: 16px; transition: color .2s; }
.footer-links a:hover { color: var(--pink); }
.footer-right { font-size: 9px; color: #d0b8be; }

/* ── スマホ対応 ── */
@media (max-width: 640px) {
  #site-header { padding: 0 16px; height: 52px; }
  .site-title .main { font-size: 17px; }
  .pc-nav { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 300px; padding: 44px 16px 40px; }
  .hero-copy { font-size: 18px; }

  .wrapper { grid-template-columns: 1fr; padding: 14px 14px 48px; gap: 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .post-card.featured { flex-direction: column; }
  .post-card.featured .thumb { width: 100%; aspect-ratio: 16/9; }

  .article-head { padding: 20px 18px 16px; }
  h1.article-title { font-size: 17px; }
  .article-body { padding: 20px 18px 24px; font-size: 14px; }
  .article-foot { padding: 16px 18px; }
  .post-nav { grid-template-columns: 1fr; }
  .breadcrumb { padding: 10px 14px 0; }

  .sidebar { order: 2; }
  #site-footer { flex-direction: column; gap: 6px; text-align: center; padding: 16px; }
  .footer-links a { margin: 0 8px; }
}

/* ═══════════════════════════════
   アーカイブヒーロー（カテゴリ一覧ページ）
═══════════════════════════════ */
.archive-hero {
  position: relative; width: 100%;
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 40px 20px 36px;
  border-bottom: 2px solid var(--pink-light);
  z-index: 2;
}
.archive-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  animation: bgDrift 12s ease-in-out infinite alternate;
}
.archive-hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.archive-hero-label {
  font-size: 9px; letter-spacing: .4em; color: var(--pink);
  font-weight: 500; text-transform: uppercase;
  background: rgba(255,255,255,.72);
  padding: 3px 14px; border-radius: 20px; border: 1px solid var(--pink-light);
}
.archive-hero-title {
  font-size: 26px; font-weight: 500; color: var(--text);
  letter-spacing: .08em; margin: 0;
  text-shadow: 0 1px 12px rgba(253,240,244,.9);
}
.archive-hero-desc {
  font-size: 13px; color: var(--muted);
  letter-spacing: .08em; margin: 0;
}

/* ═══════════════════════════════
   さなについてページ
═══════════════════════════════ */
.about-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; padding: 32px;
}
.about-profile {
  display: flex; align-items: center; gap: 20px; margin-bottom: 8px;
}
.about-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg,#fce0e8,#f9c0cc);
  border: 2px solid var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; flex-shrink: 0;
}
.about-name {
  font-size: 22px; font-weight: 500; color: var(--pink);
  letter-spacing: .18em; margin-bottom: 8px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.about-hr {
  border: none; border-top: 1px solid var(--border); margin: 24px 0;
}
.about-body {
  font-size: 15px; line-height: 2.1;
  color: var(--text); letter-spacing: .04em;
}
.about-body p { margin-bottom: 1.4em; }
.about-h2 {
  font-size: 15px; font-weight: 500; color: var(--pink);
  letter-spacing: .1em; margin: 0 0 12px;
  padding-left: 10px; border-left: 3px solid var(--pink-light);
}
.about-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px; margin-bottom: 1.6em;
}
.about-table tr { border-bottom: 1px solid var(--border); }
.about-table th {
  padding: 10px 12px 10px 0; width: 120px;
  color: var(--muted); font-weight: 300; text-align: left;
  vertical-align: top; white-space: nowrap;
}
.about-table td { padding: 10px 0; color: var(--text); }

/* ═══════════════════════════════
   静的ページ（プラポリ・お問い合わせ）
═══════════════════════════════ */
.static-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; padding: 32px;
}
.static-title {
  font-size: 20px; font-weight: 500; color: var(--text);
  letter-spacing: .08em; margin: 0 0 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.static-body {
  font-size: 14px; line-height: 2; color: var(--text);
  letter-spacing: .04em; margin-bottom: 24px;
}
.static-body h2 {
  font-size: 14px; font-weight: 500; color: var(--pink);
  margin: 24px 0 8px; letter-spacing: .06em;
}
.static-body p { margin-bottom: 1em; }
.static-body a { color: var(--pink); text-decoration: none; }
.static-body a:hover { text-decoration: underline; }
.static-update { font-size: 11px; color: var(--muted); margin-top: 32px; }

/* お問い合わせフォーム */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 12px; color: var(--text); font-weight: 400; letter-spacing: .06em; }
.contact-input,
.contact-textarea {
  font-family: var(--font-ui); font-size: 13px; font-weight: 300;
  color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(232,96,122,.08);
}
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-submit-wrap { display: flex; justify-content: center; }
.contact-submit {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; color: white;
  background: var(--pink); border: none; border-radius: 30px;
  padding: 12px 36px; cursor: pointer;
  transition: opacity .2s;
}
.contact-submit:hover { opacity: .85; }

@media (max-width: 640px) {
  .about-card, .static-card { padding: 20px 16px; }
  .about-profile { flex-direction: column; text-align: center; }
  .about-tags { justify-content: center; }
  .about-table th { width: 90px; }
}

/* ── Contact Form 7 スタイル上書き ── */
.cf7-wrap { margin-top: 8px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  font-family: var(--font-ui) !important;
  font-size: 13px !important; font-weight: 300 !important;
  color: var(--text) !important; background: var(--bg) !important;
  border: 1px solid var(--border) !important; border-radius: 8px !important;
  padding: 10px 14px !important; width: 100% !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important; box-shadow: none !important;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--pink-light) !important;
  box-shadow: 0 0 0 3px rgba(232,96,122,.08) !important;
}
.wpcf7 input[type="submit"] {
  font-family: var(--font-ui) !important;
  font-size: 13px !important; font-weight: 500 !important;
  letter-spacing: .1em !important; color: white !important;
  background: var(--pink) !important; border: none !important;
  border-radius: 30px !important; padding: 12px 36px !important;
  cursor: pointer !important; transition: opacity .2s !important;
  display: block; margin: 8px auto 0;
}
.wpcf7 input[type="submit"]:hover { opacity: .85 !important; }
.wpcf7-form-control-wrap { display: block; margin-bottom: 4px; }
.wpcf7 label { font-size: 12px; color: var(--text); letter-spacing: .06em; display: block; margin-bottom: 6px; }
.wpcf7 p { margin-bottom: 14px; }
.wpcf7-response-output {
  font-size: 12px !important; color: var(--pink) !important;
  border: 1px solid var(--pink-light) !important;
  background: var(--pink-pale) !important;
  border-radius: 8px !important; padding: 10px 14px !important;
  margin-top: 12px !important;
}
