/*
 * Theme Name: STUDIO INSIGHT
 * Description: STUDIO INSIGHT オウンドメディア テーマ
 * Version: 1.0.0
 */

/* ========================================================
   BASE: デザイントークン + 共通スタイル（トップページより）
   ======================================================== */



/* ======================================================================
   STUDIO INSIGHT — owned media top page
   Design tokens + component styles
   ====================================================================== */

:root {
  /* Navy frame */
  --navy-900: #061431;
  --navy-800: #0E2247;
  --navy-700: #12203D;
  --navy-600: #2A4170;
  /* Beam / blues */
  --beam: #5A6FE2;
  --blue-soft: #8AAFD4;
  --blue-pale: #EBF1F8;
  /* Action */
  --teal: #1D9E75;
  --teal-light: #5DCAA5;
  --teal-pale: #E3F4EC;
  /* Flow */
  --amber: #EF9F27;
  --amber-pale: #FCEFD6;
  /* Surfaces */
  --paper: #F5F4F0;
  --white: #FFFFFF;
  /* Ink */
  --ink: #12203D;
  --ink-soft: #5A6577;
  --ink-faint: #8A93A3;
  --hair: #E7E6E1;
  --hair-blue: #DCE5F0;

  --mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Noto Sans JP", system-ui, sans-serif;

  --gap: 22px;
  --card-pad: 16px;
  --section-pad: 64px;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(6,20,49,.06), 0 2px 8px rgba(6,20,49,.05);
  --shadow-md: 0 6px 24px rgba(6,20,49,.10), 0 2px 6px rgba(6,20,49,.06);
  --maxw: 1240px;
}

.dense { --gap: 16px; --card-pad: 14px; --section-pad: 52px; }
.airy  { --gap: 30px; --card-pad: 20px; --section-pad: 84px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.app { font-size: var(--fs-base, 16px); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- typographic helpers ---------- */
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: .02em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beam);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px; background: currentColor; display: inline-block;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 26px;
}
.section-head h2 {
  font-size: 28px; font-weight: 800; margin: 8px 0 0; letter-spacing: .01em;
  line-height: 1.2;
}
.section-head .sub { color: var(--ink-soft); font-size: 13.5px; margin-top: 6px; }
.section-head .si-more {
  font-family: var(--mono); font-size: 12.5px; color: var(--navy-600);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding-bottom: 4px; border-bottom: 1px solid transparent; transition: .15s;
}
.section-head .si-more:hover { border-color: var(--navy-600); gap: 10px; }

/* ======================================================================
   HEADER
   ====================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-900);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap {
  height: 68px; display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: baseline; gap: 9px; }
.logo .mark {
  width: 11px; height: 22px; background: var(--beam);
  box-shadow: 14px 0 0 var(--teal-light), 28px 0 0 var(--amber);
  margin-right: 28px;
}
.logo .name { font-weight: 800; font-size: 18px; letter-spacing: .14em; }
.logo .name b { color: #fff; }
.logo .name span { color: var(--blue-soft); font-weight: 800; }
.gnav { display: flex; gap: 4px; margin-left: 8px; }
.gnav a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82);
  padding: 9px 16px; border-radius: 8px; transition: .15s;
}
.gnav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.gnav a.active { color: #fff; }

/* header inline search */
.header-search-inline {
  display: flex; align-items: center; gap: 8px;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: width .25s ease, opacity .2s ease;
}
.header-search-inline.open {
  width: 260px;
  opacity: 1;
}
.header-search-inline label {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px; padding: 8px 12px; white-space: nowrap; width: 100%;
  transition: border-color .15s, background .15s;
}
.header-search-inline label:focus-within {
  border-color: var(--teal-light); background: rgba(255,255,255,.13);
}
.header-search-inline label svg { color: rgba(255,255,255,.45); flex: none; }
.header-search-inline input {
  flex: 1; border: none; background: none; outline: none; min-width: 0;
  font-family: var(--sans); font-size: 13.5px; color: #fff;
}
.header-search-inline input::placeholder { color: rgba(255,255,255,.38); }
.header-search-btn.is-open { background: rgba(255,255,255,.14); color: #fff; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-search-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 9px; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.14); cursor: pointer; transition: .15s;
  background: transparent;
}
.header-search-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn {
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; border-radius: 10px;
  padding: 11px 20px; transition: transform .12s, box-shadow .15s, background .15s;
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
}
.btn-teal { background: var(--accent, var(--teal)); color: #fff !important; }
.btn-teal:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.34); }
.btn-ghost-light {
  background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }
.btn-outline {
  background: transparent; color: var(--navy-700); border: 1.5px solid var(--hair-blue);
}
.btn-outline:hover { border-color: var(--navy-600); background: var(--blue-pale); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }

/* ======================================================================
   HERO  (3 variants share these bits)
   ====================================================================== */
.hero-section { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.hero-inner { padding: 52px 0 60px; position: relative; z-index: 2; }
.hero-section .hero-inner { padding-top: 52px; padding-bottom: 60px; }
.hero-kicker {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
  color: rgba(255,255,255,.6); font-family: var(--mono); font-size: 12.5px;
  letter-spacing: .06em;
}
.hero-kicker .log {
  color: var(--amber); border: 1px solid rgba(239,159,39,.4);
  padding: 3px 9px; border-radius: 6px; letter-spacing: .12em;
}
.hero-kicker .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }
.hero h1 {
  font-weight: 800; line-height: 1.32; letter-spacing: .01em;
  margin: 0;
}
.hero .lead { color: rgba(255,255,255,.78); line-height: 1.85; font-size: 15.5px; width: 100%; text-align: justify; text-justify: inter-character; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags .chip { background: rgba(255,255,255,.06); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.35); }
.hero-byline {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72);
  font-size: 13.5px;
}
.hero-byline .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--beam), var(--navy-600));
  border: 1px solid rgba(255,255,255,.25); flex: none;
}
.hero-byline .role { font-family: var(--mono); font-size: 11.5px; color: rgba(255,255,255,.5); }
.hero-byline-name { font-size: 13.5px; color: rgba(255,255,255,.72); }
.hero-byline img.hero-byline-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,.25); flex: none; }

/* 記事詳細ページ著者バイライン */
.article-byline { display: flex; align-items: center; gap: 8px; margin-top: 10px; justify-content: center; }
.article-byline img.article-byline-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex: none; }
.article-byline-name { font-size: 13px; color: var(--ink-soft); }

/* 著者カード（記事本文下） */
.author-card { padding: 28px 52px; background: var(--white); border: 1px solid var(--hair); border-radius: 0; margin-top: 56px; }
.author-card-inner { display: flex; align-items: center; gap: 24px; max-width: 900px; margin: 0 auto; }
.author-card img.author-card-avatar { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; flex: none; }
.author-card-body { flex: 1; min-width: 0; }
.author-card-label { font-size: 12px; color: var(--ink-soft); margin-bottom: 4px; }
.author-card-name { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.author-card-role { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); letter-spacing: .04em; margin-bottom: 8px; }
.author-card-bio { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
@media (max-width: 700px) {
  .author-card { padding: 20px 18px; }
  .author-card-inner { gap: 16px; }
  .author-card img.author-card-avatar { width: 72px; height: 72px; }
}

/* glow decoration */
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 90% at 78% 18%, rgba(90,111,226,.55), transparent 60%),
    radial-gradient(50% 80% at 96% 82%, rgba(93,202,165,.22), transparent 60%);
}

/* --- variant A: gradient + big photo right --- */
.hero-a .hero-inner {
  display: grid; grid-template-columns: 1fr 1.02fr; gap: 56px; align-items: center;
}
.hero-a .hero-glow {
  background:
    radial-gradient(70% 120% at 60% 30%, rgba(90,111,226,.65), transparent 55%),
    radial-gradient(50% 90% at 10% 90%, rgba(18,32,61,.6), transparent 60%);
}
.hero-a h1 { font-size: 42px; }
.hero-a .copy { display: flex; flex-direction: column; gap: 24px; }
.hero-a .hero-media { aspect-ratio: 1200/630; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1); }
.sp-hero-media { display: none; }
.sp-hero-media { display: none; }

/* --- variant B: full-bleed photo, headline overlaid --- */
.hero-b .hero-inner { padding: 0; }
.hero-b .stage {
  position: relative; height: 600px; border-radius: 0;
}
.hero-b .stage .ph { position: absolute; inset: 0; height: 100%; }
.hero-b .scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(6,20,49,.97) 0%, rgba(6,20,49,.9) 40%, rgba(6,20,49,.62) 58%, rgba(6,20,49,.2) 82%, rgba(6,20,49,.05) 100%),
    linear-gradient(0deg, rgba(6,20,49,.78) 0%, rgba(6,20,49,.15) 46%, transparent 64%),
    linear-gradient(rgba(6,20,49,.22), rgba(6,20,49,.22));
}
.hero-b .overlay-inner .hero-kicker,
.hero-b .overlay-inner h1,
.hero-b .overlay-inner .lead {
  text-shadow: 0 1px 18px rgba(6,20,49,.55), 0 1px 3px rgba(6,20,49,.6);
}
.hero-b .overlay {
  position: absolute; left: 0; bottom: 0; padding: 0 0 52px; z-index: 3; width: 100%;
}
.hero-b .overlay-inner { max-width: 58%; display: flex; flex-direction: column; gap: 22px; }
.hero-b h1 { font-size: 44px; }

/* --- variant C: split editorial --- */
.hero-c .hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch;
  padding: 0;
}
.hero-c .panel { padding: 60px 56px 60px 0; display: flex; flex-direction: column; gap: 26px; justify-content: center; }
.hero-c h1 { font-size: 40px; }
.hero-c .ed-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; max-width: 420px;
}
.hero-c .ed-meta div { background: var(--navy-900); padding: 14px 16px; }
.hero-c .ed-meta .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: rgba(255,255,255,.45); text-transform: uppercase; }
.hero-c .ed-meta .v { font-size: 14px; font-weight: 700; margin-top: 4px; }
.hero-c .photo-side { position: relative; }
.hero-c .photo-side .ph { position: absolute; inset: 0; height: 100%; border-radius: 0; }

/* ======================================================================
   TAG NAV + SEARCH
   ====================================================================== */
.tagbar {
  background: var(--white); border-bottom: 1px solid var(--hair);
  box-shadow: 0 1px 0 rgba(6,20,49,.04);
}
.tagbar .wrap { display: flex; align-items: center; gap: 18px; height: 60px; }
.tagbar .axis-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  color: var(--ink-faint); text-transform: uppercase; white-space: nowrap; flex: none;
}
.tagbar .row { display: flex; align-items: center; gap: 8px; overflow-x: auto; flex: 1; padding: 4px 0; }
.tagbar .row::-webkit-scrollbar { height: 0; }
.tagbar .divider { width: 1px; height: 24px; background: var(--hair); flex: none; }
.tagbar .search {
  margin-left: auto; flex: none; display: flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--hair); border-radius: 10px;
  padding: 8px 12px; width: 230px; transition: .15s;
}
.tagbar .search:focus-within { border-color: var(--beam); background: #fff; box-shadow: 0 0 0 3px rgba(90,111,226,.12); }
.tagbar .search input { border: none; background: none; outline: none; font-family: var(--sans); font-size: 13.5px; width: 100%; color: var(--ink); }
.tagbar .search svg { color: var(--ink-faint); flex: none; }

.pill {
  font-size: 13px; font-weight: 600; white-space: nowrap; cursor: pointer;
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--hair-blue);
  background: #fff; color: var(--navy-700); transition: .14s; user-select: none;
}
.pill:hover { border-color: var(--beam); color: var(--beam); }
.pill.on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.pill.industry.on { background: var(--beam); border-color: var(--beam); }
.pill.challenge:hover { border-color: var(--teal); color: var(--teal); }
.pill.challenge.on { background: var(--teal); border-color: var(--teal); }

/* ======================================================================
   TAG CHIPS (inside cards)
   ====================================================================== */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 5px; line-height: 1.5; white-space: nowrap;
}
.chip.industry { background: var(--blue-pale); color: var(--navy-600); }
.chip.challenge { background: var(--teal-pale); color: #137a59; }
.chip.phase {
  background: transparent; border: 1px solid var(--hair); color: var(--ink-soft);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .02em; font-weight: 400;
}
.chip-dark.industry { background: rgba(138,175,212,.2); color: #cfe0f2; }
.chip-dark.challenge { background: rgba(93,202,165,.18); color: #aef0d4; }
.chip-dark.phase { border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.72); }

/* ======================================================================
   PLACEHOLDER
   ====================================================================== */
.ph {
  position: relative; width: 100%; border-radius: inherit; overflow: hidden;
  background-color: var(--ph-bg, #1a2f57);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.05) 0 2px,
      transparent 2px 11px);
  display: grid; place-items: center;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 0%, rgba(255,255,255,.08), transparent 60%);
}
.ph .ph-label {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.92);
}
.ph .ph-label .icon { width: 30px; height: 30px; opacity: .85; }
.ph .ph-label .txt {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(0,0,0,.28); padding: 4px 10px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.18);
}
.ph .ph-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ======================================================================
   CARDS
   ====================================================================== */
section.block { padding: var(--section-pad) 0; }
section.block.alt { background: var(--white); }

.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; cursor: pointer;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  text-decoration: none; color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hair-blue); }
.card .media { aspect-ratio: 16/10; position: relative; }
.card-cat {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  color: var(--ink-soft); font-weight: 600; text-transform: uppercase;
}
.case-cat { color: var(--beam); }
.card .body { padding: var(--card-pad); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 {
  font-size: 16px; font-weight: 700; line-height: 1.5; margin: 0; letter-spacing: .005em;
  transition: color .14s; flex: 1;
}
.card:hover h3 { color: var(--beam); }
.card .chips { margin-top: auto; }
.card .meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-faint);
}

.feed-layout { display: grid; grid-template-columns: 2.6fr 1fr; gap: 40px; align-items: start; }
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.card.sm .media { aspect-ratio: 16/9; }
.card.sm h3 { font-size: 14.5px; }
.card.sm .body { gap: 8px; }

/* contact card (sidebar) */
.contact-card {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #0b2247 0%, #061431 70%);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 26px 24px 24px; color: #fff;
}
.contact-card .cc-ko {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--teal-light);
  display: inline-flex; align-items: center; gap: 8px;
}
.contact-card .cc-ko::before { content: ""; width: 22px; height: 2px; background: var(--teal-light); display: inline-block; }
.contact-card .cc-badge {
  display: inline-block; margin: 18px 0 0; padding: 7px 14px; border-radius: 8px;
  background: var(--teal); color: #fff; font-size: 13px; font-weight: 700;
}
.contact-card h4 { margin: 16px 0 0; font-size: 19px; font-weight: 800; line-height: 1.55; letter-spacing: .01em; }
.contact-card .cc-lead { margin: 18px 0 12px; font-size: 12.5px; color: rgba(255,255,255,.62); }
.contact-card .cc-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.contact-card .cc-list li {
  position: relative; padding-left: 18px; font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,.86);
}
.contact-card .cc-list li::before {
  content: ""; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--teal-light);
}
.contact-card .cc-btn {
  display: block; margin-top: 22px; padding: 16px; border-radius: 12px;
  background: var(--teal); color: #fff; font-size: 14.5px; font-weight: 800; text-align: center;
  transition: transform .16s, box-shadow .16s, background .16s;
}
.contact-card .cc-btn:hover { transform: translateY(-2px); background: #18b07f; box-shadow: 0 10px 24px rgba(29,158,117,.4); }

/* ranking */
.rank { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 6px 4px; }
.rank .rank-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px 12px;
  border-bottom: 1px solid var(--hair);
}
.rank .rank-head .ttl { font-weight: 800; font-size: 15px; white-space: nowrap; }
.rank .rank-head .ko {
  font-family: var(--mono); font-size: 10.5px; color: var(--amber); letter-spacing: .14em;
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.rank .rank-head .ko::before {
  content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block;
}
.rank-item {
  display: flex; gap: 14px; padding: 14px 16px; align-items: flex-start;
  border-bottom: 1px solid var(--hair); cursor: pointer; transition: background .14s;
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: var(--paper); }
.rank-item .num {
  font-family: var(--mono); font-weight: 700; font-size: 22px; line-height: 1;
  color: var(--ink-faint); width: 26px; flex: none;
}
.rank-item:nth-child(2) .num { color: var(--amber); }
.rank-item:nth-child(3) .num { color: var(--beam); }
.rank-item .rk-body { display: flex; flex-direction: column; gap: 6px; }
.rank-item h4 { margin: 0; font-size: 13.5px; font-weight: 700; line-height: 1.5; }
.rank-item:hover h4 { color: var(--beam); }
.rank-item .rk-meta { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }

/* ======================================================================
   NEWS & EVENTS
   ====================================================================== */
.ne-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.news-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .18s, transform .18s; display: flex; flex-direction: column; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-thumb { position: relative; aspect-ratio: 16/9; }
.news-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.news-card-meta { display: flex; align-items: center; gap: 8px; }
.news-card-title { font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--ink); margin: 0; }

