/* Gekiyasu Watch UI v7 — Minimal/Utility */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');

:root {
  --gk-bg:    #FFFFFF;
  --gk-bg2:   #F9FAFB;
  --gk-ink:   #111827;
  --gk-ink2:  #374151;
  --gk-muted: #9CA3AF;
  --gk-line:  #E5E7EB;
  --gk-red:   #DC2626;
  --gk-red-s: #FEF2F2;

  --gk-r:   6px;
  --gk-sh:  0 1px 3px rgba(0,0,0,.06);

  --gk-f: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gk-f-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gk-f-num: 'Inter', 'Noto Sans JP', system-ui, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── ベース ────────────────────────────────── */
body {
  background: var(--gk-bg) !important;
  font-family: var(--gk-f) !important;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  color: var(--gk-ink) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

a { color: var(--gk-ink) !important; }
a:hover { color: var(--gk-red) !important; }

/* ── ヘッダー ──────────────────────────────── */
#header {
  background: var(--gk-bg) !important;
  border-bottom: 1px solid var(--gk-line) !important;
  box-shadow: none !important;
}
#header-in { background: transparent !important; }

.site-name-text,
#site-title a {
  color: var(--gk-ink) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.tagline {
  color: var(--gk-muted) !important;
  font-size: .78rem !important;
}

/* ナビ — 和色（低彩度テキスト） */
#navi {
  background: #F2EDE6 !important;
  border-top: none !important;
  border-bottom: 1px solid #E0D8CE !important;
}
#navi .navi-in > ul > li > a {
  font-size: .82rem !important;
  font-weight: 600 !important;
  padding: .65rem .85rem !important;
  border-bottom: none !important;
  transition: color .15s !important;
  background: none !important;
  border-radius: 0 !important;
}
/* 和色テキスト（低彩度・常時）: 煤竹・藍鼠・青磁鼠・錆青磁・赤錆・苔・藤鼠 */
#navi .navi-in > ul > li:nth-child(1) > a { color: #7A6C62 !important; }
#navi .navi-in > ul > li:nth-child(2) > a { color: #5878A0 !important; }
#navi .navi-in > ul > li:nth-child(3) > a { color: #3D8490 !important; }
#navi .navi-in > ul > li:nth-child(4) > a { color: #3D7A6E !important; }
#navi .navi-in > ul > li:nth-child(5) > a { color: #9C5A3A !important; }
#navi .navi-in > ul > li:nth-child(6) > a { color: #5C6E35 !important; }
#navi .navi-in > ul > li:nth-child(7) > a { color: #6B5490 !important; }

/* hover & current: 少し深く + 下線 */
#navi .navi-in > ul > li:nth-child(1) > a:hover,
#navi .navi-in > ul > li:nth-child(1).current-menu-item > a { color: #3D3532 !important; }
#navi .navi-in > ul > li:nth-child(2) > a:hover,
#navi .navi-in > ul > li:nth-child(2).current-menu-item > a { color: #1B50A5 !important; }
#navi .navi-in > ul > li:nth-child(3) > a:hover,
#navi .navi-in > ul > li:nth-child(3).current-menu-item > a { color: #1E6B78 !important; }
#navi .navi-in > ul > li:nth-child(4) > a:hover,
#navi .navi-in > ul > li:nth-child(4).current-menu-item > a { color: #1E5C52 !important; }
#navi .navi-in > ul > li:nth-child(5) > a:hover,
#navi .navi-in > ul > li:nth-child(5).current-menu-item > a { color: #7A3A20 !important; }
#navi .navi-in > ul > li:nth-child(6) > a:hover,
#navi .navi-in > ul > li:nth-child(6).current-menu-item > a { color: #3D4A22 !important; }
#navi .navi-in > ul > li:nth-child(7) > a:hover,
#navi .navi-in > ul > li:nth-child(7).current-menu-item > a { color: #4A3670 !important; }

/* ── コンテンツ背景 ────────────────────────── */
#content, #wrap, #container { background: transparent !important; }

@media (min-width: 1000px) {
  #content-in.wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: min(1256px, calc(100% - 32px)) !important;
    max-width: 1256px !important;
  }
  #main.main {
    float: none !important;
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding-right: 14px !important;
  }
  #sidebar.sidebar {
    display: block !important;
    float: none !important;
    flex: 0 0 clamp(300px, 28vw, 376px) !important;
    width: clamp(300px, 28vw, 376px) !important;
    min-width: 300px !important;
    max-width: 376px !important;
    padding-left: 10px !important;
  }
}

/* ── 記事カード ────────────────────────────── */
.entry-card-wrap {
  background: var(--gk-bg) !important;
  border: none !important;
  border-radius: var(--gk-r) !important;
  box-shadow: none !important;
  transition: box-shadow .15s !important;
}
.entry-card-wrap:hover {
  box-shadow: var(--gk-sh) !important;
}

.entry-card-thumb img {
  border-radius: 0 !important;
  object-fit: contain !important;
  background: #fff !important;
}

.entry-card-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
}
.entry-card-title a,
.entry-card-title a:visited {
  color: var(--gk-ink) !important;
  text-decoration: none !important;
}
.entry-card-wrap:hover .entry-card-title a {
  color: var(--gk-red) !important;
}

.cat-label {
  background: var(--gk-red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: .65rem !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
}

.entry-card-meta,
.e-card-meta,
.post-date {
  color: var(--gk-muted) !important;
  font-size: .75rem !important;
}

/* ── 記事本文 ──────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--gk-f) !important;
  letter-spacing: -.01em !important;
}

.entry-content h2 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  border-left: 3px solid var(--gk-red) !important;
  border-bottom: none !important;
  border-top: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  background: none !important;
  padding: .15rem 0 .15rem .7rem !important;
  color: var(--gk-ink) !important;
}

.entry-content h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  border-left: none !important;
  border-bottom: 1px solid var(--gk-line) !important;
  padding: 0 0 .4rem !important;
  background: none !important;
  color: var(--gk-ink) !important;
}

/* CTAボタン */
.cta-btn, .cta-btn-main,
.entry-content a[style*='background'] {
  background: var(--gk-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  border: none !important;
  padding: .7rem 1.8rem !important;
  box-shadow: none !important;
  transition: filter .15s !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.cta-btn:hover, .cta-btn-main:hover,
.entry-content a[style*='background']:hover {
  filter: brightness(.9) !important;
}

/* ── サイドバー ────────────────────────────── */
#sidebar .widget {
  background: var(--gk-bg) !important;
  border: none !important;
  border-radius: var(--gk-r) !important;
  box-shadow: none !important;
}
#sidebar .widget-title,
#sidebar .widgettitle {
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: var(--gk-muted) !important;
  background: none !important;
  border-bottom: 1px solid var(--gk-line) !important;
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
  padding: .8rem 1rem !important;
}

/* ── ページネーション ────────────────────────── */
.page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 .4rem !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  border-radius: var(--gk-r) !important;
  border: 1px solid var(--gk-line) !important;
  background: var(--gk-bg) !important;
  color: var(--gk-ink2) !important;
  text-decoration: none !important;
  transition: border-color .15s, color .15s !important;
}
.page-numbers:hover {
  border-color: #9CA3AF !important;
  color: var(--gk-ink) !important;
}
.page-numbers.current {
  background: var(--gk-ink) !important;
  border-color: var(--gk-ink) !important;
  color: #fff !important;
}

/* ── フッター ──────────────────────────────── */
#footer {
  background: var(--gk-bg2) !important;
  border-top: 1px solid var(--gk-line) !important;
  color: var(--gk-muted) !important;
  margin-top: 3rem !important;
}
#footer a { color: var(--gk-ink2) !important; }
#footer a:hover { color: var(--gk-ink) !important; }
.footer-copy { font-size: .78rem !important; }

/* ── 特価ボックス ──────────────────────────── */
.deal-highlight {
  background: var(--gk-red-s) !important;
  border: 1px solid #FECACA !important;
  border-radius: var(--gk-r) !important;
}
.deal-price-hero strong {
  color: var(--gk-red) !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
}
.pr-notice {
  background: #FFFBEB !important;
  border-left: 3px solid #F59E0B !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* ── 検索 ──────────────────────────────────── */
#searchform input[type='text'],
input[type='search'] {
  border: 1px solid var(--gk-line) !important;
  border-radius: var(--gk-r) !important;
  background: var(--gk-bg) !important;
}
#searchform input[type='text']:focus,
input[type='search']:focus {
  outline: none !important;
  border-color: #9CA3AF !important;
  box-shadow: none !important;
}

/* ── 選択・フォーカス ──────────────────────── */
::selection { background: rgba(220,38,38,.1); }
a:focus-visible { outline: 2px solid var(--gk-red); outline-offset: 2px; }

/* ── 本日のおすすめ ────────────────────────── */
.gk-picks {
  margin: .75rem 0 1.5rem;
}

.gk-picks__heading {
  font-size: .72rem !important;
  font-weight: 500 !important;
  color: var(--gk-muted) !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  border: none !important;
  background: none !important;
  padding: 0 0 .5rem !important;
  margin-bottom: .5rem !important;
}
.gk-picks__heading::after { display: none !important; }
.gk-picks__badge { display: none; }

.gk-picks__grid {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .25rem;
  scrollbar-width: none;
}
.gk-picks__grid::-webkit-scrollbar { display: none; }

.gk-picks__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 110px;
  scroll-snap-align: start;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  color: var(--gk-ink) !important;
}

.gk-picks__img-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.gk-picks__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--gk-line);
  transition: opacity .15s;
}
.gk-picks__img--no-thumb { background-color: var(--gk-bg2); }
.gk-picks__card:hover .gk-picks__img { opacity: .88; }

/* 価格オーバーレイ */
.gk-picks__price {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.52);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  padding: .18em 0;
  letter-spacing: .01em;
}

/* 割引バッジ */
.gk-picks__disc {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gk-red);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: .1em .35em;
  border-radius: 3px;
  letter-spacing: .02em;
}

