/*
Theme Name: YOUTH Clip NEO
Theme URI: https://youthclip.jp
Description: YOUTH Clip NEO MAGAZINE — モバイルファースト リドューアルテーマ（下書き）
Author: YOUTH Clip / 株式会社HJ
Version: 0.4.0
Text Domain: youthclip-neo
*/

/* ==========================================================
   NEO MAGAZINE v3 — MOBILE FIRST
   Base = SP (375px)  →  min-width:768px (tablet)  →  min-width:1200px (PC)
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink:       #f1628b;
  --pink-hover: #e04d78;
  --pink-bg:    #fde8ef;
  --dark:       #0e0e0e;
  --dark-mid:   #181818;
  --gray:       #6b6b6b;
  --gray-light: #f4f4f4;
  --border:     #e8e8e8;
  --white:      #fff;
  --fn-en:      'Montserrat', sans-serif;
  --fn-ja:      'Noto Sans JP', '游ゴシック体', YuGothic, sans-serif;
  --safe-b:     env(safe-area-inset-bottom, 0px);
}
body {
  font-family: var(--fn-ja);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  /* ボトムナビ分の余白 */
  padding-bottom: calc(56px + var(--safe-b));
}
a { text-decoration: none; color: inherit; }

/* DRAFT BADGE は公開済みテーマでは不要 (以前は body に padding-top: 29px を
 * 強制していたためヘッダー上に白い余白が出ていた) */

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex; align-items: center;
  height: 52px; padding: 0 16px; gap: 12px;
}
.site-logo {
  display: flex; align-items: center; flex: 1;
}
.site-logo img {
  height: 30px; width: auto; display: block;
  filter: brightness(0) invert(1);
}

/* SP: 検索アイコン + ハンバc��ガー */
.header-search-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  font-size: 13px;
}
.hamburger {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: rgba(255,255,255,.7); border-radius: 1px;
}

/* PC: フルナビ */
.header-nav { display: none; }
.header-search-full { display: none; }
.btn-biz { display: none; }

@media (min-width: 768px) {
  .header-inner { height: 60px; padding: 0 24px; gap: 24px; }
  .site-logo { font-size: 20px; flex: none; }
  .header-search-btn { display: none; }
  .hamburger { display: none; }
  .header-search-full { display: flex; }
  .btn-biz { display: inline-flex; }
}
@media (min-width: 1200px) {
  .header-inner { max-width: 1680px; margin: 0 auto; padding: 0 32px; gap: 0; overflow: visible; }
  .site-logo { flex: none; margin-right: 20px; }
  .site-logo img { height: 26px; }
  .header-nav { display: flex; list-style: none; flex: 1; min-width: 0; overflow: hidden; }
  .header-nav a {
    display: block; padding: 0 9px;
    font-family: var(--fn-ja); font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,.5); white-space: nowrap;
    line-height: 60px; border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .header-nav a:hover { color: var(--white); }
  .header-nav a.active { color: var(--white); border-bottom-color: var(--pink); }
  .header-search-full { margin-left: 8px; }
  .search-input { width: 140px; }
  .btn-biz { margin-left: 8px; }
}

.header-search-full {
  align-items: center; position: relative;
}
.header-search-full::before {
  content: ''; position: absolute; left: 11px;
  width: 13px; height: 13px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.search-input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 7px 16px 7px 32px;
  font-size: 12px; font-family: var(--fn-ja); color: var(--white);
  width: 180px; outline: none; transition: border-color .2s, width .3s;
}
.search-input::placeholder { color: rgba(255,255,255,.3); }
.search-input:focus { border-color: rgba(241,98,139,.5); width: 220px; }

.btn-biz {
  padding: 6px 16px; border: 1px solid rgba(255,255,255,.2);
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; color: rgba(255,255,255,.6);
  border-radius: 20px; transition: all .2s; white-space: nowrap;
  align-items: center;
}
.btn-biz:hover { border-color: var(--pink); color: var(--pink); }

/* ===== HEADER LINE BUTTON ===== */
.btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  background: #06C755; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  font-family: var(--fn-ja); font-size: 10px; font-weight: 700;
  white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.btn-line:hover { background: #04a844; }
.btn-line svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-line-text { display: none; }
@media (min-width: 768px) {
  .btn-line { width: auto; height: auto; border-radius: 20px; padding: 6px 13px; }
  .btn-line-text { display: inline; }
}
@media (min-width: 1200px) {
  .btn-line { margin-left: 8px; }
}

/* ===== CATEGORY PILLS ===== */
.cat-bar {
  background: var(--dark-mid);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cat-bar-inner {
  display: flex; gap: 6px; align-items: center;
  padding: 8px 16px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.45); letter-spacing: .06em;
  white-space: nowrap; transition: all .2s; flex-shrink: 0; cursor: pointer;
}
.cat-pill:hover { border-color: rgba(241,98,139,.4); color: rgba(255,255,255,.8); }
.cat-pill.active { background: var(--pink); border-color: var(--pink); color: var(--white); }

@media (min-width: 768px) {
  .cat-bar { display: none; }
}
@media (min-width: 1200px) {
  .cat-bar-inner { max-width: 1240px; margin: 0 auto; padding: 10px 40px; }
}

/* ===== HERO ===== */
.hero { position: relative; }

/* SP: 大きな特集カード（フルスクリーン風） */
.hero-lead {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--dark);
}
.hero-lead:active { opacity: .95; }
.hero-lead-bg {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0d1117 0%, #1a1f35 30%, #2d1b4e 65%, #1a0a20 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.hero-lead-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
}
.hero-badges { display: flex; gap: 6px; margin-bottom: 8px; }
.badge-cat {
  display: inline-block; background: var(--pink); color: var(--white);
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; padding: 3px 9px; border-radius: 2px;
}
.badge-type {
  display: inline-block; background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px); color: rgba(255,255,255,.8);
  font-family: var(--fn-en); font-size: 9px; font-weight: 600;
  letter-spacing: .08em; padding: 3px 9px; border-radius: 2px;
}
.hero-lead-title {
  font-size: 18px; font-weight: 700; color: var(--white);
  line-height: 1.45; letter-spacing: -.01em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-lead-meta {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.hero-lead-meta span { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.5); }

/* SP: サブ記事は横スクロール */
.hero-sub {
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.hero-sub::-webkit-scrollbar { display: none; }
.hero-sub-card {
  display: flex; flex-direction: column; flex-shrink: 0;
  width: 160px; padding: 12px;
  border-right: 1px solid var(--border); cursor: pointer;
  transition: background .15s;
}
.hero-sub-card:hover { background: var(--pink-bg); }
.hero-sub-thumb {
  width: 100%; aspect-ratio: 3/2; border-radius: 6px; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.hero-sub-thumb.t1 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.hero-sub-thumb.t2 { background: linear-gradient(135deg, #db2777, #f472b6); }
.hero-sub-thumb.t3 { background: linear-gradient(135deg, #0891b2, #67e8f9); }
.hero-sub-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 3px;
}
.hero-sub-title {
  font-size: 11px; font-weight: 700; line-height: 1.4; color: var(--dark);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-sub-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 4px; }

/* PC: ヒーローを横並びに */
@media (min-width: 768px) {
  .hero {
    max-width: 1240px; margin: 20px auto 0; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 280px; gap: 16px;
    align-items: start;
  }
  .hero-lead-bg { aspect-ratio: 16/9; font-size: 72px; }
  .hero-lead-overlay { padding: 24px; }
  .hero-lead-title { font-size: 20px; -webkit-line-clamp: 2; }
  .hero-sub {
    flex-direction: column; overflow: visible; background: none; border: none;
    gap: 10px;
  }
  .hero-sub-card {
    flex-direction: row; width: 100%; gap: 12px;
    padding: 12px; border-radius: 8px; background: var(--gray-light); border: none;
  }
  .hero-sub-thumb { width: 80px; flex-shrink: 0; aspect-ratio: 3/2; margin-bottom: 0; }
  .hero-sub-title { -webkit-line-clamp: 3; font-size: 12px; }
}
@media (min-width: 1200px) {
  .hero { padding: 24px 40px 0; grid-template-columns: 1fr 320px; }
  .hero-lead-title { font-size: 22px; }
  .hero-sub-card { padding: 14px; }
  .hero-sub-thumb { width: 88px; }
}

/* ===== SECTION HEADER ===== */
.sec-wrap { padding: 0 16px; margin-top: 36px; }
.sec-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sec-head-en {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .15em; color: var(--pink); text-transform: uppercase;
}
.sec-head-title {
  font-family: var(--fn-en); font-size: 16px; font-weight: 900;
  color: var(--dark); letter-spacing: -.01em;
}
.sec-head-line { flex: 1; height: 1px; background: var(--border); }
.sec-head-more {
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .06em; color: var(--gray);
  display: flex; align-items: center; gap: 3px; transition: color .2s; white-space: nowrap;
}
.sec-head-more::after { content: '→'; color: var(--pink); }

@media (min-width: 768px) {
  .sec-wrap { padding: 0 24px; margin-top: 44px; max-width: 1240px; margin-left: auto; margin-right: auto; }
  .sec-head-title { font-size: 18px; }
}
@media (min-width: 1200px) {
  .sec-wrap { padding: 0 40px; margin-top: 52px; }
}

/* ===== ARTICLE GRID ===== */
/* SP: 2列 */
.art-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

/* PC: 4列 */
@media (min-width: 1200px) {
  .art-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.art-card { cursor: pointer; }
.art-card:hover .art-thumb img { transform: scale(1.05); }
.art-card:hover .art-card-title { color: var(--pink); }

.art-thumb {
  border-radius: 8px; overflow: hidden; aspect-ratio: 3/2; margin-bottom: 10px;
}
.art-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: transform .4s ease;
}
@media (min-width: 1200px) { .art-thumb-inner { font-size: 36px; } }

/* ===== IMAGE FILLS ===== */
.art-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.hero-lead-bg { overflow: hidden; }
.hero-lead-bg img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform .5s ease;
}
@media (min-width: 768px) { .hero-lead-bg img { aspect-ratio: 16/9; } }
.hero-lead:hover .hero-lead-bg img { transform: scale(1.03); }
.hero-sub-thumb { overflow: hidden; }
.hero-sub-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-bg { overflow: hidden; }
.feat-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.feat-card:hover .feat-bg img { transform: scale(1.04); }
.rank-thumb { overflow: hidden; }
.rank-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.art-cat {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; color: var(--pink); margin-bottom: 4px;
}
.art-card-title {
  font-size: 12px; font-weight: 700; line-height: 1.5; color: var(--dark);
  transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .art-card-title { font-size: 13px; } }

.art-footer { display: flex; align-items: center; gap: 6px; margin-top: 7px; }
.art-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); }
.art-tag {
  font-size: 9px; color: var(--gray); background: var(--gray-light);
  padding: 2px 7px; border-radius: 20px;
}

/* ===== HORIZONTAL SCROLL SECTION ===== */
.scroll-row {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-card {
  flex-shrink: 0; width: 150px; cursor: pointer;
}
.scroll-card:hover .art-thumb-inner { transform: scale(1.05); }
.scroll-card:hover .art-card-title { color: var(--pink); }
@media (min-width: 768px) { .scroll-card { width: 200px; } }

/* ===== COMPACT NEWS LIST ===== */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover .news-item-title { color: var(--pink); }
.news-item-thumb {
  flex-shrink: 0; width: 78px; height: 52px;
  border-radius: 6px; overflow: hidden;
}
.news-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-item:hover .news-item-thumb img { transform: scale(1.05); }
.news-item-body { flex: 1; min-width: 0; padding-top: 1px; }
.news-item-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 3px;
}
.news-item-title {
  font-size: 12px; font-weight: 700; line-height: 1.5; color: var(--dark);
  transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-item-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 4px; }
@media (min-width: 768px) {
  .news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
  .news-item-thumb { width: 90px; height: 60px; }
  .news-item-title { font-size: 13px; }
}

/* ===== BODY LAYOUT (サイドバc�� + メインコンテンツ) ===== */
@media (min-width: 1200px) {
  .body-layout {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
  }
  .body-layout .page-main .sec-wrap {
    padding: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-sidebar { display: none; }
@media (min-width: 1200px) {
  .page-sidebar {
    display: flex; flex-direction: column; gap: 10px;
    position: sticky; top: 80px;
    padding-top: 52px;
  }
}
.sidebar-banner {
  position: relative; border-radius: 10px; overflow: hidden;
  cursor: pointer; display: block;
}
.sidebar-banner-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.sidebar-banner:hover .sidebar-banner-img { transform: scale(1.06); }
.sidebar-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.06) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10px 12px 12px;
}
.sidebar-banner-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .12em; margin-bottom: 3px;
}
.sidebar-banner-title {
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3;
}
.sidebar-banner-more {
  font-family: var(--fn-en); font-size: 9px; color: rgba(255,255,255,.5);
  margin-top: 5px; letter-spacing: .04em;
}

/* ===== FV SIDEBAR LAYOUT (ファーストビュー左統合型) ===== */
/* SP/tablet: fv-sidebar hidden, fv-wrap is just a block */
.fv-sidebar { display: none; }

@media (min-width: 1440px) {
  .fv-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    max-width: 1660px;
    margin: 0 auto;
    align-items: start;
  }
  .fv-sidebar {
    display: flex; flex-direction: column; gap: 10px;
    position: sticky; top: 80px;
    padding: 14px 12px 0 16px;
  }
  /* body-layout inside fv-wrap: remove internal sidebar */
  .fv-wrap .body-layout { grid-template-columns: 1fr; padding: 0; max-width: none; }
  .fv-wrap .page-sidebar { display: none; }
  .fv-wrap .page-main .sec-wrap { padding: 0; max-width: none; margin-left: 0; margin-right: 0; }
  /* hero & pickup inside fv-wrap: keep existing max-width behavior */
  .fv-wrap .hero { margin: 20px 0 0; }
  .fv-wrap .pickup-label { margin: 12px 0 0; }
}

/* ===== 案B: スリムテキストナビ ===== */
.sidebar-slim { display: flex; flex-direction: column; }
.sidebar-slim-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity .2s;
}
.sidebar-slim-item:last-child { border-bottom: none; }
.sidebar-slim-item:hover { opacity: .7; }
.sidebar-slim-dot {
  width: 4px; height: 32px; border-radius: 2px; flex-shrink: 0;
  background: var(--pink);
}
.sidebar-slim-body { min-width: 0; }
.sidebar-slim-en {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .12em; margin-bottom: 2px;
}
.sidebar-slim-ja {
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700; color: var(--dark);
}
.sidebar-slim-arrow {
  font-family: var(--fn-en); font-size: 9px; color: var(--gray);
  margin-top: 2px;
}

