/*
Theme Name:   SANGO Child - 菌婚
Template:     sango-theme
Version:      3.1.0
Description:  菌婚（きんこん）— 春の牧場イメージ
*/

/* ============================================================
   CSS Variables
============================================================ */
:root {
  --bg:        #FFFBF0;
  --surface:   #FFFFFF;
  --border:    #F5E090;
  --primary:   #F07820;
  --primary-lt:#FEE8D0;
  --accent:    #F5C700;
  --accent-lt: #FEF7CC;
  --text:      #2A1800;
  --text-mid:  #5C3A10;
  --text-light:#A07840;
  --gold:      #C85A08;
  --green:     #62B23A;
  --shadow-sm: 0 2px 12px rgba(240,120,32,0.09);
  --shadow-md: 0 8px 32px rgba(240,120,32,0.13);
  --shadow-lg: 0 20px 60px rgba(240,120,32,0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* ============================================================
   Base
============================================================ */
#kincon-wrap {
  background: var(--bg) !important;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif !important;
  color: var(--text);
}

#kincon-wrap *,
#kincon-wrap *::before,
#kincon-wrap *::after {
  box-sizing: border-box;
}

/* SANGOの余計なスタイルをリセット */
#kincon-wrap h1,
#kincon-wrap h2,
#kincon-wrap h3,
#kincon-wrap p {
  margin-top: 0;
}

#kincon-wrap article {
  margin-bottom: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: none;
}

/* ============================================================
   HERO
============================================================ */
.kincon-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 120px;
  text-align: center;
  background: linear-gradient(180deg,
    #FFF8D6 0%, #FFF3C0 30%, #FFEEA8 55%,
    #FFE8A0 70%, #FFF4CC 85%, #FFFBF0 100%
  ) !important;
}

.kincon-hero .sun {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE566 0%, #FFD000 40%, rgba(255,200,0,0) 70%);
  top: -60px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 80px 40px rgba(255,210,0,0.35);
  pointer-events: none;
  z-index: 0;
}

.kincon-hero .hill {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 90px;
  pointer-events: none;
  z-index: 1;
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-icons span {
  position: absolute;
  font-size: 28px;
  animation: floatBob 4s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.kincon-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--gold);
  font-size: 15px;        /* ← 11px → 15px に変更 */
  font-weight: 800;
  letter-spacing: 3px;
  padding: 10px 28px;     /* ← 8px 22px → 10px 28px に変更 */
  border-radius: 99px;
  margin-bottom: 30px;
  border: 1px solid var(--accent);
  box-shadow: 0 3px 14px rgba(245,199,0,0.25);
  position: relative;
  z-index: 2;
}

.kincon-hero h1 {
  font-size: clamp(34px, 6vw, 60px) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
  margin: 0 0 20px !important;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  border: none !important;
  padding: 0 !important;
}

.kincon-hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: inline-block;
  text-shadow:
    0 0 20px rgba(255,255,255,0.9),
    0 2px 0 rgba(255,255,255,0.95),
    -1px -1px 0 rgba(255,255,255,0.8),
     1px -1px 0 rgba(255,255,255,0.8),
    -1px  1px 0 rgba(255,255,255,0.8),
     1px  1px 0 rgba(255,255,255,0.8);
}