.gk-picks__title {
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.4;
  margin: .35rem 0 0;
  color: var(--gk-ink2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── サイドバーウィジェット ────────────────── */
.gk-sw-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gk-sw-item {
  display: flex;
  align-items: flex-start;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--gk-line);
  position: relative;
}
.gk-sw-item:last-child { border-bottom: none; }

.gk-sw-link {
  display: flex;
  gap: .6rem;
  text-decoration: none !important;
  color: var(--gk-ink) !important;
  flex: 1;
  min-width: 0;
}
.gk-sw-link:hover .gk-sw-title { color: var(--gk-red); }

.gk-sw-thumb-wrap {
  position: relative;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
}

.gk-sw-thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--gk-line);
  display: block;
}
.gk-sw-thumb--none {
  display: grid;
  place-items: center;
  border: 1px solid #E5E7EB;
  background: linear-gradient(145deg, #F8FAFC 0%, #FFFFFF 100%);
}
.gk-sw-thumb--none em {
  display: inline-flex;
  max-width: 52px;
  border-radius: 999px;
  background: #182231;
  color: #fff;
  padding: .12rem .32rem;
  font-size: .55rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gk-sw-thumb--amazon {
  border-color: #FCD34D;
  background: linear-gradient(145deg, #FFFBEB 0%, #FFFFFF 78%);
}
.gk-sw-thumb--amazon em {
  background: #232F3E;
}
.gk-sw-thumb--rakuten em {
  background: #BF0000;
}

/* ランクオーバーレイ */
.gk-sw-rank {
  position: absolute;
  top: 0; left: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  color: #fff;
  border-radius: 4px 0 4px 0;
  background: var(--gk-muted);
  line-height: 1;
}
.gk-sw-rank--1 { background: #B8860B; }
.gk-sw-rank--2 { background: #888; }
.gk-sw-rank--3 { background: #9C6B3A; }

.gk-sw-body {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}

.gk-sw-title {
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gk-ink);
}

.gk-sw-price {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gk-red);
}

/* ── 投稿一覧カード 価格オーバーレイ ──────── */
.entry-card-thumb { position: relative !important; overflow: hidden !important; }

.gk-card-price {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  padding: .22em 0;
  z-index: 2;
  pointer-events: none;
  letter-spacing: .01em;
}

.gk-card-postage {
  position: absolute;
  top: 6px; right: 6px;
  font-size: .66rem;
  font-weight: 700;
  padding: .18em .5em;
  border-radius: 3px;
  z-index: 3;
  pointer-events: none;
  line-height: 1.4;
  white-space: nowrap;
}
.gk-card-postage--free {
  background: #067D62;
  color: #fff;
}
.gk-card-postage--paid {
  background: rgba(80,80,80,.72);
  color: #fff;
}

.gk-card-source {
  position: absolute;
  right: 6px;
  bottom: 26px;
  z-index: 4;
  padding: .18em .5em;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.25;
  pointer-events: none;
  white-space: nowrap;
}

.gk-source-badge,
.gk-rank__source,
.gk-picks__source {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.gk-source-badge--amazon,
.gk-rank__source--amazon,
.gk-picks__source--amazon,
.gk-card-source--amazon,
.gk-card-fact--source-amazon {
  background: #232F3E !important;
  color: #fff !important;
}

.gk-source-badge--rakuten,
.gk-rank__source--rakuten,
.gk-picks__source--rakuten,
.gk-card-source--rakuten,
.gk-card-fact--source-rakuten {
  background: #BF0000 !important;
  color: #fff !important;
}

.gk-source-badge--yahoo,
.gk-rank__source--yahoo,
.gk-picks__source--yahoo,
.gk-card-source--yahoo,
.gk-card-fact--source-yahoo {
  background: #E60012 !important;
  color: #fff !important;
}

.gk-source-badge--shop,
.gk-rank__source--shop,
.gk-picks__source--shop,
.gk-card-source--shop,
.gk-card-fact--source-shop {
  background: #374151 !important;
  color: #fff !important;
}

/* ── 記事一覧 snippet → 価格推移 ────────────── */
.entry-card-snippet {
  min-height: 1.8rem;
  display: flex !important;
  align-items: center;
  padding: .3rem .4rem !important;
  font-size: .78rem !important;
  line-height: 1.4 !important;
  color: var(--gk-muted) !important;
  overflow: hidden;
}

.gk-ph-wrap {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.gk-ph-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: .1em .45em;
  border-radius: 3px;
  white-space: nowrap;
}
.gk-ph-badge--low {
  background: #067D62;
  color: #fff;
}
.gk-ph-badge--off {
  background: #DC2626;
  color: #fff;
}

.gk-ph-range {
  color: var(--gk-muted);
  font-size: .72rem;
}

/* ── モーション無効 ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* Cocoon border-element 上書き */
.border-element { border: none !important; box-shadow: none !important; }

/* picks内の送料バッジ: 左上配置(disc=右上と干渉しない) */
.gk-picks__img-wrap .gk-card-postage {
  top: 4px;
  right: auto;
  left: 4px;
  font-size: .58rem;
  padding: .12em .35em;
}

.gk-picks__source {
  position: absolute;
  top: 24px;
  right: 4px;
  z-index: 5;
  padding: .12em .42em;
  font-size: .56rem;
  pointer-events: none;
}

/* サイドバーサムネの送料バッジ: 下部帯に配置 */
.gk-sw-thumb-wrap .gk-card-postage {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 0;
  font-size: .6rem;
  padding: .1em 0;
}

/* ══════════════════════════════════════════════
   ヘッダー・ナビ リデザイン v2
══════════════════════════════════════════════ */

/* 上部シマーライン */
#header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #DC2626, #F97316, #FBBF24, #DC2626);
  background-size: 300% 100%;
  animation: gk-shimmer 3s linear infinite;
}
@keyframes gk-shimmer {
  0%   { background-position: 0%   50%; }
  100% { background-position: 300% 50%; }
}

/* サイト名 */
.site-name-text,
#site-title a {
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  letter-spacing: -.05em !important;
}
.gk-brand-accent { color: #DC2626; }

/* DEAL バッジ */
#site-name::after,
#site-header::after {
  content: 'DEAL';
  font-size: .55rem;
  font-weight: 800;
  color: #fff;
  background: #DC2626;
  padding: .22em .6em;
  border-radius: 4px;
  letter-spacing: .1em;
  vertical-align: middle;
  margin-left: .55em;
  display: inline-block;
  animation: gk-badge-pulse 2s ease-in-out infinite;
}
@keyframes gk-badge-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .65; }
}

/* タグライン */
.tagline, #tagline {
  font-size: .8rem !important;
  letter-spacing: .01em !important;
}

/* ── ナビ: ダーク統一 ─────────────────────── */
#navi {
  background: #1F2937 !important;
  border-bottom: none !important;
}
#navi .navi-in > ul > li > a {
  color: rgba(255,255,255,.78) !important;
  font-size: .84rem !important;
  font-weight: 600 !important;
  padding: .7rem 1rem !important;
  border-bottom: 2px solid transparent !important;
  transition: color .15s, border-color .15s !important;
}
/* nth-child 個別カラーを白に統一 */
#navi .navi-in > ul > li:nth-child(1) > a,
#navi .navi-in > ul > li:nth-child(2) > a,
#navi .navi-in > ul > li:nth-child(3) > a,
#navi .navi-in > ul > li:nth-child(4) > a,
#navi .navi-in > ul > li:nth-child(5) > a,
#navi .navi-in > ul > li:nth-child(6) > a,
#navi .navi-in > ul > li:nth-child(7) > a { color: rgba(255,255,255,.78) !important; }
/* hover / current: 白 + 赤アンダーライン */
#navi .navi-in > ul > li:nth-child(1) > a:hover,
#navi .navi-in > ul > li:nth-child(1).current-menu-item > a,
#navi .navi-in > ul > li:nth-child(2) > a:hover,
#navi .navi-in > ul > li:nth-child(2).current-menu-item > a,
#navi .navi-in > ul > li:nth-child(3) > a:hover,
#navi .navi-in > ul > li:nth-child(3).current-menu-item > a,
#navi .navi-in > ul > li:nth-child(4) > a:hover,
#navi .navi-in > ul > li:nth-child(4).current-menu-item > a,
#navi .navi-in > ul > li:nth-child(5) > a:hover,
#navi .navi-in > ul > li:nth-child(5).current-menu-item > a,
#navi .navi-in > ul > li:nth-child(6) > a:hover,
#navi .navi-in > ul > li:nth-child(6).current-menu-item > a {
  color: #fff !important;
  border-bottom-color: #DC2626 !important;
}

@media (prefers-reduced-motion: reduce) {
  #header::before { animation: none; }
  #site-name::after, #site-header::after { animation: none; }
}

/* ══════════════════════════════════════════════
   ロゴ画像 + ヘッダークリーンアップ v3
══════════════════════════════════════════════ */

/* シマーライン・DEALバッジを無効化 */
#header::before { display: none !important; }
#site-name::after,
#site-header::after { display: none !important; }
@keyframes gk-shimmer {}
@keyframes gk-badge-pulse {}

/* テキストをSVGロゴに差し替え */
.site-name-text a,
#site-title a {
  display: block !important;
  width: 210px !important;
  height: 56px !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  font-size: 0 !important;
  background: url('/wp-content/themes/gekiyasu-cocoon-child/assets/logo.svg') no-repeat left center !important;
  background-size: contain !important;
}

/* タグラインは非表示 */
.tagline, #tagline { display: none !important; }

/* ヘッダー高さを適切に */
#header-in { padding: .6rem 0 !important; min-height: 68px !important; display: flex !important; align-items: center !important; }

/* タグライン再表示 */
.tagline, #tagline {
  display: block !important;
  font-size: .78rem !important;
  color: #6B7280 !important;
  letter-spacing: .01em !important;
  margin-top: .2rem !important;
}