/* ===== 案C: カテゴリタイル型 ===== */
.sidebar-tiles { display: flex; flex-direction: column; gap: 8px; }
.sidebar-tile {
  display: block; border-radius: 10px; overflow: hidden; cursor: pointer;
  padding: 16px 14px; position: relative; min-height: 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .2s;
}
.sidebar-tile:hover { transform: translateY(-2px); }
.sidebar-tile.tile-screen { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.sidebar-tile.tile-report { background: linear-gradient(135deg, #2d1b4e 0%, #4a1b6e 50%, #7b2d8b 100%); }
.sidebar-tile.tile-interview { background: linear-gradient(135deg, #1a0a20 0%, #3d0d3f 50%, #6b2170 100%); }
.sidebar-tile-en {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .14em; margin-bottom: 4px;
}
.sidebar-tile-ja {
  font-family: var(--fn-ja); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.2;
}
.sidebar-tile-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--pink); color: var(--white);
  font-family: var(--fn-en); font-size: 7px; font-weight: 700;
  padding: 2px 6px; border-radius: 2px; letter-spacing: .08em;
}

/* ===== デザイン比較セクション ===== */
.design-compare { padding: 40px 16px; background: #f8f8f8; border-top: 1px solid var(--border); }
.design-compare-heading {
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  color: var(--gray); letter-spacing: .14em; margin-bottom: 24px; text-align: center;
}
.design-compare-grid {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; max-width: 900px; margin: 0 auto;
}
.design-option {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border); flex: 1; min-width: 200px; max-width: 280px;
}
.design-option-head {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--dark);
}
.design-option-label {
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700; color: var(--white);
}
.design-option-sub {
  font-family: var(--fn-en); font-size: 9px; color: rgba(255,255,255,.4); letter-spacing: .08em; margin-top: 2px;
}
.design-option-body { padding: 16px; }
.design-option-current { border-color: var(--pink); }
.design-option-current .design-option-head { background: var(--pink); }
.design-option-note {
  font-size: 11px; color: var(--gray); margin-top: 12px; line-height: 1.5;
}

/* ===== INTERVIEW GRID (大きめ) ===== */
.interview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 768px) { .interview-grid { gap: 20px; } }
@media (min-width: 1200px) { .interview-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.interview-card { cursor: pointer; }
.interview-card:hover .interview-thumb img { transform: scale(1.05); }
.interview-card:hover .interview-title { color: var(--pink); }
.interview-thumb {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 12px;
}
.interview-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.interview-cat {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 5px;
}
.interview-title {
  font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--dark);
  transition: color .2s;
}
.interview-excerpt {
  font-size: 12px; color: var(--gray); line-height: 1.6; margin-top: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .interview-title { font-size: 15px; } }

/* ===== FEATURED（非対称） ===== */
/* SP: 縦積み */
.featured-grid { display: flex; flex-direction: column; gap: 10px; }

/* PC: 非対称グリッド */
@media (min-width: 768px) {
  .featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
  }
  .feat-main { grid-row: 1 / 3; }
}

.feat-card {
  position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
}
.feat-card:hover .feat-bg { transform: scale(1.04); }
.feat-bg {
  width: 100%; display: flex; align-items: center; justify-content: center;
  transition: transform .5s ease;
}
.feat-main .feat-bg { aspect-ratio: 3/2; font-size: 56px; }
.feat-sub .feat-bg { aspect-ratio: 16/7; font-size: 36px; }
@media (min-width: 768px) {
  .feat-main .feat-bg { aspect-ratio: unset; height: 100%; min-height: 280px; font-size: 72px; }
  .feat-sub .feat-bg { aspect-ratio: unset; height: 100%; min-height: 130px; font-size: 36px; }
}