.ne-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; margin-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink); text-decoration: none;
}
.ne-head .ne-ko { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--ink-faint); }
.ne-head h3 { font-size: 20px; font-weight: 800; margin: 0; flex: 1; }
.ne-head svg { color: var(--ink-faint); transition: transform .15s; }
.ne-head:hover svg { transform: translateX(3px); color: var(--ink); }

.ne-list { display: flex; flex-direction: column; }

.ne-row {
  display: flex; gap: 18px; align-items: flex-start; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--hair);
  text-decoration: none; color: inherit; transition: .14s;
}
.ne-row:last-child { border-bottom: none; }
.ne-row .ne-text { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.ne-row h4 {
  margin: 0; font-size: 15px; font-weight: 700; line-height: 1.6; color: var(--ink);
  transition: color .14s;
}
.ne-row:hover h4 { color: var(--beam); }
.ne-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.ne-badge {
  font-size: 11px; font-weight: 600; padding: 3px 9px; line-height: 1;
  border: 1px solid #c8ccd6; border-radius: 3px; color: #43485a;
  white-space: nowrap;
}
.ne-badge.news { border-color: #e2b870; color: #b9750a; }
.ne-badge.event { border-color: #8fcdb9; color: #137a59; }
.ne-date { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); white-space: nowrap; }

.ne-thumb {
  flex: none; width: 156px; aspect-ratio: 16 / 10; position: relative;
  border-radius: 6px; overflow: hidden; background: var(--navy-800);
}
.ne-thumb .ph-img { transition: transform .3s; }
.ne-row:hover .ne-thumb .ph-img { transform: scale(1.05); }

/* ======================================================================
   CTA + FOOTER
   ====================================================================== */
.cta {
  background: var(--navy-900); color: #fff; position: relative; overflow: hidden;
}
.cta .glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 80% 10%, rgba(90,111,226,.4), transparent 55%),
              radial-gradient(50% 100% at 10% 100%, rgba(29,158,117,.22), transparent 60%);
}
.cta .wrap { position: relative; z-index: 2; padding: 72px 32px; }
.cta .cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta h2 { font-size: 36px; font-weight: 800; line-height: 1.3; margin: 0; text-wrap: balance; }
.cta p { color: rgba(255,255,255,.74); line-height: 1.85; font-size: 15px; margin: 16px 0 0; }
.cta-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 24px;
}
.cta-card .lab { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--blue-soft); text-transform: uppercase; }
.cta-card h4 { margin: 8px 0 14px; font-size: 18px; font-weight: 700; }
.nl-form { display: flex; gap: 8px; }
.nl-form input {
  flex: 1; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  padding: 12px 14px; color: #fff; font-family: var(--sans); font-size: 14px; outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.45); }
.nl-form input:focus { border-color: var(--teal-light); }

.footer-brand { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.footer-brand p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.footer-top { padding-bottom: 28px; border-bottom: 1px solid var(--hair); }
.site-footer { background: var(--white); color: var(--ink-soft); border-top: 1px solid var(--hair); }
.site-footer .wrap { padding: 36px 24px 28px; }
.footer-top { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding-bottom: 36px; border-bottom: 1px solid var(--hair); }
.footer-top .about p { font-size: 12px; line-height: 1.7; margin: 12px 0 0; max-width: 22ch; color: var(--ink-soft); }
.footer-col h5 { color: var(--ink); font-size: 11.5px; font-weight: 700; margin: 0 0 8px; letter-spacing: .04em; }
.footer-col a { display: block; font-size: 11.5px; padding: 2px 0; color: var(--ink-soft); transition: .14s; }
.footer-col a:hover { color: var(--ink); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink-soft); transition: .15s; }
.socials a:hover { background: var(--paper); color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.footer-bottom .corp { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-600); }
.footer-bottom .corp:hover { color: var(--ink); }
/* footer logo on white bg */
.site-footer .logo .name b { color: var(--ink); }
.site-footer .logo .name span { color: var(--navy-600); }

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2,1fr); }
  .feed-layout { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2,1fr); }
  .ne-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  /* コンテンツwrap: 40px */
  .wrap { padding: 0 16px; }
  /* ヘッダー内wrapは上書きして16pxに固定 */
  .site-header .wrap { height: 56px; gap: 10px; padding: 0 16px; }
  .logo .mark { width: 9px; height: 18px; margin-right: 22px; box-shadow: 11px 0 0 var(--teal-light), 22px 0 0 var(--amber); }
  .logo .name { font-size: 13px; letter-spacing: .06em; white-space: nowrap; }
  .logo .name b, .logo .name span { display: inline; }
  .gnav { display: none; }
  .header-right { gap: 6px; margin-left: auto; }
  /* PC用横展開を完全非表示 */
  .pc-only { display: none !important; }
  /* SP用ドロワーを有効化 */
  .sp-only { display: block; }
  .sp-search-drawer.open { max-height: 70px; opacity: 1; }
  .sp-search-drawer label {
    display: flex; align-items: center; gap: 10px; margin: 10px 16px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px; padding: 9px 14px;
  }
  .sp-search-drawer label:focus-within { border-color: var(--teal-light); }
  .sp-search-drawer svg { color: rgba(255,255,255,.45); flex: none; }
  .sp-search-drawer input {
    flex: 1; border: none; background: none; outline: none;
    font-family: var(--sans); font-size: 14px; color: #fff;
  }
  .sp-search-drawer input::placeholder { color: rgba(255,255,255,.4); }
  /* ニュースレターボタン: 文字に合わせてボタン拡張 */
  .sp-nl-btn {
    font-size: 12px !important;
    padding: 8px 14px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    text-align: center;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    flex-shrink: 0;
    border-radius: 8px !important;
  }
  .nl-pc { display: none; }
  .nl-sp { display: inline; }
  /* ヘッダーwrap: 左右8px以上確保 */
  .site-header .wrap { height: 56px; gap: 10px; padding: 0 8px; }
  .logo .mark { width: 9px; height: 18px; margin-right: 20px; box-shadow: 11px 0 0 var(--teal-light), 22px 0 0 var(--amber); }
  .logo .name { font-size: 13px; letter-spacing: .06em; white-space: nowrap; }
  .logo .name b, .logo .name span { display: inline; }
  .gnav { display: none; }
  .header-right { gap: 8px; margin-left: auto; padding-right: 8px; }
  /* ニュースレターボタン: padding 8px確保 */
  .sp-nl-btn {
    font-size: 12px !important;
    padding: 8px 10px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    text-align: center;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    flex-shrink: 0;
    border-radius: 8px !important;
  }
  .nl-pc { display: none; }
  .nl-sp { display: inline; }
  /* PC用右カラムを非表示、SP用をcopy内に表示 */
  .pc-hero-media { display: none !important; }
  .sp-hero-media {
    display: block;
    aspect-ratio: 16/9;
    width: 100%;
    max-height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 8px;
  }
  /* SP hero: 1カラム縦積み */
  .hero-a .hero-inner {
    display: block;
    padding: 0;
  }
  .hero-a .copy {
    padding: 20px 16px 28px;
    gap: 14px;
    display: flex;
    flex-direction: column;
  }
  .hero-a h1 { font-size: 22px; line-height: 1.38; }
  .hero-kicker { font-size: 10.5px; gap: 8px; flex-wrap: wrap; margin-bottom: 0 !important; }
  .hero .lead { display: none !important; }
  .hero-a .pc-hero-media { display: none !important; }
  /* 全サムネ16:9に統一 */
  .card .media { aspect-ratio: 16/9; }
  .card.sm .media { aspect-ratio: 16/9; }
  /* tagbar */
  .tagbar { position: static; top: auto; }
  .tagbar .wrap { height: auto; flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .tagbar .search { width: 100%; min-width: unset; }
  .tagbar .row { gap: 6px; }
  .pill { font-size: 12px; padding: 5px 10px; }
  /* sections */
  section.block { padding: 32px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-head h2 { font-size: 20px; }
  .case-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
  .ne-split { grid-template-columns: 1fr; gap: 24px; }
  .ne-thumb { width: 100px; }
  /* ranking */
  .feed-layout { grid-template-columns: 1fr; }
  /* card */
  .card h3 { font-size: 14px; }
  /* cta */
  .cta .cta-inner { grid-template-columns: 1fr; }
  .cta h2 { font-size: 24px; }
  .cta .wrap { padding: 48px 16px; }
  /* footer */
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  /* reading progress (詳細) */
  .reading-progress { top: 56px; }
  /* back top */
  .back-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }
}
  
  .ph { background: var(--ph-bg, #0e2247); border-radius: inherit; overflow: hidden; width: 100%; height: 100%; }
  .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .news-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .18s, transform .18s; display: flex; flex-direction: column; }
  .news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .news-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
  .news-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
  .news-card-meta { display: flex; align-items: center; gap: 8px; }
  .news-card-title { font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--ink); margin: 0; }
  @media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } }
  
  .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .news-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .18s, transform .18s; display: flex; flex-direction: column; }
  .news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .news-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
  .news-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
  .news-card-meta { display: flex; align-items: center; gap: 8px; }
  .news-card-title { font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--ink); margin: 0; }
  @media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } .gnav { display: none; } }
  

/* ========================================================
   LIST PAGES: 一覧ページ固有スタイル
   ======================================================== */

:root {
  --navy-900: #061431; --navy-800: #0E2247; --navy-700: #12203D; --navy-600: #2A4170;
  --beam: #5A6FE2; --blue-soft: #8AAFD4; --blue-pale: #EBF1F8;
  --teal: #1D9E75; --teal-light: #5DCAA5; --teal-pale: #E3F4EC;
  --amber: #EF9F27; --amber-pale: #FCEFD6;
  --paper: #F5F4F0; --white: #FFFFFF;
  --ink: #12203D; --ink-soft: #5A6577; --ink-faint: #8A93A3;
  --hair: #E7E6E1; --hair-blue: #DCE5F0;
  --mono: "Space Mono", ui-monospace, monospace;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --radius: 12px; --maxw: 1240px;
  --shadow-md: 0 6px 24px rgba(6,20,49,.10), 0 2px 6px rgba(6,20,49,.06);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper) !important; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy-900); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header .wrap { height: 68px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: baseline; gap: 9px; cursor: pointer; }
.logo .mark { width: 11px; height: 22px; background: var(--beam); box-shadow: 14px 0 0 var(--teal-light), 28px 0 0 var(--amber); margin-right: 28px; }
.logo .name { font-weight: 800; font-size: 18px; letter-spacing: .14em; }
.logo .name b { color: #fff; }
.logo .name span { color: var(--blue-soft); }
.gnav { display: flex; gap: 4px; margin-left: 8px; }
.gnav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82); padding: 9px 16px; border-radius: 8px; transition: .15s; }
.gnav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.gnav a.active { color: #fff; border-bottom: 2px solid var(--teal-light); border-radius: 0; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-search-inline { display: flex; align-items: center; gap: 8px; overflow: hidden; width: 0; opacity: 0; transition: width .25s ease, opacity .2s ease; }
.header-search-inline.open { width: 260px; opacity: 1; }
.header-search-inline label { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 8px 12px; width: 100%; }
.header-search-inline input { flex: 1; border: none; background: none; outline: none; font-family: var(--sans); font-size: 13.5px; color: #fff; }
.header-search-inline input::placeholder { color: rgba(255,255,255,.38); }
.sp-nl-btn { white-space: nowrap; }
.nl-sp { display: none; }
.nl-pc { display: inline; }
.pc-only { display: revert; }
.sp-only { display: none; }
.sp-search-drawer { overflow: hidden; max-height: 0; opacity: 0; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.1); transition: max-height .25s ease, opacity .2s; }
.header-search-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.14); cursor: pointer; background: transparent; transition: .15s; }
.header-search-btn:hover, .header-search-btn.is-open { background: rgba(255,255,255,.14); color: #fff; }
/* SP用検索ドロワー */
.sp-search-drawer { position: absolute; left: 0; right: 0; top: 56px; z-index: 48; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.1); overflow: hidden; max-height: 0; opacity: 0; transition: max-height .25s ease, opacity .2s; }
.sp-search-drawer.open { max-height: 70px; opacity: 1; }
.sp-search-drawer label { display: flex; align-items: center; gap: 10px; margin: 12px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 9px 14px; }
.sp-search-drawer svg { color: rgba(255,255,255,.45); flex: none; }
.sp-search-drawer input { flex: 1; border: none; background: none; outline: none; font-family: var(--sans); font-size: 14px; color: #fff; }
.sp-search-drawer input::placeholder { color: rgba(255,255,255,.4); }
.btn { font-family: var(--sans); font-weight: 700; font-size: 14px; border: none; cursor: pointer; border-radius: 10px; padding: 11px 20px; transition: transform .12s, box-shadow .15s; display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.btn-teal { background: var(--teal); color: #fff !important; }
.btn-teal:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.34); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }
.btn-outline { background: transparent; color: var(--navy-700); border: 1.5px solid var(--hair-blue); }
.btn-outline:hover { border-color: var(--beam); background: var(--blue-pale); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); border-radius: 10px; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; padding: 52px 0 48px; }
.page-hero .glow { position: absolute; inset: 0; background: radial-gradient(55% 100% at 75% 20%, rgba(90,111,226,.45), transparent 55%), radial-gradient(40% 80% at 5% 90%, rgba(29,158,117,.18), transparent 60%); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.page-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; color: var(--beam); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.page-eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; display: inline-block; }
.page-hero h1 { font-size: 38px; font-weight: 800; margin: 0 0 10px; letter-spacing: .01em; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; margin: 0; max-width: 44ch; }
.page-hero-stats { display: flex; gap: 28px; flex: none; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--teal-light); line-height: 1; }
.stat-label { font-family: var(--mono); font-size: 10.5px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .08em; }

