/* 自動生成: templates/style.css.j2 + _config/site.yaml(design) → public/css/style.css  手で編集しない */
:root {
  --primary: #71364A;
  --accent: #B88962;
  --alert: #A74650;
  --bg: #FAF7F2;
  --text: #2D2929;
  --muted: #6E6663;
  --surface: #FFFCF8;
  --soft: #F1E7E3;
  --sage: #687368;
  --line: #DED4CE;
  --line-dark: #BFB2AA;
  --shadow: 0 22px 54px rgba(79, 49, 55, .09);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  --sans: "Yu Gothic Medium", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .02em;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}
a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: #4E2231; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(184, 137, 98, .75); outline-offset: 4px; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(100% - 48px, 1160px); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-150%); background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }

/* 開示ストリップ（視認できる大きさと濃さを維持） */
.ad-disclosure { background: #E9E2DD; color: #494240; font-size: .84rem; text-align: center; padding: 7px 16px; line-height: 1.55; }

/* ヘッダー */
.site-header { background: rgba(250, 247, 242, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px 34px; }
.site-brand { display: inline-flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; text-decoration: none; color: var(--primary); line-height: 1; }
.site-name { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; letter-spacing: -.025em; }
.site-brand-note { margin-top: 8px; color: var(--muted); font-size: .68rem; letter-spacing: .16em; }
.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 4px 22px; font-size: .8rem; letter-spacing: .04em; }
.site-nav a { color: #4A4442; padding: 8px 0; text-decoration: none; border-bottom: 1px solid transparent; }
.site-nav a:hover { color: var(--primary); border-color: var(--primary); }
.site-nav .nav-archive { color: #fff; background: var(--primary); padding: 8px 14px; border: 1px solid var(--primary); }
.site-nav .nav-archive:hover { color: var(--primary); background: transparent; }

main { min-height: 60vh; padding-top: 42px; padding-bottom: 96px; }
h1, h2, h3 { text-wrap: pretty; }
h1, h2 { font-family: var(--serif); font-weight: 500; }
h1 { margin: 8px 0 20px; color: #282323; font-size: clamp(2rem, 3.9vw, 3.15rem); line-height: 1.45; letter-spacing: .025em; }
h2 { margin: 46px 0 18px; color: #292323; font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.55; letter-spacing: .035em; }
h3 { margin: 30px 0 12px; font-size: 1.12rem; line-height: 1.65; }
p { margin: 0 0 1.25em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1.2em; }
li { margin-bottom: .5em; }
strong { color: #252020; }
small { color: var(--muted); font-size: .84em; }
.section-kicker, .hero-kicker { margin: 0 0 8px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: .72rem; font-weight: 700; letter-spacing: .2em; line-height: 1.4; }

/* トップページ：自動切り替えヒーロー */
.hero-carousel { --carousel-interval: 6.5s; margin: -42px calc(50% - 50vw) 0; padding-top: 16px; background: #fff; border-bottom: 1px solid var(--line); outline: none; }
.hero-stage { position: relative; width: min(calc(100% - 48px), 1400px); height: clamp(500px, 48vw, 650px); margin-inline: auto; overflow: hidden; background: var(--soft); box-shadow: 0 15px 42px rgba(79, 49, 55, .11); }
.hero-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .9s ease, visibility 0s linear .9s; }
.hero-slide.is-active { z-index: 1; visibility: visible; opacity: 1; transition-delay: 0s; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide.is-active > img { animation: heroDrift var(--carousel-interval) ease-out both; }
.hero-slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,247,242,.97) 0%, rgba(250,247,242,.89) 30%, rgba(250,247,242,.25) 62%, rgba(250,247,242,0) 78%); }
.hero-slide-inner { position: relative; z-index: 2; display: flex; align-items: center; width: min(calc(100% - 80px), 1160px); height: 100%; margin-inline: auto; }
.hero-slide-copy { max-width: 630px; padding: 30px 0; }
.hero-slide h1, .hero-slide h2 { max-width: 700px; margin: 8px 0 18px; font-size: clamp(2.55rem, 5vw, 4.65rem); line-height: 1.3; letter-spacing: .045em; }
.hero-slide h2 { padding: 0; border: 0; }
.hero-slide h1 em, .hero-slide h2 em { color: var(--primary); font-style: normal; }
.hero-slide-copy > p:not(.hero-kicker) { max-width: 570px; color: #494240; font-size: 1rem; line-height: 1.95; }
.hero-cta { display: inline-flex; align-items: center; min-height: 50px; margin-top: 7px; padding: 10px 22px; color: #fff; background: var(--primary); border: 1px solid var(--primary); font-size: .82rem; text-decoration: none; }
.hero-cta::after { content: "→"; margin-left: 18px; }
.hero-cta:hover { color: var(--primary); background: rgba(255,255,255,.78); }
.carousel-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(calc(100% - 48px), 1160px); min-height: 70px; margin-inline: auto; }
.carousel-note { margin: 0; color: var(--muted); font-family: var(--serif); font-size: .83rem; letter-spacing: .12em; }
.carousel-controls { display: flex; align-items: center; gap: 22px; }
.carousel-dots { display: flex; align-items: center; gap: 9px; }
.carousel-dot { display: grid; width: 24px; height: 34px; place-items: center; padding: 0; background: transparent; border: 0; cursor: pointer; }
.carousel-dot span { display: block; width: 7px; height: 7px; background: #C9BFBA; border-radius: 999px; transition: width .25s ease, background .25s ease; }
.carousel-dot.is-active span { width: 26px; background: var(--accent); }
.carousel-toggle { padding: 4px 0; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid var(--line-dark); font-family: var(--sans); font-size: .7rem; cursor: pointer; }

@keyframes heroDrift {
  from { transform: scale(1.018); }
  to { transform: scale(1.055) translateX(-.3%); }
}

/* メインカテゴリ：縦線で仕切ったナビゲーション */
.category-gateway { margin: 0 calc(50% - 50vw); background: var(--surface); border-top: 2px solid var(--accent); border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(79, 49, 55, .05); }
.category-gateway-inner { display: grid; grid-template-columns: repeat(4, 1fr); width: min(calc(100% - 48px), 1160px); margin-inline: auto; }
.category-gateway a { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; min-height: 98px; padding: 18px 14px; color: var(--text); border-left: 1px solid var(--line); text-decoration: none; }
.category-gateway a:last-child { border-right: 1px solid var(--line); }
.category-gateway a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--cat-color); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.category-gateway a:hover { color: var(--cat-color); background: #fff; }
.category-gateway a:hover::after { transform: scaleX(1); }
.gateway-number { color: var(--cat-color); font-family: Georgia, "Times New Roman", serif; font-size: .7rem; }
.gateway-label { display: flex; flex-direction: column; min-width: 0; line-height: 1.35; }
.gateway-label strong { color: inherit; font-family: var(--serif); font-size: .84rem; font-weight: 600; }
.gateway-label small { margin-top: 5px; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; }

.home-section { margin-top: 82px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.section-title { margin: 0; font-size: clamp(1.85rem, 3vw, 2.45rem); }
.section-link { flex-shrink: 0; color: var(--text); font-size: .82rem; text-decoration: none; border-bottom: 1px solid var(--text); }
.section-link::after, .read-link::after, .editorial-links a::after { content: "  →"; }

.featured-story { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.featured-visual { min-height: 420px; overflow: hidden; text-decoration: none; }
.featured-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.featured-placeholder { --cat-color: var(--primary); position: relative; display: flex; width: 100%; height: 100%; min-height: 420px; overflow: hidden; padding: 34px; background: linear-gradient(145deg, color-mix(in srgb, var(--cat-color), #fff 72%), #E8DED8); color: var(--cat-color); }
.featured-placeholder::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid currentColor; border-radius: 50%; right: -40px; bottom: -105px; opacity: .42; }
.featured-placeholder::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; top: 60px; right: 50px; background: currentColor; opacity: .12; }
.featured-category { position: relative; z-index: 1; align-self: flex-start; padding: 5px 11px; color: #fff; background: var(--cat-color); font-size: .72rem; letter-spacing: .08em; }
.featured-mark { position: absolute; z-index: 1; left: 36px; bottom: 30px; font-family: Georgia, "Times New Roman", serif; font-size: 3.5rem; line-height: .82; letter-spacing: -.06em; }
.featured-body { display: flex; flex-direction: column; justify-content: center; padding: 46px; }
.story-category { margin: 0 0 12px; color: var(--primary); font-size: .74rem; font-weight: 700; letter-spacing: .1em; }
.featured-body h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 500; line-height: 1.65; }
.featured-body h3 a, .story-card h3 a, .archive-card h2 a { color: var(--text); text-decoration: none; }
.featured-body h3 a:hover, .story-card h3 a:hover, .archive-card h2 a:hover { color: var(--primary); }
.featured-desc { display: -webkit-box; overflow: hidden; color: #4E4745; font-size: .91rem; line-height: 1.85; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.story-meta { margin: auto 0 0; color: var(--muted); font-size: .72rem; line-height: 1.6; }
.read-link { align-self: flex-start; margin-top: 24px; color: var(--text); font-size: .8rem; text-decoration: none; border-bottom: 1px solid var(--text); }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 42px; }
.story-card { min-width: 0; }
.story-visual { display: block; aspect-ratio: 1.48 / 1; overflow: hidden; margin-bottom: 18px; text-decoration: none; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .35s ease; }
.story-visual:hover img { transform: scale(1.025); }
.story-placeholder { --cat-color: var(--primary); position: relative; display: flex; align-items: flex-end; width: 100%; height: 100%; overflow: hidden; padding: 20px; background: linear-gradient(145deg, color-mix(in srgb, var(--cat-color), #fff 76%), #EEE6E1); color: var(--cat-color); }
.story-placeholder::before { content: ""; position: absolute; width: 170px; height: 170px; border: 1px solid currentColor; border-radius: 50%; top: -54px; right: -26px; opacity: .45; }
.story-placeholder::after { content: "2nd beauty"; position: absolute; right: 18px; bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; opacity: .2; }
.story-placeholder span { position: relative; z-index: 1; padding: 4px 9px; color: #fff; background: var(--cat-color); font-size: .7rem; letter-spacing: .07em; }
.story-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 1.13rem; font-weight: 500; line-height: 1.75; }

.category-section { padding-top: 12px; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.cat-grid li { margin: 0; border-bottom: 1px solid var(--line); }
.cat-grid li:nth-child(odd) { border-right: 1px solid var(--line); }
.cat-grid a { display: grid; grid-template-columns: 44px 1fr auto auto; align-items: center; gap: 16px; min-height: 104px; padding: 22px 26px; color: var(--text); text-decoration: none; background: transparent; transition: background .2s ease; }
.cat-grid a:hover { background: var(--surface); }
.cat-number { color: var(--cat-color); font-family: Georgia, "Times New Roman", serif; font-size: .8rem; }
.cat-label { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; }
.cat-grid small { font-size: .72rem; }
.cat-arrow { color: var(--cat-color); font-size: .72rem; border-bottom: 1px solid currentColor; }

.editorial-note { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; margin: 112px 0 12px; padding: 64px; color: #F8F3EF; background: var(--primary); }
.editorial-note .section-kicker { color: #E6C5AB; }
.editorial-note h2 { margin: 0; color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.6; }
.editorial-copy { color: #F1E8E5; font-size: .94rem; }
.editorial-links { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 28px; }
.editorial-links a { color: #fff; font-size: .8rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.7); }

/* 右サイドバー：成果記事と楽天市場の人気商品 */
.content-with-sidebar { display: grid; grid-template-columns: minmax(0, 820px) minmax(260px, 300px); align-items: start; gap: 28px; }
.content-primary { min-width: 0; }
.home-content-with-sidebar { margin-top: 82px; }
.home-content-with-sidebar .home-section { margin-top: 0; }
.home-content-with-sidebar .category-section { margin-top: 82px; }
.article-content-with-sidebar .article { max-width: none; margin: 0; }
.list-content-with-sidebar .list-header { max-width: none; }
.ranking-sidebar { display: grid; gap: 24px; min-width: 0; }
.ranking-panel { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--primary); box-shadow: 0 14px 36px rgba(79, 49, 55, .07); }
.rakuten-ranking-panel { border-top-color: #BF0000; }
.ranking-panel-head { padding: 22px 20px 17px; border-bottom: 1px solid var(--line); }
.ranking-kicker { margin: 0 0 4px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: .62rem; font-weight: 700; letter-spacing: .16em; }
.rakuten-ranking-panel .ranking-kicker { color: #BF0000; }
.ranking-panel h2 { margin: 0; font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; }
.ranking-subtitle { margin: 5px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.ranking-list { margin: 0; padding: 0; list-style: none; counter-reset: ranking; }
.ranking-list li { margin: 0; border-bottom: 1px solid var(--line); }
.ranking-list a { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: start; gap: 11px; padding: 15px 16px; color: var(--text); text-decoration: none; transition: background .18s ease; }
.ranking-list a:hover { color: var(--primary); background: #FBF4F1; }
.ranking-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--primary); background: var(--soft); border: 1px solid color-mix(in srgb, var(--primary), #fff 58%); border-radius: 50%; font-family: Georgia, "Times New Roman", serif; font-size: .88rem; line-height: 1; }
.ranking-list li:nth-child(1) .ranking-number { color: #fff; background: var(--accent); border-color: var(--accent); }
.ranking-list li:nth-child(2) .ranking-number { color: #fff; background: #9B918B; border-color: #9B918B; }
.ranking-list li:nth-child(3) .ranking-number { color: #fff; background: #A87358; border-color: #A87358; }
.ranking-entry { display: flex; flex-direction: column; min-width: 0; }
.ranking-category { margin-bottom: 3px; color: var(--primary); font-size: .62rem; font-weight: 700; letter-spacing: .06em; }
.ranking-title { display: -webkit-box; overflow: hidden; color: #332D2C; font-family: var(--serif); font-size: .8rem; font-weight: 600; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.ranking-count { margin-top: 5px; color: var(--muted); font-size: .64rem; }
.ranking-note { margin: 0; padding: 13px 16px 15px; color: var(--muted); background: #F7F1ED; font-size: .64rem; line-height: 1.65; }
.ranking-empty { margin: 0; padding: 22px 18px; color: var(--muted); font-size: .74rem; }
.product-ranking-list a.has-image { grid-template-columns: 36px 62px minmax(0, 1fr); }
.product-ranking-list img { width: 62px; height: 62px; background: #fff; border: 1px solid var(--line); object-fit: contain; }
.product-ranking-list .ranking-title { font-family: var(--sans); font-size: .74rem; font-weight: 600; line-height: 1.5; }
.ranking-price { margin-top: 5px; color: #A13F48; font-size: .76rem; font-weight: 700; }
.ranking-shop { display: -webkit-box; margin-top: 2px; overflow: hidden; color: var(--muted); font-size: .61rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.ranking-source-link { display: block; padding: 14px 16px 16px; color: #6F303B; background: #fff; font-size: .69rem; font-weight: 700; text-align: center; text-decoration: none; border-top: 1px solid var(--line); }
.ranking-source-link::after { content: "  →"; }
.ranking-source-link:hover { color: #BF0000; }

/* パンくず・記事 */
.breadcrumb { max-width: none; margin: 0 0 18px; color: var(--muted); font-size: .74rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 8px; }
.article { max-width: 820px; margin: 0 auto; padding: 52px 60px 64px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(79, 49, 55, .06); }
.article-head { margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-head h1 { margin-top: 14px; font-size: clamp(1.95rem, 4vw, 2.75rem); line-height: 1.52; }
.cat-badge { display: inline-block; padding: 5px 13px; border-radius: 999px; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .07em; }
.article-meta { margin: 0; color: var(--muted); font-size: .76rem; }
.hero { margin: 0 0 30px; text-align: center; }
.hero img { width: min(100%, 430px); margin-inline: auto; border: 1px solid var(--line); object-fit: cover; object-position: top; }
.hero figcaption { margin-top: 7px; color: var(--muted); font-size: .76rem; }
.article > .lead { margin: 26px 0; padding: 22px 24px; background: var(--soft); border-left: 3px solid var(--primary); font-family: var(--serif); font-size: 1.08rem; line-height: 2; }
.article h2 { position: relative; margin: 58px 0 20px; padding: 18px 0 12px; border-top: 1px solid var(--line-dark); font-size: 1.52rem; }
.article h2::before { content: ""; position: absolute; top: -1px; left: 0; width: 78px; height: 3px; background: var(--primary); }
.article h3 { color: var(--primary); }
.point-box { margin: 30px 0; padding: 22px 26px 10px; background: #fff; border: 1px solid var(--primary); box-shadow: 8px 8px 0 var(--soft); }
.point-title { margin: 0 0 10px; color: var(--primary); font-family: var(--serif); font-size: 1.08rem; font-weight: 700; }
.point-box ul { margin-bottom: 8px; }
.price-line { padding: 13px 16px; background: #F8F0E3; border-left: 4px solid var(--accent); }
.check-list { padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: .7em; }
.check-list svg { flex-shrink: 0; margin-top: .42em; }
.glossary { padding: 20px 24px 12px; background: #F3EFE9; border: 1px solid var(--line); }
.glossary dt { margin-top: 9px; color: var(--primary); font-weight: 700; }
.glossary dd { margin: 3px 0 11px; }
.caution-box { margin: 28px 0; padding: 18px 22px 8px; background: #FBF1F1; border: 1px solid #D9B4B7; }
.caution-title { margin: 0 0 6px; color: var(--alert); font-weight: 700; }

/* 商品 */
.shop-section { margin-top: 44px; }
.price-note { color: var(--muted); font-size: .82rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 24px; }
.product-card { display: flex; flex-direction: column; gap: 7px; padding: 12px; color: var(--text); background: #fff; border: 1px solid var(--line); text-decoration: none; font-size: .84rem; line-height: 1.55; }
.product-card:hover { border-color: var(--primary); }
.product-card img { width: 100%; aspect-ratio: 1 / 1; background: #fff; object-fit: contain; }
.product-noimg { display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; color: var(--muted); background: #F1ECE8; }
.product-name { color: #242020; font-weight: 600; }
.product-price { color: var(--alert); font-size: 1rem; font-weight: 700; }
.product-price small { display: block; font-size: .72rem; font-weight: 400; }
.product-review, .product-shop { color: var(--muted); font-size: .74rem; }
.cta-lead { margin: 12px 0 10px; text-align: center; font-weight: 700; }
.btn-row { display: flex; gap: 8px; margin: 0 0 12px; }
.btn-row > a { display: inline-flex; flex: 1 1 0; align-items: center; justify-content: center; gap: 6px; min-height: 52px; padding: 12px 8px; color: #fff; border-radius: 3px; font-size: .9rem; font-weight: 700; text-decoration: none; }
.btn-amazon { background: #232F3E; }
.btn-rakuten { background: #BF0000; }
.btn-row > a:hover { color: #fff; opacity: .9; }

/* 出典・編集部 */
.source-box { margin: 38px 0; padding: 18px 0 6px; border-top: 1px dashed var(--line-dark); border-bottom: 1px dashed var(--line-dark); font-size: .85rem; }
.source-title { margin-bottom: 5px; font-weight: 700; }
.source-note { color: var(--muted); font-size: .8rem; }
.k-review { display: flex; align-items: flex-start; gap: 16px; margin: 30px 0; padding: 20px 22px; background: var(--soft); border-left: 3px solid var(--accent); }
.k-icon { width: 64px; height: 64px; flex-shrink: 0; border: 3px solid #fff; border-radius: 50%; object-fit: cover; object-position: top; }
.k-label { color: var(--primary); font-size: .86rem; font-weight: 700; }
.k-msg { margin: 4px 0 0; }

/* 関連記事 */
.related { margin-top: 46px; }
.card-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.card { margin: 0; border-bottom: 1px solid var(--line); }
.card a { display: flex; gap: 16px; padding: 18px 0; color: var(--text); text-decoration: none; }
.card a:hover .card-title { color: var(--primary); }
.card-thumb { width: 92px; height: 92px; flex-shrink: 0; background: #fff; border: 1px solid var(--line); object-fit: cover; object-position: top; }
.card-thumb-cat { display: flex; align-items: center; justify-content: center; padding: 7px; color: #fff; font-size: .7rem; font-weight: 700; line-height: 1.35; text-align: center; }
.card-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.card-title { color: #2A2524; font-family: var(--serif); font-weight: 600; line-height: 1.65; }
.card-desc { display: -webkit-box; overflow: hidden; color: #514A47; font-size: .84rem; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.card-meta { color: var(--muted); font-size: .72rem; }

/* 記事一覧 */
.list-header { max-width: 820px; margin: 0 auto 46px; padding: 26px 0 32px; border-bottom: 1px solid var(--line-dark); }
.list-header h1 { margin: 6px 0 10px; }
.list-header p:last-child { color: var(--muted); }
.archive-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px 34px; margin: 0; padding: 0; list-style: none; }
.archive-card { min-width: 0; margin: 0; }
.archive-visual { display: block; aspect-ratio: 1.5 / 1; overflow: hidden; margin-bottom: 18px; text-decoration: none; }
.archive-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.archive-body h2 { margin: 0 0 13px; padding: 0; border: 0; font-size: 1.24rem; line-height: 1.7; }
.archive-desc { display: -webkit-box; overflow: hidden; color: #504946; font-size: .86rem; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.empty-message { min-height: 240px; padding: 40px; background: var(--surface); border: 1px solid var(--line); }

/* 固定ページ */
.static-page h2 { margin-top: 48px; }
.static-page table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.static-page th, .static-page td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }

@media (max-width: 980px) {
  .content-with-sidebar { grid-template-columns: minmax(0, 1fr); }
  .ranking-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 58px; }
  .home-content-with-sidebar { margin-top: 68px; }
  .home-content-with-sidebar .category-section { margin-top: 68px; }
}

@media (max-width: 680px) {
  .ranking-sidebar { grid-template-columns: minmax(0, 1fr); gap: 20px; margin-top: 46px; }
  .ranking-panel-head { padding: 20px 17px 15px; }
  .ranking-list a { padding: 14px; }
}

/* フッター */
.site-footer { position: relative; padding: 66px 0 24px; color: #EDE7E4; background: #2D2829; font-size: .82rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .72fr 1fr; gap: 64px; }
.footer-logo { margin: 0 0 12px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 2.15rem; line-height: 1; }
.footer-tagline { margin-bottom: 12px; color: #fff; font-family: var(--serif); font-size: 1rem; }
.footer-message { color: #BFB6B2; }
.footer-heading { margin: 0 0 14px; color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; }
.footer-nav a { color: #DDD4D0; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-note { color: #BFB6B2; font-size: .74rem; line-height: 1.7; }
.footer-note a { color: #DDD4D0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 18px; border-top: 1px solid #514A4B; }
.copyright { margin: 0; color: #9E9592; font-size: .72rem; }
.footer-top-link { color: #DDD4D0; font-size: .72rem; text-decoration: none; }

/* ---- テーマ層（2026-08-24） ---- */
.hero-slide--plain { background:
  radial-gradient(120% 140% at 85% 10%, rgba(104, 115, 104, .18) 0%, rgba(104, 115, 104, 0) 55%),
  linear-gradient(115deg, #E9EFE9 0%, #F4F0E7 55%, #FAF7F2 100%); }
.hero-slide--plain .hero-slide-copy { max-width: 700px; }
.theme-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 4px; padding: 0; list-style: none; }
.theme-chips li { margin: 0; }
.theme-chips a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 1.5px solid var(--cat-color, var(--line-dark)); border-radius: 999px; color: var(--text); text-decoration: none; font-size: .92rem; background: #fff; transition: background .2s ease; }
.theme-chips a:hover { background: var(--surface); }
.theme-chips .chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cat-color, var(--line-dark)); }
.theme-chips small { color: var(--muted); }

/* ---- 比較記事（2026-08-24） ---- */
.cat-badge-compare { background: #B88962; margin-right: 6px; }
.criteria-list { padding-left: 1.3em; }
.criteria-list li { margin-bottom: .8em; }
.criteria-list small { color: var(--muted); }
.rank-card { border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; margin: 22px 0; background: #fff; }
.rank-card#rank1 { border: 2px solid #B88962; }
.rank-head { margin: 0 0 10px; }
.rank-badge { display: inline-block; background: var(--muted); color: #fff; font-weight: 700; font-size: .95rem; padding: 4px 16px; border-radius: 999px; }
.rank-badge-first { background: #B88962; }
.rank-body { display: flex; gap: 20px; align-items: flex-start; }
.rank-img { width: 180px; height: 180px; object-fit: contain; flex-shrink: 0; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.rank-info { min-width: 0; flex: 1; }
.rank-info h3 { margin: 0 0 8px; font-size: 1.15rem; }
.rank-points { margin: 10px 0; }
.rank-caution { color: var(--alert); font-size: .92rem; }
.swipe-note { font-size: .75rem; color: var(--muted); text-align: right; margin: 0 0 4px; }
.spec-table { border-collapse: collapse; font-size: .95rem; }
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.spec-table thead th { background: var(--soft); }
.faq-list dt::before { content: "Q. "; color: var(--primary); font-weight: 700; }
.faq-list dd::before { content: "A. "; color: var(--muted); font-weight: 700; }
.compare-note { color: var(--muted); margin-top: -8px; }
.btn-rakuten-sub { background: #8a2f2f; }
@media (max-width: 600px) {
  .rank-body { flex-direction: column; }
  .rank-img { width: 100%; max-width: 240px; height: auto; margin-inline: auto; }
}

.maker-note { background: var(--soft); border-radius: 8px; padding: 12px 16px; font-size: .95rem; }
.maker-note small a { color: var(--muted); }

.maker-links { margin: 6px 0 0; padding-left: 1.3em; font-size: .95rem; }
.maker-links li { margin-bottom: .3em; }