/* ── SNS シェア・フォローボタン ブランドカラー強制 ──────────────── */
.x-corp-button,
.twitter-button         { background:#000 !important; color:#fff !important; }
.facebook-button        { background:#1877f2 !important; color:#fff !important; }
.hatebu-button          { background:#00a4de !important; color:#fff !important; }
.line-button            { background:#06c755 !important; color:#fff !important; }
.pinterest-button       { background:#e60023 !important; color:#fff !important; }
.pocket-button          { background:#ef3f56 !important; color:#fff !important; }
.copy-button            { background:#6c757d !important; color:#fff !important; }

.sns-button             { border-radius:6px !important; opacity:1 !important; }
.sns-button:hover       { opacity:.85 !important; filter:none !important; }

/* フォローボタン */
.follow-button.bluesky-button  { background:#0085ff !important; color:#fff !important; }
.follow-button.feedly-button   { background:#2bb24c !important; color:#fff !important; }
.follow-button.rss-button      { background:#f26522 !important; color:#fff !important; }


/* ── タグ・カテゴリバッジ ─────────────────────────────── */
.tag-link,
.cat-link {
    background: #777 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 0.82rem !important;
}
.tag-link:hover,
.cat-link:hover {
    background: #555 !important;
    color: #fff !important;
}
/* カテゴリは赤系 */
.cat-link {
    background: #c00 !important;
    color: #fff !important;
}

/* ── X(Twitter) ボタンを純黒に ───────────────────────── */
.x-corp-button,
.twitter-button {
    background: #000 !important;
}

/* ── 単体記事: 今買いチェックストリップ ───────────────────── */
.gk-buy-now {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 1rem;
  align-items: stretch;
  border: 2px solid #DC2626;
  border-radius: 8px;
  background: #FFF7F7;
  padding: .95rem;
  margin: 1rem 0 .8rem;
  box-shadow: 0 6px 18px rgba(220,38,38,.10);
}
.gk-buy-now--raised {
  margin: .85rem 0 1rem;
}
.single .gk-buy-now--raised {
  grid-template-columns: minmax(0, 1fr) minmax(176px, 220px);
}
.gk-buy-now--s {
  border-color: #D97706;
  background: #FFFBEB;
  box-shadow: 0 6px 18px rgba(217,119,6,.14);
}
.gk-buy-now--b {
  border-color: #F59E0B;
  background: #FFFBEB;
}
.gk-buy-now__main {
  min-width: 0;
}
.gk-buy-now__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: #DC2626;
  color: #fff;
  padding: .2rem .55rem;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: .45rem;
}
.gk-buy-now--s .gk-buy-now__label,
.gk-buy-now--b .gk-buy-now__label {
  background: #D97706;
}
.gk-buy-now__reasonline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin: 0 0 .45rem !important;
  color: #111827 !important;
  font-size: .86rem !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
}
.gk-buy-now__reasonline span {
  border-radius: 4px;
  background: #F3F4F6;
  color: #4B5563;
  padding: .12rem .34rem;
  font-size: .7rem;
  line-height: 1.2;
}
.gk-buy-now strong {
  display: block;
  color: #111827;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.35;
}
.gk-buy-now p {
  margin: .4rem 0 0;
  color: #374151;
  font-size: .92rem;
  line-height: 1.65;
  font-weight: 700;
}
.gk-buy-now__verdict {
  color: #111827 !important;
  font-size: .96rem !important;
  font-weight: 900 !important;
  line-height: 1.55 !important;
}
.gk-buy-now__side {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: stretch;
  justify-content: center;
}
.gk-buy-now__score {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: .08rem .28rem;
  color: #DC2626;
  font-weight: 900;
}
.gk-buy-now--s .gk-buy-now__score,
.gk-buy-now--b .gk-buy-now__score {
  color: #B45309;
}
.gk-buy-now__score span {
  font-size: 2rem;
  line-height: 1;
}
.gk-buy-now__score small {
  color: #6B7280;
  font-weight: 800;
}
.gk-score-meaning {
  align-self: center;
  border-radius: 999px;
  padding: .14rem .42rem;
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}
.gk-score-meaning--buy {
  background: #FEE2E2;
  color: #B91C1C;
}
.gk-score-meaning--consider {
  background: #FEF3C7;
  color: #92400E;
}
.gk-score-meaning--skip {
  background: #F3F4F6;
  color: #4B5563;
}
.gk-buy-now__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
}
.gk-buy-now__facts span {
  border-radius: 4px;
  background: #fff;
  color: #111827;
  padding: .22rem .42rem;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: inset 0 0 0 1px #F3F4F6;
}
.gk-buy-now__facts .gk-buy-now__fact--free {
  background: #ECFDF5;
  color: #047857;
  box-shadow: inset 0 0 0 1px #A7F3D0;
}
.gk-buy-now__facts .gk-buy-now__fact--warn {
  background: #FFF7ED;
  color: #9A3412;
  box-shadow: inset 0 0 0 1px #FED7AA;
}
.gk-buy-now__facts .gk-buy-now__fact--muted {
  background: #F8FAFC;
  color: #64748B;
}
.gk-buy-now__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  min-width: 0;
  padding: .74rem 1rem;
  border-radius: 6px;
  background: #DC2626 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(220,38,38,.18);
}
.gk-buy-now__cta:hover {
  filter: brightness(.96);
  color: #fff !important;
}
.gk-buy-now__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  max-width: 100%;
  border: 1px solid #BFDBFE;
  border-radius: 6px;
  background: #EFF6FF;
  color: #1D4ED8;
  padding: .55rem .82rem;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}
.gk-buy-now__share:hover,
.gk-buy-now__share:focus-visible {
  background: #DBEAFE;
  outline: none;
}
.gk-buy-now__share-note {
  display: block;
  color: #4B5563;
  font-size: .68rem;
  font-weight: 800;
}

/* ── フォローボタン: 著者サイトボタンを非表示、Blueskyボタンを追加 ─── */
.gk-deal-check {
  width: min(920px, calc(100% - 28px));
  margin: 28px auto 56px;
  padding: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,24,39,.08);
}
.gk-deal-check__eyebrow {
  margin: 0 0 .4rem;
  color: #DC2626;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
}
.gk-deal-check h1 {
  margin: 0 0 .75rem;
  color: #111827;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: 0;
}
.gk-deal-check__lead,
.gk-deal-check__note {
  color: #4B5563;
  line-height: 1.75;
}
.gk-deal-check__image {
  width: min(360px, 100%);
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 18px auto;
  border-radius: 6px;
  background: #F9FAFB;
}
.gk-deal-check__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.gk-deal-check__facts div {
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #F9FAFB;
}
.gk-deal-check__facts dt {
  margin: 0 0 4px;
  color: #6B7280;
  font-size: .78rem;
  font-weight: 800;
}
.gk-deal-check__facts dd {
  margin: 0;
  color: #111827;
  font-weight: 900;
  line-height: 1.45;
}
.gk-deal-check__review {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #FECACA;
  border-radius: 6px;
  background: #FFF7F7;
}
.gk-deal-check__review p {
  margin: 0;
  color: #111827;
  line-height: 1.65;
  font-weight: 800;
}
.gk-deal-check__review span {
  display: inline-flex;
  margin-right: 8px;
  border-radius: 4px;
  background: #fff;
  color: #B91C1C;
  padding: .12rem .36rem;
  font-size: .72rem;
  font-weight: 900;
}
.gk-deal-check__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.gk-deal-check__cta,
.gk-deal-check__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none !important;
}
.gk-deal-check__cta {
  background: #DC2626;
  color: #fff !important;
}
.gk-deal-check__back {
  background: #F3F4F6;
  color: #111827 !important;
}
@media (max-width: 640px) {
  .gk-deal-check {
    padding: 18px;
  }
  .gk-deal-check__facts {
    grid-template-columns: 1fr;
  }
  .gk-deal-check__cta,
  .gk-deal-check__back {
    width: 100%;
  }
}

.website-button { display: none !important; }

/* Bluesky フォローボタン（functions.php で追加） */
.bluesky-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0085ff !important;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0 3px;
}
.bluesky-follow-btn:hover { background: #006acc !important; }
.bluesky-follow-btn svg { width: 22px; height: 22px; fill: #fff; }

/* ── 買い前カード ───────────────────────── */
.deal-judge {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  margin: 1rem 0 1.4rem;
  box-shadow: 0 1px 8px rgba(17,24,39,.06);
}
.deal-judge--a { border-color: #DC2626; }
.deal-judge--b { border-color: #F59E0B; }
.deal-judge--s {
  border-color: #EAB308;
  box-shadow: 0 0 0 1px rgba(234,179,8,.2), 0 8px 24px rgba(120,53,15,.12);
}
.deal-judge--s .deal-judge__eyebrow,
.deal-judge--s .deal-judge__grade span,
.deal-judge--s .deal-judge__score {
  color: #B45309;
}
.deal-judge__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFF7F7 0%, #fff 55%);
  padding: .75rem .85rem;
  margin-bottom: .8rem;
}
.deal-judge__eyebrow {
  margin: 0 0 .25rem;
  color: #6B7280;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.deal-judge__grade {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  width: fit-content;
  margin: 0;
  border: 1px solid #FECACA;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  padding: .44rem .6rem;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(220,38,38,.08);
}
.deal-judge__grade::before {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  color: #111827;
  font-size: 1.34rem;
  line-height: 1;
}
.deal-judge--s .deal-judge__grade::before { content: '今の激推し'; }
.deal-judge--a .deal-judge__grade::before { content: 'かなりアリ'; }
.deal-judge--b .deal-judge__grade::before { content: '条件が合えばアリ'; }
.deal-judge--c .deal-judge__grade::before { content: '比較用'; }
.deal-judge--d .deal-judge__grade::before { content: '見送り寄り'; }
.deal-judge--a .deal-judge__grade::before,
.deal-judge--s .deal-judge__grade::before {
  color: #DC2626;
}
.deal-judge--b .deal-judge__grade {
  border-color: #FCD34D;
  box-shadow: 0 4px 12px rgba(217,119,6,.08);
}
.deal-judge--b .deal-judge__grade::before { color: #B45309; }
.deal-judge--c .deal-judge__grade,
.deal-judge--d .deal-judge__grade {
  border-color: #E5E7EB;
  box-shadow: none;
}
.deal-judge--c .deal-judge__grade::before,
.deal-judge--d .deal-judge__grade::before { color: #374151; }
.deal-judge--s .deal-judge__grade {
  border-color: #FBBF24;
  background: #FFFBEB;
  box-shadow: 0 4px 14px rgba(217,119,6,.12);
}
.deal-judge__grade span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #DC2626;
  color: #fff;
  box-shadow: 0 2px 8px rgba(220,38,38,.14);
  padding: .26rem .55rem;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}
.deal-judge--s .deal-judge__grade span,
.deal-judge--b .deal-judge__grade span {
  background: #D97706;
}
.deal-judge--c .deal-judge__grade span,
.deal-judge--d .deal-judge__grade span {
  background: #6B7280;
}
.deal-judge--a .deal-judge__grade::after {
  content: '在庫・価格を確認';
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: #FEF2F2;
  color: #DC2626;
  padding: .22rem .42rem;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.deal-judge__reasonline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin: .5rem 0 0;
  color: #111827;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.45;
}
.deal-judge__reasonline span {
  border-radius: 4px;
  background: #F3F4F6;
  color: #4B5563;
  padding: .12rem .34rem;
  font-size: .7rem;
  line-height: 1.2;
}
.deal-judge__score {
  min-width: 88px;
  border-radius: 8px;
  background: #fff;
  padding: .35rem .55rem;
  text-align: center;
  color: #DC2626;
  box-shadow: inset 0 0 0 1px #FEE2E2;
}
.deal-judge__score::before {
  content: '推し度';
  display: block;
  margin-bottom: .15rem;
  color: #6B7280;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1;
}
.deal-judge__score span {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.deal-judge__score small {
  color: #6B7280;
  font-size: .78rem;
}
.deal-judge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem .9rem;
  margin: 0;
}
.deal-judge__row {
  min-width: 0;
  padding: .55rem .65rem;
  background: #F9FAFB;
  border-radius: 6px;
}
.deal-judge__row dt {
  color: #6B7280;
  font-size: .72rem;
  font-weight: 700;
}
.deal-judge__row dd {
  margin: .15rem 0 0;
  color: #111827;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.deal-judge__price {
  color: #DC2626;
  font-size: 1.15rem;
  margin-right: .35rem;
}
.deal-judge__reason {
  margin-top: .85rem;
  padding: .75rem .85rem;
  border-left: 3px solid #DC2626;
  background: #FEF2F2;
}
.deal-judge__reason p {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 800;
  color: #991B1B;
}
.deal-judge__reason .deal-judge__verdict {
  margin: 0 0 .45rem;
  color: #111827;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.55;
}
.deal-judge__reason ul,
.deal-notes__list {
  margin: 0;
  padding-left: 1.2rem;
}
.deal-judge__reason li,
.deal-notes__list li {
  margin: .25rem 0;
  line-height: 1.65;
}
.deal-judge__cta {
  display: block !important;
  margin-top: .9rem;
  max-width: 100%;
  min-width: 0;
  padding: .8rem 1rem;
  border-radius: 6px;
  background: #DC2626 !important;
  color: #fff !important;
  text-align: center;
  font-weight: 800;
  text-decoration: none !important;
}
.gk-expired-deal {
  margin: 0 0 1rem;
  border: 1px solid #FED7AA;
  border-left: 4px solid #D97706;
  border-radius: 8px;
  background: #FFFBEB;
  padding: .85rem .95rem;
  color: #374151;
}
.gk-expired-deal__label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #F59E0B;
  color: #fff;
  padding: .16rem .48rem;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.gk-expired-deal strong {
  display: block;
  color: #111827;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}
.gk-expired-deal p {
  margin: .35rem 0 .65rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.65;
}
.gk-expired-deal__links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.gk-expired-deal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 6px;
  background: #fff;
  color: #B45309 !important;
  box-shadow: inset 0 0 0 1px #FCD34D;
  padding: .42rem .68rem;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
}
.gk-expired-deal__link:hover {
  background: #FEF3C7;
}
.gk-compare-deal {
  margin: 0 0 1rem;
  border: 1px solid #BFDBFE;
  border-left: 4px solid #2563EB;
  border-radius: 8px;
  background: #EFF6FF;
  padding: .85rem .95rem;
  color: #1F2937;
}
.gk-compare-deal__label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #2563EB;
  color: #fff;
  padding: .16rem .48rem;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.gk-compare-deal strong {
  display: block;
  color: #111827;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}
.gk-compare-deal p {
  margin: .35rem 0 .65rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.65;
}
.gk-compare-deal__links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.gk-compare-deal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 6px;
  background: #fff;
  color: #1D4ED8 !important;
  box-shadow: inset 0 0 0 1px #93C5FD;
  padding: .42rem .68rem;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
}
.gk-compare-deal__link:hover {
  background: #DBEAFE;
}
.gk-alt-deals {
  margin: .72rem 0 .7rem;
}
.gk-alt-deals__heading {
  display: block;
  margin-bottom: .42rem;
  color: #111827;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.35;
}
.gk-alt-deals__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .48rem;
}
.gk-alt-deals__item {
  display: grid;
  min-width: 0;
  gap: .28rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, .45);
  padding: .56rem .62rem;
  color: #111827 !important;
  text-decoration: none !important;
}
.gk-alt-deals__item:hover {
  background: #fff;
}
.gk-alt-deals__grade {
  width: fit-content;
  border-radius: 999px;
  background: #2563EB;
  color: #fff;
  padding: .12rem .4rem;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.2;
}
.gk-alt-deals__grade--s {
  background: #DC2626;
}
.gk-alt-deals__item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .84rem;
  line-height: 1.45;
}
.gk-alt-deals__item small {
  color: #475569;
  font-size: .73rem;
  font-weight: 800;
  line-height: 1.45;
}
.gk-affiliate-disclosure {
  margin: 1.5rem 0 1rem;
  border-left: 3px solid #CBD5E1;
  border-radius: 6px;
  background: #F8FAFC;
  color: #475569;
  padding: .7rem .85rem;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.75;
}
@media (max-width: 720px) {
  .gk-alt-deals__list {
    grid-template-columns: 1fr;
  }
}
.gk-score-breakdown {
  margin: -0.6rem 0 1.35rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  padding: .75rem .85rem;
  box-shadow: 0 1px 8px rgba(17,24,39,.04);
}
.gk-score-breakdown summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  cursor: pointer;
  list-style: none;
  color: #111827;
  font-weight: 900;
}
.gk-score-breakdown summary::-webkit-details-marker {
  display: none;
}
.gk-score-breakdown summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  font-family: var(--gk-f-num);
  font-size: .9rem;
  font-weight: 900;
}
.gk-score-breakdown[open] summary::after {
  content: '-';
}
.gk-score-breakdown summary small {
  color: #6B7280;
  font-size: .72rem;
  font-weight: 700;
  text-align: right;
}
.gk-score-breakdown__list {
  display: grid;
  gap: .5rem;
  margin-top: .75rem;
}
.gk-score-breakdown__row {
  display: grid;
  grid-template-columns: minmax(92px, 132px) minmax(0, 1fr) 3.1rem;
  gap: .55rem;
  align-items: center;
  color: #111827;
  font-size: .78rem;
  font-weight: 800;
  border-left: 3px solid #E5E7EB;
  padding-left: .55rem;
}
.gk-score-breakdown__row--strong {
  border-left-color: #059669;
}
.gk-score-breakdown__row--medium {
  border-left-color: #D97706;
}
.gk-score-breakdown__row--light {
  border-left-color: #CBD5E1;
}
.gk-score-breakdown__row--negative {
  border-left-color: #6B7280;
}
.gk-score-breakdown__label {
  color: #374151;
  overflow-wrap: anywhere;
}
.gk-score-breakdown__bar {
  height: 7px;
  border-radius: 999px;
  background: #F3F4F6;
  overflow: hidden;
}
.gk-score-breakdown__bar span {
  display: block;
  width: var(--gk-score-width, 0%);
  height: 100%;
  border-radius: inherit;
  background: #DC2626;
}
.gk-score-breakdown__row--negative .gk-score-breakdown__bar span {
  background: #6B7280;
}
.gk-score-breakdown__value {
  font-family: var(--gk-f-num);
  text-align: right;
  color: #DC2626;
}
.gk-score-breakdown__row--negative .gk-score-breakdown__value {
  color: #6B7280;
}
.gk-score-breakdown__note {
  margin: .7rem 0 0;
  color: #6B7280;
  font-size: .72rem;
  line-height: 1.65;
}
.deal-notes {
  margin: 1.2rem 0;
  padding: .9rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}
.deal-notes h2 {
  margin-top: 0 !important;
}
.deal-notes__caution {
  margin: .75rem 0 0;
  color: #92400E;
}
.deal-source-detail {
  margin: 1.1rem 0 1.4rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
}
.deal-source-detail summary {
  cursor: pointer;
  padding: .85rem 1rem;
  color: #111827;
  font-size: .92rem;
  font-weight: 900;
  list-style-position: inside;
}
.deal-source-detail__body {
  padding: 0 1rem 1rem;
  border-top: 1px solid #E5E7EB;
}
.deal-source-detail__body p {
  color: #4B5563 !important;
  font-size: .92rem !important;
}

/* ── 買いランキング ───────────────────────── */
.gk-rank {
  margin: 1.4rem 0 2rem;
}
.gk-rank__heading {
  margin: 0 0 .75rem !important;
  font-size: 1rem !important;
  border: none !important;
  padding: 0 !important;
}
.gk-rank__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .8rem;
}
.gk-rank__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  background: #fff !important;
  color: #111827 !important;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(17,24,39,.04);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.gk-rank__card:hover {
  border-color: #FCA5A5;
  box-shadow: 0 6px 16px rgba(17,24,39,.08);
  transform: translateY(-1px);
}
.gk-rank__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #F9FAFB;
  border-bottom: 1px solid #F3F4F6;
}
.gk-rank__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .25rem;
}
.gk-rank__fallback {
  position: absolute;
  inset: .55rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .28rem;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: linear-gradient(145deg, #F8FAFC 0%, #FFFFFF 100%);
  color: #111827;
  text-align: center;
}
.gk-rank__fallback em {
  display: inline-flex;
  border-radius: 999px;
  background: #182231;
  color: #fff;
  padding: .16rem .46rem;
  font-size: .64rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}
.gk-rank__fallback strong {
  color: #111827;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.2;
}
.gk-rank__fallback--amazon {
  border-color: #FCD34D;
  background: linear-gradient(145deg, #FFFBEB 0%, #FFFFFF 78%);
}
.gk-rank__fallback--amazon em {
  background: #232F3E;
}
.gk-rank__fallback--rakuten em {
  background: #BF0000;
}
.gk-rank__rank,
.gk-rank__grade {
  position: absolute;
  z-index: 2;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
}
.gk-rank__rank {
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: #fff;
}
.gk-rank__grade {
  right: 6px;
  bottom: 6px;
  padding: .35rem .45rem;
  border-radius: 4px;
  background: #DC2626;
  color: #fff;
}
.gk-rank__grade--s {
  background: #111827;
  color: #FDE68A;
  box-shadow: 0 0 0 1px rgba(253,230,138,.6) inset;
}
.gk-rank__grade--b { background: #D97706; }
.gk-rank__grade--c { background: #4B5563; }
.gk-rank__body {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .65rem;
}

.gk-rank__source {
  padding: .16rem .48rem;
  font-size: .64rem;
}

.gk-rank__title {
  min-height: 3.1em;
  color: #111827;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gk-rank__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  margin-top: auto;
}
.gk-rank__facts strong {
  color: #DC2626;
  font-size: .9rem;
}
.gk-rank__facts em {
  padding: .12rem .35rem;
  border-radius: 4px;
  background: #F3F4F6;
  color: #374151;
  font-size: .68rem;
  font-style: normal;
  font-weight: 700;
}
.gk-rank__facts em.gk-rank__fact--deal {
  order: -1;
  background: #FEF2F2;
  color: #B91C1C;
  font-size: .7rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #FECACA;
}
.gk-rank__facts em.gk-rank__fact--free {
  background: #ECFDF5;
  color: #047857;
}
.gk-rank__facts em.gk-rank__fact--unit {
  background: #F8FAFC;
  color: #1F2937;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #E5E7EB;
}
.gk-rank__facts em.gk-rank__fact--coupon {
  background: #FEF3C7;
  color: #92400E;
}
.gk-rank__why {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #111827;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.35;
}
.gk-rank__score,
.gk-picks__score {
  color: #6B7280;
  font-size: .68rem;
  font-weight: 700;
}
.gk-price-spark {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 7px;
  background: #F9FAFB;
  color: #374151;
  padding: .16rem .42rem .16rem .24rem;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1;
}
.gk-price-spark svg {
  flex: 0 0 74px;
  width: 74px;
  height: 24px;
}
.gk-price-spark polyline {
  fill: none;
  stroke: #4B5563;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gk-price-spark--low {
  border-color: #FCA5A5;
  background: #FEF2F2;
  color: #B91C1C;
}
.gk-price-spark--low polyline {
  stroke: #DC2626;
}
.gk-price-spark--off {
  border-color: #FCD34D;
  background: #FFFBEB;
  color: #92400E;
}
.gk-price-spark--off polyline {
  stroke: #D97706;
}
.gk-rank__memo {
  align-self: flex-start;
  min-height: 28px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  padding: .22rem .58rem;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}
.gk-rank__memo:hover,
.gk-rank__memo:focus-visible {
  border-color: #DC2626;
  color: #B91C1C;
  outline: none;
}
.gk-rank__memo.is-saved {
  border-color: #111827;
  background: #111827;
  color: #fff;
}
.gk-picks__grade {
  position: absolute;
  right: 4px;
  bottom: 22px;
  padding: .15rem .35rem;
  border-radius: 3px;
  background: #DC2626;
  color: #fff;
  font-size: .58rem;
  font-weight: 900;
  z-index: 4;
}
.gk-picks__grade--s {
  background: #111827;
  color: #FDE68A;
}
.gk-picks__grade--b { background: #D97706; }
.gk-picks__grade--c { background: #4B5563; }

@media (max-width: 640px) {
  .gk-buy-now {
    grid-template-columns: 1fr;
    padding: .85rem;
  }
  .single .gk-buy-now--raised {
    grid-template-columns: 1fr;
    margin: .75rem 0 .85rem;
  }
  .gk-buy-now strong {
    font-size: 1.12rem;
  }
  .gk-buy-now__side {
    align-items: stretch;
  }
  .gk-buy-now__facts {
    justify-content: flex-start;
  }
  .deal-judge__grid {
    grid-template-columns: 1fr;
  }
  .deal-judge__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .deal-judge__score {
    align-self: stretch;
  }
  .gk-score-breakdown summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .gk-score-breakdown summary::after {
    position: absolute;
    right: .85rem;
  }
  .gk-score-breakdown__row {
    grid-template-columns: 5.2rem minmax(0, 1fr) 2.7rem;
    gap: .45rem;
  }
  .gk-rank__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ══════════════════════════════════════════════
   トップダッシュボード / 一覧カード改善
══════════════════════════════════════════════ */
.site-name-text,
#site-title a,
h1,h2,h3,h4,h5,h6 {
  letter-spacing: 0 !important;
}

.gk-dashboard {
  margin: .6rem 0 1.6rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
}

.gk-dashboard__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(248px, .55fr);
  gap: 1.05rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E5E7EB;
}

.gk-dashboard--empty .gk-dashboard__head {
  grid-template-columns: minmax(0, 1fr);
}

.gk-dashboard--empty .gk-dashboard__copy {
  max-width: 760px;
}

.gk-dashboard__eyebrow {
  margin: 0 0 .25rem;
  color: #DC2626;
  font-size: .72rem;
  font-weight: 900;
}

.gk-dashboard__copy h1 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: #111827 !important;
  font-size: clamp(1.45rem, 3vw, 2rem) !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
}

.gk-dashboard__motto {
  margin: .45rem 0 0;
  color: #374151;
  font-size: .94rem;
  line-height: 1.65;
  font-weight: 800;
}

.gk-dashboard__lead {
  margin: .35rem 0 0;
  color: #4B5563;
  font-size: .88rem;
  line-height: 1.6;
}

.gk-dashboard__stale-note {
  margin: 0 0 .9rem;
  padding: .75rem .9rem;
  border: 1px solid #F59E0B;
  border-radius: 8px;
  background: #FFFBEB;
  color: #78350F;
  font-size: .88rem;
  line-height: 1.55;
}

.gk-dashboard__compare {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
}

.gk-dashboard__compare span {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: .28rem .62rem;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.gk-dashboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  margin-top: .95rem;
}

.gk-dashboard__primary,
.gk-alert-lane {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  padding: .42rem .72rem;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
}

.gk-dashboard__primary {
  background: #182231 !important;
  color: #fff !important;
}

.gk-dashboard__side {
  display: grid;
  gap: .65rem;
}

.gk-dashboard__visual {
  position: relative;
  overflow: hidden;
  min-height: 182px;
  margin: 0;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17,24,39,.08);
}

.gk-dashboard__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gk-dashboard__visual figcaption {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  display: grid;
  gap: .12rem;
  padding: .58rem .68rem;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 24px rgba(17,24,39,.10);
  backdrop-filter: blur(10px);
}

.gk-dashboard__visual strong {
  color: #111827;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-dashboard__visual span {
  color: #475569;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.45;
}

.gk-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  width: 100%;
  padding: .65rem;
  border: 1px solid #EEF2F7;
  border-radius: 8px;
  background: #fff;
}

.gk-dashboard__stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}

.gk-dashboard__quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  margin: 1rem 0 0;
}

.gk-dashboard__quick-card {
  display: grid;
  gap: .18rem;
  min-height: 92px;
  padding: .75rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff !important;
  color: #111827 !important;
  text-decoration: none !important;
  text-align: left;
  box-shadow: 0 1px 2px rgba(17,24,39,.03);
}

button.gk-dashboard__quick-card {
  cursor: pointer;
  font-family: inherit;
}

.gk-dashboard__quick-card span {
  width: fit-content;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  padding: .15rem .46rem;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-dashboard__quick-card strong {
  color: #111827;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-dashboard__quick-card small {
  color: #6B7280;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
}

.gk-dashboard__quick-card--main {
  border-color: #FCA5A5;
  background: linear-gradient(145deg, #FFF7F7 0%, #FFFFFF 72%) !important;
}

.gk-dashboard__quick-card--main span {
  background: #DC2626;
  color: #fff;
}

.gk-dashboard__quick-card--amazon {
  border-color: #FCD34D;
  background: linear-gradient(145deg, #FFFBEB 0%, #FFFFFF 72%) !important;
}

.gk-dashboard__quick-card--amazon span {
  background: #232F3E;
  color: #fff;
}

.gk-dashboard__quick-card--share {
  border-color: #BFDBFE;
  background: linear-gradient(145deg, #EFF6FF 0%, #FFFFFF 72%) !important;
}

.gk-dashboard__quick-card--share span {
  background: #2563EB;
  color: #fff;
}

.gk-fast-cta {
  display: grid;
  grid-template-columns: minmax(150px, .22fr) minmax(0, 1fr);
  gap: .75rem;
  align-items: stretch;
  margin: .85rem 0 0;
  padding: .75rem;
  border: 1px solid #FCA5A5;
  border-radius: 8px;
  background: #FFF7ED;
}

.gk-fast-cta__head {
  display: grid;
  align-content: center;
  gap: .18rem;
  min-width: 0;
}

.gk-fast-cta__head span {
  width: fit-content;
  padding: .16rem .48rem;
  border-radius: 999px;
  background: #DC2626;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
}

.gk-fast-cta__head strong {
  color: #111827;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.25;
}

.gk-fast-cta__head small {
  color: #6B7280;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
}

.gk-fast-cta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  min-width: 0;
}

.gk-fast-cta__card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #FED7AA;
  border-radius: 8px;
  background: #fff;
}

.gk-fast-cta__media {
  display: grid;
  place-items: center;
  min-width: 0;
  background: #F9FAFB;
  text-decoration: none !important;
}

.gk-fast-cta__media img {
  width: 64px;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
}

.gk-fast-cta__media--empty span {
  color: #64748B;
  font-size: .68rem;
  font-weight: 900;
}

.gk-fast-cta__body {
  display: grid;
  align-content: start;
  gap: .34rem;
  min-width: 0;
  padding: .55rem;
}

.gk-fast-cta__title {
  display: -webkit-box;
  min-height: 2.4em;
  overflow: hidden;
  color: #111827 !important;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gk-fast-cta__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .22rem;
  min-width: 0;
}

.gk-fast-cta__facts strong,
.gk-fast-cta__facts em {
  max-width: 100%;
  overflow-wrap: anywhere;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  padding: .12rem .38rem;
  font-size: .66rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
}

.gk-fast-cta__facts strong {
  background: #FEF2F2;
  color: #B91C1C;
}

.gk-fast-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: .08rem;
  padding: .42rem .55rem;
  border-radius: 8px;
  background: #DC2626 !important;
  color: #fff !important;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}

.gk-topic-hubs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: .55rem;
  margin: .8rem 0 0;
  padding: .62rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F8FAFC;
  overflow: visible;
}

.gk-topic-hubs__label {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #64748B;
  font-size: .74rem;
  font-weight: 900;
  white-space: nowrap;
}

.gk-topic-hubs a {
  display: grid;
  gap: .12rem;
  flex: 1 1 132px;
  min-width: 0;
  padding: .55rem .7rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff !important;
  color: #111827 !important;
  text-decoration: none !important;
}

.gk-topic-hubs a:hover,
.gk-topic-hubs a:focus-visible {
  border-color: #DC2626;
  background: #FEF2F2 !important;
}

.gk-topic-hubs strong {
  color: #111827;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
}

.gk-topic-hubs small {
  color: #DC2626;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.25;
}

.gk-growth-guide-links {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: .55rem;
  margin: .7rem 0 0;
  padding: .62rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background: #FFFFFF;
}

.gk-growth-guide-links a {
  display: grid;
  gap: .1rem;
  flex: 1 1 150px;
  min-width: 0;
  padding: .58rem .72rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB !important;
  color: #111827 !important;
  text-decoration: none !important;
}

.gk-growth-guide-links a.is-current,
.gk-growth-guide-links a:hover,
.gk-growth-guide-links a:focus-visible {
  border-color: #0F766E;
  background: #F0FDFA !important;
}

.gk-growth-guide-links span {
  color: #0F172A;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
}

.gk-growth-guide-links small {
  color: #0F766E;
  font-size: .68rem;
  font-weight: 900;
}

.gk-dashboard__stats strong {
  color: #DC2626;
  font-size: .98rem;
  line-height: 1;
  white-space: nowrap;
}

.gk-dashboard__stat--s strong {
  color: #B45309;
}

.gk-dashboard__stat--c strong {
  color: #4B5563;
}

.gk-dashboard__stats em {
  margin-top: .2rem;
  color: #4B5563;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}
.gk-dashboard__stats small {
  margin-top: .08rem;
  color: #6B7280;
  font-size: .62rem;
  font-weight: 800;
  line-height: 1.1;
}

.gk-amazon-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy more"
    "items items";
  gap: .85rem 1rem;
  align-items: stretch;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #FCD34D;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFFBEB 0%, #FFFFFF 70%);
}

.gk-amazon-lane--empty {
  grid-template-columns: minmax(0, 1fr) auto;
}

.gk-amazon-lane__copy {
  grid-area: copy;
  min-width: 0;
}

.gk-amazon-lane__copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .28rem;
  border-radius: 999px;
  background: #232F3E;
  color: #fff;
  padding: .18rem .48rem;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-amazon-lane__copy strong {
  display: block;
  color: #111827;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-amazon-lane__copy p {
  margin: .3rem 0 0;
  color: #6B7280;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.55;
}

.gk-amazon-lane__copy .gk-amazon-lane__notice {
  color: #92400E;
}

.gk-amazon-lane__items {
  grid-area: items;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: .65rem;
}

.gk-amazon-lane__item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: .58rem;
  align-items: stretch;
  min-width: 0;
  min-height: 128px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #fff !important;
  padding: .62rem;
  color: #111827 !important;
  text-decoration: none !important;
}

.gk-amazon-lane__media {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 100%;
  border: 1px solid #F3F4F6;
  border-radius: 6px;
  background: #F8FAFC;
  overflow: hidden;
}

.gk-amazon-lane__media img {
  width: 100%;
  height: 100%;
  max-height: 110px;
  object-fit: contain;
  padding: .22rem;
}

.gk-amazon-lane__image-fallback {
  border-radius: 999px;
  background: #232F3E;
  color: #fff;
  padding: .15rem .42rem;
  font-size: .62rem;
  font-weight: 900;
}

.gk-amazon-lane__body {
  display: grid;
  gap: .28rem;
  min-width: 0;
  align-content: start;
}

.gk-amazon-lane__mark {
  width: fit-content;
  border-radius: 999px;
  background: #232F3E;
  color: #fff;
  padding: .14rem .46rem;
  font-size: .64rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-amazon-lane__grade {
  width: fit-content;
  border-radius: 4px;
  background: #DC2626;
  color: #fff;
  padding: .12rem .35rem;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-amazon-lane__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #111827;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none !important;
}

.gk-amazon-lane__price {
  color: #DC2626;
  font-size: .92rem;
  line-height: 1;
}

.gk-amazon-lane__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .18rem;
  min-width: 0;
}

.gk-amazon-lane__facts em {
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  background: #F9FAFB;
  color: #374151;
  padding: .12rem .28rem;
  font-size: .62rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.gk-amazon-lane__facts .gk-amazon-lane__fact--unit {
  border-color: #BFDBFE;
  background: #EFF6FF;
  color: #1D4ED8;
}

.gk-amazon-lane__facts .gk-amazon-lane__fact--free {
  border-color: #BBF7D0;
  background: #F0FDF4;
  color: #166534;
}

.gk-amazon-lane__facts .gk-amazon-lane__fact--warn {
  border-color: #FED7AA;
  background: #FFF7ED;
  color: #9A3412;
}

.gk-amazon-lane__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  margin-top: .08rem;
  border-radius: 6px;
  background: #FF9900 !important;
  color: #111827 !important;
  padding: .32rem .56rem;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.16);
}