/* ── TAG ZONE ── */
.tag-zone { background: var(--white); border-bottom: 1px solid var(--hair); z-index: 40; }
.tag-zone .wrap { padding: 12px 32px; }
.tag-main-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag-recommend-label { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-faint); white-space: nowrap; flex: none; }
.detail-toggle { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-soft); background: none; border: 1.5px solid var(--hair); border-radius: 999px; padding: 5px 14px; cursor: pointer; transition: .15s; white-space: nowrap; flex: none; }
.detail-toggle:hover { border-color: var(--navy-600); color: var(--navy-700); }
.detail-toggle.open { border-color: var(--navy-600); color: var(--navy-700); background: var(--blue-pale); }
#detailIcon { transition: transform .22s ease; }
.detail-toggle.open #detailIcon { transform: rotate(180deg); }
.tag-search { display: flex; align-items: center; gap: 7px; background: var(--paper); border: 1.5px solid var(--hair); border-radius: 10px; padding: 6px 12px; min-width: 180px; transition: .15s; margin-left: auto; }
.tag-search:focus-within { border-color: var(--beam); background: #fff; }
.tag-search svg { color: var(--ink-faint); flex: none; }
.tag-search input { border: none; background: none; outline: none; font-family: var(--sans); font-size: 13px; width: 100%; color: var(--ink); }
.tag-search input::placeholder { color: var(--ink-faint); }
.detail-body { overflow: hidden; max-height: 0; transition: max-height .28s ease, padding .2s; }
.detail-body.open { max-height: 300px; padding: 14px 0 10px; }
.detail-section { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.detail-section:last-child { margin-bottom: 0; }
.detail-label { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-faint); white-space: nowrap; flex: none; min-width: 48px; }
.detail-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
/* pill */
.fpill { font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--hair); background: var(--white); color: var(--ink-soft); cursor: pointer; transition: .14s; white-space: nowrap; }
.fpill:hover { border-color: var(--navy-600); color: var(--navy-700); }
.fpill.on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.fpill.rec { background: var(--amber-pale); border-color: #e8c87a; color: #8a6000; }
.fpill.rec:hover { border-color: var(--amber); color: #7a5000; }
.fpill.rec.on { background: var(--amber); border-color: var(--amber); color: #fff; }
.fpill.cat { background: var(--blue-pale); border-color: var(--hair-blue); color: var(--navy-600); }
.fpill.cat:hover { background: var(--blue-pale); border-color: var(--beam); color: var(--beam); }
.fpill.cat.on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.fpill.industry:hover { border-color: var(--beam); color: var(--beam); }
.fpill.industry.on { background: var(--beam); border-color: var(--beam); color: #fff; }
.fpill.challenge:hover { border-color: var(--teal); color: var(--teal); }
.fpill.challenge.on { background: var(--teal); border-color: var(--teal); color: #fff; }
.fpill.phase { background: var(--white); border-color: var(--hair); color: var(--ink-faint); }
.fpill.phase:hover { border-color: var(--ink-faint); color: var(--ink-soft); }
.fpill.phase.on { background: var(--hair); border-color: var(--ink-faint); color: var(--ink-soft); }
.sort-select { font-family: var(--mono); font-size: 12px; border: 1.5px solid var(--hair); border-radius: 8px; padding: 6px 10px; color: var(--ink-soft); background: var(--white); cursor: pointer; outline: none; }

/* ── LAYOUT ── */
.list-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; padding: 40px 0 80px; }
.list-main { min-width: 0; }
.list-sidebar { position: sticky; top: 126px; display: flex; flex-direction: column; gap: 20px; }
.result-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.result-count { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.result-count span { color: var(--ink); font-weight: 700; }

/* ── FEATURED (先頭1枚大きく) ── */
.featured-card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  overflow: hidden; display: grid !important; grid-template-columns: 1fr 1fr;
  cursor: pointer; transition: transform .16s, box-shadow .16s; margin-bottom: 24px;
  text-decoration: none; color: inherit;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-card .fc-media {
  min-height: 280px; background: #1d3a6e;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 11px);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.fc-badge {
  position: absolute; top: 14px; left: 14px; background: var(--beam); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; padding: 4px 10px; border-radius: 6px;
}
.featured-card .fc-body {
  padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.fc-cat { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--beam); }
.featured-card h2 { font-size: 22px; font-weight: 800; line-height: 1.45; margin: 0; }
.featured-card:hover h2 { color: var(--beam); }
.featured-card .fc-lead { font-size: 14px; line-height: 1.8; color: var(--ink-soft); margin: 0; }
.fc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.fc-chip { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; }
.fc-chip.industry { background: var(--blue-pale); color: var(--navy-600); }
.fc-chip.challenge { background: var(--teal-pale); color: #137a59; }
.fc-chip.phase { border: 1px solid var(--hair); color: var(--ink-faint); font-family: var(--mono); font-size: 10px; }
.fc-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); }

/* ── ARTICLE GRID ── */
.result-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hair-blue); }
.card .media { aspect-ratio: 16/9; position: relative; }
.card .ph { position: absolute; inset: 0; background-color: var(--ph-bg, #1a2f57); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 11px); display: grid; place-items: center; }
.card .body { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--ink-faint); font-weight: 600; }
.card-cat.case { color: var(--beam); }
.card h3 { font-size: 14.5px; font-weight: 700; line-height: 1.55; margin: 0; flex: 1; transition: color .14s; }
.card:hover h3 { color: var(--beam); }
.card .chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.chip { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.chip.industry { background: var(--blue-pale); color: var(--navy-600); }
.chip.challenge { background: var(--teal-pale); color: #137a59; }
.chip.phase { border: 1px solid var(--hair); color: var(--ink-faint); font-family: var(--mono); font-size: 10px; }
.card .meta { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; border-radius: 9px; border: 1.5px solid var(--hair); background: var(--white); color: var(--ink-soft); font-family: var(--mono); font-size: 13px; cursor: pointer; display: grid; place-items: center; transition: .14s; }
.page-btn:hover { border-color: var(--beam); color: var(--beam); }
.page-btn.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.page-btn.arrow { font-size: 16px; }

/* ── SIDEBAR WIDGETS ── */
.widget { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; }
.widget-head { padding: 14px 18px 12px; border-bottom: 1px solid var(--hair); display: flex; align-items: center; gap: 10px; }
.wko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }
.wko::before { content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block; }
.wttl { font-weight: 800; font-size: 15px; }

/* sidebar CTA */
.sidebar-cta { background: linear-gradient(135deg, var(--navy-900) 0%, #1a3a72 100%); border-radius: var(--radius); padding: 22px 20px; color: #fff; position: relative; overflow: hidden; }
.sidebar-cta::after { content: ""; position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(90,111,226,.35), transparent 70%); }
.sc-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--teal-light); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.sc-eyebrow::before { content: ""; width: 14px; height: 2px; background: currentColor; }
.sc-free-badge {
  display: inline-block; background: var(--teal); color: #fff;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.sidebar-cta h4 { font-size: 15px; font-weight: 800; margin: 0 0 8px; line-height: 1.4; }
.sidebar-cta p { font-size: 12px; color: rgba(255,255,255,.68); line-height: 1.7; margin: 0 0 16px; }
.sc-btn { display: block; text-align: center; background: var(--teal); color: #fff; font-weight: 700; font-size: 13px; padding: 11px 16px; border-radius: 10px; transition: .15s; }
.sc-btn:hover { background: #18876a; transform: translateY(-1px); }
.sc-sub { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.45); text-align: center; margin-top: 8px; }

/* rank */
.rank-list { padding: 4px; }
.rank-item { display: flex; gap: 10px; padding: 10px 12px; align-items: flex-start; border-bottom: 1px solid var(--hair); cursor: pointer; transition: background .14s; border-radius: 8px; }
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: var(--paper); }
.rank-num { font-family: var(--mono); font-weight: 700; font-size: 17px; color: var(--ink-faint); width: 20px; flex: none; line-height: 1.2; }
.rank-item:nth-child(1) .rank-num { color: var(--amber); }
.rank-item:nth-child(2) .rank-num { color: var(--beam); }
.rank-item h4 { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.55; }
.rank-item:hover h4 { color: var(--beam); }

/* tag cloud */
.tag-cloud { padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.tc-tag { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--hair); color: var(--ink-soft); cursor: pointer; transition: .14s; }
.tc-tag:hover { border-color: var(--beam); color: var(--beam); background: var(--blue-pale); }
.tc-tag.ind { border-color: #c8d8f0; background: var(--blue-pale); color: var(--navy-600); }
.tc-tag.cha { border-color: #b0dfc8; background: var(--teal-pale); color: #137a59; }

/* nl widget */
.nl-widget { padding: 18px; }
.nl-widget p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 12px; }
.nl-form { display: flex; flex-direction: column; gap: 7px; }
.nl-input { border: 1.5px solid var(--hair); border-radius: 9px; padding: 9px 12px; font-family: var(--sans); font-size: 13px; outline: none; transition: border-color .15s; }
.nl-input:focus { border-color: var(--teal); }
.nl-submit { background: var(--teal); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 13px; border: none; border-radius: 9px; padding: 10px; cursor: pointer; transition: .15s; }
.nl-submit:hover { background: #18876a; }

/* ── BOTTOM CTA ── */
.bottom-cta { background: var(--navy-900); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.bottom-cta .glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 10%, rgba(90,111,226,.4), transparent 55%), radial-gradient(50% 100% at 10% 100%, rgba(29,158,117,.22), transparent 60%); }
.bottom-cta .wrap { position: relative; z-index: 2; }
.bc-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.bc-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--teal-light); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.bc-eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; }
.bottom-cta h2 { font-size: 30px; font-weight: 800; line-height: 1.35; margin: 0 0 10px; }
.bottom-cta p { color: rgba(255,255,255,.74); line-height: 1.85; font-size: 14.5px; margin: 0 0 26px; }
.cta-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 22px; }
.cta-card .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: var(--blue-soft); text-transform: uppercase; }
.cta-card h4 { margin: 7px 0 13px; font-size: 16px; font-weight: 700; }
.nl-form-h { display: flex; gap: 8px; }
.nl-form-h input { flex: 1; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); padding: 11px 13px; color: #fff; font-family: var(--sans); font-size: 13.5px; outline: none; }
.nl-form-h input:focus { border-color: var(--teal-light); }
.nl-form-h input::placeholder { color: rgba(255,255,255,.4); }

/* ── FOOTER ── */
.footer-brand { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.footer-brand p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.footer-top { padding-bottom: 28px; border-bottom: 1px solid var(--hair); }
.site-footer { background: var(--white); color: var(--ink-soft); border-top: 1px solid var(--hair); }
.site-footer .wrap { padding: 36px 24px 28px; }
.footer-top { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding-bottom: 36px; border-bottom: 1px solid var(--hair); }
.footer-top .about p { font-size: 12px; line-height: 1.7; margin: 12px 0 0; color: var(--ink-soft); max-width: 22ch; }
.footer-col h5 { color: var(--ink); font-size: 11.5px; font-weight: 700; margin: 0 0 8px; }
.footer-col a { display: block; font-size: 11.5px; padding: 2px 0; color: var(--ink-soft); transition: .14s; }
.footer-col a:hover { color: var(--ink); }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink-soft); transition: .15s; }
.footer-socials a:hover { background: var(--paper); color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.footer-bottom .corp { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-600); }

@media (max-width: 1000px) {
  .list-layout { grid-template-columns: 1fr; }
  .list-sidebar { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .fc-media { min-height: 220px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .site-header .wrap { height: 56px; gap: 10px; padding: 0 8px; }
  .header-right { gap: 8px; padding-right: 8px; }
  /* header */
  .site-header .wrap { height: 56px; gap: 10px; }
  .logo .mark { margin-right: 14px; }
  .logo .mark { width: 9px; height: 18px; margin-right: 20px; }
  .logo .name { font-size: 13px; letter-spacing: .06em; white-space: nowrap; }
  .gnav { display: none; }
  .pc-only { display: none !important; }
  .sp-only { display: block; }
  .sp-search-drawer.open { max-height: 70px; opacity: 1; }
  .sp-search-drawer label { display: flex; align-items: center; gap: 10px; margin: 10px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 9px 14px; }
  .sp-search-drawer svg { color: rgba(255,255,255,.45); flex: none; }
  .sp-search-drawer input { flex: 1; border: none; background: none; outline: none; font-family: var(--sans); font-size: 14px; color: #fff; }
  .sp-search-drawer input::placeholder { color: rgba(255,255,255,.4); }
  .sp-nl-btn { font-size: 12px !important; padding: 8px 14px !important; line-height: 1.4 !important; white-space: normal !important; text-align: center; width: auto !important; min-width: 0 !important; max-width: none !important; height: auto !important; flex-shrink: 0; border-radius: 8px !important; }
  .nl-pc { display: none; }
  .nl-sp { display: inline; }
  .header-right { gap: 8px; }
  .btn { font-size: 12px; padding: 9px 14px; }
  .btn-press { font-size: 12px !important; padding: 9px 14px !important; }
  /* hero */
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: 26px; margin-bottom: 8px; }
  .page-hero p { font-size: 13.5px; }
  /* filter */
  .filter-bar .wrap { flex-direction: column; gap: 10px; padding: 12px 16px; min-height: unset; }
  .filter-section { border-right: none; margin-right: 0; padding: 0; width: 100%; }
  .filter-section:last-of-type { border-top: 1px solid var(--hair); padding-top: 10px; }
  .filter-pills { flex-wrap: wrap; }
  .fpill { font-size: 12px; padding: 5px 10px; }
  .filter-search { width: 100%; min-width: unset; }
  /* featured card */
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .fc-media { min-height: 180px; }
  .featured-card .fc-body { padding: 20px; }
  .featured-card h2 { font-size: 17px; }
  .fc-lead { display: none; }
  /* grid */
  .article-grid { grid-template-columns: 1fr; }
  .result-header { flex-direction: row; align-items: center; }
  /* pagination */
  .pagination { gap: 4px; }
  .page-btn { width: 32px; height: 32px; font-size: 12px; }
  /* sidebar */
  .list-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-cta { grid-column: 1 / -1; }
  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* cta */
  .bc-inner { grid-template-columns: 1fr; }
  .bottom-cta h2 { font-size: 22px; }
}
  

/* ========================================================
   DETAIL PAGES: 詳細ページ固有スタイル
   ======================================================== */


/* ======================================================================
   STUDIO INSIGHT — 記事詳細ページ
   ====================================================================== */
:root {
  --navy-900: #061431;
  --navy-800: #0E2247;
  --navy-700: #12203D;
  --navy-600: #2A4170;
  --beam: #5A6FE2;
  --blue-soft: #8AAFD4;
  --blue-pale: #EBF1F8;
  --teal: #1D9E75;
  --teal-light: #5DCAA5;
  --teal-pale: #E3F4EC;
  --amber: #EF9F27;
  --amber-pale: #FCEFD6;
  --paper: #F5F4F0;
  --white: #FFFFFF;
  --ink: #12203D;
  --ink-soft: #5A6577;
  --ink-faint: #8A93A3;
  --hair: #E7E6E1;
  --hair-blue: #DCE5F0;
  --mono: "Space Mono", ui-monospace, monospace;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --radius: 12px;
  --maxw: 1264px;
  --shadow-sm: 0 1px 2px rgba(6,20,49,.06), 0 2px 8px rgba(6,20,49,.05);
  --shadow-md: 0 6px 24px rgba(6,20,49,.10), 0 2px 6px rgba(6,20,49,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper) !important; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── 固定問い合わせCTA ── */
.floating-cta {
  position: fixed; right: 28px; bottom: 28px; z-index: 80;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 14px;
  background: var(--teal); color: #fff;
  box-shadow: 0 10px 30px rgba(29,158,117,.4), 0 2px 8px rgba(6,20,49,.18);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: fc-in .5s cubic-bezier(.22,1,.36,1) both;
}
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(29,158,117,.48), 0 4px 12px rgba(6,20,49,.2); }
.floating-cta .fc-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.16); flex: none; }
.floating-cta .fc-text { display: flex; flex-direction: column; line-height: 1.25; }
.floating-cta .fc-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; color: rgba(255,255,255,.82); }
.floating-cta .fc-main { font-size: 14.5px; font-weight: 800; letter-spacing: .01em; }
.floating-cta .fc-arrow { display: grid; place-items: center; opacity: .85; transition: transform .18s ease; }
.floating-cta:hover .fc-arrow { transform: translateX(3px); }

@keyframes fc-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
  .floating-cta { right: 14px; bottom: 14px; padding: 12px 14px; gap: 9px; }
  .floating-cta .fc-icon { width: 30px; height: 30px; }
  .floating-cta .fc-sub { display: none; }
  .floating-cta .fc-main { font-size: 13px; }
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-900); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap { height: 68px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: baseline; gap: 9px; }
.logo .mark { width: 11px; height: 22px; background: var(--beam); box-shadow: 14px 0 0 var(--teal-light), 28px 0 0 var(--amber); margin-right: 28px; }
.logo .name { font-weight: 800; font-size: 18px; letter-spacing: .14em; }
.logo .name b { color: #fff; }
.logo .name span { color: var(--blue-soft); }
.gnav { display: flex; gap: 4px; margin-left: 8px; }
.gnav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82); padding: 9px 16px; border-radius: 8px; transition: .15s; }
.gnav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.btn { font-family: var(--sans); font-weight: 700; font-size: 14px; border: none; cursor: pointer; border-radius: 10px; padding: 11px 20px; transition: transform .12s, box-shadow .15s; display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.btn-teal { background: var(--teal); color: #fff !important; }
.btn-teal:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.34); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: transparent; color: var(--navy-700); border: 1.5px solid var(--hair-blue); }
.btn-outline:hover { border-color: var(--beam); background: var(--blue-pale); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 16px 0; display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-faint); transition: color .14s; }
.breadcrumb a:hover { color: var(--beam); }
.breadcrumb .sep { opacity: .5; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 16px 0; display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-faint); text-decoration: none; transition: color .14s; }
.breadcrumb a:hover { color: var(--beam); }
.breadcrumb .sep { opacity: .5; }