.kincon-hero .hero-copy {
  font-size: 15px;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  line-height: 1.9;
  position: relative;
  z-index: 2;
  margin: 0 0 32px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.hero-stat-num.s-green  { color: var(--green); }
.hero-stat-num.s-yellow { color: var(--accent); }
.hero-stat-num.s-orange { color: var(--primary); }

.hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ============================================================
   PAGE LAYOUT — 2カラム
============================================================ */
.page-layout {
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 0 20px 80px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* ============================================================
   FILTER SIDEBAR
============================================================ */
.filter-sidebar {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.filter-sidebar-head {
  background: linear-gradient(135deg, #F07820, #F5C700);
  padding: 20px 20px 16px;
  border-bottom: 1.5px solid var(--border);
}

.filter-sidebar-head h3 {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: white !important;
  margin: 0 0 4px !important;
  border: none !important;
  padding: 0 !important;
}

.filter-sidebar-head p {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  letter-spacing: 0.5px;
}

.filter-body {
  padding: 16px;
  background: #FFF3E0;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15px;              /* ← 13px → 15px に変更 */
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  transition: all 0.18s;
  user-select: none;
  line-height: 1.3;
}

.checkbox-item:hover {
  border-color: var(--primary);
  background: var(--primary-lt);
  color: var(--primary);
}

.checkbox-item.checked {
  border-color: var(--primary) !important;
  background: var(--primary-lt) !important;
  color: var(--primary) !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(240,120,32,0.2);
}

.cb-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  transition: all 0.18s;
}

.checkbox-item.checked .cb-box {
  background: var(--primary);
  border-color: var(--primary);
}

.cb-icon {
  font-size: 16px;
  line-height: 1;
}

.cb-label {
  flex: 1;
  min-width: 0;
}



.filter-clear {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  padding: 8px;
  transition: color 0.2s;
}

.filter-clear:hover {
  color: var(--primary);
}

/* ============================================================
   RESULTS
============================================================ */
.results-main {
  min-width: 0;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.results-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  margin: 0 !important;
  line-height: 1.4;
  border: none !important;
  padding: 0 !important;
}

.results-count {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ============================================================
   CARDS GRID
============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   CARD
============================================================ */
.kincon-card {
  background: var(--surface) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0 !important;
}

.kincon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
}

.kincon-card .card-head {
  padding: 24px 24px 18px;
  background: linear-gradient(145deg, #FFF8D0, #FFEEC0) !important;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  border-bottom: 1.5px solid var(--accent-lt);
}

.kincon-card .card-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,180,80,0.45), rgba(240,120,32,0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(240,120,32,0.15);
}

.kincon-card .card-name-wrap {
  flex: 1;
  min-width: 0;
}

.kincon-card .card-product-name {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  line-height: 1.35 !important;
  margin: 0 0 6px !important;
  border: none !important;
  padding: 0 !important;
}

.kincon-card .card-bacteria-badge {
  display: inline-block;
  background: rgba(240,120,32,0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(240,120,32,0.2);
}

.kincon-card .card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kincon-card .card-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kincon-card .card-troubles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.kincon-card .trouble-tag {
  font-size: 11px;     /* 悩み・アイテム・メーカー文字サイズ */
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent-lt);
  color: var(--gold);
  border: 1px solid rgba(245,199,0,0.4);
  display: inline-block;
}

.kincon-card .target_trouble.matched {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 2px 8px rgba(240,120,32,0.3);
}

.kincon-card .card-timing {
  font-size: 13px;     /* 悩み・アイテム・メーカー文字サイズ */
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 10px 0;
  border-top: 1.5px dashed var(--border);
  margin-bottom: 16px;
  line-height: 1.5;
}

.kincon-card .card-manufacturer {
  font-size: 15px;   /* 悩み・アイテム・メーカー文字サイズ */
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.kincon-card .card-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border: 2px solid var(--primary) !important;
  border-radius: var(--radius-sm);
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
  background: transparent;
}

.kincon-card .card-cta:hover {
  background: var(--primary) !important;
  color: white !important;
}

/* ============================================================
   NO RESULTS
============================================================ */
.kincon-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 72px 20px;
  color: var(--text-light);
}

.kincon-no-results p {
  font-size: 17px;
  font-weight: 600;
}

/* ============================================================
   SINGLE PAGE
============================================================ */
.bacteria-single-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.bacteria-profile-hero {
  background: linear-gradient(145deg, #FFF8D0, #FFEEC0) !important;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.bacteria-profile-hero .avatar-xl {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(240,120,32,0.4);
}

.bacteria-profile-hero h1 {
  font-size: 26px !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  margin: 0 0 10px !important;
  line-height: 1.3;
  border: none !important;
  padding: 0 !important;
}

.detail-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.detail-card-content {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

.support-highlight {
  background: linear-gradient(145deg, var(--primary-lt), var(--accent-lt));
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid rgba(240,120,32,0.2);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.back-link:hover {
  background: var(--primary);
  color: white !important;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
    padding: 20px 16px 60px;
    margin-top: 0;
  }

  .filter-sidebar {
    position: static;
    max-height: none;
    align-self: auto;
  }

  .checkbox-list {
    overflow-y: visible;
  }

  .filter-body {
    overflow-y: visible;
  }
}


@media (max-width: 600px) {
  .kincon-hero {
    padding: 48px 20px 80px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-num {
    font-size: 26px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .bacteria-profile-hero {
    padding: 36px 24px;
  }
  .detail-card {
    padding: 20px;
  }
}



/* ============================================================
   ヘッダーカスタマイズ
============================================================ */

/* SANGOヘッダー全体を白背景に */
.header-top,
#header,
.header__inner,
header,
.l-header,
.p-header {
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 2px 8px rgba(240,120,32,0.06) !important;
}

/* ヘッダーのサイト名 */
.sitename a,
.header-title a,
.p-header__logo a,
.l-header__title a {
  color: var(--text) !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  text-decoration: none !important;
}

/* ヘッダーナビのリンク */
.header-nav a,
.gnav a,
.p-header__nav a,
.l-header__nav a,
#navi a,
.global-nav a {
  color: var(--text-mid) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.header-nav a:hover,
.gnav a:hover,
.p-header__nav a:hover,
.l-header__nav a:hover,
#navi a:hover,
.global-nav a:hover {
  color: var(--primary) !important;
}

/* ============================================================
   統計エリアに白カードの囲い
============================================================ */
.hero-stats {
  display: inline-flex !important;
  gap: 48px !important;
  margin: 0 auto;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
}

/* 統計の区切り線 */
.hero-stat-item + .hero-stat-item {
  padding-left: 48px;
  border-left: 1.5px solid var(--border);
}




/* ============================================================
   追加修正① SANGOヘッダーのスタイル上書き 新
============================================================ */
.header-in,
#header .header-in,
.header,
#header {
  background: #FFFFFF !important;
  box-shadow: 0 2px 12px rgba(240,120,32,0.08) !important;
}

/* サイトタイトル（左上の「菌婚」） */
#site-title a,
.sitename a,
.header-in .site-name-text,
#header .site-name-text,
.header .sitettl a,
h1.sitettl a,
.site-name-text {
  color: var(--text, #2A1800) !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  text-decoration: none !important;
  letter-spacing: 1px !important;
}



/* ヘッダーナビのリンク */
#header .menu-item a,
.header-in .menu-item a,
#navi .menu-item a,
.gnav .menu-item a {
  color: var(--text-mid, #5C3A10) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
}

#header .menu-item a:hover,
.header-in .menu-item a:hover,
#navi .menu-item a:hover,
.gnav .menu-item a:hover {
  color: var(--primary, #F07820) !important;
}

/* ============================================================
   追加修正② hero-eyebrow が見えない問題（z-index修正）
============================================================ */
.kincon-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--gold);
  font-size: 15px;        /* ← 11px → 15px に変更 */
  font-weight: 800;
  letter-spacing: 3px;
  padding: 10px 28px;     /* ← 8px 22px → 10px 28px に変更 */
  border-radius: 99px;
  margin-bottom: 30px;
  border: 2px solid var(--accent);
  box-shadow: 0 3px 14px rgba(245,199,0,0.25);
  position: relative;
  z-index: 2;
}

.kincon-hero h1 {
  position: relative;
  z-index: 10 !important;
}

.kincon-hero .hero-copy {
  position: relative;
  z-index: 10 !important;
}

/* ============================================================
   追加修正③ 統計エリア（白カードはhero-stats-cardが担当）
============================================================ */
.hero-stats {
  position: relative;
  z-index: 10 !important;
  display: inline-flex !important;
  gap: 40px !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-stat-num {
  font-size: 36px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.hero-stat-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
  letter-spacing: 1px !important;
}

/* ============================================================
   追加修正④ フローティングアイコンのぼやけ解消
============================================================ */
.floating-icons span {
  opacity: 0.85 !important;
  font-size: 32px !important;
  filter: none !important;
  -webkit-filter: none !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* ============================================================
   追加修正⑤ SANGO共通の上書き（余計な装飾を除去）
============================================================ */
#kincon-wrap h1::before,
#kincon-wrap h1::after,
#kincon-wrap h2::before,
#kincon-wrap h2::after,
#kincon-wrap h3::before,
#kincon-wrap h3::after {
  content: none !important;
  display: none !important;
}

#kincon-wrap h1,
#kincon-wrap h2,
#kincon-wrap h3 {
  background: none !important;
  border-left: none !important;
  border-bottom: none !important;
}



/* ============================================================
   HERO STATS CARD（白い囲い）
============================================================ */
.hero-stats-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px 48px;
  border: 2px solid var(--accent) !important;
  box-shadow: 0 4px 24px rgba(240, 120, 32, 0.12) !important;
  position: relative;
  z-index: 2;
}


/* カード説明全文表示 */
.kincon-card .card-intro {
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    display: block !important;
    overflow: visible !important;
}


/* 悩み・時間・メーカー　文字大きさ */
/* 悩みタグ：太字 */
.kincon-card .trouble-tag {
    font-size: 14px !important;
    font-weight: bold !important;
}

/* 時間：太字・色を濃く */
.kincon-card .card-timing {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #2d8a4e !important;
}


/* ヘッダーナビゲーションのフォントサイズを小さくする */
header .desktop-nav > li > a {
    font-size: 11px !important;
}

/* =============================================
   左列（filter-sidebar）sticky追従 + 内部スクロール
   ============================================= */

/* 左列全体：画面に追従 */
.filter-sidebar {
  position: sticky;
  top: 80px;                          /* ヘッダーの高さに合わせて調整 */
  max-height: calc(100vh - 100px);    /* 画面内に収める */
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

/* 見出し部分は固定 */
.filter-sidebar-head {
  flex-shrink: 0;
}

/* チェックボックス一覧：独立スクロール */
.filter-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.checkbox-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

/* スクロールバーを細く（見た目を整える） */
.checkbox-list::-webkit-scrollbar {
  width: 6px;
}
.checkbox-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.checkbox-list::-webkit-scrollbar-track {
  background: transparent;
}


.filter-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius-sm);
  font-size: 21px !important;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(240,120,32,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-top: 12px;
  margin-bottom: 10px;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.filter-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,120,32,0.45);
}


/* 記事内テーブル：1行目だけ中央揃え */
.wp-block-table tr:first-child td {
  text-align: center;
}

/* サイドバー：最近の投稿の文字サイズを小さく */
.wp-block-latest-posts__post-title {
  font-size: 15px;
}

.sidebar .wp-block-group h2,
.drawer .wp-block-group h2,
.widgettitle {
  background: linear-gradient(135deg, #F07820, #F5C700) !important;
  color: #fff !important;
}