.gk-amazon-lane__more {
  grid-area: more;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 40px;
  border-radius: 6px;
  background: #232F3E !important;
  color: #fff !important;
  padding: .55rem .85rem;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none !important;
  text-align: center;
}

.gk-alert-lane {
  gap: .38rem;
  border: 1px solid #A7F3D0;
  background: #ECFDF5 !important;
  color: #065F46 !important;
}

.gk-alert-lane span {
  display: inline-flex;
  border-radius: 999px;
  background: #047857;
  color: #fff;
  padding: .12rem .4rem;
  font-size: .64rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-alert-lane strong {
  color: #065F46;
  font-size: .78rem;
  font-weight: 900;
}

.gk-alert-lane small {
  color: #047857;
  font-size: .68rem;
  font-weight: 900;
}

.gk-dashboard__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin: .95rem 0 .1rem;
  padding: .65rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}

.gk-dashboard__nav {
  display: flex;
  flex: 1 1 320px;
  gap: .45rem;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.gk-dashboard__nav::-webkit-scrollbar { display: none; }

.gk-dashboard__nav a {
  flex: 0 0 auto;
  padding: .38rem .62rem;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #fff !important;
  color: #374151 !important;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none !important;
}

.gk-dashboard__nav a:hover {
  border-color: #DC2626;
  color: #DC2626 !important;
}

.gk-source-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .36rem;
  flex: 0 0 auto;
  margin: 0;
}

