/* ============================================
   くらしのとびら  -  base style
   ============================================ */

:root {
  --c-accent:   #e8845c;   /* テラコッタオレンジ */
  --c-accent-d: #d06b44;
  --c-sub:      #6fa8a0;   /* くすみグリーン */
  --c-ink:      #3a352f;   /* 文字 */
  --c-ink-soft: #756e64;
  --c-line:     #ece7df;
  --c-bg:       #fbf8f3;   /* 生成りベージュ */
  --c-card:     #ffffff;
  --shadow:     0 8px 24px rgba(80, 66, 48, .08);
  --radius:     16px;
  --container:  1120px;
  --font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --font-round: "Zen Maru Gothic", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--c-accent); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ========== ヘッダー ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s, background .3s;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(80, 66, 48, .07);
  background: rgba(251, 248, 243, .97);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
  transition: height .3s;
}
.site-header.is-scrolled .header-inner { height: 62px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { display: block; }
.logo-text {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .04em;
}
.global-nav { margin-left: auto; }
.global-nav ul { display: flex; gap: 2px; }
.global-nav a {
  display: block;
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
}
.global-nav a:hover { background: #fff; color: var(--c-accent); }

.search-btn {
  border: none; background: none; cursor: pointer;
  color: var(--c-ink); display: flex; padding: 6px;
  border-radius: 50%;
}
.search-btn:hover { color: var(--c-accent); }

.nav-toggle { display: none; }

/* 検索バー */
.search-bar {
  border-top: 1px solid var(--c-line);
  background: #fff;
  padding: 16px 0;
}
.search-form { display: flex; gap: 8px; max-width: 620px; }
.search-form input {
  flex: 1; border: 1px solid var(--c-line); border-radius: 999px;
  padding: 12px 20px; font-size: .95rem; font-family: inherit;
  background: var(--c-bg);
}
.search-form input:focus { outline: 2px solid var(--c-sub); }
.search-form button {
  border: none; background: var(--c-accent); color: #fff;
  padding: 0 24px; border-radius: 999px; font-weight: 700; cursor: pointer;
}
.search-form button:hover { background: var(--c-accent-d); }

/* ========== ヒーロー ========== */
.hero {
  background:
    radial-gradient(circle at 15% 20%, #fceede 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, #e3efe9 0%, transparent 45%),
    var(--c-bg);
  padding: 56px 0 64px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.hero-lead {
  color: var(--c-accent);
  font-weight: 700;
  font-family: var(--font-round);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-round);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
}
.hero-text { margin: 20px 0 28px; color: var(--c-ink-soft); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px; font-weight: 700;
  font-family: var(--font-round); cursor: pointer; border: none;
}
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--c-accent-d); color: #fff; transform: translateY(-2px); transition: .2s; }

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.pick-card {
  background: var(--c-card); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  grid-row: span 2;
}
.pick-card a { display: block; height: 100%; position: relative; }
.pick-card:hover { transform: translateY(-4px); transition: .25s; }
.pick-card--sm { grid-row: span 1; }
.pick-badge {
  position: absolute; margin: 12px; background: var(--c-accent);
  color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 12px;
  border-radius: 999px; z-index: 2;
}
.pick-thumb {
  display: block; aspect-ratio: 16/10;
  background: hsl(38 60% 86%);
}
.pick-card--sm .pick-thumb { aspect-ratio: 16/9; }
[data-hue] .pick-thumb,
.pick-thumb[data-hue] { background: hsl(var(--h, 38) 55% 85%); }
.pick-title {
  font-size: 1.05rem; font-weight: 700; padding: 14px 16px 18px;
  line-height: 1.5;
}
.pick-card--sm .pick-title { font-size: .92rem; padding: 12px 14px; }

/* ========== カテゴリーナビ ========== */
.cat-nav { padding: 48px 0; }
.section-eyebrow {
  text-align: center; font-family: var(--font-round);
  font-size: 1.15rem; margin-bottom: 28px; letter-spacing: .06em;
}
.section-eyebrow::after {
  content: ""; display: block; width: 40px; height: 3px;
  background: var(--c-accent); border-radius: 3px; margin: 10px auto 0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-grid a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--c-card); border-radius: var(--radius);
  padding: 22px 12px; font-weight: 700; font-size: .9rem;
  border: 1px solid var(--c-line); text-align: center;
}
.cat-grid a:hover {
  border-color: var(--c-accent); transform: translateY(-3px);
  transition: .2s; color: var(--c-ink);
}
.cat-ico {
  width: 52px; height: 52px; display: grid; place-items: center;
  font-size: 1.6rem; border-radius: 50%;
  background: hsl(var(--h, 38) 50% 92%);
}

/* ========== レイアウト ========== */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-bottom: 72px;
}