/* ── ARTICLE HERO (中央寄せヘッダー + 全幅キービジュアル) ── */
.article-hero { background: var(--paper); color: var(--ink); }
.article-hero .wrap { padding-top: 0; padding-bottom: 0; }
.article-head-center { max-width: 880px; margin: 0 auto; text-align: center; padding: 18px 0 40px; }
.article-cat { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: .04em; }
.article-cat::after { content: ""; display: block; width: 34px; height: 3px; background: var(--ink); margin: 14px auto 0; }
.article-head-center h1 { font-size: 38px; font-weight: 800; line-height: 1.42; letter-spacing: .02em; margin: 30px 0 0; color: var(--ink); text-wrap: balance; }
.article-sub { font-size: 21px; font-weight: 700; color: var(--ink); margin-top: 18px; letter-spacing: .02em; line-height: 1.5; text-wrap: balance; }
.article-date { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); margin-top: 22px; }
.article-byline-c { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; text-align: left; }
.article-byline-c .avatar { width: 42px; height: 42px; }
.article-byline-c .name { font-weight: 700; font-size: 14px; color: var(--ink); }
.article-byline-c .role { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
.hero-rule { height: 4px; background: var(--ink); border-radius: 2px; max-width: 1200px; margin: 0 auto; }
.article-keyvisual { margin: 0 auto 32px; border-radius: var(--radius-sm); overflow: hidden; }
.article-keyvisual .ph {
  aspect-ratio: 16 / 9; width: 100%;
  background: #1d3a6e;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px);
  display: grid; place-items: center;
}
.article-keyvisual .ph-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.8); }
.article-keyvisual .ph-label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; background: rgba(0,0,0,.28); padding: 5px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,.16); }

/* ── LEAD (両端罫線) ── */
.lead-section { background: var(--paper); position: relative; }
.lead-section .wrap { position: relative; padding-top: 56px; padding-bottom: 24px; }
.lead-watermark {
  position: absolute; left: -6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 800; font-size: 150px; line-height: .8;
  color: rgba(18,32,61,.05); letter-spacing: .01em; pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap;
}
.lead-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  padding: 4px 48px; border-left: 1px solid var(--ink); border-right: 1px solid var(--ink);
}
.lead-inner p { font-size: 16.5px; line-height: 2.05; color: var(--ink); margin: 0 0 18px; }
.lead-inner p:last-child { margin-bottom: 0; }

/* ── LAYOUT: 1カラム中央寄せ ── */
.article-layout { display: grid; grid-template-columns: minmax(0, 1200px); justify-content: center; padding: 48px 0 80px; }
.article-main { min-width: 0; }

/* ── ARTICLE BODY ── */
.article-body { background: var(--white); border-radius: 0; border: 1px solid var(--hair); padding: 56px 52px; }
/* カード内のコンテンツは一律で読みやすい幅に絞って中央寄せ */
.article-body > * { max-width: 900px; margin-left: auto !important; margin-right: auto !important; }
.article-lead { padding: 4px 28px; border-left: 1px solid var(--ink); border-right: 1px solid var(--ink); margin: 0 0 32px; }
.article-lead p { font-size: 16.5px; line-height: 2.0; color: var(--ink); margin: 0 0 16px; }
.article-lead p:last-child { margin-bottom: 0; }
.article-body .lead-text {
  font-size: 17px; line-height: 1.9; color: var(--ink-soft);
  border-left: 3px solid var(--beam); padding-left: 20px; margin: 0 0 36px;
}
.article-body h1 { font-size: 28px; font-weight: 800; margin: 48px 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--hair); letter-spacing: .01em; }
.article-body h2 { font-size: 22px; font-weight: 800; margin: 44px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--hair); letter-spacing: .01em; }
.article-body h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
/* 見出し内に手動指定のフォントサイズ・太字・色（TinyMCEでの装飾）が残っていても、見出しのデザインを優先する */
.article-body h1 *, .article-body h2 *, .article-body h3 * {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  font-family: inherit !important;
}
.article-body p { font-size: 16px; line-height: 1.9; margin: 0 0 20px; color: var(--ink); }
.article-body a { color: var(--beam); text-decoration: underline; }
.article-body a:hover { opacity: .75; }
.article-body strong { font-weight: 700; color: var(--navy-700); }
.article-body mark,
.article-body [style*="background-color"] { background-color: rgba(90,111,226,.14) !important; color: inherit !important; padding: 0 2px; border-radius: 2px; }
.article-body ul, .article-body ol { font-size: 16px; line-height: 1.9; margin: 0 0 20px; padding-left: 1.6em; color: var(--ink); }
.article-body li { margin-bottom: 0.8em; }

/* 本文中に挿入した画像: 常に本文幅（900px）いっぱいに表示する */
.article-body img { display: block; width: 100%; height: auto; max-width: 100%; border-radius: var(--radius-sm); }
.article-body figure { margin: 0 0 28px; }
.article-body figcaption { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 8px; }

/* table */
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 28px; font-size: 15px; border: none !important; }
.article-body table th { font-weight: 700; text-align: left; padding: 11px 14px; border: 1px solid var(--hair) !important; line-height: 1.6; background: var(--blue-pale) !important; }
.article-body table td { padding: 11px 14px; border: 1px solid var(--hair) !important; line-height: 1.7; vertical-align: top; background: var(--white) !important; }
.article-body table tr:nth-child(even) td { background: var(--white); }

/* code */
.article-body pre { background: var(--navy-900); color: #e2e8f4; padding: 20px 22px; border-radius: 10px; overflow-x: auto; font-size: 13.5px; line-height: 1.75; margin: 0 0 28px; -webkit-overflow-scrolling: touch; white-space: pre; }
.article-body code { font-family: var(--mono); font-size: 13px; background: var(--paper); color: var(--navy-700); padding: 2px 6px; border-radius: 4px; }
.article-body pre code { background: none; color: inherit; padding: 0; font-size: inherit; border-radius: 0; }

/* pullquote */
.pullquote {
  margin: 36px 0; padding: 28px 32px;
  background: var(--blue-pale); border-radius: 10px;
  border-left: 4px solid var(--beam);
  font-size: 17px; font-weight: 700; line-height: 1.7; color: var(--navy-700);
  position: relative;
}
.pullquote::before { content: "\201C"; font-size: 64px; line-height: 1; color: var(--beam); opacity: .3; position: absolute; top: 8px; left: 20px; font-family: Georgia, serif; }

/* insight box */
.insight-box {
  margin: 32px 0; padding: 22px 26px;
  background: var(--teal-pale); border-radius: 10px;
  border: 1px solid rgba(29,158,117,.2);
}
.insight-box .insight-label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--teal); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.insight-box .insight-label::before { content: ""; width: 16px; height: 2px; background: var(--teal); display: inline-block; }
.insight-box p { font-size: 15px; line-height: 1.8; margin: 0; color: var(--ink); }

/* box-blue: 本文中で使う汎用の囲みブロック（水色背景） */
.box-blue { margin: 32px 0; padding: 28px 32px; background: var(--blue-pale); border-radius: var(--radius-sm); }
.box-blue > *:last-child { margin-bottom: 0; }

/* data highlight */
.data-row { display: flex; gap: 12px; margin: 32px 0; }
.data-item {
  flex: 1; background: var(--white); border: 1px solid var(--hair);
  border-radius: var(--radius); padding: 20px 18px; text-align: center;
}
.data-item .num { font-family: var(--mono); font-size: 32px; font-weight: 700; color: var(--beam); line-height: 1; }
.data-item .unit { font-family: var(--mono); font-size: 16px; color: var(--beam); margin-left: 2px; }
.data-item .label { font-size: 12px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; font-weight: 600; }
.data-item .label-sub { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); margin-top: 3px; }

/* article footer tags */
.article-tags-footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--hair); }
.article-tags-footer .label { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: 12px; }
.article-tags-footer .chips-light { display: flex; flex-wrap: wrap; gap: 8px; }
/* .article-body a の下線・リンク色を打ち消し、トップページのタグピルと同じ見た目にする */
.article-tags-footer .pill { color: var(--navy-700); text-decoration: none; }
.article-tags-footer .pill:hover { color: var(--beam); text-decoration: none; opacity: 1; }
.article-tags-footer .pill.challenge:hover { color: var(--teal); }

/* share bar */
.share-bar { margin-top: 32px; display: flex; align-items: center; gap: 12px; }
.share-bar .share-label { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--ink-faint); }
.share-btn { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--hair); background: var(--white); color: var(--ink-soft); display: grid; place-items: center; cursor: pointer; transition: .15s; }
.share-btn:hover { border-color: var(--navy-600); color: var(--ink); background: var(--paper); }

/* ── IN-ARTICLE CTA ── */
.inline-cta {
  margin: 44px 0; border-radius: 14px; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 60%, #1a3a6e 100%);
  padding: 32px 36px; color: #fff; position: relative;
}
.inline-cta::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,111,226,.3), transparent 70%);
  pointer-events: none;
}
.inline-cta .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--teal-light); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.inline-cta .eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; }
.inline-cta h4 { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.inline-cta p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; margin: 0 0 20px; }
.inline-cta .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SIDEBAR WIDGETS ── */
.widget { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; }
.widget-head { padding: 16px 18px 14px; border-bottom: 1px solid var(--hair); display: flex; align-items: center; gap: 10px; }
.widget-head .wko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }
.widget-head .wko::before { content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block; }
.widget-head .wttl { font-weight: 800; font-size: 15px; }
.sc-free-badge { display: inline-block; background: var(--teal); color: #fff; font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .06em; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }

/* ── SIDEBAR: 目次 ── */
.toc-list { padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; }
.toc-item { font-size: 13px; line-height: 1.5; padding: 7px 10px; border-radius: 8px; color: var(--ink-soft); cursor: pointer; transition: .14s; display: flex; align-items: baseline; gap: 10px; }
.toc-item:hover { background: var(--paper); color: var(--beam); }
.toc-item.active { background: var(--blue-pale); color: var(--beam); font-weight: 700; }
.toc-item .toc-num { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); flex: none; }

/* ── SIDEBAR: お問い合わせ CTA ── */
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, #1a3a72 100%);
  border-radius: var(--radius); padding: 24px 20px; color: #fff;
  border: none; position: relative; overflow: hidden;
}
.sidebar-cta::after {
  content: ""; position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,111,226,.35), transparent 70%);
}
.sidebar-cta .sc-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--teal-light); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.sidebar-cta .sc-eyebrow::before { content: ""; width: 14px; height: 2px; background: currentColor; }
.sidebar-cta h4 { font-size: 16px; font-weight: 800; margin: 0 0 8px; line-height: 1.4; }
.sidebar-cta p { font-size: 12.5px; color: rgba(255,255,255,.68); line-height: 1.7; margin: 0 0 18px; }
.sidebar-cta .sc-btn { display: block; text-align: center; background: var(--teal); color: #fff; font-weight: 700; font-size: 13.5px; padding: 12px 16px; border-radius: 10px; transition: .15s; }
.sidebar-cta .sc-btn:hover { background: #18876a; transform: translateY(-1px); }
.sidebar-cta .sc-sub { font-family: var(--mono); font-size: 10.5px; color: rgba(255,255,255,.45); text-align: center; margin-top: 10px; }

/* ── SIDEBAR: ランキング ── */
.rank-list { padding: 8px 4px; }
.rank-item { display: flex; gap: 12px; padding: 11px 14px; align-items: flex-start; border-bottom: 1px solid var(--hair); cursor: pointer; transition: background .14s; }
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: var(--paper); }
.rank-item .num { font-family: var(--mono); font-weight: 700; font-size: 18px; line-height: 1; color: var(--ink-faint); width: 22px; flex: none; padding-top: 2px; }
.rank-item:nth-child(2) .num { color: var(--amber); }
.rank-item:nth-child(3) .num { color: var(--beam); }
.rank-item h4 { margin: 0; font-size: 12.5px; font-weight: 700; line-height: 1.55; }
.rank-item:hover h4 { color: var(--beam); }
.rank-item .rmeta { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); margin-top: 4px; }

/* ── SIDEBAR: ニュースレター ── */
.nl-widget { padding: 20px 18px; }
.nl-widget p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 14px; }
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-input { border: 1.5px solid var(--hair); border-radius: 9px; padding: 10px 12px; font-family: var(--sans); font-size: 13px; outline: none; transition: border-color .15s; }
.nl-input:focus { border-color: var(--teal); }
.nl-submit { background: var(--teal); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 13.5px; border: none; border-radius: 9px; padding: 11px; cursor: pointer; transition: .15s; }
.nl-submit:hover { background: #18876a; }

/* ── AUTHOR BOX ── */
.author-box { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 24px; align-items: flex-start; margin-bottom: 32px; }
.author-box .avatar-lg { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--beam), var(--navy-600)); border: 3px solid var(--hair-blue); flex: none; }
.author-box .author-info .author-ko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: var(--ink-faint); margin-bottom: 4px; }
.author-box .author-info h4 { font-size: 17px; font-weight: 800; margin: 0 0 4px; }
.author-box .author-info .author-role { font-family: var(--mono); font-size: 11.5px; color: var(--beam); margin-bottom: 10px; }
.author-box .author-info p { font-size: 13.5px; line-height: 1.8; color: var(--ink-soft); margin: 0; }

/* ── RELATED ARTICLES ── */
.section-block { margin-top: 56px; margin-bottom: 0; }
.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-label .sko { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--beam); display: inline-flex; align-items: center; gap: 8px; }
.section-label .sko::before { content: ""; width: 20px; height: 2px; background: currentColor; }
.section-label h2 { font-size: 20px; font-weight: 800; margin: 0; }
.si-more-link {
  margin-left: auto; font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--navy-600); display: inline-flex; align-items: center; gap: 6px;
  padding-bottom: 2px; border-bottom: 1px solid transparent; transition: .15s; white-space: nowrap;
}
.si-more-link:hover { color: var(--beam); border-color: var(--beam); gap: 10px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rel-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; display: block; text-decoration: none; color: inherit; }
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--hair-blue); }
.rel-card .rc-media { aspect-ratio: 16/9; background: #1d3a6e;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.rel-card .rc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.rel-card .rc-body { padding: 14px 16px; }
.rel-card .rc-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: 6px; }
.rel-card h4 { font-size: 14px; font-weight: 700; line-height: 1.55; margin: 0 0 10px; }
.rel-card:hover h4 { color: var(--beam); }
.rel-card .rc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.rc-chip { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.rc-chip.industry { background: var(--blue-pale); color: var(--navy-600); }
.rc-chip.challenge { background: var(--teal-pale); color: #137a59; }
.rc-chip.phase { border: 1px solid var(--hair); color: var(--ink-faint); font-family: var(--mono); font-size: 10px; }

/* case pickup strip */
.case-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-card-h { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; display: flex; cursor: pointer; transition: transform .16s, box-shadow .16s; }
.case-card-h:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.case-card-h .cc-media { width: 120px; flex: none; background: #1a2f57;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px);
  display: grid; place-items: center;
}
.case-card-h .cc-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.case-card-h .cc-badge { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--beam); }
.case-card-h h4 { font-size: 13.5px; font-weight: 700; line-height: 1.55; margin: 0; }
.case-card-h:hover h4 { color: var(--beam); }
.case-card-h .cc-meta { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); margin-top: auto; }

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--navy-900); color: #fff; padding: 72px 0;
  position: relative; overflow: hidden;
}
.bottom-cta .glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 80% 10%, rgba(90,111,226,.4), transparent 55%),
              radial-gradient(50% 100% at 10% 100%, rgba(29,158,117,.22), transparent 60%);
}
.bottom-cta .wrap { position: relative; z-index: 2; }
.bottom-cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.bottom-cta h2 { font-size: 32px; font-weight: 800; line-height: 1.35; margin: 0 0 12px; text-wrap: balance; }
.bottom-cta p { color: rgba(255,255,255,.74); line-height: 1.85; font-size: 15px; margin: 0 0 28px; }
.bottom-cta .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--teal-light); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.bottom-cta .eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; }
.cta-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 24px; }
.cta-card .lab { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--blue-soft); text-transform: uppercase; }
.cta-card h4 { margin: 8px 0 14px; font-size: 17px; font-weight: 700; }
.nl-form-h { display: flex; gap: 8px; }
.nl-form-h input { flex: 1; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); padding: 12px 14px; color: #fff; font-family: var(--sans); font-size: 14px; outline: none; }
.nl-form-h input:focus { border-color: var(--teal-light); }
.nl-form-h input::placeholder { color: rgba(255,255,255,.4); }