.gk-source-filter span {
  color: #4B5563;
  font-size: .74rem;
  font-weight: 900;
}

.gk-source-filter button {
  min-height: 32px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  padding: .28rem .68rem;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.gk-source-filter button:hover {
  border-color: #DC2626;
  color: #DC2626;
}

.gk-source-filter button.is-active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.gk-source-hidden,
.gk-source-section-empty {
  display: none !important;
}

.gk-dashboard .gk-rank {
  margin: 1rem 0 0;
}

.gk-saved-deals[hidden] {
  display: none !important;
}

.gk-saved-deals {
  margin: .9rem 0;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  padding: .85rem;
}

.gk-saved-deals__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .65rem;
}

.gk-saved-deals__head span {
  display: block;
  color: #DC2626;
  font-size: .72rem;
  font-weight: 900;
}

.gk-saved-deals__head strong {
  display: block;
  color: #111827;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-saved-deals__head p {
  margin: 0;
  border-radius: 999px;
  background: #F9FAFB;
  color: #4B5563;
  padding: .25rem .6rem;
  font-size: .74rem;
  font-weight: 900;
  white-space: nowrap;
}

.gk-saved-deals__head em {
  color: #DC2626;
  font-style: normal;
}

.gk-saved-deals__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gk-saved-deals__item {
  display: flex;
  align-items: stretch;
  gap: .4rem;
  min-width: 0;
}

.gk-saved-deals__item a {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #EDF0F3;
  border-radius: 6px;
  background: #FCFCFD;
  color: #111827;
  padding: .55rem;
  text-decoration: none;
}

.gk-saved-deals__item strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .78rem;
  line-height: 1.45;
}

.gk-saved-deals__item span {
  display: block;
  margin-top: .25rem;
  color: #6B7280;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.35;
}

.gk-saved-deals__item button,
.gk-saved-deals__foot button {
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #fff;
  color: #4B5563;
  padding: .45rem .5rem;
  font-size: .68rem;
  font-weight: 900;
  cursor: pointer;
}

.gk-saved-deals__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
  margin-top: .7rem;
}

.gk-saved-deals__foot a {
  border-radius: 6px;
  background: #111827;
  color: #fff;
  padding: .48rem .7rem;
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
}

.gk-saved-deals__share-status {
  display: block;
  margin-top: .5rem;
  white-space: pre-wrap;
  color: #4B5563;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.45;
}

.gk-saved-bar[hidden] {
  display: none !important;
}

.gk-saved-bar {
  position: fixed;
  right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .45rem;
  max-width: calc(100vw - 24px);
  border: 1px solid rgba(17, 24, 39, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(17, 24, 39, .18);
  color: #111827;
  padding: .45rem;
}

.gk-saved-bar__label {
  padding: 0 .2rem 0 .35rem;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.gk-saved-bar__label strong {
  color: #DC2626;
}

.gk-saved-bar__share,
.gk-saved-bar__open,
.gk-saved-bar__clear {
  min-height: 30px;
  border-radius: 6px;
  padding: .38rem .62rem;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}

.gk-saved-bar__share {
  border: 1px solid #FCA5A5;
  background: #FEF2F2;
  color: #B91C1C;
  cursor: pointer;
}

.gk-saved-bar__open {
  background: #111827;
  color: #fff;
  text-decoration: none;
}

.gk-saved-bar__clear {
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #4B5563;
  cursor: pointer;
}

@media (max-width: 640px) {
  .gk-saved-bar {
    right: 8px;
    left: 8px;
    justify-content: space-between;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .gk-saved-bar__label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.gk-dashboard .gk-rank__heading,
.gk-home-feed-heading {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 .65rem !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: #111827 !important;
  font-size: .95rem !important;
  font-weight: 900 !important;
}

.gk-dashboard .gk-rank__heading::before,
.gk-home-feed-heading::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #DC2626;
}

.gk-rank__count-badge {
  border-radius: 999px;
  background: #F3F4F6;
  color: #6B7280;
  padding: .16rem .45rem;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.gk-dashboard__main .gk-rank__grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .8rem;
}

.gk-dashboard__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin-top: 1rem;
  align-items: start;
}

.gk-dashboard__split .gk-rank {
  margin: 0;
  padding: .75rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}

.gk-dashboard__split .gk-rank__grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .6rem;
  align-items: stretch;
}

.gk-dashboard__split .gk-rank__card {
  flex-direction: row;
  height: 100%;
  min-height: 96px;
}

.gk-dashboard__split .gk-rank__media {
  width: 88px;
  min-width: 88px;
  aspect-ratio: 1 / 1;
}

.gk-dashboard__split .gk-rank__body {
  min-width: 0;
  padding: .5rem;
  gap: .25rem;
}

.gk-dashboard__split .gk-rank__title {
  min-height: 0;
  font-size: .76rem;
}

.gk-dashboard__section--sparse .gk-rank {
  background: #FCFCFD;
}

.gk-life-defense,
.gk-unit-price {
  margin: 1.35rem 0 1.6rem;
  padding-top: 1.1rem;
  border-top: 2px solid #E5E7EB;
}

.gk-life-defense__head,
.gk-unit-price__head {
  display: grid;
  gap: .28rem;
  margin-bottom: .9rem;
}

.gk-life-defense__eyebrow,
.gk-unit-price__eyebrow {
  margin: 0;
  color: #047857;
  font-size: .72rem;
  font-weight: 900;
}

.gk-unit-price__eyebrow {
  color: #2563EB;
}

.gk-life-defense__head h2,
.gk-unit-price__head h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: #111827 !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
}

.gk-life-defense__head p,
.gk-unit-price__head p {
  margin: 0;
  color: #4B5563;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.65;
}

.gk-life-defense__grid,
.gk-unit-price__grid {
  display: grid;
  gap: 1rem;
}

.gk-life-defense__shelf,
.gk-unit-price__shelf {
  display: grid;
  gap: .55rem;
  padding-top: .2rem;
}

.gk-life-defense__shelf + .gk-life-defense__shelf,
.gk-unit-price__shelf + .gk-unit-price__shelf {
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
}

.gk-life-defense__shelf-head,
.gk-unit-price__shelf-head {
  display: grid;
  grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr);
  gap: .35rem .65rem;
  align-items: center;
}