.block-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.block-title {
  font-family: var(--font-round); font-size: 1.4rem; font-weight: 700;
  padding-left: 14px; position: relative;
}
.block-title::before {
  content: ""; position: absolute; left: 0; top: .15em; bottom: .15em;
  width: 5px; background: var(--c-accent); border-radius: 3px;
}
.block-more { font-size: .88rem; font-weight: 700; color: var(--c-sub); }

.article-block, .feature-block { margin-bottom: 52px; }

/* 記事カード */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--c-card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--c-line);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); transition: .25s; }
.card a { display: block; }
.card-thumb {
  aspect-ratio: 16/10; background: hsl(var(--h,38) 55% 85%);
  position: relative;
}
.card-thumb .tag { position: absolute; left: 10px; top: 10px; }
.card-body { padding: 16px 18px 20px; }
.card-title {
  font-size: 1.02rem; font-weight: 700; line-height: 1.5; margin-bottom: 10px;
}
.card-meta {
  display: flex; gap: 12px; font-size: .78rem; color: var(--c-ink-soft);
}
.tag {
  display: inline-block; background: var(--c-sub); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}

/* 特集カード */
.feature-card {
  background: var(--c-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--c-line);
}
.feature-card a { display: grid; grid-template-columns: 1.1fr 1.4fr; }
.feature-card:hover { box-shadow: var(--shadow); }
.feature-thumb { background: hsl(var(--h,260) 45% 86%); min-height: 220px; }
.feature-body { padding: 28px; align-self: center; }
.feature-body h3 { font-size: 1.3rem; font-weight: 700; margin: 12px 0; line-height: 1.5; }
.feature-body p { color: var(--c-ink-soft); font-size: .92rem; }

/* ページネーション */
.pagination { display: flex; justify-content: center; gap: 8px; }
.page-num {
  min-width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid var(--c-line); background: #fff;
  font-weight: 700; padding-inline: 10px;
}
.page-num.is-current { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.page-num:hover:not(.is-current) { border-color: var(--c-accent); color: var(--c-accent); }

/* ========== サイドバー ========== */
.widget {
  background: var(--c-card); border-radius: var(--radius);
  padding: 22px; margin-bottom: 24px; border: 1px solid var(--c-line);
}
.widget-title {
  font-family: var(--font-round); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px dotted var(--c-line);
}
.widget-profile { text-align: center; }
.widget-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: #fceede;
  display: grid; place-items: center; font-size: 2rem; margin: 0 auto 14px;
}
.widget-profile p { font-size: .88rem; color: var(--c-ink-soft); }