/* ── FOOTER ── */
.footer-brand { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.footer-brand p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.footer-top { padding-bottom: 28px; border-bottom: 1px solid var(--hair); }
.site-footer { background: var(--white); color: var(--ink-soft); border-top: 1px solid var(--hair); }
.site-footer .wrap { padding: 36px 24px 28px; }
.footer-top { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding-bottom: 36px; border-bottom: 1px solid var(--hair); }
.footer-top .about p { font-size: 12px; line-height: 1.7; margin: 12px 0 0; color: var(--ink-soft); max-width: 22ch; }
.footer-col h5 { color: var(--ink); font-size: 11.5px; font-weight: 700; margin: 0 0 8px; letter-spacing: .04em; }
.footer-col a { display: block; font-size: 11.5px; padding: 2px 0; color: var(--ink-soft); transition: .14s; }
.footer-col a:hover { color: var(--ink); }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink-soft); transition: .15s; }
.footer-socials a:hover { background: var(--paper); color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.footer-bottom .corp { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-600); }

/* この記事を書いた人 */
.writer-box { margin: 28px 0 8px; padding: 22px 24px; background: var(--paper); border: 1px solid var(--hair); border-radius: 10px; }
.writer-ko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--ink-faint); margin-bottom: 12px; }
.writer-row { display: flex; align-items: center; gap: 14px; }
.writer-row .avatar { width: 48px; height: 48px; border: 2px solid var(--hair-blue); }
.writer-name { font-weight: 800; font-size: 15px; color: var(--ink); }
.writer-role { font-family: var(--mono); font-size: 11.5px; color: var(--beam); margin-top: 3px; }
.writer-bio { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); margin: 14px 0 0; }

/* toc in article body */
.toc-block { margin: 0 0 36px; background: var(--paper); border: 1px solid var(--hair); border-radius: 10px; overflow: hidden; }
.toc-block-head { display: flex; align-items: center; gap: 10px; padding: 13px 18px 11px; border-bottom: 1px solid var(--hair); background: var(--white); }
.toc-eko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }
.toc-eko::before { content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block; }
.toc-ettl { font-weight: 800; font-size: 14px; }
.toc-block-list { padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }

/* Table of Contents Plus plugin override */
#toc_container { display: block !important; box-sizing: border-box !important; margin-bottom: 36px !important; background: var(--paper) !important; border: 1px solid var(--hair) !important; border-radius: 10px !important; overflow: hidden !important; padding: 0 !important; float: none !important; }
#toc_container .toc_title { display: flex !important; align-items: center !important; gap: 10px !important; padding: 13px 18px 11px !important; border-bottom: 1px solid var(--hair) !important; background: var(--white) !important; font-size: 14px !important; font-weight: 800 !important; margin: 0 !important; }
#toc_container .toc_title::before { content: "CONTENTS" !important; font-family: var(--mono) !important; font-size: 10.5px !important; letter-spacing: .14em !important; color: var(--amber) !important; font-weight: 400 !important; border-left: 3px solid var(--amber) !important; padding-left: 8px !important; }
#toc_container span.toc_toggle { display: none !important; }
#toc_container ul.toc_list { padding: 8px 0 !important; display: flex !important; flex-direction: column !important; gap: 2px !important; list-style: none !important; margin: 0 !important; }
#toc_container ul.toc_list li { margin: 0 !important; padding: 0 !important; }
#toc_container ul.toc_list a { font-size: 13.5px !important; line-height: 1.5 !important; padding: 7px 14px !important; border-radius: 0 !important; color: var(--ink-soft) !important; display: flex !important; align-items: baseline !important; gap: 10px !important; text-decoration: none !important; transition: background .14s, color .14s !important; }
#toc_container > ul.toc_list > li > a { font-size: 15px !important; font-weight: 600 !important; }
#toc_container ul.toc_list a:hover { background: var(--white) !important; color: var(--beam) !important; }
#toc_container .toc_number { font-family: var(--mono) !important; font-size: 11px !important; color: var(--ink-faint) !important; font-weight: 700 !important; flex: none !important; min-width: 20px !important; }
#toc_container ul ul.toc_list { padding-left: 18px !important; }

/* case pickup grid (縦カード・トップ踏襲) */
.case-pickup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-pickup-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; display: flex; flex-direction: column; }
.case-pickup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hair-blue); }
.cp-media { aspect-ratio: 16/10; position: relative; }
.cp-ph { position: absolute; inset: 0; background-color: var(--ph-bg, #1a2f57); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 11px); display: grid; place-items: center; }
.cp-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cp-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--beam); font-weight: 600; }
.cp-body h4 { font-size: 14px; font-weight: 700; line-height: 1.55; margin: 0; flex: 1; transition: color .14s; }
.case-pickup-card:hover h4 { color: var(--beam); }
.cp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }

/* progress bar */
.reading-progress { position: fixed; top: 68px; left: 0; right: 0; height: 3px; background: rgba(90,111,226,.15); z-index: 49; }
.reading-progress-bar { height: 100%; background: linear-gradient(90deg, var(--beam), var(--teal)); width: 0%; transition: width .1s; }

/* back to top */
.back-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-900); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: 0 4px 16px rgba(6,20,49,.25); opacity: 0; transform: translateY(10px); transition: opacity .2s, transform .2s; z-index: 40; }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--navy-600); }

@media (max-width: 1000px) {
  .article-layout { grid-template-columns: 1fr; padding: 48px 0 80px; }
  .article-hero-inner { grid-template-columns: 1fr; }
  .article-hero-visual { display: none; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .bottom-cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  /* header */
  .site-header .wrap { height: 56px; }
  .logo .name { font-size: 15px; letter-spacing: .08em; }
  .gnav { display: none; }
  .btn { font-size: 12px; padding: 9px 14px; }
  /* progress */
  .reading-progress { top: 56px; }
  /* breadcrumb */
  .breadcrumb { font-size: 10.5px; gap: 5px; flex-wrap: wrap; }
  /* hero */
  .article-head-center { padding: 8px 0 28px; }
  .article-head-center h1 { font-size: 24px; line-height: 1.45; margin-top: 20px; }
  .article-sub { font-size: 16px; margin-top: 12px; }
  .lead-section .wrap { padding-top: 36px; }
  .lead-watermark { display: none; }
  .lead-inner { padding: 4px 22px; }
  /* body */
  .article-body { padding: 24px 18px; }
  .article-body h1 { font-size: 22px; }
  .article-body h2 { font-size: 18px; }
  .article-body h3 { font-size: 15px; }
  .article-body p { font-size: 15px; }
  .article-body ul, .article-body ol { font-size: 15px; }
  .article-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .article-body table th, .article-body table td { padding: 9px 12px; font-size: 13.5px; white-space: nowrap; min-width: 60px; }
  .article-body pre { padding: 16px; font-size: 12.5px; border-radius: 8px; }
  .data-row { flex-direction: column; gap: 8px; }
  .data-item { border-radius: 10px !important; }
  .pullquote { padding: 20px; font-size: 15px; }
  .pullquote::before { font-size: 44px; top: 4px; left: 14px; }
  .inline-cta { padding: 22px 20px; }
  .inline-cta h4 { font-size: 17px; }
  .cta-btns { flex-direction: column; }
  /* related */
  .related-grid, .case-pickup-grid { grid-template-columns: 1fr; }
  /* sidebar */
  .article-sidebar { grid-template-columns: 1fr; }
  /* toc */
  .toc-block-list { padding: 8px 6px; }
  /* author */
  .author-box { flex-direction: column; gap: 16px; padding: 20px; }
  /* bottom cta */
  .bottom-cta { padding: 48px 0; }
  .bottom-cta h2 { font-size: 22px; }
  .bottom-cta-inner { grid-template-columns: 1fr; }
  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* back top */
  .back-top { bottom: 16px; right: 14px; width: 40px; height: 40px; }
}
  

/* ── EXTRA: event / news specific ── */
.ev-summary{background:var(--navy-900);border-radius:12px;padding:24px 28px;margin:0 0 36px;color:#fff;display:grid;grid-template-columns:1fr 1fr;gap:14px 32px}
.ev-lbl{font-family:var(--mono);font-size:10px;letter-spacing:.12em;color:var(--teal-light);margin-bottom:4px}
.ev-val{font-size:14px;font-weight:600;color:#fff;line-height:1.5}
.ev-status{display:inline-block;background:var(--teal);color:#fff;font-family:var(--mono);font-size:11px;font-weight:700;padding:5px 14px;border-radius:8px;margin-bottom:16px}
.sp-card{display:flex;gap:16px;align-items:flex-start;background:var(--paper);border:1px solid var(--hair);border-radius:var(--radius);padding:18px 20px;margin-bottom:12px}
.sp-av{width:52px;height:52px;border-radius:50%;background:var(--navy-800);display:flex;align-items:center;justify-content:center;flex:none}
.sp-info h4{font-size:14px;font-weight:800;margin:0 0 2px}
.sp-role{font-size:12px;color:var(--ink-faint);margin:0 0 6px}
.sp-bio{font-size:12.5px;line-height:1.7;color:var(--ink-soft);margin:0}
.tt{border:1px solid var(--hair);border-radius:var(--radius);overflow:hidden;margin:20px 0}
.tt-row{display:grid;grid-template-columns:86px 1fr;border-bottom:1px solid var(--hair)}
.tt-row:last-child{border-bottom:none}
.tt-time{padding:14px 16px;background:var(--paper);font-family:var(--mono);font-size:11.5px;color:var(--ink-faint);border-right:1px solid var(--hair)}
.tt-cnt{padding:14px 18px}.tt-cnt strong{font-size:14px;color:var(--ink)}.tt-cnt p{font-size:12.5px;color:var(--ink-soft);margin:4px 0 0}
.af{background:var(--paper);border:2px solid var(--teal);border-radius:14px;padding:36px 40px;margin-top:36px}
.af-ey{font-family:var(--mono);font-size:11px;letter-spacing:.16em;color:var(--teal);display:flex;align-items:center;gap:8px;margin-bottom:12px}
.af-ey::before{content:"";width:16px;height:2px;background:currentColor}
.af h3{font-size:22px;font-weight:800;margin:0 0 6px}
.af>.af-lead{font-size:14px;color:var(--ink-soft);margin:0 0 28px}
.af-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.af-full{grid-column:1/-1}
.af-field{display:flex;flex-direction:column;gap:6px}
.af-field label{font-size:12.5px;font-weight:700;color:var(--ink)}
.af-field input,.af-field select,.af-field textarea{border:1.5px solid var(--hair);border-radius:9px;padding:11px 14px;font-family:var(--sans);font-size:14px;outline:none;transition:border-color .15s;background:var(--white);color:var(--ink)}
.af-field input:focus,.af-field select:focus,.af-field textarea:focus{border-color:var(--teal)}
.af-field textarea{resize:vertical;min-height:80px}
.af-radio{display:flex;gap:16px;flex-wrap:wrap}
.af-radio label{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--ink-soft);cursor:pointer}
.af-submit{display:block;width:100%;background:var(--teal);color:#fff;font-family:var(--sans);font-weight:700;font-size:16px;border:none;border-radius:10px;padding:16px;cursor:pointer;transition:.15s;margin-top:8px}
.af-submit:hover{background:#18876a;transform:translateY(-1px)}
.af-note{font-family:var(--mono);font-size:11px;color:var(--ink-faint);text-align:center;margin-top:10px;line-height:1.7}
.info-tbl{width:100%;border-collapse:collapse;margin:16px 0 24px;font-size:13.5px}
.info-tbl th,.info-tbl td{padding:10px 14px;border:1px solid var(--hair);text-align:left;vertical-align:top}
.info-tbl th{background:var(--paper);font-weight:700;color:var(--ink);width:28%}
.info-tbl td{color:var(--ink-soft)}
.cta-box{background:var(--blue-pale);border:1px solid var(--hair-blue);border-radius:10px;padding:18px 22px;margin:24px 0}
.cta-box p{font-size:13.5px;color:var(--navy-700);margin:0 0 10px}
.cta-box a{display:inline-flex;align-items:center;gap:7px;font-weight:700;font-size:13px;color:var(--beam);text-decoration:none}
.case-pickup{background:var(--paper);padding:0 0 64px}
.case-pickup-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.case-pickup-card{background:var(--white);border:1px solid var(--hair);border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:transform .16s,box-shadow .16s;text-decoration:none;display:block}
.case-pickup-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.cpc-media{aspect-ratio:16/9;background-image:repeating-linear-gradient(135deg,rgba(255,255,255,.04) 0 2px,transparent 2px 11px)}
.cpc-body{padding:16px 18px 20px}
.cpc-cat{font-family:var(--mono);font-size:10.5px;letter-spacing:.08em;color:var(--beam);margin-bottom:8px}
.cpc-title{font-size:14px;font-weight:700;line-height:1.55;color:var(--ink);margin:0 0 10px}
.cpc-tags{display:flex;flex-wrap:wrap;gap:5px}
.cpc-tag{font-size:10.5px;font-weight:600;padding:2px 8px;border-radius:4px}
.cpc-tag.ind{background:var(--blue-pale);color:var(--navy-600)}
.cpc-tag.cha{background:var(--teal-pale);color:#137a59}
@media(max-width:900px){.ev-summary{grid-template-columns:1fr}.af-grid{grid-template-columns:1fr}.case-pickup-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.af{padding:24px 18px}.case-pickup-grid{grid-template-columns:1fr}}

  

/* ========================================================
   CONTACT / FORM PAGES: フォームページ固有スタイル
   ======================================================== */

:root {
  --navy-900: #061431; --navy-800: #0E2247; --navy-700: #12203D; --navy-600: #2A4170;
  --beam: #5A6FE2; --blue-soft: #8AAFD4; --blue-pale: #EBF1F8; --hair-blue: #DCE5F0;
  --teal: #1D9E75; --teal-light: #5DCAA5; --teal-pale: #E3F4EC;
  --amber: #EF9F27; --amber-pale: #FCEFD6;
  --paper: #F5F4F0; --white: #FFFFFF;
  --ink: #12203D; --ink-soft: #5A6577; --ink-faint: #8A93A3;
  --hair: #E7E6E1;
  --mono: "Space Mono", ui-monospace, monospace;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --radius: 12px; --maxw: 1240px;
  --shadow-sm: 0 1px 2px rgba(6,20,49,.06), 0 2px 8px rgba(6,20,49,.05);
  --shadow-md: 0 6px 24px rgba(6,20,49,.10), 0 2px 6px rgba(6,20,49,.06);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper) !important; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy-900); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header .wrap { height: 68px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: baseline; gap: 9px; cursor: pointer; }
.logo .mark { width: 11px; height: 22px; background: var(--beam); box-shadow: 14px 0 0 var(--teal-light), 28px 0 0 var(--amber); margin-right: 28px; }
.logo .name { font-weight: 800; font-size: 18px; letter-spacing: .14em; }
.logo .name b { color: #fff; }
.logo .name span { color: var(--blue-soft); }
.gnav { display: flex; gap: 4px; margin-left: 8px; }
.gnav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82); padding: 9px 16px; border-radius: 8px; transition: .15s; }
.gnav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.header-right { margin-left: auto; }
.btn { font-family: var(--sans); font-weight: 700; font-size: 14px; border: none; cursor: pointer; border-radius: 10px; padding: 11px 20px; transition: transform .12s, box-shadow .15s; display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.btn-teal { background: var(--teal); color: #fff !important; }
.btn-teal:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.34); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy-900); color: #fff; padding: 52px 0 48px; position: relative; overflow: hidden; }
.page-hero .glow { position: absolute; inset: 0; background: radial-gradient(55% 100% at 75% 20%, rgba(90,111,226,.4), transparent 55%), radial-gradient(40% 80% at 5% 90%, rgba(29,158,117,.16), transparent 60%); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; color: var(--beam); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.page-eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; display: inline-block; }
.page-hero h1 { font-size: 36px; font-weight: 800; margin: 0 0 12px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; margin: 0; max-width: 48ch; }

/* ── LAYOUT ── */
.contact-layout { display: grid; grid-template-columns: 360px 1fr; gap: 48px; padding: 56px 0 80px; align-items: start; }

/* ── FORM ── */
.form-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 40px 48px; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 20px; font-weight: 800; margin: 0 0 28px; padding-bottom: 18px; border-bottom: 1px solid var(--hair); }

.field-group { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.required-badge { font-family: var(--mono); font-size: 10px; background: #DC2626; color: #fff; padding: 2px 7px; border-radius: 4px; letter-spacing: .04em; }
.optional-badge { font-family: var(--mono); font-size: 10px; background: var(--hair); color: var(--ink-faint); padding: 2px 7px; border-radius: 4px; }
.field input,
.field textarea,
.field select {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--hair);
  border-radius: 10px; padding: 12px 16px; outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus,
.field textarea:focus { border-color: var(--beam); background: var(--white); box-shadow: 0 0 0 3px rgba(90,111,226,.1); }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.7; }

/* 同意チェックボックス */
.consent-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
.consent-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); flex: none; cursor: pointer; }
.consent-row label,
.consent-row .wpcf7-list-item label,
.consent-row .wpcf7-acceptance label {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); cursor: pointer;
}
.consent-row a { color: var(--beam); text-decoration: underline; text-underline-offset: 2px; }
.consent-row a:hover { color: var(--navy-600); }

.form-submit { margin-top: 28px; }
.submit-btn {
  width: 100%; padding: 17px; font-size: 16px; font-weight: 800;
  background: var(--teal); color: #fff; border: none; border-radius: 12px;
  cursor: pointer; font-family: var(--sans); display: flex; align-items: center;
  justify-content: center; gap: 10px; transition: transform .12s, box-shadow .15s, background .15s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,158,117,.36); }