.gk-life-defense__shelf-head span,
.gk-unit-price__shelf-head span {
  width: fit-content;
  border-radius: 999px;
  background: #ECFDF5;
  color: #047857;
  padding: .18rem .48rem;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-unit-price__shelf-head span {
  background: #EFF6FF;
  color: #2563EB;
}

.gk-life-defense__shelf-head strong,
.gk-unit-price__shelf-head strong {
  color: #111827;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-life-defense__shelf-head p,
.gk-unit-price__shelf-head p {
  grid-column: 1 / -1;
  margin: 0;
  color: #6B7280;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.55;
}

.gk-life-defense .gk-rank,
.gk-unit-price .gk-rank {
  margin: 0;
}

.gk-life-defense .gk-rank__grid,
.gk-unit-price .gk-rank__grid {
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
}

.gk-life-defense__empty,
.gk-unit-price__empty {
  margin: .4rem 0 0;
  color: #6B7280;
  font-size: .84rem;
  font-weight: 700;
}

.gk-gb-tool {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #111827;
}

.gk-gb-tool__head {
  display: grid;
  gap: .35rem;
}

.gk-gb-tool__eyebrow {
  margin: 0;
  color: #047857;
  font-size: .75rem;
  font-weight: 900;
}

.gk-gb-tool__head h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: #111827 !important;
  font-size: 1.45rem !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

.gk-gb-tool__head p {
  margin: 0;
  color: #4B5563;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.7;
}

.gk-gb-tool__notice {
  border: 1px solid #F3C85F;
  border-radius: 8px;
  background: #FFFBEB;
  color: #6B4700 !important;
  padding: .65rem .75rem;
}

.gk-gb-tool__layout {
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.gk-gb-tool__form,
.gk-gb-tool__result,
.gk-gb-product {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}

.gk-gb-tool__form,
.gk-gb-tool__result {
  display: grid;
  gap: .85rem;
  padding: 1rem;
}

.gk-gb-tool__form label {
  display: grid;
  gap: .3rem;
  color: #111827;
  font-size: .85rem;
  font-weight: 900;
}

.gk-gb-tool__form input,
.gk-gb-tool__form select {
  width: 100%;
  min-height: 2.5rem;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  padding: .45rem .55rem;
  font: inherit;
  background: #fff;
}

.gk-gb-tool__form button {
  min-height: 2.65rem;
  border: 0;
  border-radius: 6px;
  background: #047857;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.gk-gb-tool__status {
  width: fit-content;
  border-radius: 999px;
  background: #ECFDF5;
  color: #047857;
  padding: .2rem .55rem;
  font-size: .72rem;
  font-weight: 900;
}

.gk-gb-tool__status--warn {
  background: #FFF7ED;
  color: #B45309;
}

.gk-gb-tool__status--danger {
  background: #FEF2F2;
  color: #B91C1C;
}

.gk-gb-tool__result h3 {
  margin: 0;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.4;
}

.gk-gb-tool__result p {
  margin: 0;
  color: #4B5563;
  font-size: .9rem;
  font-weight: 700;
}

.gk-gb-tool__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.gk-gb-tool__facts div {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  padding: .65rem;
}

.gk-gb-tool__facts span {
  display: block;
  color: #6B7280;
  font-size: .72rem;
  font-weight: 800;
}

.gk-gb-tool__facts strong {
  display: block;
  margin-top: .1rem;
  color: #111827;
  font-size: 1rem;
  font-weight: 900;
}

.gk-gb-tool__products {
  display: grid;
  gap: .55rem;
}

.gk-gb-product {
  padding: .75rem;
}

.gk-gb-product h3 {
  margin: 0 0 .45rem;
  color: #111827;
  font-size: .95rem;
  font-weight: 900;
}

.gk-gb-product dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .45rem;
  margin: 0;
}

.gk-gb-product dt {
  color: #6B7280;
  font-size: .7rem;
  font-weight: 800;
}

.gk-gb-product dd {
  margin: 0;
  color: #111827;
  font-size: .82rem;
  font-weight: 900;
}

.gk-gb-tool__empty {
  border: 1px dashed #CBD5E1;
  border-radius: 8px;
  background: #F8FAFC;
  padding: .75rem;
}

.gk-gb-tool__notes {
  margin: 0;
  padding-left: 1.15rem;
  color: #4B5563;
  font-size: .8rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .gk-gb-tool__layout,
  .gk-gb-tool__facts,
  .gk-gb-product dl {
    grid-template-columns: 1fr;
  }
}

.gk-growth-hub {
  max-width: 1180px;
  margin: 2.2rem auto 3rem;
  padding: 0 1rem;
}

.gk-growth-hub__head {
  border-left: 5px solid #DC2626;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17,24,39,.08);
  padding: 1.25rem 1.35rem;
}

.gk-growth-hub__eyebrow {
  margin: 0 0 .45rem;
  color: #DC2626;
  font-size: .78rem;
  font-weight: 900;
}

.gk-growth-hub h2 {
  margin: 0;
  color: #071326;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.22;
}

.gk-growth-hub__head p {
  margin: .72rem 0 0;
  color: #374151;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.75;
}

.gk-growth-hub__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .8rem;
}

.gk-growth-hub__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #F8FAFC;
  color: #111827;
  font-size: .76rem;
  font-weight: 900;
  padding: .22rem .62rem;
}

.gk-growth-hub-links {
  display: flex;
  gap: .55rem;
  margin-top: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gk-growth-hub-links a {
  display: grid;
  gap: .12rem;
  flex: 0 0 auto;
  min-width: 136px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff !important;
  color: #111827 !important;
  padding: .58rem .72rem;
  text-decoration: none !important;
}

.gk-growth-hub-links a.is-current,
.gk-growth-hub-links a:hover,
.gk-growth-hub-links a:focus-visible {
  border-color: #DC2626;
  background: #FEF2F2 !important;
}

.gk-growth-hub-links span {
  color: #111827;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
}

.gk-growth-hub-links small {
  color: #64748B;
  font-size: .68rem;
  font-weight: 900;
}

.gk-growth-hub__guide {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-top: 1rem;
  padding: .85rem .95rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F8FAFC;
}

.gk-growth-hub__guide span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #182231;
  color: #fff;
  padding: .18rem .5rem;
  font-size: .68rem;
  font-weight: 900;
}

.gk-growth-hub__guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gk-growth-hub__guide li {
  color: #334155;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.45;
}

.gk-growth-hub__guide li::before {
  content: "・";
  color: #DC2626;
  font-weight: 900;
}

.gk-growth-hub__section {
  margin-top: 1.2rem;
}

.gk-growth-hub__section .gk-rank {
  margin-top: 0;
}

.gk-growth-hub__empty {
  margin-top: 1.2rem;
  border: 1px solid #FCD34D;
  border-radius: 8px;
  background: #FFFBEB;
  padding: 1rem 1.1rem;
}

.gk-growth-hub__empty strong {
  display: block;
  color: #92400E;
  font-size: .98rem;
  font-weight: 900;
}

.gk-growth-hub__empty p {
  margin: .35rem 0 0;
  color: #78350F;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.6;
}

.gk-growth-hub__faq {
  display: grid;
  gap: .55rem;
  margin-top: 1.25rem;
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
}

.gk-growth-hub__faq h3 {
  margin: 0;
  color: #071326;
  font-size: 1rem;
  font-weight: 900;
}

.gk-growth-hub__faq details {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}

.gk-growth-hub__faq summary {
  cursor: pointer;
  padding: .72rem .85rem;
  color: #111827;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.45;
}

.gk-growth-hub__faq p {
  margin: 0;
  padding: 0 .85rem .8rem;
  color: #475569;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.7;
}

.gk-growth-hub__note {
  margin: 1rem 0 0;
  color: #64748B;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.7;
}

.gk-growth-guide {
  max-width: 980px;
  margin: 1rem auto 1.5rem;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  color: #111827;
}

.gk-growth-guide__head {
  display: grid;
  gap: .65rem;
  margin-bottom: 1rem;
}

.gk-growth-guide__eyebrow {
  margin: 0;
  color: #0F766E;
  font-size: .78rem;
  font-weight: 900;
}

.gk-growth-guide h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.22;
}

.gk-growth-guide h3 {
  margin: 0 0 .7rem;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.3;
}

.gk-growth-guide p {
  margin: 0;
  color: #374151;
  line-height: 1.75;
}

.gk-growth-guide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 8px;
  background: #DC2626 !important;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none !important;
}

.gk-growth-guide__thresholds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0;
}

.gk-growth-guide__deals {
  margin-top: 1rem;
  padding: .95rem;
  border: 1px solid #D1FAE5;
  border-radius: 8px;
  background: #F0FDF4;
}

.gk-growth-guide__deals-head {
  display: grid;
  gap: .35rem;
  margin-bottom: .8rem;
}

.gk-growth-guide__deals-head h3 {
  margin: 0;
}

.gk-growth-guide__deals .gk-rank {
  margin: 0;
}

.gk-growth-guide__thresholds h3 {
  grid-column: 1 / -1;
}

.gk-growth-guide__threshold {
  display: grid;
  gap: .35rem;
  min-width: 0;
  padding: .9rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
}

.gk-growth-guide__threshold span {
  color: #64748B;
  font-size: .76rem;
  font-weight: 900;
}

.gk-growth-guide__threshold strong {
  color: #0F766E;
  font-size: 1.05rem;
  line-height: 1.3;
}

.gk-growth-guide__threshold p {
  font-size: .88rem;
}

.gk-growth-guide__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin: 1rem 0;
}

.gk-growth-guide__columns section,
.gk-growth-guide__faq,
.gk-growth-guide__next {
  padding: .95rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
}

.gk-growth-guide ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.gk-growth-guide li {
  color: #374151;
  line-height: 1.65;
}

.gk-growth-guide__faq {
  display: grid;
  gap: .55rem;
  margin: 1rem 0;
}

.gk-growth-guide__faq details {
  padding: .72rem .8rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F8FAFC;
}

.gk-growth-guide__faq summary {
  color: #111827;
  font-weight: 900;
  cursor: pointer;
}

.gk-growth-guide__faq p {
  margin-top: .55rem;
}

.gk-growth-guide__next {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
  background: #F0FDFA;
  border-color: #99F6E4;
}

.gk-home-feed-heading {
  margin: 1.4rem 0 .75rem !important;
}

.gk-home-feed-lead {
  margin: -.35rem 0 .9rem !important;
  color: #4B5563 !important;
  font-size: .84rem !important;
  line-height: 1.65 !important;
  font-weight: 700 !important;
}

.gk-deal-card.entry-card-wrap {
  position: relative !important;
  border: 1px solid #E5E7EB !important;
  border-left-width: 4px !important;
  border-radius: 8px !important;
  margin-bottom: .75rem !important;
  background: #fff !important;
  overflow: hidden !important;
}

.gk-deal-card.entry-card-wrap:hover {
  border-color: #FCA5A5 !important;
  box-shadow: 0 4px 14px rgba(17,24,39,.08) !important;
}