.rank-list { counter-reset: rank; }
.rank-list li { counter-increment: rank; }
.rank-list a {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--c-line);
}
.rank-list li:last-child a { border-bottom: none; }
.rank-list a::before {
  content: counter(rank); flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-bg); color: var(--c-ink-soft);
  display: grid; place-items: center; font-weight: 700; font-size: .85rem;
  font-family: var(--font-round);
}
.rank-list li:nth-child(1) a::before { background: var(--c-accent); color: #fff; }
.rank-list li:nth-child(2) a::before { background: var(--c-sub); color: #fff; }
.rank-list li:nth-child(3) a::before { background: #d9b25a; color: #fff; }
.rank-list span { font-size: .88rem; font-weight: 500; line-height: 1.5; }

.cat-list a {
  display: flex; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--c-line); font-size: .9rem; font-weight: 500;
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list span { color: var(--c-ink-soft); }

.widget-cta { background: linear-gradient(135deg, #fceede, #e3efe9); border: none; }
.widget-cta p { font-size: .86rem; color: var(--c-ink-soft); margin-bottom: 12px; }
.mini-form { display: flex; flex-direction: column; gap: 8px; }
.mini-form input {
  border: 1px solid var(--c-line); border-radius: 10px; padding: 10px 14px;
  font-family: inherit; background: #fff;
}
.mini-form button {
  border: none; background: var(--c-accent); color: #fff; font-weight: 700;
  padding: 11px; border-radius: 10px; cursor: pointer; font-family: var(--font-round);
}
.mini-form button:hover { background: var(--c-accent-d); }

/* ========== フッター ========== */
.site-footer { background: #efe9df; padding: 48px 0 0; margin-top: auto; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px;
}
.footer-brand p { font-size: .86rem; color: var(--c-ink-soft); margin-top: 10px; max-width: 300px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-nav h3 { font-size: .95rem; margin-bottom: 14px; font-family: var(--font-round); }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: .86rem; color: var(--c-ink-soft); }
.footer-bottom {
  border-top: 1px solid #ded7ca; text-align: center;
  padding: 20px; font-size: .8rem; color: var(--c-ink-soft);
}

/* トップへ戻る */
.to-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--c-accent); color: #fff; font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .3s;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--c-accent-d); }

/* ========== スクロール演出 ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ========== サムネイルのイラスト・抜粋など ========== */
.card-thumb, .pick-thumb, .feature-thumb, .post-eyecatch { position: relative; overflow: hidden; }
.thumb-art { position: absolute; inset: 0; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.thumb-art svg { width: 100%; height: 100%; display: block; }
.card:hover .thumb-art,
.pick-card:hover .thumb-art,
.feature-card:hover .thumb-art { transform: scale(1.06); }
.card-title, .pick-card a:hover .pick-title { transition: color .2s; }
.card:hover .card-title { color: var(--c-accent); }
.card-thumb .tag { position: absolute; left: 10px; top: 10px; z-index: 1; }
.card-excerpt {
  font-size: .85rem; color: var(--c-ink-soft); line-height: 1.6; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tag-sub { background: #efe9df; color: var(--c-ink-soft); }
.empty {
  grid-column: 1 / -1; text-align: center; color: var(--c-ink-soft);
  background: var(--c-card); border: 1px dashed var(--c-line); border-radius: var(--radius); padding: 48px 20px;
}

/* ========== パンくず ========== */
.breadcrumb { padding: 16px 0; font-size: .82rem; color: var(--c-ink-soft); }
.breadcrumb .container { display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb span:not(:last-child) { color: var(--c-line); }

/* ========== カテゴリーヒーロー ========== */
.cat-hero {
  background: hsl(var(--h,25) 50% 94%);
  padding: 44px 0; text-align: center; margin-bottom: 8px;
}
.cat-hero .cat-ico { margin: 0 auto 14px; }
.cat-hero h1 { font-family: var(--font-round); font-size: 2rem; margin-bottom: 10px; }
.cat-hero p { max-width: 560px; margin: 0 auto; color: var(--c-ink-soft); font-size: .92rem; }

/* ========== 検索ページ ========== */
.search-hero { background: linear-gradient(135deg, #fceede, #e3efe9); padding: 40px 0; margin-bottom: 8px; text-align: center; }
.search-hero h1 { font-family: var(--font-round); font-size: 1.8rem; margin-bottom: 18px; }
.search-form--lg { max-width: 640px; margin: 0 auto; }
.search-form--lg input { padding: 15px 22px; font-size: 1rem; }
.search-summary { margin-top: 16px; color: var(--c-ink-soft); font-size: .92rem; }
.search-summary strong { color: var(--c-accent-d); }

/* ========== 記事本文 ========== */
.post { background: var(--c-card); border-radius: var(--radius); padding: 40px; border: 1px solid var(--c-line); }
.post-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.post-title { font-family: var(--font-round); font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.5; margin-bottom: 14px; }
.post-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--c-ink-soft); }
.post-eyecatch { aspect-ratio: 16/8; border-radius: var(--radius); background: hsl(var(--h,38) 55% 85%); margin: 24px 0 32px; }

.post-body { font-size: 1.02rem; }
.post-body .lead { font-size: 1.08rem; font-weight: 500; background: var(--c-bg); padding: 20px; border-radius: 12px; margin-bottom: 32px; }
.post-body h2 {
  font-family: var(--font-round); font-size: 1.4rem; margin: 40px 0 18px;
  padding-bottom: 12px; border-bottom: 3px solid var(--c-line); position: relative;
}
.post-body h2::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 80px; height: 3px; background: var(--c-accent); }
.post-body p { margin-bottom: 20px; }
.post-body h2 + p { margin-top: 0; }

.callout {
  background: #fceede; border-left: 5px solid var(--c-accent);
  border-radius: 0 12px 12px 0; padding: 20px 22px; margin: 28px 0;
}
.callout-label { display: inline-block; font-family: var(--font-round); font-weight: 700; color: var(--c-accent-d); font-size: .85rem; margin-bottom: 6px; }
.callout p { margin: 0; }

.step-list { counter-reset: step; margin: 24px 0; }
.step-list li { counter-increment: step; position: relative; padding: 0 0 22px 56px; }
.step-list li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%; background: var(--c-accent); color: #fff;
  display: grid; place-items: center; font-family: var(--font-round); font-weight: 700; font-size: 1.1rem;
}
.step-list li:not(:last-child)::after {
  content: ""; position: absolute; left: 19px; top: 44px; bottom: 6px; width: 2px; background: var(--c-line);
}

.post-share { display: flex; align-items: center; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--c-line); flex-wrap: wrap; }
.post-share span { font-weight: 700; font-size: .88rem; }
.share-btn { background: var(--c-bg); border: 1px solid var(--c-line); padding: 8px 18px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.share-btn:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

.related { margin-top: 48px; }
.related .block-title { margin-bottom: 20px; }

/* ========== レスポンシブ ========== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .layout { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card a { grid-template-columns: 1fr; }
  .feature-thumb { min-height: 180px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .global-nav {
    position: fixed; inset: 72px 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--c-line); margin: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s; box-shadow: var(--shadow);
  }
  .global-nav.is-open { max-height: 70vh; }
  .global-nav ul { flex-direction: column; padding: 8px; gap: 0; }
  .global-nav a { padding: 14px; border-bottom: 1px solid var(--c-line); }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-toggle span {
    width: 24px; height: 2px; background: var(--c-ink); border-radius: 2px;
    transition: .3s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .card-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cards { grid-template-columns: 1fr; }
  .pick-card, .pick-card--sm { grid-row: auto; }
  .post { padding: 22px; }
  .post-body .lead { padding: 16px; }
}

/* ============================================================
   WordPress 用の追加調整
   ============================================================ */

/* アイキャッチ画像（あれば写真、無ければSVGサムネ） */
.kt-thumb-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.card:hover .kt-thumb-img,
.pick-card:hover .kt-thumb-img,
.feature-card:hover .kt-thumb-img { transform: scale(1.06); }

/* カスタムロゴ */
.custom-logo { width: 36px; height: 36px; display: block; border-radius: 8px; }

/* WordPress 標準のページネーション（paginate_links type=list）を独自デザインに合わせる */
.pagination ul.page-numbers { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 0; list-style: none; }
.pagination .page-numbers {
  min-width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid var(--c-line); background: #fff;
  font-weight: 700; padding-inline: 12px; font-family: var(--font-round);
}
.pagination a.page-numbers:hover { border-color: var(--c-accent); color: var(--c-accent); }
.pagination .page-numbers.current { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.pagination .page-numbers.dots { border: none; background: transparent; }

/* 投稿本文（ブロックエディタ）の体裁 */
.post-body img { border-radius: 12px; height: auto; margin: 8px 0; }
.post-body ul:not(.step-list),
.post-body ol:not(.step-list) { margin: 0 0 20px 1.4em; }
.post-body ul:not(.step-list) { list-style: disc; }
.post-body ol:not(.step-list) { list-style: decimal; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--c-accent-d); text-decoration: underline; }
.post-body blockquote {
  margin: 24px 0; padding: 16px 22px; background: var(--c-bg);
  border-left: 5px solid var(--c-sub); border-radius: 0 12px 12px 0; color: var(--c-ink-soft);
}
.post-body .wp-block-image { margin: 24px 0; }
.post-body figcaption { font-size: .82rem; color: var(--c-ink-soft); text-align: center; margin-top: 6px; }

/* 検索フォームのボタン内アイコン崩れ防止 */
.search-form button { white-space: nowrap; }

/* 管理バー表示時にヘッダーが隠れないように */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