.feat-bg.fb1 { background: linear-gradient(160deg, #1e1b4b, #4c1d95, #7c3aed); }
.feat-bg.fb2 { background: linear-gradient(160deg, #0c1a2e, #1e3a5f, #2563eb); }
.feat-bg.fb3 { background: linear-gradient(160deg, #1a0533, #4a044e, #a21caf); }

.feat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
}
@media (min-width: 768px) { .feat-overlay { padding: 20px; } }

.feat-title {
  font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.4;
  margin-top: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) {
  .feat-main .feat-title { font-size: 17px; -webkit-line-clamp: 3; }
  .feat-sub .feat-title { font-size: 13px; }
}
.feat-date { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ===== RANKING ===== */
/* SP: 1列リスト */
.rank-list { display: flex; flex-direction: column; gap: 0; }
.rank-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
}
.rank-item:first-child { border-top: 1px solid var(--border); }
.rank-item:hover .rank-title { color: var(--pink); }

.rank-num {
  font-family: var(--fn-en); font-weight: 900; font-size: 24px;
  line-height: 1; width: 30px; text-align: center; flex-shrink: 0;
  color: var(--gray-light);
}
.rank-item:nth-child(1) .rank-num { color: var(--pink); }
.rank-item:nth-child(2) .rank-num { color: #f9a8c9; }
.rank-item:nth-child(3) .rank-num { color: #fbc5d8; }

.rank-thumb {
  width: 52px; height: 40px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.rank-thumb.r1 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.rank-thumb.r2 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.rank-thumb.r3 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.rank-thumb.r4 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.rank-thumb.r5 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.rank-thumb.r6 { background: linear-gradient(135deg, #ffedd5, #fed7aa); }

.rank-body { min-width: 0; }
.rank-cat { font-family: var(--fn-en); font-size: 9px; font-weight: 700; color: var(--pink); letter-spacing: .08em; margin-bottom: 2px; }
.rank-title {
  font-size: 12px; font-weight: 700; line-height: 1.45; color: var(--dark); transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* PC: 2列グリッド */
@media (min-width: 768px) {
  .rank-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2px; background: var(--border); border-radius: 10px; overflow: hidden; }
  .rank-item {
    background: var(--white); padding: 16px 18px;
    border-bottom: none; border-top: none;
  }
  .rank-item:first-child { border-top: none; }
  .rank-item:hover { background: #fafafa; }
  .rank-num { font-size: 28px; width: 34px; }
  .rank-thumb { width: 56px; height: 44px; font-size: 20px; }
  .rank-title { font-size: 12px; }
}

/* ===== BOTTOM NAV (SP only) ===== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  padding-bottom: var(--safe-b);
  z-index: 300;
}
.bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px; gap: 2px;
  font-family: var(--fn-ja); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.bottom-nav a.active { color: var(--pink); }
.bottom-nav a:hover { color: rgba(255,255,255,.8); }
.bnav-icon { display: block; width: 20px; height: 2px; background: currentColor; margin-bottom: 2px; }
@media (min-width: 768px) { .bottom-nav { display: none; } }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  margin-top: 56px; padding: 40px 16px 32px;
}
.footer-logo-img {
  height: 22px; width: auto; display: block; margin-bottom: 10px;
  filter: brightness(0) invert(1) opacity(.7);
}
.footer-logo {
  font-family: var(--fn-en); font-weight: 900; font-size: 18px;
  margin-bottom: 8px; letter-spacing: .04em;
}
.footer-logo em { color: var(--pink); font-style: normal; }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.7; margin-bottom: 16px; }
.footer-sns { display: flex; gap: 10px; margin-bottom: 28px; }
.footer-sns-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-sns-btn:hover { border-color: var(--pink); color: var(--pink); }
.footer-sns-btn svg { width: 16px; height: 16px; fill: currentColor; display: block; }

/* SP: アコーディオン風に2列 */
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer-nav h4 {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; color: var(--pink); margin-bottom: 10px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-nav a:hover { color: var(--white); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 20px 0; }

.footer-partners { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.partner-tag {
  font-size: 10px; color: rgba(255,255,255,.25);
  padding: 3px 10px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,.07); transition: border-color .2s;
}
.partner-tag:hover { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.45); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 12px 16px; list-style: none; }
.footer-legal a { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }
.footer-copy { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.15); }

@media (min-width: 768px) {
  .site-footer { padding: 48px 24px 40px; }
  .footer-nav { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1200px) {
  .site-footer { padding: 56px 40px 40px; }
  .footer-inner { max-width: 1240px; margin: 0 auto; }
  .footer-top-row { display: grid; grid-template-columns: 200px 1fr; gap: 64px; }
  .footer-nav { margin-bottom: 0; }
}

/* ===== HEADER SNS ===== */
.header-sns { display: none; }
@media (min-width: 1200px) {
  .header-sns { display: flex; align-items: center; gap: 6px; margin-left: 6px; }
  .header-sns a {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4); transition: all .2s;
  }
  .header-sns a:hover { border-color: var(--pink); color: var(--pink); }
  .header-sns svg { width: 12px; height: 12px; }
}

/* ===== SECTION PICKUP LABEL (上のヒーロー) ===== */
.pickup-label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 4px;
}
.pickup-label-en { font-family: var(--fn-en); font-size: 9px; font-weight: 700; color: var(--pink); letter-spacing: .14em; }
.pickup-label-ja { font-family: var(--fn-ja); font-size: 14px; font-weight: 700; color: var(--dark); }
@media (min-width: 768px) {
  .pickup-label { max-width: 1240px; margin: 12px auto 0; padding: 0 24px 6px; }
  .pickup-label-ja { font-size: 16px; }
}
@media (min-width: 1200px) { .pickup-label { padding: 0 40px 8px; } }

/* ===== LINE CTA ===== */
.line-cta {
  background: linear-gradient(135deg, #06C755 0%, #04a844 100%);
  padding: 28px 16px; margin: 40px 0 0;
}
.line-cta-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.line-cta-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  color: var(--white); letter-spacing: .12em;
  padding: 3px 12px; border-radius: 100px; margin-bottom: 10px;
}
.line-cta-title {
  font-size: 18px; font-weight: 700; color: var(--white);
  line-height: 1.4; margin-bottom: 6px;
}
.line-cta-desc { font-size: 12px; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.line-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: #06C755;
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700;
  padding: 12px 28px; border-radius: 100px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .15s;
}
.line-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.line-cta-btn svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .line-cta-title { font-size: 22px; } }

/* ===== EVENT GRID ===== */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 768px) { .event-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .event-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.event-card { position: relative; cursor: pointer; border-radius: 10px; overflow: hidden; }
.event-card:hover .event-card-img { transform: scale(1.04); }
.event-card-bg { aspect-ratio: 4/3; overflow: hidden; background: var(--dark-mid); }
.event-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.event-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 100%);
}
.event-card-tag { font-family: var(--fn-en); font-size: 8px; font-weight: 700; color: var(--pink); letter-spacing: .1em; margin-bottom: 3px; }
.event-card-name { font-size: 12px; font-weight: 700; color: var(--white); line-height: 1.4; }

/* ===== 試写会カード ===== */
.screening-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 768px) { .screening-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .screening-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.screening-card { cursor: pointer; border-radius: 10px; overflow: hidden; background: var(--gray-light); }
.screening-card:hover .screening-thumb img { transform: scale(1.04); }
.screening-thumb { aspect-ratio: 3/4; overflow: hidden; }
.screening-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.screening-info { padding: 10px 12px; }
.screening-cat { font-family: var(--fn-en); font-size: 8px; font-weight: 700; color: var(--pink); letter-spacing: .1em; margin-bottom: 4px; }
.screening-title { font-size: 11px; font-weight: 700; line-height: 1.5; color: var(--dark); }
.screening-dead { font-size: 10px; color: var(--gray); margin-top: 4px; }

/* ===== YOUTHClipインタビュー (ivw) ===== */
.ivw-layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .ivw-layout { grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: stretch; } }
@media (min-width: 1200px) { .ivw-layout { grid-template-columns: 1.65fr 1fr; gap: 36px; } }
.ivw-main-card { position: relative; display: block; border-radius: 12px; overflow: hidden; cursor: pointer; height: 100%; }
.ivw-img-wrap { aspect-ratio: 3/2; overflow: hidden; }
@media (min-width: 768px) { .ivw-img-wrap { aspect-ratio: unset; position: absolute; inset: 0; } }
.ivw-main-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ivw-main-card:hover img { transform: scale(1.04); }
.ivw-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 28%, rgba(0,0,0,.08) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px 22px 28px; }
.ivw-main-cat { font-family: var(--fn-en); font-size: 9px; font-weight: 700; color: var(--pink); letter-spacing: .15em; margin-bottom: 8px; }
.ivw-main-title { font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.45; }
@media (min-width: 1200px) { .ivw-main-title { font-size: 21px; } }
.ivw-main-excerpt { font-size: 12px; color: rgba(255,255,255,.72); margin-top: 8px; line-height: 1.65; display: none; }
@media (min-width: 768px) { .ivw-main-excerpt { display: block; } }
.ivw-main-date { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.42); margin-top: 12px; }
/* サブリスト: メインと同じ高さを埋める */
.ivw-sub-list { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 768px) { .ivw-sub-list { height: 100%; justify-content: space-between; } }
.ivw-sub-card { display: flex; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; cursor: pointer; flex: 1; }
.ivw-sub-card:first-child { padding-top: 0; }
.ivw-sub-card:last-child { border-bottom: none; padding-bottom: 0; }
.ivw-sub-card:hover .ivw-sub-title { color: var(--pink); }
.ivw-sub-thumb { flex-shrink: 0; width: 100px; height: 72px; border-radius: 8px; overflow: hidden; }
@media (min-width: 1200px) { .ivw-sub-thumb { width: 116px; height: 82px; } }
.ivw-sub-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ivw-sub-card:hover .ivw-sub-thumb img { transform: scale(1.05); }
.ivw-sub-body { flex: 1; min-width: 0; }
.ivw-sub-cat { font-family: var(--fn-en); font-size: 8px; font-weight: 700; color: var(--pink); letter-spacing: .1em; margin-bottom: 5px; }
.ivw-sub-title { font-size: 13px; font-weight: 700; line-height: 1.55; color: var(--dark); transition: color .2s; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 1200px) { .ivw-sub-title { font-size: 14px; } }
.ivw-sub-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 5px; }

/* ===== YOUTHClipレポート (dark bg) ===== */
.sec-dark-bg { background: var(--dark); padding-top: 40px; padding-bottom: 52px; }
.sec-dark-bg .sec-head-en { color: var(--pink); }
.sec-dark-bg .sec-head-title { color: var(--white); }
.sec-dark-bg .sec-head-more { color: rgba(255,255,255,.45); }
.sec-dark-bg .sec-head-more:hover { color: var(--white); }
.sec-dark-bg .sec-head-line { background: rgba(255,255,255,.12); }
.rpt-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .rpt-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1200px) { .rpt-grid { grid-template-columns: 1.85fr 1fr 1fr; gap: 22px; align-items: start; } }
.rpt-card { display: block; cursor: pointer; border-radius: 10px; overflow: hidden; background: var(--dark-mid); text-decoration: none; }
.rpt-card:hover .rpt-thumb img { transform: scale(1.04); }
.rpt-thumb { overflow: hidden; }
.rpt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.rpt-card-main .rpt-thumb { aspect-ratio: 16/9; }
.rpt-card-sub .rpt-thumb { aspect-ratio: 3/2; }
.rpt-info { padding: 13px 15px 17px; }
.rpt-cat { font-family: var(--fn-en); font-size: 8px; font-weight: 700; color: var(--pink); letter-spacing: .12em; margin-bottom: 5px; }
.rpt-title { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.5; }
.rpt-title-sm { font-size: 12px; font-weight: 700; color: var(--white); line-height: 1.5; }
.rpt-excerpt { font-size: 11px; color: rgba(255,255,255,.52); margin-top: 6px; line-height: 1.65; }
.rpt-date { font-family: var(--fn-en); font-size: 9px; color: rgba(255,255,255,.35); margin-top: 7px; }
@media (min-width: 600px) { .rpt-card-main { grid-column: span 2; } }
@media (min-width: 1200px) { .rpt-card-main { grid-column: span 1; } }

/* ===== 試写会・イベント (dark bg) ===== */
.badge-scev { display: inline-block; font-family: var(--fn-en); font-size: 9px; font-weight: 700; letter-spacing: .08em; padding: 3px 9px; border-radius: 20px; }
.badge-scev.type-screen { background: var(--pink); color: #fff; }
.badge-scev.type-event { background: #3b82f6; color: #fff; }
.badge-scev.type-present { background: #10b981; color: #fff; }
.scev-layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .scev-layout { grid-template-columns: 1.45fr 1fr; gap: 28px; align-items: start; } }
.scev-feat-card { display: block; text-decoration: none; cursor: pointer; border-radius: 12px; overflow: hidden; background: var(--gray-light); }
.scev-feat-card:hover .scev-feat-img { transform: scale(1.04); }
.scev-feat-thumb { overflow: hidden; aspect-ratio: 16/9; }
.scev-feat-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.scev-feat-info { padding: 16px 18px 20px; }
.scev-feat-badges { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.scev-deadline { font-size: 11px; font-weight: 700; color: #e74c3c; }
.scev-feat-title { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.5; }
.scev-feat-desc { font-size: 12px; color: var(--gray); margin-top: 8px; line-height: 1.65; }
.scev-feat-apply { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; background: var(--pink); color: #fff; font-family: var(--fn-ja); font-size: 12px; font-weight: 700; padding: 9px 20px; border-radius: 24px; transition: background .2s; text-decoration: none; }
.scev-feat-apply:hover { background: #d94e77; }
.scev-list { display: flex; flex-direction: column; gap: 10px; }
.scev-item { display: flex; gap: 0; align-items: stretch; background: var(--gray-light); border-radius: 10px; overflow: hidden; text-decoration: none; cursor: pointer; }
.scev-item:hover .scev-item-thumb img { transform: scale(1.06); }
.scev-item-thumb { flex-shrink: 0; width: 90px; overflow: hidden; }
.scev-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.scev-item-body { padding: 10px 12px; flex: 1; }
.scev-item-badges { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 5px; }
.scev-item-title { font-size: 12px; font-weight: 700; color: var(--dark); line-height: 1.5; }
.scev-item-dead { font-size: 10px; font-weight: 700; color: #e74c3c; margin-top: 4px; }

/* ===== カテゴリ別特集 (cat-showcase) ===== */
.cat-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 768px) { .cat-showcase { gap: 20px; } }
@media (min-width: 1200px) { .cat-showcase { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.cat-block { border-radius: 12px; overflow: hidden; background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; }
.cat-block-header { padding: 16px 16px 14px; }
.cat-block.cb-movie .cat-block-header { background: linear-gradient(135deg, #1a1a2e 0%, #4a1464 100%); }
.cat-block.cb-drama .cat-block-header { background: linear-gradient(135deg, #0d2137 0%, #1a5276 100%); }
.cat-block.cb-music .cat-block-header { background: linear-gradient(135deg, #1a0030 0%, #6b21a8 100%); }
.cat-block.cb-event .cat-block-header { background: linear-gradient(135deg, #2d0d16 0%, #c0392b 100%); }
.cat-block-en { font-family: var(--fn-en); font-size: 9px; font-weight: 700; letter-spacing: .15em; color: rgba(255,255,255,.52); }
.cat-block-name { font-family: var(--fn-ja); font-size: 20px; font-weight: 700; color: #fff; margin-top: 3px; }
.cat-block-articles { flex: 1; }
.cat-art-item { display: flex; gap: 10px; align-items: center; padding: 9px 14px; border-bottom: 1px solid var(--border); cursor: pointer; text-decoration: none; color: inherit; }
.cat-art-item:last-child { border-bottom: none; }
.cat-art-item:hover .cat-art-title { color: var(--pink); }
.cat-art-num { font-family: var(--fn-en); font-size: 10px; font-weight: 700; color: var(--pink); flex-shrink: 0; min-width: 14px; }
.cat-art-thumb { flex-shrink: 0; width: 44px; height: 32px; border-radius: 4px; overflow: hidden; }
.cat-art-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-art-title { font-size: 11px; font-weight: 700; line-height: 1.4; color: var(--dark); transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-block-more { display: block; text-align: center; padding: 10px 14px; font-family: var(--fn-en); font-size: 9px; font-weight: 700; color: var(--pink); letter-spacing: .1em; border-top: 1px solid var(--border); text-decoration: none; }
.cat-block-more:hover { background: var(--gray-light); }
@media (max-width: 767px) {
  .cat-art-item:nth-child(n+3) { display: none; }
  .cat-art-thumb { display: none; }
  .cat-art-num { font-size: 11px; min-width: 12px; }
  .cat-art-title { font-size: 11px; -webkit-line-clamp: 3; }
  .cat-art-item { padding: 8px 12px; gap: 7px; }
  .cat-block-name { font-size: 17px; }
}

/* ===== COMMNGSSOON ===== */
.coming-soon-block {
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; border-radius: 12px;
  background: repeating-linear-gradient(-45deg, var(--gray-light) 0px, var(--gray-light) 10px, #fff 10px, #fff 20px);
  border: 2px dashed var(--border);
}
.coming-soon-dark {
  background: repeating-linear-gradient(-45deg, #181818 0px, #181818 10px, #1f1f1f 10px, #1f1f1f 20px);
  border: 2px dashed rgba(255,255,255,.1);
}
.csoon-inner { text-align: center; padding: 32px 20px; }
.csoon-label { font-family: var(--fn-en); font-size: 22px; font-weight: 900; letter-spacing: .18em; color: var(--pink); margin-bottom: 10px; }
.csoon-text { font-size: 12px; color: var(--gray); line-height: 1.8; }


/* =============================================
   記事ページ（single.php）用スタイル
   ============================================= */
/* ==========================================================
   NEO MAGAZINE v3 — MOBILE FIRST
   Base = SP (375px)  →  min-width:768px (tablet)  →  min-width:1200px (PC)
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink:       #f1628b;
  --pink-hover: #e04d78;
  --pink-bg:    #fde8ef;
  --dark:       #0e0e0e;
  --dark-mid:   #181818;
  --gray:       #6b6b6b;
  --gray-light: #f4f4f4;
  --border:     #e8e8e8;
  --white:      #fff;
  --fn-en:      'Montserrat', sans-serif;
  --fn-ja:      'Noto Sans JP', '游ゴシック体', YuGothic, sans-serif;
  --safe-b:     env(safe-area-inset-bottom, 0px);
}
body {
  font-family: var(--fn-ja);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  /* ボトムナビ分の余白 */
  padding-bottom: calc(56px + var(--safe-b));
}
a { text-decoration: none; color: inherit; }

/* DRAFT BADGE は公開済みテーマでは不要 (以前は body に padding-top: 29px を
 * 強制していたためヘッダー上に白い余白が出ていた) */

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex; align-items: center;
  height: 52px; padding: 0 16px; gap: 12px;
}
.site-logo {
  display: flex; align-items: center; flex: 1;
}
.site-logo img {
  height: 30px; width: auto; display: block;
  filter: brightness(0) invert(1);
}

/* SP: 検索アイコン + ハンバーガー */
.header-search-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  font-size: 13px;
}
.hamburger {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: rgba(255,255,255,.7); border-radius: 1px;
}

/* PC: フルナビ */
.header-nav { display: none; }
.header-search-full { display: none; }
.btn-biz { display: none; }

@media (min-width: 768px) {
  .header-inner { height: 60px; padding: 0 24px; gap: 24px; }
  .site-logo { font-size: 20px; flex: none; }
  .header-search-btn { display: none; }
  .hamburger { display: none; }
  .header-search-full { display: flex; }
  .btn-biz { display: inline-flex; }
}
@media (min-width: 1200px) {
  .header-inner { max-width: 1680px; margin: 0 auto; padding: 0 32px; gap: 0; overflow: visible; }
  .site-logo { flex: none; margin-right: 20px; }
  .site-logo img { height: 26px; }
  .header-nav { display: flex; list-style: none; flex: 1; min-width: 0; overflow: hidden; }
  .header-nav a {
    display: block; padding: 0 9px;
    font-family: var(--fn-ja); font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,.5); white-space: nowrap;
    line-height: 60px; border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .header-nav a:hover { color: var(--white); }
  .header-nav a.active { color: var(--white); border-bottom-color: var(--pink); }
  .header-search-full { margin-left: 8px; }
  .search-input { width: 140px; }
  .btn-biz { margin-left: 8px; }
}

.header-search-full {
  align-items: center; position: relative;
}
.header-search-full::before {
  content: ''; position: absolute; left: 11px;
  width: 13px; height: 13px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.search-input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 7px 16px 7px 32px;
  font-size: 12px; font-family: var(--fn-ja); color: var(--white);
  width: 180px; outline: none; transition: border-color .2s, width .3s;
}
.search-input::placeholder { color: rgba(255,255,255,.3); }
.search-input:focus { border-color: rgba(241,98,139,.5); width: 220px; }

.btn-biz {
  padding: 6px 16px; border: 1px solid rgba(255,255,255,.2);
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; color: rgba(255,255,255,.6);
  border-radius: 20px; transition: all .2s; white-space: nowrap;
  align-items: center;
}
.btn-biz:hover { border-color: var(--pink); color: var(--pink); }

/* ===== HEADER LINE BUTTON ===== */
.btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  background: #06C755; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  font-family: var(--fn-ja); font-size: 10px; font-weight: 700;
  white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.btn-line:hover { background: #04a844; }
.btn-line svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-line-text { display: none; }
@media (min-width: 768px) {
  .btn-line { width: auto; height: auto; border-radius: 20px; padding: 6px 13px; }
  .btn-line-text { display: inline; }
}
@media (min-width: 1200px) {
  .btn-line { margin-left: 8px; }
}

/* ===== CATEGORY PILLS ===== */
.cat-bar {
  background: var(--dark-mid);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cat-bar-inner {
  display: flex; gap: 6px; align-items: center;
  padding: 8px 16px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.45); letter-spacing: .06em;
  white-space: nowrap; transition: all .2s; flex-shrink: 0; cursor: pointer;
}
.cat-pill:hover { border-color: rgba(241,98,139,.4); color: rgba(255,255,255,.8); }
.cat-pill.active { background: var(--pink); border-color: var(--pink); color: var(--white); }

@media (min-width: 768px) {
  .cat-bar { display: none; }
}
@media (min-width: 1200px) {
  .cat-bar-inner { max-width: 1240px; margin: 0 auto; padding: 10px 40px; }
}

/* ===== HERO ===== */
.hero { position: relative; }

/* SP: 大きな特集カード（フルスクリーン風） */
.hero-lead {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--dark);
}
.hero-lead:active { opacity: .95; }
.hero-lead-bg {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0d1117 0%, #1a1f35 30%, #2d1b4e 65%, #1a0a20 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.hero-lead-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
}
.hero-badges { display: flex; gap: 6px; margin-bottom: 8px; }
.badge-cat {
  display: inline-block; background: var(--pink); color: var(--white);
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; padding: 3px 9px; border-radius: 2px;
}
.badge-type {
  display: inline-block; background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px); color: rgba(255,255,255,.8);
  font-family: var(--fn-en); font-size: 9px; font-weight: 600;
  letter-spacing: .08em; padding: 3px 9px; border-radius: 2px;
}
.hero-lead-title {
  font-size: 18px; font-weight: 700; color: var(--white);
  line-height: 1.45; letter-spacing: -.01em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-lead-meta {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.hero-lead-meta span { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.5); }

/* SP: サブ記事は横スクロール */
.hero-sub {
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.hero-sub::-webkit-scrollbar { display: none; }
.hero-sub-card {
  display: flex; flex-direction: column; flex-shrink: 0;
  width: 160px; padding: 12px;
  border-right: 1px solid var(--border); cursor: pointer;
  transition: background .15s;
}
.hero-sub-card:hover { background: var(--pink-bg); }
.hero-sub-thumb {
  width: 100%; aspect-ratio: 3/2; border-radius: 6px; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.hero-sub-thumb.t1 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.hero-sub-thumb.t2 { background: linear-gradient(135deg, #db2777, #f472b6); }
.hero-sub-thumb.t3 { background: linear-gradient(135deg, #0891b2, #67e8f9); }
.hero-sub-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 3px;
}
.hero-sub-title {
  font-size: 11px; font-weight: 700; line-height: 1.4; color: var(--dark);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-sub-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 4px; }

/* PC: ヒーローを横並びに */
@media (min-width: 768px) {
  .hero {
    max-width: 1240px; margin: 20px auto 0; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 280px; gap: 16px;
    align-items: start;
  }
  .hero-lead-bg { aspect-ratio: 16/9; font-size: 72px; }
  .hero-lead-overlay { padding: 24px; }
  .hero-lead-title { font-size: 20px; -webkit-line-clamp: 2; }
  .hero-sub {
    flex-direction: column; overflow: visible; background: none; border: none;
    gap: 10px;
  }
  .hero-sub-card {
    flex-direction: row; width: 100%; gap: 12px;
    padding: 12px; border-radius: 8px; background: var(--gray-light); border: none;
  }
  .hero-sub-thumb { width: 80px; flex-shrink: 0; aspect-ratio: 3/2; margin-bottom: 0; }
  .hero-sub-title { -webkit-line-clamp: 3; font-size: 12px; }
}
@media (min-width: 1200px) {
  .hero { padding: 24px 40px 0; grid-template-columns: 1fr 320px; }
  .hero-lead-title { font-size: 22px; }
  .hero-sub-card { padding: 14px; }
  .hero-sub-thumb { width: 88px; }
}

/* ===== SECTION HEADER ===== */
.sec-wrap { padding: 0 16px; margin-top: 36px; }
.sec-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sec-head-en {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .15em; color: var(--pink); text-transform: uppercase;
}
.sec-head-title {
  font-family: var(--fn-en); font-size: 16px; font-weight: 900;
  color: var(--dark); letter-spacing: -.01em;
}
.sec-head-line { flex: 1; height: 1px; background: var(--border); }
.sec-head-more {
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .06em; color: var(--gray);
  display: flex; align-items: center; gap: 3px; transition: color .2s; white-space: nowrap;
}
.sec-head-more::after { content: '→'; color: var(--pink); }

@media (min-width: 768px) {
  .sec-wrap { padding: 0 24px; margin-top: 44px; max-width: 1240px; margin-left: auto; margin-right: auto; }
  .sec-head-title { font-size: 18px; }
}
@media (min-width: 1200px) {
  .sec-wrap { padding: 0 40px; margin-top: 52px; }
}

/* ===== ARTICLE GRID ===== */
/* SP: 2列 */
.art-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

/* PC: 4列 */
@media (min-width: 1200px) {
  .art-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.art-card { cursor: pointer; }
.art-card:hover .art-thumb img { transform: scale(1.05); }
.art-card:hover .art-card-title { color: var(--pink); }

.art-thumb {
  border-radius: 8px; overflow: hidden; aspect-ratio: 3/2; margin-bottom: 10px;
}
.art-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: transform .4s ease;
}
@media (min-width: 1200px) { .art-thumb-inner { font-size: 36px; } }

/* ===== IMAGE FILLS ===== */
.art-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.hero-lead-bg { overflow: hidden; }
.hero-lead-bg img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform .5s ease;
}
@media (min-width: 768px) { .hero-lead-bg img { aspect-ratio: 16/9; } }
.hero-lead:hover .hero-lead-bg img { transform: scale(1.03); }
.hero-sub-thumb { overflow: hidden; }
.hero-sub-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-bg { overflow: hidden; }
.feat-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.feat-card:hover .feat-bg img { transform: scale(1.04); }
.rank-thumb { overflow: hidden; }
.rank-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.art-cat {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; color: var(--pink); margin-bottom: 4px;
}
.art-card-title {
  font-size: 12px; font-weight: 700; line-height: 1.5; color: var(--dark);
  transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .art-card-title { font-size: 13px; } }

.art-footer { display: flex; align-items: center; gap: 6px; margin-top: 7px; }
.art-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); }
.art-tag {
  font-size: 9px; color: var(--gray); background: var(--gray-light);
  padding: 2px 7px; border-radius: 20px;
}

/* ===== HORIZONTAL SCROLL SECTION ===== */
.scroll-row {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-card {
  flex-shrink: 0; width: 150px; cursor: pointer;
}
.scroll-card:hover .art-thumb-inner { transform: scale(1.05); }
.scroll-card:hover .art-card-title { color: var(--pink); }
@media (min-width: 768px) { .scroll-card { width: 200px; } }

/* ===== COMPACT NEWS LIST ===== */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover .news-item-title { color: var(--pink); }
.news-item-thumb {
  flex-shrink: 0; width: 78px; height: 52px;
  border-radius: 6px; overflow: hidden;
}
.news-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-item:hover .news-item-thumb img { transform: scale(1.05); }
.news-item-body { flex: 1; min-width: 0; padding-top: 1px; }
.news-item-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 3px;
}
.news-item-title {
  font-size: 12px; font-weight: 700; line-height: 1.5; color: var(--dark);
  transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-item-date { font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 4px; }
@media (min-width: 768px) {
  .news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
  .news-item-thumb { width: 90px; height: 60px; }
  .news-item-title { font-size: 13px; }
}

/* ===== BODY LAYOUT (サイドバー + メインコンテンツ) ===== */
@media (min-width: 1200px) {
  .body-layout {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
  }
  .body-layout .page-main .sec-wrap {
    padding: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-sidebar { display: none; }
@media (min-width: 1200px) {
  .page-sidebar {
    display: flex; flex-direction: column; gap: 10px;
    position: sticky; top: 80px;
    padding-top: 52px;
  }
}
.sidebar-banner {
  position: relative; border-radius: 10px; overflow: hidden;
  cursor: pointer; display: block;
}
.sidebar-banner-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.sidebar-banner:hover .sidebar-banner-img { transform: scale(1.06); }
.sidebar-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.06) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10px 12px 12px;
}
.sidebar-banner-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .12em; margin-bottom: 3px;
}
.sidebar-banner-title {
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3;
}
.sidebar-banner-more {
  font-family: var(--fn-en); font-size: 9px; color: rgba(255,255,255,.5);
  margin-top: 5px; letter-spacing: .04em;
}

/* ===== FV SIDEBAR LAYOUT (ファーストビュー左統合型) ===== */
/* SP/tablet: fv-sidebar hidden, fv-wrap is just a block */
.fv-sidebar { display: none; }

@media (min-width: 1440px) {
  .fv-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    max-width: 1660px;
    margin: 0 auto;
    align-items: start;
  }
  .fv-sidebar {
    display: flex; flex-direction: column; gap: 10px;
    position: sticky; top: 80px;
    padding: 14px 12px 0 16px;
  }
  /* body-layout inside fv-wrap: remove internal sidebar */
  .fv-wrap .body-layout { grid-template-columns: 1fr; padding: 0; max-width: none; }
  .fv-wrap .page-sidebar { display: none; }
  .fv-wrap .page-main .sec-wrap { padding: 0; max-width: none; margin-left: 0; margin-right: 0; }
  /* hero & pickup inside fv-wrap: keep existing max-width behavior */
  .fv-wrap .hero { margin: 20px 0 0; }
  .fv-wrap .pickup-label { margin: 12px 0 0; }
}

/* ===== 案B: スリムテキストナビ ===== */
.sidebar-slim { display: flex; flex-direction: column; }
.sidebar-slim-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity .2s;
}
.sidebar-slim-item:last-child { border-bottom: none; }
.sidebar-slim-item:hover { opacity: .7; }
.sidebar-slim-dot {
  width: 4px; height: 32px; border-radius: 2px; flex-shrink: 0;
  background: var(--pink);
}
.sidebar-slim-body { min-width: 0; }
.sidebar-slim-en {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .12em; margin-bottom: 2px;
}
.sidebar-slim-ja {
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700; color: var(--dark);
}
.sidebar-slim-arrow {
  font-family: var(--fn-en); font-size: 9px; color: var(--gray);
  margin-top: 2px;
}

/* ===== 案C: カテゴリタイル型 ===== */
.sidebar-tiles { display: flex; flex-direction: column; gap: 8px; }
.sidebar-tile {
  display: block; border-radius: 10px; overflow: hidden; cursor: pointer;
  padding: 16px 14px; position: relative; min-height: 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .2s;
}
.sidebar-tile:hover { transform: translateY(-2px); }
.sidebar-tile.tile-screen { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.sidebar-tile.tile-report { background: linear-gradient(135deg, #2d1b4e 0%, #4a1b6e 50%, #7b2d8b 100%); }
.sidebar-tile.tile-interview { background: linear-gradient(135deg, #1a0a20 0%, #3d0d3f 50%, #6b2170 100%); }
.sidebar-tile-en {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .14em; margin-bottom: 4px;
}
.sidebar-tile-ja {
  font-family: var(--fn-ja); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.2;
}
.sidebar-tile-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--pink); color: var(--white);
  font-family: var(--fn-en); font-size: 7px; font-weight: 700;
  padding: 2px 6px; border-radius: 2px; letter-spacing: .08em;
}

/* ===== デザイン比較セクション ===== */
.design-compare { padding: 40px 16px; background: #f8f8f8; border-top: 1px solid var(--border); }
.design-compare-heading {
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  color: var(--gray); letter-spacing: .14em; margin-bottom: 24px; text-align: center;
}
.design-compare-grid {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; max-width: 900px; margin: 0 auto;
}
.design-option {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border); flex: 1; min-width: 200px; max-width: 280px;
}
.design-option-head {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--dark);
}
.design-option-label {
  font-family: var(--fn-ja); font-size: 13px; font-weight: 700; color: var(--white);
}
.design-option-sub {
  font-family: var(--fn-en); font-size: 9px; color: rgba(255,255,255,.4); letter-spacing: .08em; margin-top: 2px;
}
.design-option-body { padding: 16px; }
.design-option-current { border-color: var(--pink); }
.design-option-current .design-option-head { background: var(--pink); }
.design-option-note {
  font-size: 11px; color: var(--gray); margin-top: 12px; line-height: 1.5;
}

/* ===== INTERVIEW GRID (大きめ) ===== */
.interview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 768px) { .interview-grid { gap: 20px; } }
@media (min-width: 1200px) { .interview-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.interview-card { cursor: pointer; }
.interview-card:hover .interview-thumb img { transform: scale(1.05); }
.interview-card:hover .interview-title { color: var(--pink); }
.interview-thumb {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 12px;
}
.interview-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.interview-cat {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 5px;
}
.interview-title {
  font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--dark);
  transition: color .2s;
}
.interview-excerpt {
  font-size: 12px; color: var(--gray); line-height: 1.6; margin-top: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .interview-title { font-size: 15px; } }

/* ===== FEATURED（非対称） ===== */
/* SP: 縦積み */
.featured-grid { display: flex; flex-direction: column; gap: 10px; }

/* PC: 非対称グリッド */
@media (min-width: 768px) {
  .featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
  }
  .feat-main { grid-row: 1 / 3; }
}

.feat-card {
  position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
}
.feat-card:hover .feat-bg { transform: scale(1.04); }
.feat-bg {
  width: 100%; display: flex; align-items: center; justify-content: center;
  transition: transform .5s ease;
}
.feat-main .feat-bg { aspect-ratio: 3/2; font-size: 56px; }
.feat-sub .feat-bg { aspect-ratio: 16/7; font-size: 36px; }
@media (min-width: 768px) {
  .feat-main .feat-bg { aspect-ratio: unset; height: 100%; min-height: 280px; font-size: 72px; }
  .feat-sub .feat-bg { aspect-ratio: unset; height: 100%; min-height: 130px; font-size: 36px; }
}

.feat-bg.fb1 { background: linear-gradient(160deg, #1e1b4b, #4c1d95, #7c3aed); }
.feat-bg.fb2 { background: linear-gradient(160deg, #0c1a2e, #1e3a5f, #2563eb); }
.feat-bg.fb3 { background: linear-gradient(160deg, #1a0533, #4a044e, #a21caf); }

.feat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
}
@media (min-width: 768px) { .feat-overlay { padding: 20px; } }

.feat-title {
  font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.4;
  margin-top: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) {
  .feat-main .feat-title { font-size: 17px; -webkit-line-clamp: 3; }
  .feat-sub .feat-title { font-size: 13px; }
}
.feat-date { font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ===== RANKING ===== */
/* SP: 1列リスト */
.rank-list { display: flex; flex-direction: column; gap: 0; }
.rank-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
}
.rank-item:first-child { border-top: 1px solid var(--border); }
.rank-item:hover .rank-title { color: var(--pink); }

.rank-num {
  font-family: var(--fn-en); font-weight: 900; font-size: 24px;
  line-height: 1; width: 30px; text-align: center; flex-shrink: 0;
  color: var(--gray-light);
}
.rank-item:nth-child(1) .rank-num { color: var(--pink); }
.rank-item:nth-child(2) .rank-num { color: #f9a8c9; }
.rank-item:nth-child(3) .rank-num { color: #fbc5d8; }

.rank-thumb {
  width: 52px; height: 40px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.rank-thumb.r1 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.rank-thumb.r2 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.rank-thumb.r3 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.rank-thumb.r4 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.rank-thumb.r5 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.rank-thumb.r6 { background: linear-gradient(135deg, #ffedd5, #fed7aa); }

.rank-body { min-width: 0; }
.rank-cat { font-family: var(--fn-en); font-size: 9px; font-weight: 700; color: var(--pink); letter-spacing: .08em; margin-bottom: 2px; }
.rank-title {
  font-size: 12px; font-weight: 700; line-height: 1.45; color: var(--dark); transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* PC: 2列グリッド */
@media (min-width: 768px) {
  .rank-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2px; background: var(--border); border-radius: 10px; overflow: hidden; }
  .rank-item {
    background: var(--white); padding: 16px 18px;
    border-bottom: none; border-top: none;
  }
  .rank-item:first-child { border-top: none; }
  .rank-item:hover { background: #fafafa; }
  .rank-num { font-size: 28px; width: 34px; }
  .rank-thumb { width: 56px; height: 44px; font-size: 20px; }
  .rank-title { font-size: 12px; }
}

/* ===== BOTTOM NAV (SP only) ===== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  padding-bottom: var(--safe-b);
  z-index: 300;
}
.bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px; gap: 2px;
  font-family: var(--fn-ja); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.bottom-nav a.active { color: var(--pink); }
.bottom-nav a:hover { color: rgba(255,255,255,.8); }

.bnav-icon { display: block; width: 20px; height: 2px; background: currentColor; margin-bottom: 2px; }
@media (min-width: 768px) { .bottom-nav { display: none; } }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  margin-top: 56px; padding: 40px 16px 32px;
}
.footer-logo-img {
  height: 22px; width: auto; display: block; margin-bottom: 10px;
  filter: brightness(0) invert(1) opacity(.7);
}
.footer-logo {
  font-family: var(--fn-en); font-weight: 900; font-size: 18px;
  margin-bottom: 8px; letter-spacing: .04em;
}
.footer-logo em { color: var(--pink); font-style: normal; }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.7; margin-bottom: 16px; }
.footer-sns { display: flex; gap: 10px; margin-bottom: 28px; }
.footer-sns-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-sns-btn:hover { border-color: var(--pink); color: var(--pink); }
.footer-sns-btn svg { width: 16px; height: 16px; fill: currentColor; display: block; }

/* === SFSI sticky social icons: hide === */
.sfsi_premium_sticky_icons_container,
.sfsi_premium_desktop_display,
.sfsi-wid-div,
[class*="sfsi_premium_sticky"],
[class*="sfsi_floater"],
.sfsi_wDiv,
#sfsi_floater { display: none !important; }

/* === PATCH v0.4.0 === */

/* 1. cat-block */
.cat-block { background: #fff !important; }
.cat-block > div { background: #fff; }

/* 2. share buttons: outline */
.share-btn-line,.share-btn-x,.share-btn-fb,.share-btn-ig { background: var(--gray-light) !important; color: var(--dark) !important; border: 1px solid var(--border) !important; }
.share-btn-line:hover { background: rgba(6,199,85,.1) !important; color: #06C755 !important; border-color: #06C755 !important; }
.share-btn-x:hover { background: rgba(0,0,0,.06) !important; color: #000 !important; border-color: rgba(0,0,0,.25) !important; }
.share-btn-ig:hover { background: var(--pink-bg) !important; color: var(--pink) !important; border-color: var(--pink) !important; }
.share-btn-fb:hover { background: rgba(24,119,242,.1) !important; color: #1877F2 !important; border-color: #1877F2 !important; }

/* 3. TOC font size */
.art-toc { padding: 14px 16px !important; margin: 20px 0 !important; }
.art-toc-list { gap: 5px !important; }
.art-toc-list li { font-size: 11px !important; line-height: 1.5; }
.art-toc-list li::before { font-size: 10px !important; }
#toc_container { font-size: 11px !important; }
#toc_container li a { font-size: 11px !important; }
.ez-toc-container { font-size: 11px !important; }
.ez-toc-section { font-size: 11px !important; }

/* 4. mobile nav drawer */
.nav-drawer { position: fixed; inset: 0; z-index: 500; pointer-events: none; }
.nav-drawer.open { pointer-events: all; }
.nav-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .3s ease; }
.nav-drawer.open .nav-drawer-overlay { opacity: 1; }
.nav-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 280px; max-width: 85vw; background: var(--dark); border-left: 1px solid rgba(255,255,255,.06); transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; }
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 0 16px; height: 52px; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-drawer-logo { font-family: var(--fn-en); font-weight: 900; font-size: 16px; color: #fff; letter-spacing: .04em; }
.nav-drawer-logo em { color: var(--pink); font-style: normal; }
.nav-drawer-close { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); background: none; color: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; line-height: 1; padding: 0; transition: border-color .2s, color .2s; }
.nav-drawer-close:hover { border-color: var(--pink); color: var(--pink); }
.nav-drawer-nav { padding: 4px 0; flex: 1; }
.event-card-bg { aspect-ratio: 4/3; overflow: hidden; background: var(--dark-mid); }
.event-card-img { width: 100%; height: 100%; object-fit: cover; display: block;
 display: block; border-radius: 12px; overflow: hidden; margin-bottom: 12px;
  background: linear-gradient(160deg, var(--dark) 0%, #1a1f35 100%);
}
.event-card-thumb { aspect-ratio: 4/3; overflow: hidden; }
.event-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.event-card:hover .event-card-thumb img { transform: scale(1.04); }
.event-card-body { padding: 0 4px; }
.event-card-date {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 4px;
}
.event-card-title {
  font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--dark);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.event-card-venue {
  font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 4px;
}

/* ===== IDOL CHART ===== */
.idol-chart { display: flex; flex-direction: column; gap: 10px; }
.idol-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; border-radius: 10px;
  background: var(--gray-light); cursor: pointer;
  transition: background .15s;
}
.idol-row:hover { background: var(--pink-bg); }
.idol-rank {
  font-family: var(--fn-en); font-size: 22px; font-weight: 900; color: var(--border);
  width: 28px; text-align: center; flex-shrink: 0;
  line-height: 1;
}
.idol-rank.r1 { color: #f0b429; }
.idol-rank.r2 { color: #a8a8a8; }
.idol-rank.r3 { color: #cd7f32; }
.idol-thumb {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--border);
}
.idol-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.idol-info { flex: 1; min-width: 0; }
.idol-group {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 2px;
}
.idol-name {
  font-size: 14px; font-weight: 700; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.idol-score { font-family: var(--fn-en); font-size: 10px; color: var(--gray); margin-top: 2px; }
.idol-arrow {
  font-family: var(--fn-en); font-size: 11px; color: var(--gray);
  flex-shrink: 0;
}

/* ===== FEATURE CARDS ===== */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.feat-card { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.feat-card:hover .feat-card-title { color: var(--pink); }
.feat-card.feat-main {
  grid-column: 1 / 3;
}
.feat-bg {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}
.feat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
}
.feat-card-cat {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .1em; margin-bottom: 4px;
}
.feat-card-title {
  font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.feat-card-meta {
  font-family: var(--fn-en); font-size: 9px; color: rgba(255,255,255,.5); margin-top: 5px;
}
@media (min-width: 768px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }
  .feat-card.feat-main { grid-column: 1 / 3; }
  .feat-bg { aspect-ratio: 16/9; }
  .feat-card-title { font-size: 15px; }
}

/* ===== RANKING SECTION ===== */
.rank-list { display: flex; flex-direction: column; gap: 0; }
.rank-item {
  display: flex; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover .rank-title { color: var(--pink); }
.rank-num {
  font-family: var(--fn-en); font-size: 20px; font-weight: 900; color: var(--border);
  width: 24px; flex-shrink: 0; text-align: center; line-height: 1;
}
.rank-num.r1 { color: #f0b429; }
.rank-num.r2 { color: #a8a8a8; }
.rank-num.r3 { color: #cd7f32; }
.rank-thumb {
  width: 68px; height: 45px; border-radius: 6px; flex-shrink: 0; overflow: hidden;
  background: var(--border);
}
.rank-body { flex: 1; min-width: 0; }
.rank-cat { font-family: var(--fn-en); font-size: 8px; font-weight: 700; color: var(--pink); margin-bottom: 2px; letter-spacing: .1em; }
.rank-title {
  font-size: 12px; font-weight: 700; line-height: 1.5; color: var(--dark); transition: color .2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.rank-meta { font-family: var(--fn-en); font-size: 9px; color: var(--gray); margin-top: 2px; }
@media (min-width: 768px) {
  .rank-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
  .rank-thumb { width: 80px; height: 53px; }
}

/* ===== BRAND SECTION ===== */
.brand-wrap {
  background: var(--dark); margin-top: 52px;
  padding: 40px 16px;
}
.brand-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; gap: 20px;
}
.brand-head {
  text-align: center;
}
.brand-head-logo {
  font-family: var(--fn-en); font-size: 28px; font-weight: 900;
  color: var(--white); letter-spacing: -.02em; margin-bottom: 6px;
}
.brand-head-logo em { color: var(--pink); font-style: normal; }
.brand-head-text {
  font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.8;
}
.brand-cards {
  display: grid; gap: 10px;
}
.brand-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 20px;
  cursor: pointer; transition: border-color .2s;
}
.brand-card:hover { border-color: rgba(241,98,139,.3); }
.brand-card-num {
  font-family: var(--fn-en); font-size: 11px; font-weight: 700;
  color: var(--pink); letter-spacing: .15em; margin-bottom: 8px;
}
.brand-card-title {
  font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.brand-card-body {
  font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.8;
}
.brand-sns {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.brand-sns-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 24px;
  border: 1px solid rgba(255,255,255,.15);
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .06em; color: rgba(255,255,255,.6);
  transition: all .2s;
}
.brand-sns-btn:hover { border-color: var(--pink); color: var(--white); }
@media (min-width: 768px) {
  .brand-wrap { padding: 60px 24px; }
  .brand-head-text { font-size: 13px; }
  .brand-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1200px) {
  .brand-wrap { padding: 80px 40px; }
  .brand-inner { max-width: 1200px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark); margin-top: 0;
  padding: 40px 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
}
.footer-top {
  display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--fn-en); font-size: 22px; font-weight: 900;
  color: var(--white); letter-spacing: -.01em; margin-bottom: 8px;
}
.footer-logo em { color: var(--pink); font-style: normal; }
.footer-desc {
  font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.9; max-width: 300px;
}
.footer-nav-group { display: flex; flex-direction: column; gap: 4px; }
.footer-nav-group-title {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  letter-spacing: .15em; color: var(--pink); margin-bottom: 6px;
}
.footer-nav-group a {
  font-size: 11px; color: rgba(255,255,255,.5); line-height: 2.0;
  transition: color .2s;
}
.footer-nav-group a:hover { color: var(--white); }
.footer-sns {
  display: flex; gap: 12px; align-items: center;
}
.footer-sns-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 14px;
  transition: all .2s;
}
.footer-sns-link:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.footer-sns-link svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-bottom-nav {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-nav a {
  font-size: 10px; color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-bottom-nav a:hover { color: rgba(255,255,255,.6); }
.footer-copy {
  font-family: var(--fn-en); font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: .04em;
}
@media (min-width: 768px) {
  .footer-top {
    display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px 20px;
    align-items: start;
  }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===== SP BOTTOM NAV ===== */
.sp-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  padding-bottom: var(--safe-b);
}
.sp-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; padding: 10px 4px 8px;
  color: rgba(255,255,255,.35); font-size: 9px;
  cursor: pointer; transition: color .2s;
  font-family: var(--fn-ja);
}
.sp-nav-item.active, .sp-nav-item:hover { color: var(--white); }
.sp-nav-item svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .sp-nav { display: none; } }

/* ===== CATEGORY PAGE ===== */
/* cat-block */
.cat-block { background: var(--gray-light); border-radius: 12px; overflow: hidden; }
.cat-block > div { background: var(--gray-light); }
.cat-block-header {
  background: var(--dark); padding: 20px 16px;
}
.cat-block-en {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  color: var(--pink); letter-spacing: .15em; margin-bottom: 4px;
}
.cat-block-title {
  font-family: var(--fn-en); font-size: 22px; font-weight: 900; color: var(--white);
}
.cat-block-desc {
  font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; line-height: 1.8;
}
.cat-block-body { padding: 16px; }

/* cat-filter */
.cat-filter {
  display: flex; gap: 6px;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 12px;
}
.cat-filter::-webkit-scrollbar { display: none; }
.cat-filter-btn {
  flex-shrink: 0; padding: 5px 14px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--white);
  font-family: var(--fn-ja); font-size: 11px; color: var(--gray);
  cursor: pointer; transition: all .2s;
}
.cat-filter-btn.active, .cat-filter-btn:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 32px;
}
.page-btn {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fn-en); font-size: 13px; font-weight: 700;
  border: 1px solid var(--border); color: var(--gray); cursor: pointer; transition: all .2s;
}
.page-btn.active { background: var(--pink); border-color: var(--pink); color: var(--white); }
.page-btn:hover:not(.active) { border-color: var(--pink); color: var(--pink); }

/* ===== ARTICLE PAGE ===== */
/* art-header */
.art-header { padding: 20px 16px 0; }
.art-header-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.art-header-cat {
  display: inline-block; background: var(--pink); color: var(--white);
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; padding: 3px 10px; border-radius: 2px;
}
.art-header-title {
  font-size: 22px; font-weight: 700; line-height: 1.45;
  letter-spacing: -.01em; color: var(--dark);
}
.art-header-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 10px;
}
.art-header-date {
  font-family: var(--fn-en); font-size: 10px; color: var(--gray);
}
.art-header-author {
  display: flex; align-items: center; gap: 6px;
}
.art-author-avatar {
  width: 24px; height: 24px; border-radius: 50%; overflow: hidden; background: var(--border);
}
.art-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.art-author-name { font-size: 11px; color: var(--gray); }
.art-header-thumb {
  width: calc(100% + 32px); margin: 16px -16px 0; aspect-ratio: 16/9; overflow: hidden;
}
.art-header-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 768px) {
  .art-header { padding: 28px 0 0; }
  .art-header-title { font-size: 28px; }
  .art-header-thumb { width: 100%; margin: 20px 0 0; border-radius: 12px; }
}

/* art-toc */
.art-toc {
  background: var(--gray-light); border-radius: 10px;
  padding: 14px 16px; margin: 20px 0;
}
.art-toc-title {
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; color: var(--gray); margin-bottom: 8px;
}
.art-toc-list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.art-toc-list li {
  font-size: 12px; line-height: 1.5; padding-left: 16px; position: relative;
}
.art-toc-list li::before {
  content: '--'; position: absolute; left: 0;
  font-family: var(--fn-en); font-size: 10px; color: var(--pink);
}
.art-toc-list li a { color: var(--dark); transition: color .2s; }
.art-toc-list li a:hover { color: var(--pink); }

/* art-body */
.art-body {
  font-size: 15px; line-height: 1.9; color: var(--dark);
  padding: 0 16px;
}
@media (min-width: 768px) { .art-body { padding: 0; font-size: 16px; } }
.art-body p { margin: 0 0 1.4em; }
.art-body h2 {
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin: 2em 0 .8em; padding: 12px 14px;
  border-left: 3px solid var(--pink);
  background: var(--gray-light);
  line-height: 1.4;
}
@media (min-width: 768px) { .art-body h2 { font-size: 22px; } }
.art-body h3 {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin: 1.6em 0 .6em; padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
  line-height: 1.4;
}
@media (min-width: 768px) { .art-body h3 { font-size: 18px; } }
.art-body h4 {
  font-size: 15px; font-weight: 700; color: var(--dark);
  margin: 1.4em 0 .4em;
}
.art-body ul {
  margin: 0 0 1.4em 1.2em; padding: 0; list-style: none;
}
.art-body ul li {
  position: relative; padding-left: 1em; margin-bottom: .5em;
}
.art-body ul li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink);
}
.art-body ol {
  margin: 0 0 1.4em 1.4em; padding: 0;
}
.art-body ol li { margin-bottom: .5em; }
.art-body blockquote {
  margin: 1.5em 0; padding: 16px 18px;
  border-left: 3px solid var(--pink);
  background: var(--gray-light); border-radius: 0 8px 8px 0;
  font-size: 14px; color: var(--gray); font-style: italic;
}
.art-body a { color: var(--pink); text-decoration: underline; }
.art-body img {
  width: 100%; height: auto; border-radius: 8px;
  margin: 1em 0; display: block;
}
.art-body figure { margin: 1.5em 0; }
.art-body figcaption {
  font-size: 11px; color: var(--gray); text-align: center; margin-top: 6px;
}
.art-body table {
  width: 100%; border-collapse: collapse; margin: 1.5em 0;
  font-size: 13px;
}
.art-body table th, .art-body table td {
  padding: 8px 12px; border: 1px solid var(--border);
  text-align: left;
}
.art-body table th { background: var(--gray-light); font-weight: 700; }
.art-body pre {
  background: var(--dark); color: rgba(255,255,255,.85);
  padding: 16px; border-radius: 8px; overflow-x: auto;
  font-size: 13px; margin: 1.5em 0;
}
.art-body code { font-family: monospace; font-size: .9em; background: var(--gray-light); padding: 1px 5px; border-radius: 3px; }
.art-body pre code { background: none; padding: 0; }

/* art-tags */
.art-tags { padding: 20px 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.art-tag-link {
  font-size: 11px; color: var(--gray); background: var(--gray-light);
  padding: 4px 12px; border-radius: 20px; transition: background .2s;
}
.art-tag-link:hover { background: var(--pink-bg); color: var(--pink); }
@media (min-width: 768px) { .art-tags { padding: 24px 0; } }

/* share-bar */
.share-bar {
  padding: 16px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
}
.share-bar-title {
  font-family: var(--fn-en); font-size: 9px; font-weight: 700;
  letter-spacing: .15em; color: var(--gray); margin-bottom: 10px;
}
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 6px;
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .04em; transition: all .15s; border: 1px solid transparent;
}
.share-btn svg { width: 13px; height: 13px; }
.share-btn-line { background: #06C755; color: #fff; }
.share-btn-line:hover { background: #04a844; }
.share-btn-x { background: #000; color: #fff; }
.share-btn-x:hover { opacity: .8; }
.share-btn-fb { background: #1877F2; color: #fff; }
.share-btn-fb:hover { background: #1464cc; }
.share-btn-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
@media (min-width: 768px) { .share-bar { padding: 16px 0; } }

/* art-author-box */
.art-author-box {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--gray-light); border-radius: 12px;
  margin: 0 16px 24px;
}
.art-author-big-avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; background: var(--border);
}
.art-author-big-avatar img { width: 100%; height: 100%; object-fit: cover; }
.art-author-info {}
.art-author-label {
  font-family: var(--fn-en); font-size: 8px; font-weight: 700;
  color: var(--pink); letter-spacing: .15em; margin-bottom: 4px;
}
.art-author-big-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.art-author-bio { font-size: 12px; color: var(--gray); line-height: 1.8; }
@media (min-width: 768px) { .art-author-box { margin: 0 0 24px; } }

/* related */
.related-section { padding: 0 16px; margin-bottom: 40px; }
@media (min-width: 768px) { .related-section { padding: 0; } }

/* art-layout */
.art-layout {
  display: block;
}
@media (min-width: 1200px) {
  .art-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
  }
  .art-layout .art-main { min-width: 0; }
  .art-layout .art-sidebar {
    position: sticky; top: 80px;
    display: flex; flex-direction: column; gap: 16px;
    padding-top: 20px;
  }
}
.art-sidebar { display: none; }
@media (min-width: 1200px) { .art-sidebar { display: flex; } }

/* sidebar widgets */
.sidebar-widget {
  background: var(--gray-light); border-radius: 12px; overflow: hidden;
}
.sidebar-widget-head {
  background: var(--dark); padding: 12px 16px;
  font-family: var(--fn-en); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; color: var(--white);
}
.sidebar-widget-body { padding: 12px 16px; }

/* sidebar recent */
.sidebar-recent-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer;
}
.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-recent-item:hover .sidebar-recent-title { color: var(--pink); }
.sidebar-recent-thumb {
  width: 56px; height: 37px; border-radius: 5px; flex-shrink: 0; overflow: hidden; background: var(--border);
}
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-recent-cat { font-family: var(--fn-en); font-size: 8px; font-weight: 700; color: var(--pink); letter-spacing: .1em; margin-bottom: 2px; }
.sidebar-recent-title { font-size: 11px; font-weight: 700; line-height: 1.5; color: var(--dark); transition: color .2s; }

/* sidebar tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 5px; padding: 12px 16px; }
.sidebar-tag {
  font-size: 10px; color: var(--gray); background: var(--white);
  padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.sidebar-tag:hover { background: var(--pink-bg); color: var(--pink); border-color: var(--pink); }

/* ===== NAV DRAWER ===== */
.nav-drawer {
  position: fixed; inset: 0; z-index: 500;
  pointer-events: none;
}
.nav-drawer.open { pointer-events: all; }
.nav-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6); opacity: 0;
  transition: opacity .3s ease;
}
.nav-drawer.open .nav-drawer-overlay { opacity: 1; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 280px; max-width: 85vw;
  background: var(--dark);
  border-left: 1px solid rgba(255,255,255,.06);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-drawer-logo {
  font-family: var(--fn-en); font-size: 16px; font-weight: 900; color: var(--white);
}
.nav-drawer-logo em { color: var(--pink); font-style: normal; }
.nav-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 16px;
}
.nav-drawer-nav {
  display: flex; flex-direction: column;
  padding: 8px 0;
}
.nav-drawer-nav a {
  padding: 12px 20px;
  font-family: var(--fn-ja); font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s;
}
.nav-drawer-nav a:hover, .nav-drawer-nav a.active { color: var(--white); background: rgba(255,255,255,.04); }
.nav-drawer-sns {
  margin-top: auto;
  display: flex; gap: 12px; justify-content: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nav-drawer-sns a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.nav-drawer-sns a:hover { background: var(--pink); color: var(--white); }
.nav-drawer-sns svg { width: 16px; height: 16px; }
@media (min-width: 1200px) { .nav-drawer { display: none; } }

/* === SFSI sticky social icons: hide === */
.sfsi_premium_sticky_icons_container,
.sfsi_premium_desktop_display,
.sfsi-wid-div,
[class*="sfsi_premium_sticky"],
[class*="sfsi_floater"],
.sfsi_wDiv,
#sfsi_floater { display: none !important; }

/* === PATCH v0.4.0 === */
/* 1. cat-block */
.cat-block { background: #fff !important; }
.cat-block > div { background: #fff; }
/* 2. share buttons: outline */
.share-btn-line,.share-btn-x,.share-btn-fb,.share-btn-ig { background: var(--gray-light) !important; color: var(--dark) !important; border: 1px solid var(--border) !important; }
.share-btn-line:hover { background: rgba(6,199,85,.1) !important; color: #06C755 !important; border-color: #06C755 !important; }
.share-btn-x:hover { background: rgba(0,0,0,.06) !important; color: #000 !important; border-color: rgba(0,0,0,.25) !important; }
.share-btn-ig:hover { background: var(--pink-bg) !important; color: var(--pink) !important; border-color: var(--pink) !important; }
.share-btn-fb:hover { background: rgba(24,119,242,.1) !important; color: #1877F2 !important; border-color: #1877F2 !important; }
/* 3. TOC font size */
.art-toc { padding: 14px 16px !important; margin: 20px 0 !important; }
.art-toc-list { gap: 5px !important; }
.art-toc-list li { font-size: 11px !important; line-height: 1.5; }
.art-toc-list li::before { font-size: 10px !important; }
#toc_container { font-size: 11px !important; }
#toc_container li a { font-size: 11px !important; }
.ez-toc-container { font-size: 11px !important; }
.ez-toc-section { font-size: 11px !important; }
/* 4. mobile nav drawer */
.nav-drawer { position: fixed; inset: 0; z-index: 500; pointer-events: none; }
.nav-drawer.open { pointer-events: all; }
.nav-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .3s ease; }
.nav-drawer.open .nav-drawer-overlay { opacity: 1; }
.nav-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 280px; max-width: 85vw; background: var(--dark); border-left: 1px solid rgba(255,255,255,.06); transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; }
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
@media (min-width: 1200px) { .nav-drawer { display: none; } }

/* ==========================================================
   === SINGLE POST PAGE v0.4.1 ===
   記事ページ (single.php) 用 CSS
   モバイルファースト: 375px → 768px+ → 1200px+
   ========================================================== */

/* ---------- 記事ページ全体のラップ ---------- */
.art-page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 0 40px;
}
@media (min-width: 768px) {
  .art-page-wrap { padding: 24px 20px 60px; }
}
@media (min-width: 1200px) {
  .art-page-wrap { padding: 32px 0 80px; }
}

/* ---------- パンくずリスト ---------- */
.art-breadcrumb {
  font-size: 11px;
  color: var(--gray);
  padding: 8px 16px 14px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.art-breadcrumb a {
  color: var(--gray);
  transition: color .15s;
}
.art-breadcrumb a:hover { color: var(--pink); }
.art-breadcrumb span:last-child {
  color: var(--dark);
  font-weight: 500;
  /* 長いタイトルは省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
@media (min-width: 768px) {
  .art-breadcrumb { padding: 8px 0 16px; font-size: 12px; }
}

/* ---------- 記事コンテナ ---------- */
.art-article {
  background: var(--white);
  padding: 0;
}

/* ---------- カテゴリラベル ---------- */
.art-cat-label {
  padding: 0 16px;
  margin-bottom: 12px;
}
.art-label-badge {
  display: inline-block;
  font-family: var(--fn-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--white);
  background: var(--pink);
  padding: 5px 12px;
  border-radius: 4px;
  line-height: 1.4;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .art-cat-label { padding: 0; margin-bottom: 16px; }
  .art-label-badge { font-size: 11px; padding: 6px 14px; }
}

/* ---------- 見出し H1 ---------- */
.art-headline {
  font-family: var(--fn-ja);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
  padding: 0 16px;
  margin: 0 0 14px;
  letter-spacing: .01em;
}
@media (min-width: 768px) {
  .art-headline {
    font-size: 30px;
    padding: 0;
    margin: 0 0 18px;
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  .art-headline { font-size: 34px; }
}

/* ---------- メタ情報（日付・著者）---------- */
.art-meta {
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--gray);
}
.art-meta-date {
  font-family: var(--fn-en);
  letter-spacing: .04em;
}
.art-meta-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.art-meta-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fn-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .art-meta { padding: 0; font-size: 13px; margin-bottom: 22px; }
}

/* ---------- 上部シェアバー ---------- */
.art-share-top {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.art-share-label {
  font-family: var(--fn-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gray);
  flex-shrink: 0;
}
.art-share-top .share-bar {
  padding: 0;
  border: none;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.art-share-top .share-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.art-share-top .share-btn svg { width: 16px; height: 16px; }
@media (min-width: 768px) {
  .art-share-top { padding: 16px 0; }
}

/* ---------- アイキャッチ ---------- */
.art-eyecatch {
  margin: 0 0 28px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}
.art-eyecatch-img,
.art-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-eyecatch-placeholder {
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.art-eyecatch-placeholder .art-thumb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 64px;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
@media (min-width: 768px) {
  .art-eyecatch {
    border-radius: 12px;
    margin: 0 0 32px;
  }
}

/* ---------- art-body の幅（記事本文の左右パディング統一）---------- */
/* 既存の .art-body スタイルに追加パディング調整 */
@media (min-width: 768px) {
  .art-body {
    max-width: 720px;
    margin: 0 auto;
  }
}

/* ---------- タグチップ ---------- */
.art-tag-chip {
  display: inline-block;
  font-size: 11px;
  color: var(--gray);
  background: var(--gray-light);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all .2s;
  line-height: 1.5;
}
.art-tag-chip:hover {
  background: var(--pink-bg);
  color: var(--pink);
  border-color: rgba(241,98,139,.3);
}
@media (min-width: 768px) {
  .art-tag-chip { font-size: 12px; padding: 6px 14px; }
}

/* ---------- 下部シェアバー ---------- */
.art-share-bottom {
  margin: 32px 0 0;
  padding: 28px 16px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.art-share-bottom-label {
  font-family: var(--fn-ja);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
.art-share-bottom .share-bar,
.share-bar-bottom {
  padding: 0;
  border: none;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.art-share-bottom .share-btn,
.share-bar-bottom .share-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.art-share-bottom .share-btn svg,
.share-bar-bottom .share-btn svg { width: 22px; height: 22px; }
@media (min-width: 768px) {
  .art-share-bottom { padding: 36px 0 28px; }
}

/* ---------- 関連記事 ---------- */
.art-related {
  margin: 48px 0 0;
  padding: 0 16px;
}
.art-related-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.art-related-en {
  font-family: var(--fn-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--dark);
  flex-shrink: 0;
}
.art-related-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.art-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 568px) {
  .art-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 768px) {
  .art-related { padding: 0; margin: 60px 0 0; }
  .art-related-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.art-related-card {
  display: block;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.art-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.art-related-thumb {
  aspect-ratio: 3 / 2;
  background: var(--gray-light);
  overflow: hidden;
}
.art-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.art-related-card:hover .art-related-thumb img {
  transform: scale(1.04);
}
.art-related-body {
  padding: 12px 4px 4px;
}
.art-related-cat {
  font-family: var(--fn-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--pink);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.art-related-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
  /* 2行省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .art-related-title { font-size: 14px; }
}

/* ---------- cat-bar は記事ページでは非表示（SP）---------- */
/* 単発記事は .art-breadcrumb で代替 */
body.single-post .cat-bar { display: none; }
@media (min-width: 768px) {
  body.single-post .cat-bar { display: none; }
}