.gk-deal-card.entry-card-wrap[data-gk-grade="s"] { border-left-color: #D97706 !important; }
.gk-deal-card.entry-card-wrap[data-gk-grade="a"] { border-left-color: #DC2626 !important; }
.gk-deal-card.entry-card-wrap[data-gk-grade="b"] { border-left-color: #F59E0B !important; }
.gk-deal-card.entry-card-wrap[data-gk-grade="c"] { border-left-color: #9CA3AF !important; }
.gk-deal-card.entry-card-wrap[data-gk-source="amazon"] {
  box-shadow: inset -3px 0 0 #FF9900 !important;
}
.gk-deal-card.entry-card-wrap[data-gk-source="amazon"]:hover {
  box-shadow: inset -3px 0 0 #FF9900, 0 4px 14px rgba(17,24,39,.08) !important;
}
.gk-deal-card.entry-card-wrap[data-gk-status="expired"] {
  opacity: .58;
  filter: grayscale(.58);
}
.gk-deal-card.entry-card-wrap[data-gk-status="expired"]::before {
  content: "終了済み";
  position: absolute;
  top: .42rem;
  right: .52rem;
  z-index: 3;
  padding: .1rem .34rem;
  border: 1px solid #CBD5E1;
  border-radius: 999px;
  border-color: #CBD5E1;
  background: #F1F5F9;
  color: #64748B;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1.2;
  pointer-events: none;
}
.gk-deal-card.entry-card-wrap[data-gk-status="expired"] .gk-card-grade,
.gk-deal-card.entry-card-wrap[data-gk-status="expired"] .gk-card-price,
.gk-deal-card.entry-card-wrap[data-gk-status="expired"] .gk-card-postage {
  display: none !important;
}
.gk-deal-card.entry-card-wrap[data-gk-status="expired"] .entry-card-thumb {
  cursor: default !important;
}
.gk-deal-card.entry-card-wrap[data-gk-status="expired"] .entry-card-thumb::after {
  content: "販売終了";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  padding: .28rem .62rem;
  border-radius: 999px;
  background: rgba(15,23,42,.86);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}
.gk-card-fact--expired {
  background: #F1F5F9;
  color: #475569;
}

.single .entry-title {
  color: #334155 !important;
  font-size: clamp(1.18rem, 3vw, 1.72rem) !important;
  line-height: 1.42 !important;
  font-weight: 900 !important;
}

.single .eye-catch-wrap,
.single .post-thumbnail,
.single .eye-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  margin: .75rem 0 .8rem;
  padding: .9rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.single .eye-catch-wrap a,
.single .post-thumbnail a,
.single .eye-catch a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.single .eye-catch-wrap img,
.single .post-thumbnail img,
.single .eye-catch img {
  display: block;
  width: auto !important;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.gk-deal-card .entry-card-thumb {
  background: #F9FAFB !important;
  border-right: 1px solid #F3F4F6 !important;
}

.gk-deal-card .cat-label {
  display: none !important;
}

.gk-card-grade {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 4;
  padding: .2rem .45rem;
  border-radius: 4px;
  background: #DC2626;
  color: #fff;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.3;
  pointer-events: none;
  white-space: nowrap;
}

.gk-card-grade--s {
  background: #111827;
  color: #FDE68A;
  box-shadow: 0 0 0 1px rgba(253,230,138,.6) inset;
}
.gk-card-grade--b { background: #D97706; }
.gk-card-grade--c { background: #4B5563; }
.gk-card-grade--d { background: #6B7280; }

.gk-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .28rem;
  min-width: 0;
}

.gk-card-fact {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: .12rem .42rem;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  font-size: .7rem;
  font-weight: 800;
  white-space: nowrap;
}

.gk-card-fact--score {
  background: #FEF2F2;
  color: #B91C1C;
}

.gk-card-fact--why {
  flex: 1 1 100%;
  max-width: 100%;
  justify-content: flex-start;
  border-radius: 6px;
  background: #EEF2FF;
  color: #3730A3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gk-deal-card.entry-card-wrap[data-gk-source="amazon"] .gk-card-fact--source-amazon {
  background: #FF9900 !important;
  color: #111827 !important;
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.14);
}

.gk-card-fact--free,
.gk-card-fact--low {
  background: #ECFDF5;
  color: #047857;
}

.gk-card-fact--off {
  background: #FFF7ED;
  color: #C2410C;
}

.gk-card-fact--coupon {
  background: #FEF3C7;
  color: #92400E;
}

.entry-card-snippet {
  min-height: 2rem;
  padding: .38rem 0 0 !important;
  color: #4B5563 !important;
}

.gk-float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid #E5E7EB;
  background: rgba(255,255,255,.96);
  box-shadow: 0 -8px 22px rgba(17,24,39,.08);
}

.gk-float-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  min-width: 0;
  padding: 0 .9rem;
  border-radius: 8px;
  background: #DC2626 !important;
  color: #fff !important;
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none !important;
}

.gk-float-cta__btn--amazon { background: #232F3E !important; }
.gk-float-cta__btn--rakuten { background: #BF0000 !important; }
.gk-float-cta__btn--yahoo { background: #E60012 !important; }

@media (max-width: 480px) {
  .gk-buy-now__cta,
  .deal-judge__cta,
  .gk-float-cta__btn {
    white-space: nowrap;
    font-size: clamp(.82rem, 3.6vw, .92rem);
    letter-spacing: 0;
  }
  .gk-buy-now__cta,
  .deal-judge__cta {
    padding-left: .75rem;
    padding-right: .75rem;
  }
}

/* ── Typography refinement ─────────────────── */
.gk-dashboard__copy h1,
.gk-dashboard .gk-rank__heading,
.gk-home-feed-heading,
.single .entry-title,
.gk-buy-now strong,
.deal-judge__grade::before {
  font-family: var(--gk-f-jp) !important;
  font-weight: 800 !important;
}

.gk-buy-now__score,
.deal-judge__score,
.gk-rank__facts strong,
.gk-picks__price,
.gk-card-price,
.gk-sw-price,
.deal-judge__price {
  font-family: var(--gk-f-num) !important;
}

.gk-buy-now__label,
.gk-buy-now__facts span,
.gk-buy-now__cta,
.gk-rank__rank,
.gk-rank__grade,
.gk-rank__facts em.gk-rank__fact--deal,
.gk-picks__grade,
.gk-card-grade,
.deal-judge__grade,
.deal-judge__grade span,
.deal-judge--a .deal-judge__grade::after,
.deal-judge__score::before,
.deal-judge__score span,
.deal-judge__cta,
.gk-float-cta__btn {
  font-weight: 800 !important;
}

@media (max-width: 834px) {
  .gk-dashboard__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .gk-dashboard__side {
    grid-template-columns: minmax(0, 1fr);
  }
  .gk-dashboard__visual {
    min-height: 0;
  }
  .gk-dashboard__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gk-dashboard__quick {
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 72%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: .15rem;
    scrollbar-width: none;
  }
  .gk-dashboard__quick::-webkit-scrollbar {
    display: none;
  }
  .gk-fast-cta {
    grid-template-columns: 1fr;
  }
  .gk-fast-cta__grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 76%);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .gk-fast-cta__grid::-webkit-scrollbar {
    display: none;
  }
  .gk-topic-hubs {
    margin-left: -.15rem;
    margin-right: -.15rem;
  }
  .gk-topic-hubs__label {
    flex-basis: 100%;
  }
  .gk-topic-hubs a {
    flex-basis: calc(50% - .3rem);
  }
  .gk-growth-guide-links a {
    flex-basis: calc(50% - .3rem);
  }
  .gk-growth-guide {
    padding: .9rem .75rem;
  }
  .gk-growth-guide__thresholds,
  .gk-growth-guide__columns {
    grid-template-columns: 1fr;
  }
  .gk-growth-hub {
    margin-top: 1.2rem;
    padding: 0 .75rem;
  }
  .gk-growth-hub__head {
    padding: 1rem;
  }
  .gk-growth-hub-links a {
    min-width: 126px;
  }
  .gk-growth-hub__guide {
    display: grid;
    gap: .55rem;
    padding: .8rem;
  }
  .gk-growth-hub__guide ul {
    display: grid;
    gap: .32rem;
  }
  .gk-dashboard__toolbar {
    align-items: stretch;
  }
  .gk-source-filter {
    flex: 1 1 100%;
  }
  .gk-amazon-lane {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "items"
      "more";
  }
  .gk-amazon-lane__items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .gk-amazon-lane__more {
    min-height: 42px;
    width: 100%;
  }
  .gk-dashboard__primary,
  .gk-alert-lane {
    flex: 1 1 220px;
  }
  .gk-dashboard__split {
    grid-template-columns: 1fr;
  }
  .gk-dashboard__split .gk-rank__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gk-dashboard__split .gk-rank__card {
    flex-direction: column;
  }
  .gk-dashboard__split .gk-rank__media {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .gk-dashboard {
    margin-top: .25rem;
    padding: .85rem;
  }
  .gk-dashboard__copy h1 {
    font-size: 1.28rem !important;
  }
  .gk-dashboard .gk-rank__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
  .gk-dashboard__stats {
    gap: .38rem;
    padding: .5rem;
  }
  .gk-dashboard__visual figcaption {
    position: static;
    border: none;
    border-top: 1px solid #E5E7EB;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }
  .gk-dashboard__stats span {
    min-height: 56px;
  }
  .gk-growth-guide-links {
    margin-left: -.15rem;
    margin-right: -.15rem;
  }
  .gk-growth-guide-links a {
    flex-basis: 100%;
  }
  .gk-growth-guide h2 {
    font-size: 1.35rem;
  }
  .gk-growth-guide__cta {
    width: 100%;
  }
  .gk-dashboard__quick-card {
    min-height: 76px;
  }
  .gk-fast-cta {
    margin-left: -.1rem;
    margin-right: -.1rem;
    padding: .65rem;
  }
  .gk-fast-cta__grid {
    grid-auto-columns: minmax(224px, 86%);
  }
  .gk-fast-cta__card {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .gk-fast-cta__media img {
    width: 58px;
    min-height: 88px;
  }
  .gk-amazon-lane__items {
    grid-template-columns: 1fr;
  }
  .gk-amazon-lane__item {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  .gk-dashboard .gk-rank__body {
    padding: .5rem;
  }
  .gk-dashboard .gk-rank__title {
    font-size: .74rem;
  }
  .gk-dashboard__split .gk-rank__why,
  .gk-dashboard__split .gk-rank__score {
    display: none;
  }
  .gk-dashboard__split .gk-rank__facts {
    margin-top: .15rem;
  }
  .gk-life-defense__shelf-head,
  .gk-unit-price__shelf-head {
    grid-template-columns: 1fr;
  }
  .gk-life-defense .gk-rank__grid,
  .gk-unit-price .gk-rank__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
  .single .eye-catch-wrap,
  .single .post-thumbnail,
  .single .eye-catch {
    min-height: 132px;
    padding: .7rem;
  }
  .single .eye-catch-wrap img,
  .single .post-thumbnail img,
  .single .eye-catch img {
    max-height: 176px;
  }
  .gk-card-fact {
    font-size: .66rem;
  }
  .single .gk-float-cta {
    display: flex;
  }
  .single {
    padding-bottom: 64px;
  }
}

/* ── best-price face polish: storefront, titles, explicit price memo ── */
#header {
  background: #fff !important;
  border-bottom: 1px solid #E5E7EB !important;
}

#header-in.header-in.wrap {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center !important;
  width: min(1120px, calc(100% - 44px)) !important;
  min-height: 86px !important;
  padding: 16px 0 14px !important;
}

#header .logo-header {
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

#header .site-name-text-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: #111827 !important;
  text-decoration: none !important;
}

#header .site-name-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827 !important;
  font-size: clamp(1.45rem, 3vw, 1.9rem) !important;
  font-weight: 900 !important;
  line-height: 1.1;
}

#header .site-name-text::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #DC2626 0%, #EF4444 48%, #F59E0B 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 8px 18px rgba(220,38,38,.18);
}

#header .tagline,
#header #tagline {
  display: block !important;
  max-width: none;
  margin: 0 !important;
  color: #4B5563 !important;
  font-size: .82rem !important;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

#navi {
  background: #182231 !important;
  border-top: 1px solid #EEF2F7 !important;
  border-bottom: 3px solid #DC2626 !important;
}

#navi #navi-in.wrap,
#navi .navi-in.wrap {
  width: min(1120px, calc(100% - 44px)) !important;
}

#navi .navi-in > ul > li > a {
  min-height: 56px;
  display: flex !important;
  align-items: center;
  padding: 0 1.18rem !important;
  color: rgba(255,255,255,.86) !important;
}

#navi .navi-in > ul > li.current-menu-item > a,
#navi .navi-in > ul > li.current_page_item > a {
  background: rgba(220,38,38,.16) !important;
  color: #fff !important;
}

body.home #content {
  margin-top: 32px !important;
}

.gk-dashboard {
  position: relative;
  margin-top: 0;
  padding: 1.15rem;
  border-color: #DDE3EA;
  box-shadow: 0 18px 50px rgba(17,24,39,.06);
}

.gk-dashboard::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, #DC2626, #F59E0B);
}

.gk-dashboard__eyebrow {
  color: #B91C1C;
}

.gk-dashboard__copy h1 {
  font-size: clamp(1.6rem, 3vw, 2.25rem) !important;
}

.gk-dashboard__motto {
  color: #111827;
  font-size: 1rem;
}

.gk-dashboard__lead {
  max-width: 720px;
}

.gk-rank__media,
.gk-rank__title {
  color: inherit !important;
  text-decoration: none !important;
}

.gk-rank__title:hover {
  color: #B91C1C !important;
}

.gk-rank__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: .15rem;
  padding: .45rem .65rem;
  border: 1px solid #FECACA;
  border-radius: 6px;
  background: #FEF2F2;
  color: #991B1B !important;
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
}

.gk-rank__check:hover {
  border-color: #FCA5A5;
  background: #FEE2E2;
  color: #7F1D1D !important;
}

.cat-item-29,
.cat-item-33,
.cat-item-36,
.cat-item-39,
.cat-item-46,
.cat-item-49,
.cat-item-52,
.cat-item-74,
.cat-item-77,
.cat-item-79 {
  display: none !important;
}

.gk-deal-check__eyebrow {
  color: #B91C1C;
}

.mobile-footer-menu-buttons.mobile-menu-buttons {
  display: none !important;
}

body.mobile-button-fmb,
body.mblt-footer-mobile-buttons {
  padding-bottom: 0 !important;
}

#go-to-top {
  position: fixed !important;
  right: 14px !important;
  bottom: 16px !important;
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}

#go-to-top .go-to-top-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(255,255,255,.55) !important;
  border-radius: 999px !important;
  background: #182231 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(17,24,39,.18);
  visibility: visible !important;
  opacity: .88 !important;
  pointer-events: auto !important;
  transform: none !important;
}

#go-to-top .go-to-top-button:hover,
#go-to-top .go-to-top-button:focus-visible {
  opacity: 1 !important;
  background: #DC2626 !important;
}