.submit-btn:disabled { background: var(--ink-faint); cursor: not-allowed; transform: none; box-shadow: none; }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; line-height: 1.7; text-align: center; }

/* ── SIDEBAR ── */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

/* 相談例 */
.consult-box { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; }
.consult-head { background: var(--white); padding: 18px 22px; border-bottom: 1px solid var(--hair); }
.consult-head .eko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--beam); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.consult-head .eko::before { content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block; }
.consult-head h3 { font-size: 15px; font-weight: 800; color: var(--ink); margin: 0; }
.consult-list { padding: 18px 22px; display: flex; flex-direction: column; gap: 0; }
.consult-item { display: flex; align-items: flex-start; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--hair); font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.consult-item:last-child { border-bottom: none; }
.consult-item .ci-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-pale); display: grid; place-items: center; flex: none; margin-top: 1px; }
.consult-item .ci-icon svg { color: var(--beam); }

/* 対応内容 */
.info-box { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 20px 22px; }
.info-box .iko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--amber); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.info-box .iko::before { content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block; }
.info-list { display: flex; flex-direction: column; gap: 8px; }
.info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-soft); }
.info-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--beam); flex: none; }

/* ── FOOTER ── */
.site-footer { background: var(--white); color: var(--ink-soft); border-top: 1px solid var(--hair); }
.site-footer .wrap { padding: 36px 32px 28px; }
.footer-brand { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.footer-brand p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.footer-top { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding-bottom: 28px; border-bottom: 1px solid var(--hair); }
.footer-col h5 { color: var(--ink); font-size: 11.5px; font-weight: 700; margin: 0 0 8px; }
.footer-col a { display: block; font-size: 11.5px; padding: 2px 0; color: var(--ink-soft); transition: .14s; }
.footer-col a:hover { color: var(--ink); }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink-soft); transition: .15s; }
.footer-socials a:hover { background: var(--paper); color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); }
.footer-bottom .corp { color: var(--navy-600); display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .site-header .wrap { height: 56px; padding: 0 16px; }
  .gnav { display: none; }
  .page-hero { padding: 36px 0 32px; }
  .page-hero h1 { font-size: 26px; }
  .form-card { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
  

/* ========================================================
   SEARCH: 検索結果ページ固有スタイル
   ======================================================== */

:root {
  --navy-900: #061431; --navy-800: #0E2247; --navy-700: #12203D; --navy-600: #2A4170;
  --beam: #5A6FE2; --blue-soft: #8AAFD4; --blue-pale: #EBF1F8;
  --teal: #1D9E75; --teal-light: #5DCAA5; --teal-pale: #E3F4EC;
  --amber: #EF9F27; --amber-pale: #FCEFD6;
  --paper: #F5F4F0; --white: #FFFFFF;
  --ink: #12203D; --ink-soft: #5A6577; --ink-faint: #8A93A3;
  --hair: #E7E6E1; --hair-blue: #DCE5F0;
  --mono: "Space Mono", ui-monospace, monospace;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --radius: 12px; --maxw: 1240px;
  --shadow-md: 0 6px 24px rgba(6,20,49,.10), 0 2px 6px rgba(6,20,49,.06);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper) !important; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy-900); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header .wrap { height: 68px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: baseline; gap: 9px; cursor: pointer; }
.logo .mark { width: 11px; height: 22px; background: var(--beam); box-shadow: 14px 0 0 var(--teal-light), 28px 0 0 var(--amber); margin-right: 28px; }
.logo .name { font-weight: 800; font-size: 18px; letter-spacing: .14em; }
.logo .name b { color: #fff; }
.logo .name span { color: var(--blue-soft); }
.gnav { display: flex; gap: 4px; margin-left: 8px; }
.gnav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82); padding: 9px 16px; border-radius: 8px; transition: .15s; }
.gnav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.gnav a.active { color: #fff; border-bottom: 2px solid var(--teal-light); border-radius: 0; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-search-inline { display: none; }



.header-search-inline input::placeholder { color: rgba(255,255,255,.38); }
.sp-nl-btn { white-space: nowrap; }
.nl-sp { display: none; }
.nl-pc { display: inline; }
.pc-only { display: revert; }
.sp-only { display: none; }
.sp-search-drawer { overflow: hidden; max-height: 0; opacity: 0; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.1); transition: max-height .25s ease, opacity .2s; }
.header-search-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.14); cursor: pointer; background: transparent; transition: .15s; }
.header-search-btn:hover, .header-search-btn.is-open { background: rgba(255,255,255,.14); color: #fff; }
/* SP用検索ドロワー */
.sp-search-drawer { position: absolute; left: 0; right: 0; top: 56px; z-index: 48; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.1); overflow: hidden; max-height: 0; opacity: 0; transition: max-height .25s ease, opacity .2s; }
.sp-search-drawer.open { max-height: 70px; opacity: 1; }
.sp-search-drawer label { display: flex; align-items: center; gap: 10px; margin: 12px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 9px 14px; }
.sp-search-drawer svg { color: rgba(255,255,255,.45); flex: none; }
.sp-search-drawer input { flex: 1; border: none; background: none; outline: none; font-family: var(--sans); font-size: 14px; color: #fff; }
.sp-search-drawer input::placeholder { color: rgba(255,255,255,.4); }
.btn { font-family: var(--sans); font-weight: 700; font-size: 14px; border: none; cursor: pointer; border-radius: 10px; padding: 11px 20px; transition: transform .12s, box-shadow .15s; display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.btn-teal { background: var(--teal); color: #fff !important; }
.btn-teal:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.34); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }
.btn-outline { background: transparent; color: var(--navy-700); border: 1.5px solid var(--hair-blue); }
.btn-outline:hover { border-color: var(--beam); background: var(--blue-pale); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); border-radius: 10px; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; padding: 52px 0 48px; }
.page-hero .glow { position: absolute; inset: 0; background: radial-gradient(55% 100% at 75% 20%, rgba(90,111,226,.45), transparent 55%), radial-gradient(40% 80% at 5% 90%, rgba(29,158,117,.18), transparent 60%); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.page-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; color: var(--beam); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.page-eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; display: inline-block; }
.page-hero h1 { font-size: 38px; font-weight: 800; margin: 0 0 10px; letter-spacing: .01em; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; margin: 0; max-width: 44ch; }
.page-hero-stats { display: flex; gap: 28px; flex: none; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--teal-light); line-height: 1; }
.stat-label { font-family: var(--mono); font-size: 10.5px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .08em; }

/* ── TAG ZONE ── */
.tag-zone { background: var(--white); border-bottom: 1px solid var(--hair); z-index: 40; }
.tag-zone .wrap { padding: 12px 32px; }
.tag-main-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag-recommend-label { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-faint); white-space: nowrap; flex: none; }
.detail-toggle { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-soft); background: none; border: 1.5px solid var(--hair); border-radius: 999px; padding: 5px 14px; cursor: pointer; transition: .15s; white-space: nowrap; flex: none; }
.detail-toggle:hover { border-color: var(--navy-600); color: var(--navy-700); }
.detail-toggle.open { border-color: var(--navy-600); color: var(--navy-700); background: var(--blue-pale); }
#detailIcon { transition: transform .22s ease; }
.detail-toggle.open #detailIcon { transform: rotate(180deg); }
.tag-search { display: flex; align-items: center; gap: 7px; background: var(--paper); border: 1.5px solid var(--hair); border-radius: 10px; padding: 6px 12px; min-width: 180px; transition: .15s; margin-left: auto; }
.tag-search:focus-within { border-color: var(--beam); background: #fff; }
.tag-search svg { color: var(--ink-faint); flex: none; }
.tag-search input { border: none; background: none; outline: none; font-family: var(--sans); font-size: 13px; width: 100%; color: var(--ink); }
.tag-search input::placeholder { color: var(--ink-faint); }
.detail-body { overflow: hidden; max-height: 0; transition: max-height .28s ease, padding .2s; }
.detail-body.open { max-height: 300px; padding: 14px 0 10px; }
.detail-section { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.detail-section:last-child { margin-bottom: 0; }
.detail-label { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-faint); white-space: nowrap; flex: none; min-width: 48px; }
.detail-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
/* pill */
.fpill { font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--hair); background: var(--white); color: var(--ink-soft); cursor: pointer; transition: .14s; white-space: nowrap; }
.fpill:hover { border-color: var(--navy-600); color: var(--navy-700); }
.fpill.on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.fpill.rec { background: var(--amber-pale); border-color: #e8c87a; color: #8a6000; }
.fpill.rec:hover { border-color: var(--amber); color: #7a5000; }
.fpill.rec.on { background: var(--amber); border-color: var(--amber); color: #fff; }
.fpill.cat { background: var(--blue-pale); border-color: var(--hair-blue); color: var(--navy-600); }
.fpill.cat:hover { background: var(--blue-pale); border-color: var(--beam); color: var(--beam); }
.fpill.cat.on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.fpill.industry:hover { border-color: var(--beam); color: var(--beam); }
.fpill.industry.on { background: var(--beam); border-color: var(--beam); color: #fff; }
.fpill.challenge:hover { border-color: var(--teal); color: var(--teal); }
.fpill.challenge.on { background: var(--teal); border-color: var(--teal); color: #fff; }
.fpill.phase { background: var(--white); border-color: var(--hair); color: var(--ink-faint); }
.fpill.phase:hover { border-color: var(--ink-faint); color: var(--ink-soft); }
.fpill.phase.on { background: var(--hair); border-color: var(--ink-faint); color: var(--ink-soft); }
.sort-select { font-family: var(--mono); font-size: 12px; border: 1.5px solid var(--hair); border-radius: 8px; padding: 6px 10px; color: var(--ink-soft); background: var(--white); cursor: pointer; outline: none; }

/* ── LAYOUT ── */
.list-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; padding: 40px 0 80px; }
.list-main { min-width: 0; }
.list-sidebar { position: sticky; top: 126px; display: flex; flex-direction: column; gap: 20px; }
.result-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.result-count { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.result-count span { color: var(--ink); font-weight: 700; }

/* ── FEATURED (先頭1枚大きく) ── */
.featured-card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  overflow: hidden; display: grid !important; grid-template-columns: 1fr 1fr;
  cursor: pointer; transition: transform .16s, box-shadow .16s; margin-bottom: 24px;
  text-decoration: none; color: inherit;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-card .fc-media {
  min-height: 280px; background: #1d3a6e;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 11px);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.fc-badge {
  position: absolute; top: 14px; left: 14px; background: var(--beam); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; padding: 4px 10px; border-radius: 6px;
}
.featured-card .fc-body {
  padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.fc-cat { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--beam); }
.featured-card h2 { font-size: 22px; font-weight: 800; line-height: 1.45; margin: 0; }
.featured-card:hover h2 { color: var(--beam); }
.featured-card .fc-lead { font-size: 14px; line-height: 1.8; color: var(--ink-soft); margin: 0; }
.fc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.fc-chip { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; }
.fc-chip.industry { background: var(--blue-pale); color: var(--navy-600); }
.fc-chip.challenge { background: var(--teal-pale); color: #137a59; }
.fc-chip.phase { border: 1px solid var(--hair); color: var(--ink-faint); font-family: var(--mono); font-size: 10px; }
.fc-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); }

/* ── ARTICLE GRID ── */
.result-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hair-blue); }
.card .media { aspect-ratio: 16/9; position: relative; }
.card .ph { position: absolute; inset: 0; background-color: var(--ph-bg, #1a2f57); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 11px); display: grid; place-items: center; }
.card .body { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--ink-faint); font-weight: 600; }
.card-cat.case { color: var(--beam); }
.card h3 { font-size: 14.5px; font-weight: 700; line-height: 1.55; margin: 0; flex: 1; transition: color .14s; }
.card:hover h3 { color: var(--beam); }
.card .chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.chip { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.chip.industry { background: var(--blue-pale); color: var(--navy-600); }
.chip.challenge { background: var(--teal-pale); color: #137a59; }
.chip.phase { border: 1px solid var(--hair); color: var(--ink-faint); font-family: var(--mono); font-size: 10px; }
.card .meta { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; border-radius: 9px; border: 1.5px solid var(--hair); background: var(--white); color: var(--ink-soft); font-family: var(--mono); font-size: 13px; cursor: pointer; display: grid; place-items: center; transition: .14s; }
.page-btn:hover { border-color: var(--beam); color: var(--beam); }
.page-btn.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.page-btn.arrow { font-size: 16px; }

/* ── SIDEBAR WIDGETS ── */
.widget { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; }
.widget-head { padding: 14px 18px 12px; border-bottom: 1px solid var(--hair); display: flex; align-items: center; gap: 10px; }
.wko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }
.wko::before { content: ""; width: 14px; height: 2px; background: currentColor; display: inline-block; }
.wttl { font-weight: 800; font-size: 15px; }

/* sidebar CTA */
.sidebar-cta { background: linear-gradient(135deg, var(--navy-900) 0%, #1a3a72 100%); border-radius: var(--radius); padding: 22px 20px; color: #fff; position: relative; overflow: hidden; }
.sidebar-cta::after { content: ""; position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(90,111,226,.35), transparent 70%); }
.sc-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--teal-light); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.sc-eyebrow::before { content: ""; width: 14px; height: 2px; background: currentColor; }
.sc-free-badge {
  display: inline-block; background: var(--teal); color: #fff;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.sidebar-cta h4 { font-size: 15px; font-weight: 800; margin: 0 0 8px; line-height: 1.4; }
.sidebar-cta p { font-size: 12px; color: rgba(255,255,255,.68); line-height: 1.7; margin: 0 0 16px; }
.sc-btn { display: block; text-align: center; background: var(--teal); color: #fff; font-weight: 700; font-size: 13px; padding: 11px 16px; border-radius: 10px; transition: .15s; }
.sc-btn:hover { background: #18876a; transform: translateY(-1px); }
.sc-sub { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.45); text-align: center; margin-top: 8px; }

/* rank */
.rank-list { padding: 4px; }
.rank-item { display: flex; gap: 10px; padding: 10px 12px; align-items: flex-start; border-bottom: 1px solid var(--hair); cursor: pointer; transition: background .14s; border-radius: 8px; }
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: var(--paper); }
.rank-num { font-family: var(--mono); font-weight: 700; font-size: 17px; color: var(--ink-faint); width: 20px; flex: none; line-height: 1.2; }
.rank-item:nth-child(1) .rank-num { color: var(--amber); }
.rank-item:nth-child(2) .rank-num { color: var(--beam); }
.rank-item h4 { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.55; }
.rank-item:hover h4 { color: var(--beam); }

/* tag cloud */
.tag-cloud { padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.tc-tag { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--hair); color: var(--ink-soft); cursor: pointer; transition: .14s; }
.tc-tag:hover { border-color: var(--beam); color: var(--beam); background: var(--blue-pale); }
.tc-tag.ind { border-color: #c8d8f0; background: var(--blue-pale); color: var(--navy-600); }
.tc-tag.cha { border-color: #b0dfc8; background: var(--teal-pale); color: #137a59; }

/* nl widget */
.nl-widget { padding: 18px; }
.nl-widget p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 12px; }
.nl-form { display: flex; flex-direction: column; gap: 7px; }
.nl-input { border: 1.5px solid var(--hair); border-radius: 9px; padding: 9px 12px; font-family: var(--sans); font-size: 13px; outline: none; transition: border-color .15s; }
.nl-input:focus { border-color: var(--teal); }
.nl-submit { background: var(--teal); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 13px; border: none; border-radius: 9px; padding: 10px; cursor: pointer; transition: .15s; }
.nl-submit:hover { background: #18876a; }

/* ── BOTTOM CTA ── */
.bottom-cta { background: var(--navy-900); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.bottom-cta .glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 10%, rgba(90,111,226,.4), transparent 55%), radial-gradient(50% 100% at 10% 100%, rgba(29,158,117,.22), transparent 60%); }
.bottom-cta .wrap { position: relative; z-index: 2; }
.bc-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.bc-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--teal-light); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.bc-eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; }
.bottom-cta h2 { font-size: 30px; font-weight: 800; line-height: 1.35; margin: 0 0 10px; }
.bottom-cta p { color: rgba(255,255,255,.74); line-height: 1.85; font-size: 14.5px; margin: 0 0 26px; }
.cta-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 22px; }
.cta-card .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: var(--blue-soft); text-transform: uppercase; }
.cta-card h4 { margin: 7px 0 13px; font-size: 16px; font-weight: 700; }
.nl-form-h { display: flex; gap: 8px; }
.nl-form-h input { flex: 1; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); padding: 11px 13px; color: #fff; font-family: var(--sans); font-size: 13.5px; outline: none; }
.nl-form-h input:focus { border-color: var(--teal-light); }
.nl-form-h input::placeholder { color: rgba(255,255,255,.4); }

/* ── FOOTER ── */
.footer-brand { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.footer-brand p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.footer-top { padding-bottom: 28px; border-bottom: 1px solid var(--hair); }
.site-footer { background: var(--white); color: var(--ink-soft); border-top: 1px solid var(--hair); }
.site-footer .wrap { padding: 36px 24px 28px; }
.footer-top { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding-bottom: 36px; border-bottom: 1px solid var(--hair); }
.footer-top .about p { font-size: 12px; line-height: 1.7; margin: 12px 0 0; color: var(--ink-soft); max-width: 22ch; }
.footer-col h5 { color: var(--ink); font-size: 11.5px; font-weight: 700; margin: 0 0 8px; }
.footer-col a { display: block; font-size: 11.5px; padding: 2px 0; color: var(--ink-soft); transition: .14s; }
.footer-col a:hover { color: var(--ink); }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink-soft); transition: .15s; }
.footer-socials a:hover { background: var(--paper); color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.footer-bottom .corp { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-600); }

@media (max-width: 1000px) {
  .list-layout { grid-template-columns: 1fr; }
  .list-sidebar { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .fc-media { min-height: 220px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .site-header .wrap { height: 56px; gap: 10px; padding: 0 8px; }
  .header-right { gap: 8px; padding-right: 8px; }
  /* header */
  .site-header .wrap { height: 56px; gap: 10px; }
  .logo .mark { margin-right: 14px; }
  .logo .mark { width: 9px; height: 18px; margin-right: 20px; }
  .logo .name { font-size: 13px; letter-spacing: .06em; white-space: nowrap; }
  .gnav { display: none; }
  .pc-only { display: none !important; }
  .sp-only { display: block; }
  .sp-search-drawer.open { max-height: 70px; opacity: 1; }
  .sp-search-drawer label { display: flex; align-items: center; gap: 10px; margin: 10px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 9px; padding: 9px 14px; }
  .sp-search-drawer svg { color: rgba(255,255,255,.45); flex: none; }
  .sp-search-drawer input { flex: 1; border: none; background: none; outline: none; font-family: var(--sans); font-size: 14px; color: #fff; }
  .sp-search-drawer input::placeholder { color: rgba(255,255,255,.4); }
  .sp-nl-btn { font-size: 12px !important; padding: 8px 14px !important; line-height: 1.4 !important; white-space: normal !important; text-align: center; width: auto !important; min-width: 0 !important; max-width: none !important; height: auto !important; flex-shrink: 0; border-radius: 8px !important; }
  .nl-pc { display: none; }
  .nl-sp { display: inline; }
  .header-right { gap: 8px; }
  .btn { font-size: 12px; padding: 9px 14px; }
  /* hero */
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: 26px; margin-bottom: 8px; }
  .page-hero p { font-size: 13.5px; }
  /* filter */
  .filter-bar .wrap { flex-direction: column; gap: 10px; padding: 12px 16px; min-height: unset; }
  .filter-section { border-right: none; margin-right: 0; padding: 0; width: 100%; }
  .filter-section:last-of-type { border-top: 1px solid var(--hair); padding-top: 10px; }
  .filter-pills { flex-wrap: wrap; }
  .fpill { font-size: 12px; padding: 5px 10px; }
  .filter-search { width: 100%; min-width: unset; }
  /* featured card */
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .fc-media { min-height: 180px; }
  .featured-card .fc-body { padding: 20px; }
  .featured-card h2 { font-size: 17px; }
  .fc-lead { display: none; }
  /* grid */
  .article-grid { grid-template-columns: 1fr; }
  .result-header { flex-direction: row; align-items: center; }
  /* pagination */
  .pagination { gap: 4px; }
  .page-btn { width: 32px; height: 32px; font-size: 12px; }
  /* sidebar */
  .list-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-cta { grid-column: 1 / -1; }
  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* cta */
  .bc-inner { grid-template-columns: 1fr; }
  .bottom-cta h2 { font-size: 22px; }
}
  

/* ========================================================
   NEWS GRID: ニュースグリッド
   ======================================================== */
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.news-card { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .18s, transform .18s; display: flex; flex-direction: column; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.news-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.news-card-meta { display: flex; align-items: center; gap: 8px; }
.news-card-title { font-size: 14px; font-weight: 700; line-height: 1.5; color: var(--ink); margin: 0; }
@media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } }

/* ========================================================
   404 PAGE
   ======================================================== */
.error-main {
  min-height: calc(100vh - 68px - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px 104px;
  text-align: center;
  background: var(--paper);
}
.error-inner { max-width: 540px; width: 100%; }
.error-code {
  font-family: var(--mono);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 28px;
}
.error-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--navy-900);
  margin: 0 0 16px;
}
.error-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0 auto 40px;
}
.error-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-900); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--navy-900);
  padding: 13px 24px; border-radius: 10px;
  transition: .15s; text-decoration: none;
}
.btn-back:hover { background: var(--navy-700); border-color: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-article {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--teal);
  padding: 13px 24px; border-radius: 10px;
  transition: .15s; text-decoration: none;
}
.btn-article:hover { background: #189464; border-color: #189464; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.34); }

@media (max-width: 700px) {
  .error-main { padding: 64px 16px 72px; }
  .error-code { font-size: 64px; }
  .error-title { font-size: 20px; }
  .error-btns { flex-direction: column; align-items: center; }
  .btn-back, .btn-article { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── paginate_links() スタイル（page-numbers → page-btn 相当） ── */
.pagination a.page-numbers,
.pagination span.page-numbers { width: 38px; height: 38px; border-radius: 9px; border: 1.5px solid var(--hair); background: var(--white); color: var(--ink-soft); font-family: var(--mono); font-size: 13px; display: grid; place-items: center; text-decoration: none; transition: .14s; }
.pagination a.page-numbers:hover { border-color: var(--beam); color: var(--beam); }
.pagination span.page-numbers.current { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.pagination .prev.page-numbers,
.pagination .next.page-numbers { font-size: 16px; }

/* ── 検索結果件数 + ソート ── */
.search-result-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.search-result-count { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin: 0; }
.search-result-count strong { color: var(--ink-soft); font-weight: 600; }
.sort-select { font-family: var(--mono); font-size: 12px; border: 1px solid var(--hair); border-radius: 8px; padding: 6px 10px; background: var(--white); color: var(--ink-soft); cursor: pointer; }

/* ── フィーチャードカード ── */
.featured-card { background:var(--white); border:1px solid var(--hair); border-radius:var(--radius); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; cursor:pointer; transition:transform .16s,box-shadow .16s; margin-bottom:24px; text-decoration:none; color:inherit; }
.featured-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.featured-card .fc-media { min-height:280px; background:var(--navy-700); background-image:repeating-linear-gradient(135deg,rgba(255,255,255,.05) 0 2px,transparent 2px 11px); display:flex; align-items:center; justify-content:center; position:relative; }
.fc-badge { position:absolute; top:14px; left:14px; background:var(--beam); color:#fff; font-family:var(--mono); font-size:10px; letter-spacing:.1em; padding:4px 10px; border-radius:6px; }
.featured-card .fc-body { padding:32px 36px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.fc-cat { font-family:var(--mono); font-size:11px; letter-spacing:.1em; color:var(--beam); }
.featured-card h2 { font-size:22px; font-weight:800; line-height:1.45; margin:0; }
.featured-card:hover h2 { color:var(--beam); }
.featured-card .fc-lead { font-size:14px; line-height:1.8; color:var(--ink-soft); margin:0; }
.fc-chips { display:flex; flex-wrap:wrap; gap:6px; }
.fc-chip { font-size:11px; font-weight:600; padding:3px 9px; border-radius:5px; }
.fc-chip.industry { background:var(--blue-pale); color:var(--navy-600); }
.fc-chip.challenge { background:var(--teal-pale); color:#137a59; }
.fc-chip.phase { border:1px solid var(--hair); color:var(--ink-faint); font-family:var(--mono); font-size:10px; }
.fc-meta { font-family:var(--mono); font-size:11px; color:var(--ink-faint); }

/* ── 記事一覧 件数 + ソート ── */
.result-header { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.result-count { font-family:var(--mono); font-size:12px; color:var(--ink-faint); white-space:nowrap; }
.result-count strong { color:var(--ink); font-weight:700; }

/* ── カードアスペクト比 16/9 上書き ── */
.card .media { aspect-ratio:16/9; }

/* ========================================================
   CONTACT FORM 7 スタイル調整
   ======================================================== */
.wpcf7-form .wpcf7-form-control-wrap { display: block; }
.field br { display: none; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--hair);
  border-radius: 10px; padding: 12px 16px; outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%; display: block; margin-top: 6px;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--beam); box-shadow: 0 0 0 3px rgba(90,111,226,.1); }
.wpcf7-form textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
.wpcf7-form .wpcf7-list-item { margin: 0; }
.wpcf7-form .wpcf7-list-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal); margin-right: 8px; vertical-align: middle; }
.wpcf7-form p { margin: 0 0 20px; }
.wpcf7-form p:last-child { margin-bottom: 0; }
.wpcf7-form .wpcf7-submit {
  width: 100%; padding: 17px; font-size: 16px; font-weight: 800;
  background: var(--teal); color: #fff; border: none; border-radius: 12px;
  cursor: pointer; font-family: var(--sans); display: flex; align-items: center;
  justify-content: center; gap: 10px; transition: transform .12s, box-shadow .15s;
  margin-top: 28px;
}
.wpcf7-form .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,158,117,.36); }
.wpcf7-not-valid-tip { font-size: 12px; color: #DC2626; margin-top: 4px; display: block; }
.wpcf7-response-output { border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-top: 16px !important; }
.wpcf7-mail-sent-ok { background: var(--teal-pale); border-color: var(--teal) !important; color: var(--teal); }
.wpcf7-validation-errors { background: #FEF2F2; border-color: #DC2626 !important; color: #DC2626; }
.cf7-notice { font-size: 14px; color: var(--ink-faint); padding: 20px; text-align: center; background: var(--paper); border-radius: 10px; }


/* ========================================================
   お問い合わせページ レイアウト
   ======================================================== */
.contact-layout { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; padding: 56px 0 80px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.info-box { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-item { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; display: flex; align-items: flex-start; gap: 9px; }
.info-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.consult-box { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.consult-head { background: var(--white); padding: 18px 22px; border-bottom: 1px solid var(--hair); }
.consult-head h3 { font-size: 15px; font-weight: 800; color: var(--ink); margin: 0; }
.consult-list { padding: 18px 22px; display: flex; flex-direction: column; gap: 0; }
.consult-item { display: flex; align-items: flex-start; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--hair); font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.consult-item:last-child { border-bottom: none; }
.ci-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-pale); color: var(--teal); display: grid; place-items: center; flex: none; margin-top: 2px; }
.form-card { background: var(--white); border: 1px solid var(--hair); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-md); }
.form-card > h2 { font-size: 20px; font-weight: 800; margin: 0 0 28px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .contact-layout { padding: 36px 0 64px; }
  .form-card { padding: 24px 20px; }
}

/* ========================================================
   メルマガ登録ページ レイアウト
   ======================================================== */
.nl-main { padding: 64px 0 96px; }
.nl-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.nl-pitch { display: flex; flex-direction: column; gap: 32px; }
.pitch-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--teal); display: flex; align-items: center; gap: 8px; margin: 0; }
.pitch-eyebrow::before { content: ""; width: 16px; height: 2px; background: currentColor; }
.pitch-heading { font-size: 28px; font-weight: 800; line-height: 1.38; letter-spacing: -.01em; color: var(--navy-900); margin: 0 0 16px; }
.pitch-lead { font-size: 15.5px; color: var(--ink-soft); line-height: 1.85; margin: 0; }
.pitch-items { display: flex; flex-direction: column; gap: 16px; }
.pitch-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.pitch-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.pitch-icon.teal { background: var(--teal-pale); color: var(--teal); }
.pitch-icon.beam { background: var(--blue-pale); color: var(--beam); }
.pitch-icon.amber { background: var(--amber-pale); color: var(--amber); }
.pitch-item h4 { font-size: 14px; font-weight: 800; color: var(--ink); margin: 0 0 4px; }
.pitch-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
.form-card-head { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); }
.form-card-head .eko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--teal); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.form-card-head .eko::before { content: ""; width: 12px; height: 2px; background: currentColor; }
.form-card-head h2 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 0; padding: 0; border: none; }
.nl-grid .form-card { position: sticky; top: 88px; }
@media (max-width: 1100px) {
  .nl-grid { grid-template-columns: 1fr; gap: 40px; }
  .nl-grid .form-card { position: static; }
}
@media (max-width: 700px) {
  .nl-main { padding: 36px 0 64px; }
  .pitch-heading { font-size: 22px; }
}

/* ========================================================
   CONTACT DONE / THANKS PAGE
   ======================================================== */