@media (max-width: 700px) {
  #header-in.header-in.wrap {
    gap: 7px;
    width: calc(100% - 28px) !important;
    min-height: 92px !important;
    padding: 12px 0 !important;
  }
  #header .tagline,
  #header #tagline {
    max-width: 100%;
    text-align: center;
    font-size: .78rem !important;
  }
  #navi #navi-in.wrap,
  #navi .navi-in.wrap {
    width: calc(100% - 28px) !important;
  }
  #navi .navi-in > ul > li > a {
    min-height: 48px;
    padding: 0 .75rem !important;
  }
  body.home #content {
    margin-top: 20px !important;
  }
  .gk-dashboard {
    padding: 1rem .9rem 1rem 1rem;
  }
}

/* ── storefront header: title + category menu in one row ── */
@media (min-width: 900px) {
  #header-container {
    background: #fff !important;
    border-bottom: 3px solid #DC2626 !important;
  }

  #header-container-in.header-container-in {
    display: grid !important;
    grid-template-columns: minmax(230px, auto) minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
    width: min(1120px, calc(100% - 44px)) !important;
    min-height: 72px;
    margin: 0 auto !important;
  }

  #header {
    min-width: 0;
    background: transparent !important;
    border: 0 !important;
  }

  #header-in.header-in.wrap {
    width: auto !important;
    min-height: 0 !important;
    padding: 10px 0 !important;
    align-items: flex-start !important;
    justify-content: center;
    gap: 3px;
  }

  #header .logo-header {
    order: 1;
    text-align: left !important;
  }

  #header .tagline,
  #header #tagline {
    order: 2;
    max-width: 240px;
    color: #64748B !important;
    font-size: .72rem !important;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
  }

  #header .site-name-text-link,
  #header .site-name-text {
    gap: 9px;
  }

  #header .site-name-text {
    font-size: clamp(1.45rem, 2vw, 1.72rem) !important;
    line-height: 1;
  }

  #header .site-name-text::before {
    width: 31px;
    height: 31px;
    border-radius: 7px;
  }

  #navi {
    min-width: 0;
    background: transparent !important;
    border: 0 !important;
  }

  #navi #navi-in.wrap,
  #navi .navi-in.wrap {
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
  }

  #navi .menu-mobile {
    display: none !important;
  }

  #navi .menu-pc {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  #navi .navi-in > ul {
    min-height: 0 !important;
    height: auto !important;
  }

  #navi .menu-pc::-webkit-scrollbar {
    display: none;
  }

  #navi .navi-in > ul > li {
    flex: 0 0 auto;
    width: auto !important;
    height: auto !important;
  }

  #navi .navi-in > ul > li > a {
    width: auto !important;
    min-height: 42px;
    padding: 0 .72rem !important;
    border: 1px solid transparent !important;
    border-radius: 6px;
    background: transparent !important;
    color: #334155 !important;
    font-size: .82rem !important;
    font-weight: 900 !important;
    line-height: 1.2;
  }

  #navi .navi-in > ul.menu-pc > li > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(1) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(2) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(3) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(4) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(5) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(6) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(7) > a {
    color: #334155 !important;
  }

  #navi .navi-in > ul > li > a:hover {
    border-color: #FECACA !important;
    background: #FFF7F7 !important;
    color: #B91C1C !important;
  }

  #navi .navi-in > ul > li.current-menu-item > a,
  #navi .navi-in > ul > li.current_page_item > a {
    border-color: #FCA5A5 !important;
    background: #FEF2F2 !important;
    color: #991B1B !important;
  }

  #navi .navi-in > ul.menu-pc > li.current-menu-item > a,
  #navi .navi-in > ul.menu-pc > li.current_page_item > a {
    color: #991B1B !important;
  }

  body.home #content {
    margin-top: 28px !important;
  }
}

@media (min-width: 900px) and (max-width: 1060px) {
  #header-container-in.header-container-in {
    grid-template-columns: minmax(210px, auto) minmax(0, 1fr);
    column-gap: 14px;
    width: calc(100% - 32px) !important;
  }

  #header .tagline,
  #header #tagline {
    display: none !important;
  }

  #navi .navi-in > ul > li > a {
    padding: 0 .56rem !important;
    font-size: .78rem !important;
  }
}

/* ── mobile header cleanup: top categories only, no fixed footer bar ── */
@media (max-width: 899px) {
  #header-container {
    background: #fff !important;
    border-bottom: 3px solid #DC2626 !important;
  }

  #navi {
    height: auto !important;
    background: #fff !important;
    border-top: 1px solid #E5E7EB !important;
    border-bottom: 0 !important;
  }

  #navi #navi-in.wrap,
  #navi .navi-in.wrap {
    width: calc(100% - 24px) !important;
    height: auto !important;
    min-height: 0 !important;
  }

  #navi .menu-pc {
    display: none !important;
  }

  #navi .menu-mobile {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    height: auto !important;
    margin: 0;
    padding: 7px 0 8px;
    overflow: visible !important;
    scrollbar-width: none;
  }

  #navi .menu-mobile::-webkit-scrollbar {
    display: none;
  }

  #navi .menu-mobile > li {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
  }

  #navi .menu-mobile > li > a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-height: 38px !important;
    padding: 0 .28rem !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px;
    background: #fff !important;
    color: #334155 !important;
    font-size: clamp(.68rem, 1.8vw, .78rem) !important;
    font-weight: 900 !important;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  #navi .navi-in > ul.menu-mobile > li > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(1) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(2) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(3) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(4) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(5) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(6) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(7) > a {
    color: #334155 !important;
  }

  #navi .menu-mobile > li.current-menu-item > a,
  #navi .menu-mobile > li.current_page_item > a {
    border-color: #FCA5A5 !important;
    background: #FEF2F2 !important;
    color: #991B1B !important;
  }

  #navi .navi-in > ul.menu-mobile > li.current-menu-item > a,
  #navi .navi-in > ul.menu-mobile > li.current_page_item > a {
    color: #991B1B !important;
  }
}

@media (max-width: 520px) {
  #navi .menu-mobile {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #navi .menu-mobile > li > a {
    min-height: 36px !important;
    font-size: .72rem !important;
  }
}

/* Restore the darker menu color while keeping the compact header. */
@media (min-width: 900px) {
  #navi {
    background: #182231 !important;
  }

  #navi .menu-pc {
    gap: 0;
  }

  #navi .navi-in > ul.menu-pc > li > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(1) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(2) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(3) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(4) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(5) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(6) > a,
  #navi .navi-in > ul.menu-pc > li:nth-child(7) > a {
    border-color: transparent !important;
    border-radius: 0;
    background: transparent !important;
    color: rgba(255,255,255,.88) !important;
  }

  #navi .navi-in > ul.menu-pc > li > a:hover {
    background: rgba(220,38,38,.18) !important;
    color: #fff !important;
  }

  #navi .navi-in > ul.menu-pc > li.current-menu-item > a,
  #navi .navi-in > ul.menu-pc > li.current_page_item > a {
    background: rgba(220,38,38,.24) !important;
    color: #fff !important;
  }
}

@media (max-width: 899px) {
  #navi {
    background: #182231 !important;
    border-top: 0 !important;
    border-bottom: 3px solid #DC2626 !important;
  }

  #navi .menu-mobile {
    gap: 0;
    padding: 0;
  }

  #navi .navi-in > ul.menu-mobile > li > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(1) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(2) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(3) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(4) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(5) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(6) > a,
  #navi .navi-in > ul.menu-mobile > li:nth-child(7) > a {
    min-height: 40px !important;
    border-color: rgba(255,255,255,.14) !important;
    border-radius: 0;
    background: transparent !important;
    color: rgba(255,255,255,.88) !important;
  }

  #navi .navi-in > ul.menu-mobile > li.current-menu-item > a,
  #navi .navi-in > ul.menu-mobile > li.current_page_item > a {
    background: rgba(220,38,38,.24) !important;
    color: #fff !important;
  }
}

.gk-header-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.gk-header-search__input {
  width: 100%;
  min-width: 0;
  height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: #fff;
  color: #111827;
  font-size: .86rem;
  font-weight: 800;
  padding: 0 .72rem;
  outline: none;
}

.gk-header-search__input::placeholder {
  color: #64748B;
  font-weight: 700;
}

.gk-header-search__input:focus {
  border-color: #FCA5A5;
  box-shadow: 0 0 0 2px rgba(220,38,38,.18);
}

.gk-header-search__button {
  flex: 0 0 auto;
  height: 36px;
  border: 1px solid #DC2626;
  border-radius: 0 6px 6px 0;
  background: #DC2626;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  padding: 0 .82rem;
  cursor: pointer;
}

.gk-header-search__button:hover,
.gk-header-search__button:focus-visible {
  background: #B91C1C;
  border-color: #B91C1C;
}

.gk-header-search__results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10020;
  display: none;
  width: min(420px, calc(100vw - 28px));
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17,24,39,.18);
  overflow: hidden;
}

.gk-header-search.is-open .gk-header-search__results {
  display: block;
}

.gk-header-search__label,
.gk-header-search__hint,
.gk-header-search__empty {
  margin: 0;
  padding: .68rem .78rem;
  color: #64748B;
  font-size: .78rem;
  font-weight: 900;
}

.gk-header-search__label {
  color: #B91C1C;
  border-bottom: 1px solid #F1F5F9;
}

.gk-header-search__empty span {
  display: block;
  line-height: 1.45;
}

.gk-header-search__actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: .52rem;
}

.gk-header-search__hubs {
  display: flex !important;
  flex-wrap: wrap;
  gap: .36rem;
  margin-top: .45rem;
}

.gk-header-search__hubs a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #FCA5A5;
  border-radius: 999px;
  background: #FFF7F7;
  color: #B91C1C !important;
  padding: .22rem .52rem;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.gk-header-search__hubs a:hover,
.gk-header-search__hubs a:focus-visible {
  border-color: #DC2626;
  background: #FEE2E2;
}

.gk-header-search__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .28rem .58rem;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  background: #fff;
  color: #111827 !important;
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.gk-header-search__actions a:hover,
.gk-header-search__actions a:focus-visible {
  border-color: #DC2626;
  background: #FEF2F2;
  color: #B91C1C !important;
}

.gk-header-search__result {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: .62rem;
  align-items: center;
  padding: .62rem .72rem;
  color: #111827 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #F1F5F9;
}

.gk-header-search__result:last-child {
  border-bottom: 0;
}

.gk-header-search__result:hover {
  background: #FEF2F2;
}

.gk-header-search__result img,
.gk-header-search__thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: #F1F5F9;
}

.gk-header-search__result strong {
  display: block;
  color: #111827;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-header-search__result em {
  display: block;
  margin-top: .18rem;
  color: #DC2626;
  font-size: .75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

@media (min-width: 900px) {
  #navi #navi-in.wrap,
  #navi .navi-in.wrap {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  #navi .menu-pc {
    flex: 0 0 auto;
    width: auto !important;
  }

  .gk-header-search {
    flex: 1 1 220px;
    max-width: 330px;
    margin-left: auto;
  }
}

@media (max-width: 899px) {
  .gk-header-search {
    width: 100%;
    margin: 6px 0 8px;
  }

  .gk-header-search__input,
  .gk-header-search__button {
    height: 38px;
  }

  .gk-header-search__results {
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* ── 再訪導線 ─────────────────────────────── */
.gk-revisit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 1.05rem 0 1.2rem;
  padding: 1rem;
  border: 1px solid #D7EAFE;
  border-radius: 8px;
  background: #F7FBFF;
}

.single .gk-revisit {
  margin: 1.4rem 0;
}

.gk-revisit__copy {
  min-width: 0;
}

.gk-revisit__copy span {
  display: inline-flex;
  margin-bottom: .28rem;
  color: #2563EB;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
}

.gk-revisit__copy strong {
  display: block;
  color: #111827;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.gk-revisit__copy p {
  margin: .28rem 0 0 !important;
  color: #4B5563 !important;
  font-size: .84rem !important;
  font-weight: 700 !important;
  line-height: 1.65 !important;
}

.gk-revisit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
}

.gk-revisit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .55rem .78rem;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  background: #fff;
  color: #111827 !important;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
}

.gk-revisit__button:hover,
.gk-revisit__button:focus-visible {
  border-color: #2563EB;
  color: #1D4ED8 !important;
  background: #EFF6FF;
}

.gk-revisit__button--bsky {
  border-color: #1685FE;
  background: #1685FE;
  color: #fff !important;
}

.gk-revisit__button--bsky:hover,
.gk-revisit__button--bsky:focus-visible {
  border-color: #006BDB;
  background: #006BDB;
  color: #fff !important;
}

.gk-revisit__button--rss {
  border-color: #F97316;
  color: #C2410C !important;
  background: #FFF7ED;
}

@media (max-width: 720px) {
  .gk-revisit {
    grid-template-columns: 1fr;
  }

  .gk-revisit__actions {
    justify-content: flex-start;
  }

  .gk-revisit__button {
    flex: 1 1 140px;
  }
}