.thanks-hero {
  background: var(--navy-900); position: relative; overflow: hidden;
  padding: 96px 0 104px; text-align: center; color: #fff;
}
.thanks-hero .glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 130% at 50% 0%, rgba(90,111,226,.45), transparent 55%),
    radial-gradient(40% 80% at 15% 100%, rgba(29,158,117,.22), transparent 60%),
    radial-gradient(35% 70% at 85% 80%, rgba(90,111,226,.18), transparent 55%);
  pointer-events: none;
}
.thanks-hero .wrap { position: relative; z-index: 2; }
.check-circle {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--teal); margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 14px rgba(29,158,117,.2), 0 0 0 28px rgba(29,158,117,.08);
}
.th-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: var(--teal-light); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.th-eyebrow::before, .th-eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--teal-light); }
.thanks-hero h1 { font-size: 34px; font-weight: 800; line-height: 1.4; margin: 0 0 18px; }
.thanks-hero .th-lead {
  font-size: 15.5px; line-height: 1.95; color: rgba(255,255,255,.72);
  max-width: 540px; margin: 0 auto 40px;
}
.thanks-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.thanks-btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff;
  font-weight: 700; font-size: 14px; border: 1.5px solid rgba(255,255,255,.25);
  padding: 13px 24px; border-radius: 10px; transition: .15s; text-decoration: none;
}
.thanks-btn-back:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }
.thanks-btn-article {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-weight: 700; font-size: 14px; border: none;
  padding: 13px 24px; border-radius: 10px; transition: .15s; text-decoration: none;
}
.thanks-btn-article:hover { background: #18876a; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29,158,117,.3); }

.next-section { background: var(--paper); border-top: 1px solid var(--hair); padding: 56px 0 64px; }
.sec-label { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.sko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--beam); display: flex; align-items: center; gap: 8px; }
.sko::before { content: ""; width: 16px; height: 2px; background: currentColor; }
.sec-label h2 { font-size: 20px; font-weight: 800; margin: 0; }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.next-card {
  background: var(--white); border: 1px solid var(--hair);
  border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .15s, box-shadow .15s;
}
.next-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(6,20,49,.1); }
.nc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy-800); display: flex; align-items: center; justify-content: center; }
.next-card h4 { font-size: 15px; font-weight: 800; margin: 0; color: var(--ink); }
.next-card p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.75; }
.next-card a { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--beam); margin-top: auto; padding-top: 4px; text-decoration: none; }
.next-card a:hover { color: var(--navy-700); }

@media (max-width: 700px) {
  .thanks-hero { padding: 64px 0 72px; }
  .thanks-hero h1 { font-size: 24px; }
  .next-grid { grid-template-columns: 1fr; }
}

/* ── プレスリリース受付ページ ── */

.field select:focus { border-color: var(--beam); background: var(--white); box-shadow: 0 0 0 3px rgba(90,111,226,.1); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A93A3' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* .wpcf7-form p (specificity:0,1,1) を上回る詳細度で上書き */
.section-divider { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: var(--ink-faint); }
.field-group .section-divider { margin-top: 4px; margin-bottom: -12px; }

.file-upload { background: var(--paper); border: 1.5px dashed var(--hair); border-radius: 9px; padding: 28px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; display: block; }
.file-upload:hover { border-color: var(--beam); background: var(--blue-pale); }
.file-upload svg { color: var(--ink-faint); margin-bottom: 10px; }
.file-upload p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.file-upload span { font-size: 12px; color: var(--ink-faint); display: block; margin-top: 4px; }

.field-note { font-size: 12.5px; color: var(--ink-faint); line-height: 1.6; }
/* autop生成の空p(CF7)を除去し、field-noteの上余白を4pxに */
.field > p:not(.field-note):empty { display: none; }
.field-group .field-note { margin-top: -4px; }

.press-layout { display: grid; grid-template-columns: 320px 1fr; gap: 48px; padding: 56px 0 80px; align-items: start; }

.press-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

.press-sidebar .info-box .eko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--amber); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.press-sidebar .info-box .eko::before { content: ""; width: 12px; height: 2px; background: currentColor; display: inline-block; }
.press-sidebar .info-box h3 { font-size: 15px; font-weight: 800; margin: 0 0 16px; line-height: 1.45; }

.guide-box { background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.guide-head { background: var(--navy-900); padding: 16px 22px; }
.guide-head .eko { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--teal-light); margin-bottom: 4px; display: block; }
.guide-head h3 { font-size: 14px; font-weight: 800; color: #fff; margin: 0; }
.guide-list { padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.guide-item { font-size: 13px; color: var(--ink-soft); line-height: 1.65; display: flex; gap: 10px; }
.guide-num { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--beam); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .press-layout { grid-template-columns: 1fr; }
  .press-sidebar { position: static; }
}
@media (max-width: 700px) {
  .press-layout { padding: 32px 0 60px; gap: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ========================================================
   ABOUT / CONCEPT PAGE
   ======================================================== */

/* ── ヒーローセクション ── */
.about-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* 背景写真（全面） */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-900);
}

.about-hero-bg picture { display: block; width: 100%; height: 100%; }
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 薄いネイビーオーバーレイ（10%） */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(6,20,49,.1);
  pointer-events: none;
}

/* テキストコンテンツ（写真の上に重なる） */
.about-hero .wrap {
  position: relative;
  z-index: 2;
}

.about-hero .page-eyebrow { color: var(--teal-light); }

.about-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 80px 0 88px;
  max-width: 680px;
}

.about-h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: .01em;
  margin: 0;
  text-align: left;
  color: var(--teal-light);
}

.about-h1-accent {
  color: var(--teal-light);
}

.about-lead {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.about-questions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.about-questions strong {
  display: block;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  font-weight: 700;
}

/* ── WHAT WE DELIVER セクション ── */
.about-deliver {
  padding: var(--section-pad) 0;
  background: var(--paper);
}

.about-deliver-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.deliver-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliver-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--beam);
  display: flex;
  align-items: center;
  gap: 8px;
}

.deliver-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.deliver-head h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.deliver-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}

.deliver-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hair);
}

.deliver-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
  align-items: flex-start;
}

.deliver-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.teal-dot  { background: var(--teal); }
.amber-dot { background: var(--amber); }
.beam-dot  { background: var(--beam); }

.deliver-item-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.3;
}

.deliver-item-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

.about-cta-wrap {
  margin-top: 36px;
}

/* ── レスポンシブ ── */
@media (max-width: 900px) {
  .about-hero { min-height: 520px; }
  .about-hero-copy { padding: 60px 0 72px; }
  .about-deliver-inner { grid-template-columns: 1fr; gap: 32px; }
  .deliver-head { position: static; }
}

@media (max-width: 700px) {
  /* aspect-ratioを廃止：コンテンツ高さで自然に決まるため上の余白がなくなる */
  .about-hero { min-height: unset; }
  .about-hero-copy { padding: 48px 0 60px; gap: 16px; }
  .about-h1 { font-size: 26px; text-align: left; }
  .about-questions strong { font-size: 14px; }
  .about-deliver { padding: 48px 0 56px; }
  .deliver-head h2 { font-size: 22px; }
  .deliver-item-body h3 { font-size: 16px; }
}
@media (max-width: 385px) {
  .about-h1 { font-size: 23px; }
}

/* ── SP/PC 表示切替（全セクション共通・最終宣言で上書き確保） ── */
@media (min-width: 701px) {
  .sp-only { display: none !important; }
}
@media (max-width: 700px) {
  .pc-only { display: none !important; }
  .sp-only { display: block !important; }
}

/* ── ヘッダー検索ボタン: アイコン切り替え ── */
.header-search-btn .icon-close { display: none; }
.header-search-btn.is-open .icon-search { display: none; }
.header-search-btn.is-open .icon-close { display: block; }

/* ── フッターブランドエリア: ロゴ上段・(文章+SNS) 下段 ── */
.footer-brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.footer-brand-sub p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.footer-brand-sub .socials {
  margin-top: 0;
  flex-shrink: 0;
}

/* ── ロゴ SVG 画像 ── */
.logo-header-img {
  display: block;
  width: 218px;
  height: auto;
}
.logo-footer-img {
  display: block;
  width: 218px;
  height: auto;
}
@media (max-width: 700px) {
  .logo-header-img { width: 172px; }
  .logo-footer-img { width: 182px; }
}

/* ── ヘッダー検索: ブラウザ autofill の背景色を打ち消す ── */
.site-header input:-webkit-autofill,
.site-header input:-webkit-autofill:hover,
.site-header input:-webkit-autofill:focus,
.sp-search-drawer input:-webkit-autofill,
.sp-search-drawer input:-webkit-autofill:hover,
.sp-search-drawer input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 60px var(--navy-800) inset !important;
  box-shadow: 0 0 0 60px var(--navy-800) inset !important;
  -webkit-text-fill-color: #fff !important;
}

/* ── CTA ニュースレター CF7フォーム ── */
.cta-cf7-wrap .wpcf7 { margin: 0; }
.cta-cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.cta-cf7-wrap .wpcf7-form > div { display: flex; flex-direction: column; gap: 4px; }
.cta-cf7-wrap .wpcf7-form br { display: none; }
.cta-cf7-wrap .wpcf7-form > div > p:empty { display: none; }
.cta-cf7-wrap input[type="text"],
.cta-cf7-wrap input[type="email"] {
  width: 100%; border: none; border-radius: 8px;
  padding: 10px 14px; font-family: var(--sans); font-size: 14px;
  background: rgba(255,255,255,.12); color: #fff; outline: none;
  box-sizing: border-box;
}
.cta-cf7-wrap input[type="text"]::placeholder,
.cta-cf7-wrap input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.cta-cf7-wrap input[type="text"]:focus,
.cta-cf7-wrap input[type="email"]:focus { border: 1px solid var(--teal-light); }
.cta-cf7-wrap input:-webkit-autofill,
.cta-cf7-wrap input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 60px var(--navy-800) inset !important;
  -webkit-text-fill-color: #fff !important;
}
.cta-nl-row { display: flex !important; flex-direction: row !important; gap: 10px; align-items: stretch; }
.cta-nl-row .wpcf7-form-control-wrap { flex: 1; min-width: 0; display: block; }
.cta-nl-row input[type="email"] { width: 100%; box-sizing: border-box; }
.cta-cf7-wrap .wpcf7-submit {
  width: auto !important;
  margin-top: 0 !important;
  padding: 10px 18px !important;
  font-size: 14px !important;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 8px !important;
}
.btn-press { transition: transform .18s ease, box-shadow .18s ease; }
.btn-press:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,255,255,.12); }
.cta-acceptance { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.cta-acceptance .wpcf7-form-control-wrap { flex-shrink: 0; }
.cta-acceptance input[type="checkbox"] { margin-top: 2px; accent-color: var(--teal); width: 14px; height: 14px; }
.cta-acceptance .wpcf7-list-item { margin: 0; }
.cta-acceptance .wpcf7-list-item-label { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }
.cta-acceptance .wpcf7-list-item-label a { color: rgba(255,255,255,.75); text-decoration: underline; }
.cta-cf7-wrap .wpcf7-response-output {
  margin: 8px 0 0; padding: 8px 12px; border-radius: 8px;
  font-size: 12px; border-width: 1px;
}
.cta-cf7-wrap .wpcf7-not-valid-tip { color: #ff8080; font-size: 11px; }

/* ══════════════════════════════════════════
   ハンバーガーメニュー（≤700px）
   ══════════════════════════════════════════ */
/* PC/SP 検索フォーム切替 */
.header-search-sp { display: none; }
.header-search-pc { display: flex; }

/* ≤700px: ハンバーガー切替 */
@media (max-width: 700px) {
  .gnav { display: none !important; }
  .header-search-pc { display: none !important; }
  .header-search-sp { display: grid !important; }
  .hamburger-btn { display: flex !important; }
  .sp-search-drawer { top: 56px; }
}
@media (min-width: 701px) {
  .hamburger-btn { display: none !important; }
  .hamburger-overlay { display: none !important; }
  .hamburger-drawer { display: none !important; }
}
/* 900px以下: nlボタン非表示 */
@media (max-width: 900px) {
  .sp-nl-btn { display: none !important; }
}
/* 700-900px: ヘッダーコンパクト化（gnav + 検索は表示） */
@media (max-width: 900px) and (min-width: 701px) {
  .gnav a { padding: 9px 10px !important; }
  .header-search-pc input { width: 120px !important; }
}

/* ハンバーガーボタン */
.hamburger-btn {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: 1px solid rgba(255,255,255,.18); border-radius: 9px;
  cursor: pointer; padding: 0; flex-shrink: 0;
}
.hamburger-btn span {
  display: block; width: 18px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* オーバーレイ */
.hamburger-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.hamburger-overlay.open { opacity: 1; visibility: visible; }

/* ドロワー本体 */
.hamburger-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: calc(100% - 60px); max-width: 320px;
  background: var(--navy-800);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 80px 24px 48px;
  overflow-y: auto;
  box-shadow: -4px 0 32px rgba(0,0,0,.35);
}
.hamburger-drawer.open { transform: translateX(0); }

/* ドロワー内ナビ */
.hamburger-nav { display: flex; flex-direction: column; }
.hamburger-nav-item {
  display: block; padding: 18px 12px;
  font-size: 16px; font-weight: 700; color: rgba(255,255,255,.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s;
}
.hamburger-nav-item:hover { color: #fff; }
.hamburger-nl-btn {
  margin-top: 24px;
  text-align: center;
  border-bottom: none !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  display: block !important;
  justify-content: center;
}
body.hamburger-open { overflow: hidden; }

/* ══════════════════════════════════════════
   SP トップページ レスポンシブ修正
   ══════════════════════════════════════════ */
/* タグバー: PC はタグ群を横並び（flex:1 で残幅を使い切る） */
.tagbar-tags { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.tagbar-search { flex-shrink: 0; }

@media (max-width: 700px) {
  /* ヒーロー: sp-hero-media を表示（タイトル直下） */
  .sp-hero-media { display: block !important; margin: 0; }

  /* タグバー: 業界/課題ラベル+タグを各1行（Grid 2カラム）、検索を最終行 */
  .tagbar .wrap { flex-direction: column; align-items: stretch; gap: 10px; height: auto; padding: 12px 16px; }
  .tagbar-tags { width: 100%; display: grid; grid-template-columns: auto 1fr; gap: 4px 8px; overflow: visible; flex-shrink: 0; align-items: center; }
  .tagbar-tags .row { overflow-x: auto; flex-wrap: nowrap; }
  .tagbar-tags .row::-webkit-scrollbar { height: 0; }
  .tagbar-tags .divider { display: none; }
  .tagbar-search { width: 100%; box-sizing: border-box; }
  .tagbar-search input { flex: 1; width: 100%; }

  /* CTA フォーム: spinner 非表示・ボタン右端揃え・高さ統一 */
  .cta-nl-row .wpcf7-spinner { display: none !important; }
  .cta-nl-row { gap: 8px !important; }
  .cta-nl-row input[type="email"] { flex: 1; min-width: 0; }
  .cta-cf7-wrap .wpcf7-submit {
    align-self: stretch !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ── loop-layout SP: 記事グリッドとランキングを1カラム積み ── */
@media (max-width: 700px) {
  .loop-layout { grid-template-columns: 1fr !important; }
}

/* ── ハンバーガードロワー: 右上 閉じるボタン ── */
.hamburger-drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  transition: background .15s;
  flex-shrink: 0;
}
.hamburger-drawer-close:hover { background: rgba(255,255,255,.22); }

/* ── タグゾーン SP: キーワード検索を左寄せ・全幅 ── */
@media (max-width: 700px) {
  .tag-search { margin-left: 0; width: 100%; min-width: 0; }
}

/* ── CTA フォーム SP: メール入力とボタンの高さ揃え ── */
@media (max-width: 700px) {
  .cta-nl-row br { display: none; }
  .cta-nl-row { align-items: center !important; }
  .cta-nl-row .wpcf7-form-control-wrap { align-self: center; }
  .cta-cf7-wrap .wpcf7-submit {
    align-self: center !important;
    height: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 40px !important;
  }
}
