@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #16223b;
  --navy-2: #1f3050;
  --navy-soft: #2c3e5f;
  --gold: #b08d4f;
  --gold-light: #cba86a;
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: #f7f7f5;
  --text: #23272b;
  --text-muted: #757b81;
  --border: #eceae6;
  --font-serif: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --navy-tint: #eef1f6;
  --gold-tint: #f7f0e2;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */
.site-header {
  background: #ffffff;
  color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo .mark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.logo .mark span { color: var(--gold); }

.logo .sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav-main {
  display: flex;
}

.nav-main-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main a {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-main a:hover { color: var(--navy); }

.nav-main a.active { color: var(--navy); font-weight: 600; }

.nav-main a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.header-cta {
  background: var(--gold);
  color: #fff;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg-soft);
  color: var(--text);
  padding: 72px 0 84px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.hero .wrap { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: var(--gold-tint);
}

.hero h1,
.hero .hero-heading {
  font-family: var(--font-sans);
  font-size: 36px;
  line-height: 1.55;
  font-weight: 800;
  max-width: 700px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.hero h1 em,
.hero .hero-heading em {
  font-style: normal;
  color: var(--gold);
}

.hero p.lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--navy);
}
.btn-outline:hover { background: var(--gold-tint); border-color: var(--gold); }

.trust-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.trust-bar .wrap {
  display: flex;
  justify-content: space-between;
  padding: 28px 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 150px;
}

.trust-item .num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.trust-item .num span { color: var(--gold); font-size: 15px; margin-left: 2px; }

.trust-item .label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- Section common ---------- */
section { padding: 88px 0; }

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-head .tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  font-weight: 700;
}

.section-head p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 14px;
}

.section-alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cat-card:hover {
  box-shadow: 0 8px 20px rgba(35,39,43,0.06);
  border-color: var(--gold-light);
}

.cat-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.cat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.cat-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cat-card .more {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Article cards ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 8px 20px rgba(35,39,43,0.06);
  border-color: #ddd8cd;
}

.article-thumb {
  height: 168px;
  background: linear-gradient(135deg, #f7f3ea 0%, #efe6d3 100%);
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 14px 16px;
}

.article-thumb .cat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.article-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }

.article-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.article-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  margin-top: 6px;
}

.article-meta .byline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}

.mini-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.article-meta .date { color: var(--text-muted); }

.article-meta-cat {
  color: var(--navy);
  font-weight: 600;
}

.center-cta { text-align: center; margin-top: 48px; }

.btn-navy {
  background: var(--navy-tint);
  color: var(--navy);
}
.btn-navy:hover { background: #e2e7ef; }

.btn-border {
  border: 1px solid var(--border);
  color: var(--navy);
}
.btn-border:hover { border-color: var(--gold); background: var(--gold-tint); }

/* ---------- Author / authority block ---------- */
.author-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
}

.author-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  margin: 0 auto;
  border: 6px solid var(--gold-tint);
  overflow: hidden;
}
.author-photo img,
.takamura-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info .badge {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.author-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.author-info .role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.author-info p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.author-stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.author-stats div { text-align: left; }
.author-stats .n {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.author-stats .l {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold-tint);
  color: var(--text);
  border: 1px solid var(--gold-light);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--navy);
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
}

/* ---------- Start pack LP ---------- */
.start-pack-lp {
  background: #fff;
}
.lp-hero {
  background:
    linear-gradient(135deg, rgba(22, 34, 59, 0.96), rgba(31, 48, 80, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(203, 168, 106, 0.26), transparent 32%);
  color: #fff;
  border-bottom: 1px solid var(--border);
  padding: 86px 0 92px;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: 56px;
  align-items: center;
}
.lp-hero-simple {
  padding: 112px 0 104px;
}
.lp-hero-simple .lp-hero-inner {
  display: block;
}
.lp-hero-simple .lp-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lp-hero-simple .lp-hero-copy .lead {
  margin-left: auto;
  margin-right: auto;
}
.lp-hero-simple .lp-hero-actions {
  justify-content: center;
}
.lp-hero-simple .lp-note {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.lp-kicker {
  display: inline-flex;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.lp-hero h1 {
  font-size: 42px;
  line-height: 1.42;
  font-weight: 800;
  color: #fff;
  max-width: 780px;
  margin-bottom: 22px;
}
.lp-hero .lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin-bottom: 32px;
}
.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.lp-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lp-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  margin-top: 18px;
}
.lp-cta-pending {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
}
.lp-offer-card,
.lp-package-card,
.lp-problem-grid div,
.lp-flow div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.lp-offer-card {
  padding: 30px;
  color: var(--text);
  border: 1px solid rgba(203, 168, 106, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.lp-offer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.lp-offer-head span,
.lp-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lp-offer-head h2 {
  color: var(--navy);
  font-size: 18px;
}
.lp-offer-main {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 22px;
}
.lp-offer-title {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 8px;
}
.lp-offer-main p:last-child,
.lp-offer-card li {
  color: var(--text-muted);
  font-size: 13px;
}
.lp-offer-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.lp-offer-card li {
  position: relative;
  padding-left: 22px;
}
.lp-offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.lp-band {
  background: var(--gold-tint);
  border-bottom: 1px solid #ead8b5;
  padding: 22px 0;
}
.lp-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.lp-band p {
  color: var(--navy);
  font-weight: 700;
}
.lp-band-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-band-tags span {
  background: #fff;
  color: var(--navy);
  border: 1px solid #ead8b5;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
}
.lp-section {
  padding: 82px 0;
}
.lp-section-soft {
  background: var(--bg-soft);
}
.lp-section-head {
  text-align: center;
  margin-bottom: 42px;
}
.lp-section-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.lp-section-head h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.55;
  margin-top: 8px;
}
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-problem-grid div {
  padding: 24px;
  min-height: 160px;
}
.lp-problem-grid span,
.lp-flow span {
  color: var(--gold);
  font-weight: 800;
  font-size: 22px;
}
.lp-problem-grid p {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 16px;
}
.lp-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.lp-package-card {
  padding: 30px;
}
.lp-package-card.primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.lp-package-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin: 10px 0;
}
.lp-package-card.primary h3 {
  color: #fff;
}
.lp-package-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}
.lp-package-card.primary p {
  color: rgba(255, 255, 255, 0.72);
}
.lp-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.lp-detail-copy h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.lp-detail-copy p,
.lp-detail-list span {
  color: var(--text-muted);
  font-size: 14px;
}
.lp-detail-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.lp-detail-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--border);
}
.lp-detail-list li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.lp-detail-list strong,
.lp-detail-list span {
  display: block;
}
.lp-detail-list strong {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 3px;
}
.lp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-flow div {
  padding: 26px;
  position: relative;
}
.lp-flow h3 {
  color: var(--navy);
  font-size: 16px;
  margin: 12px 0 8px;
}
.lp-flow p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}
.lp-final-cta {
  padding: 88px 0;
  background: var(--bg-soft);
}
.lp-final-box {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 54px;
  text-align: center;
}
.lp-final-box h2 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.lp-final-box p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto 28px;
}
.lp-final-box .lp-cta-pending {
  margin-top: 0;
}
.lp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-proof-grid > div { padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.lp-proof-grid span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.lp-proof-grid h3 { color: var(--navy); font-size: 18px; margin: 10px 0 8px; }
.lp-proof-grid p, .lp-proof-note { color: var(--text-muted); font-size: 14px; line-height: 1.85; }
.lp-proof-note { max-width: 760px; margin: 22px auto 0; text-align: center; }
.jkn-start-pack-cta { max-width: 820px; margin: 52px auto 0; padding: 30px 32px; background: var(--navy); border-radius: 14px; color: #fff; }
.jkn-start-pack-cta > span { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .11em; }
.article-content .jkn-start-pack-cta h2 { margin: 9px 0 10px; padding: 0; border: 0; color: #fff; font-family: var(--font-serif); font-size: 22px; line-height: 1.55; }
.article-content .jkn-start-pack-cta p { margin: 0; color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.9; }
.article-content .jkn-start-pack-cta a { display: inline-block; margin-top: 19px; padding: 12px 18px; border-radius: 6px; background: var(--gold); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.article-content .jkn-start-pack-cta a:hover { background: #c39b58; color: #fff; text-decoration: none; }
.jkn-start-pack-cta i { font-style: normal; margin-left: 5px; }
.opening-roadmap-page { background: var(--bg-soft); }
.opening-roadmap-hero { padding: 78px 0 74px; background: var(--navy); color: #fff; }
.opening-roadmap-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 58px; align-items: center; }
.opening-roadmap-hero span, .opening-roadmap-cta span { color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.opening-roadmap-hero h1 { margin: 16px 0 14px; color: #fff; font-size: 42px; line-height: 1.35; }
.opening-roadmap-hero p { max-width: 640px; margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 2; }
.opening-roadmap-narrow { max-width: 880px; }
.opening-roadmap-intro { padding: 64px 0 42px; background: #fff; text-align: center; }
.opening-roadmap-intro h2 { color: var(--navy); font-size: 29px; line-height: 1.55; }
.opening-roadmap-intro > .wrap > p { max-width: 720px; margin: 16px auto 0; color: var(--text-muted); line-height: 1.9; }
.opening-roadmap-summary { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-top: 30px; }
.opening-roadmap-summary span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; color: var(--navy); background: var(--bg-soft); font-size: 12px; font-weight: 700; }
.opening-roadmap-summary i { color: var(--gold); font-style: normal; }
.opening-roadmap-reading-guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; text-align: left; }
.opening-roadmap-reading-guide > div { padding: 17px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-soft); }
.opening-roadmap-reading-guide b { color: var(--navy); font-size: 14px; }
.opening-roadmap-reading-guide p { margin: 7px 0 0; color: var(--text-muted); font-size: 12px; line-height: 1.7; }
.opening-roadmap-steps { padding: 48px 0 78px; }
.opening-roadmap-step { display: grid; grid-template-columns: 100px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--border); }
.opening-roadmap-step:first-child { padding-top: 12px; }
.opening-roadmap-number { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.opening-roadmap-step h2 { margin: -5px 0 8px; color: var(--navy); font-size: 25px; line-height: 1.5; }
.opening-roadmap-lead { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.85; }
.opening-roadmap-step ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.opening-roadmap-step ul::before { grid-column: 1 / -1; color: var(--gold); content: 'CHECKLIST'; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.opening-roadmap-step li { position: relative; min-height: 68px; margin: 0; padding: 14px 14px 14px 42px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--text); font-size: 13px; line-height: 1.75; }
.opening-roadmap-step li::before { position: absolute; top: 16px; left: 15px; width: 17px; height: 17px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); content: '✓'; font-size: 11px; font-weight: 800; line-height: 15px; text-align: center; }
.roadmap-visual-placeholder { display: flex; min-height: 138px; margin: 22px 0 0; padding: 22px; align-items: center; justify-content: center; border: 1px dashed #cbb889; border-radius: 10px; background: #faf7ef; text-align: center; }
.roadmap-visual-placeholder figcaption { max-width: 520px; color: #7b6740; font-size: 13px; line-height: 1.9; }
.roadmap-visual-placeholder--hero { min-height: 230px; margin: 0; border-color: rgba(203,168,106,.65); background: rgba(255,255,255,.06); }
.roadmap-visual-placeholder--hero figcaption { color: rgba(255,255,255,.72); }
.opening-roadmap-caution { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid var(--gold); background: #fff; color: var(--text-muted); font-size: 13px; line-height: 1.85; }
.opening-roadmap-link { margin: 18px 0 0; font-size: 14px; font-weight: 700; }
.opening-roadmap-link a { color: var(--gold); text-decoration: none; }
.opening-roadmap-cta { padding: 76px 0; background: #fff; }
.opening-roadmap-cta > .wrap > div { padding: 48px 52px; border-radius: 16px; background: var(--navy); text-align: center; }
.opening-roadmap-cta h2 { margin: 12px 0; color: #fff; font-size: 28px; line-height: 1.55; }
.opening-roadmap-cta p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.9; }
.opening-roadmap-cta a { display: inline-block; margin-top: 25px; padding: 14px 22px; border-radius: 6px; background: var(--gold); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.opening-roadmap-cta a:hover { background: #c39b58; color: #fff; }
.lp-consultation-form {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 34px;
  background: #fff;
  border-radius: 12px;
  color: var(--text);
  text-align: left;
}
.lp-consultation-form .wpcf7-form > p { margin: 0 0 22px; }
.lp-consultation-form label { display: block; color: var(--navy); font-size: 14px; font-weight: 700; line-height: 1.6; }
.lp-consultation-form input:not([type="submit"]):not([type="checkbox"]),
.lp-consultation-form select,
.lp-consultation-form textarea { display: block; width: 100%; min-height: 48px; margin: 8px 0 0; padding: 12px 14px; border: 1px solid #dcdad5; border-radius: 6px; color: var(--text); background: #fff; box-shadow: none; font: inherit; font-size: 15px; line-height: 1.5; }
.lp-consultation-form textarea { min-height: 150px; resize: vertical; }
.lp-consultation-form input:focus,
.lp-consultation-form select:focus,
.lp-consultation-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,79,.12); outline: 0; }
.lp-consultation-form .wpcf7-list-item { display: inline-block; margin: 8px 16px 0 0; }
.lp-consultation-form .wpcf7-list-item label,
.lp-consultation-form .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 8px; color: var(--text); font-size: 13px; font-weight: 400; }
.lp-consultation-form input[type="checkbox"] { width: 16px; height: 16px; margin: 3px 0 0; accent-color: var(--navy); }
.lp-consultation-form input[type="submit"] { display: block; width: min(100%, 390px); min-height: 58px; margin: 30px auto 0; padding: 14px 24px; border: 0; border-radius: 6px; color: #fff; background: var(--gold); box-shadow: none; font: inherit; font-size: 15px; font-weight: 700; letter-spacing: .06em; cursor: pointer; transition: .2s; }
.lp-consultation-form input[type="submit"]:hover { background: var(--navy); transform: translateY(-1px); }
.lp-consultation-form .wpcf7-not-valid-tip { margin-top: 6px; color: #b84b4b; font-size: 12px; }
.lp-consultation-form .wpcf7-response-output { margin: 24px 0 0; padding: 12px 14px; border-width: 1px; font-size: 14px; }

/* ---------- Case page ---------- */
.case-story-page {
  background: #fff;
}
.case-index-page {
  background: #fff;
}
.case-story-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 54px;
}
.case-index-page .case-story-header {
  padding: 52px 0 44px;
}
.case-story-header .wrap {
  max-width: 900px;
}
.case-story-header h1 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.55;
  margin: 10px 0 16px;
}
.case-story-header p {
  color: var(--text-muted);
  max-width: 760px;
}
.case-story-section {
  padding: 56px 0 76px;
}
.case-index-page .case-story-section {
  padding: 44px 0 64px;
}
.case-story-wrap {
  max-width: 900px;
}
.case-story-article {
  max-width: 780px;
  margin: 0 auto;
}
.case-story-article h2 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.6;
  margin: 46px 0 16px;
}
.case-story-article p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.95;
  margin-bottom: 16px;
}
.case-story-summary,
.case-story-point,
.case-story-flow,
.case-story-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 34px 0;
}
.case-story-summary {
  background: var(--navy);
  color: #fff;
  margin-top: 0;
}
.case-story-summary h2,
.case-story-flow h2,
.case-story-cta h2 {
  margin-top: 0;
}
.case-story-summary h2 {
  color: #fff;
}
.case-story-summary dl {
  display: grid;
  gap: 16px;
}
.case-story-summary dt {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 4px;
}
.case-story-summary dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.case-story-point {
  background: var(--gold-tint);
  border-color: #ead8b5;
}
.case-story-point h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 12px;
}
.case-story-point ul {
  padding-left: 1.2em;
}
.case-story-point li {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
}
.case-story-flow {
  background: var(--bg-soft);
}
.case-story-flow ol {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.case-story-flow li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.case-story-flow li:last-child {
  border-bottom: 0;
}
.case-story-flow span {
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
}
.case-story-flow p {
  margin-bottom: 0;
}
.case-story-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.case-story-cta h2 {
  color: #fff;
}
.case-story-cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.case-story-cta .btn {
  margin-top: 10px;
}
.case-story-article a:not(.btn) {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.case-index-list {
  display: grid;
  gap: 20px;
}
.case-index-lead {
  margin-bottom: 22px;
}
.case-index-lead h2 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.55;
}
.case-index-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.case-index-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.case-index-card-pending {
  background: #fafafa;
}
.case-index-card-pending:hover {
  border-color: var(--border);
  transform: none;
}
.case-index-card-pending .case-index-meta span {
  color: var(--text-muted);
}
.case-index-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.case-index-meta span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.case-index-meta em {
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
}
.case-index-card h2 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.case-index-card p {
  color: var(--text-muted);
  font-size: 14px;
}
.case-index-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.case-index-tags span {
  background: var(--gold-tint);
  border: 1px solid #ead8b5;
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}
.case-index-card strong {
  color: var(--navy);
  font-size: 13px;
  display: inline-block;
  margin-top: 14px;
}
.case-index-note {
  margin: 22px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--bg-soft);
}
.case-index-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.85;
}
.case-index-cta {
  margin-top: 40px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--navy);
  text-align: center;
}
.case-index-cta > span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.case-index-cta h2 {
  margin: 12px 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.55;
}
.case-index-cta p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.85;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #ffffff;
  color: var(--text-muted);
  padding: 64px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 13px; }
.footer-grid a:hover { color: var(--gold); }

.footer-grid .foot-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 14px;
}
.footer-grid .foot-logo span { color: var(--gold); }

.footer-grid .foot-desc {
  font-size: 13px;
  line-height: 1.9;
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Page header (for list/article/about) ---------- */
.page-header {
  background: #ffffff;
  color: var(--navy);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.page-header .tag {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 12px;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
}
.page-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 560px;
}

/* ---------- Filter tabs ---------- */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tabs button {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ---------- Article detail ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.article-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

.article-content .cat-label-inline {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}

.article-content h1 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-eyecatch {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  background: var(--bg-soft);
}

.byline-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.byline-text .name { font-size: 13px; font-weight: 600; color: var(--navy); }
.byline-text .date,
.article-byline > .date { font-size: 12px; color: var(--text-muted); }

.article-content > p, .article-content .lead-p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text);
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--navy);
  margin: 44px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.article-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--text);
}

.info-box {
  background: #f7f3ea;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.9;
}
.info-box strong { color: var(--navy); }

/* ---------- Checklist ---------- */
.jkn-checklist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 28px;
  margin: 32px 0;
}
.jkn-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.jkn-checklist-item:last-child { border-bottom: none; }
.jkn-checklist-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1.5px solid var(--gold-light);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jkn-checklist-body { padding-top: 2px; }
.jkn-checklist-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 4px;
}
.jkn-checklist-desc {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.jkn-faq { margin: 32px 0; }
.jkn-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 14px;
}
.jkn-faq-item:last-child { margin-bottom: 0; }

.jkn-faq-item h3.wp-block-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 14px;
}
.jkn-faq-item h3.wp-block-heading::before {
  content: "Q";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jkn-faq-item p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.jkn-faq-item p::before {
  content: "A";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1.5px solid var(--gold-light);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Compact inline author box (legal category, in-article) ---------- */
.author-inline {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 40px 0 8px;
}
.author-inline-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
}
.author-inline-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-inline-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
}
.author-inline-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.article-content th, .article-content td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}
.article-content th {
  background: var(--navy-tint);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
}
.article-content tbody tr:nth-child(even) { background: #faf8f4; }

.article-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.article-content .btn,
.article-content .btn:hover {
  text-decoration: none;
}
.article-content .btn-primary,
.article-content .btn-primary:hover {
  color: #fff;
}
.article-content .btn-outline,
.article-content .btn-border {
  color: var(--gold);
}

.article-content ul,
.article-content ol,
.static-page-content ul,
.static-page-content ol {
  margin: 0 0 24px;
  padding-left: 1.6em;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

.article-content ul li,
.static-page-content ul li {
  list-style: none;
  position: relative;
  padding-left: 0.4em;
  margin-bottom: 10px;
}

.article-content ul li::before,
.static-page-content ul li::before {
  content: '';
  position: absolute;
  left: -1.2em;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.article-content ol,
.static-page-content ol {
  list-style: none;
  counter-reset: jkn-ol-counter;
}

.article-content ol li,
.static-page-content ol li {
  counter-increment: jkn-ol-counter;
  position: relative;
  padding-left: 0.2em;
  margin-bottom: 12px;
}

.article-content ol li::before,
.static-page-content ol li::before {
  content: counter(jkn-ol-counter);
  position: absolute;
  left: -1.7em;
  top: 0;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-content ul ul, .article-content ul ol,
.article-content ol ul, .article-content ol ol,
.static-page-content ul ul, .static-page-content ul ol,
.static-page-content ol ul, .static-page-content ol ol {
  margin-top: 10px;
  margin-bottom: 0;
}

.inline-cta {
  background: #f7f3ea;
  color: var(--text);
  border: 1px solid var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.inline-cta p { color: var(--navy); margin: 0; font-size: 14px; font-weight: 600; }

/* Sidebar */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li { list-style: none; margin-bottom: 14px; font-size: 13px; line-height: 1.6; }
.sidebar-list li a:hover { color: var(--gold); }

.sidebar-author {
  text-align: center;
}
.sidebar-author .byline-avatar {
  width: 72px; height: 72px;
  font-size: 22px;
  margin: 0 auto 14px;
}
.sidebar-author .name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sidebar-author .role { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-author p { font-size: 12px; color: var(--text-muted); text-align: left; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child {
  width: 140px;
  background: #f7f3ea;
  color: var(--navy);
  font-weight: 600;
}

.policy-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.policy-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  align-items: flex-start;
}
.policy-item .num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}
.policy-item p { font-size: 14px; color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-main { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .author-block { grid-template-columns: 1fr; text-align: center; }
  .author-stats { justify-content: center; }
  .article-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero h1, .hero .hero-heading { font-size: 32px; }
  .lp-hero-inner,
  .lp-problem-grid,
  .lp-package-grid,
  .lp-detail-layout,
  .lp-flow,
  .lp-proof-grid { grid-template-columns: 1fr; }
  .lp-hero h1 { font-size: 32px; }
}

@media (max-width: 620px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .article-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 28px 24px; }

  /* ---- hero: get to the point fast ---- */
  .hero { padding: 40px 0 32px; }
  .eyebrow { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
  .hero h1, .hero .hero-heading { font-size: 24px; line-height: 1.45; margin-bottom: 14px; }
  .lp-hero { padding: 40px 0 36px; }
  .lp-hero-simple { padding: 64px 0 56px; }
  .lp-hero h1 { font-size: 25px; line-height: 1.45; margin-bottom: 14px; }
  .lp-hero .lead { font-size: 14px; margin-bottom: 24px; }
  .lp-offer-card,
  .lp-package-card,
  .lp-detail-card,
  .lp-problem-grid div,
  .lp-flow div { padding: 20px; }
  .lp-section { padding: 44px 0; }
  .lp-section-head { margin-bottom: 26px; }
  .lp-section-head h2,
  .lp-final-box h2 { font-size: 22px; }
  .lp-final-cta { padding: 44px 0; }
  .lp-final-box { padding: 30px 22px; }
  .lp-consultation-form { margin-top: 26px; padding: 24px 18px; }
  .lp-consultation-form .wpcf7-list-item { display: block; margin-right: 0; }
  .jkn-start-pack-cta { margin-top: 38px; padding: 24px 22px; }
  .jkn-start-pack-cta h2 { font-size: 19px; }
  .opening-roadmap-hero { padding: 58px 0 54px; }
  .opening-roadmap-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .opening-roadmap-hero h1 { font-size: 31px; }
  .opening-roadmap-intro { padding: 46px 0 30px; }
  .opening-roadmap-intro h2 { font-size: 22px; }
  .opening-roadmap-summary { gap: 7px; }
  .opening-roadmap-summary i { display: none; }
  .opening-roadmap-reading-guide { grid-template-columns: 1fr; }
  .roadmap-visual-placeholder { min-height: 124px; padding: 18px; }
  .roadmap-visual-placeholder--hero { min-height: 170px; }
  .opening-roadmap-step { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .opening-roadmap-step h2 { margin: 0; font-size: 21px; }
  .opening-roadmap-step ul { grid-template-columns: 1fr; }
  .opening-roadmap-step li { min-height: 0; }
  .opening-roadmap-steps { padding: 36px 0 54px; }
  .opening-roadmap-cta { padding: 50px 0; }
  .opening-roadmap-cta > .wrap > div { padding: 32px 22px; }
  .opening-roadmap-cta h2 { font-size: 22px; }
  .case-story-header { padding: 38px 0 32px; }
  .case-index-page .case-story-header { padding: 38px 0 32px; }
  .case-index-cta { margin-top: 30px; padding: 30px 20px; }
  .case-index-cta h2 { font-size: 20px; }
  .case-story-header h1 { font-size: 24px; line-height: 1.45; }
  .case-story-section { padding: 32px 0 44px; }
  .case-story-article h2 { font-size: 20px; margin-top: 34px; }
  .case-story-summary,
  .case-story-point,
  .case-story-flow,
  .case-story-cta { padding: 20px; margin: 24px 0; }
  .case-story-flow li { grid-template-columns: 42px 1fr; gap: 12px; }
  .hero p.lead { font-size: 14px; margin-bottom: 24px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 22px; font-size: 13px; }

  /* ---- trust bar: compact 2x2, not a tall stack ---- */
  .trust-bar .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding: 20px 24px;
  }
  .trust-item .num { font-size: 20px; }
  .trust-item .label { font-size: 11px; }

  /* ---- section headings ---- */
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 22px; }
  .section-head p { font-size: 13px; }

  /* ---- category cards (2-col) ---- */
  .cat-card { padding: 14px 12px; }
  .cat-card .icon { width: 28px; height: 28px; font-size: 11px; margin-bottom: 10px; }
  .cat-card h3 { font-size: 13px; margin-bottom: 6px; line-height: 1.4; }
  .cat-card p { font-size: 11px; line-height: 1.6; margin-bottom: 10px; }
  .cat-card .more { font-size: 11px; }

  /* ---- article cards (2-col) ---- */
  .article-thumb { height: 96px; padding: 10px 12px; }
  .article-thumb .cat-label { font-size: 10px; padding: 3px 8px; }
  .article-body { padding: 10px 12px 12px; }
  .article-body h3 { font-size: 12.5px; line-height: 1.5; margin-bottom: 8px; }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 10px;
  }
  .article-meta .byline { font-size: 10px; gap: 5px; }
  .mini-avatar { width: 18px; height: 18px; font-size: 8px; }

  /* ---- author block ---- */
  .author-block { padding: 28px 24px; gap: 24px; }
  .author-photo { width: 120px; height: 120px; font-size: 30px; }
  .author-info h3 { font-size: 18px; }
  .author-stats { gap: 20px; }
  .author-stats .n { font-size: 18px; }

  /* ---- cta banner ---- */
  .cta-banner h2 { font-size: 20px; }
  .cta-banner p { font-size: 13px; }

  /* ---- compact header ---- */
  .site-header .wrap { height: 56px; }
  .logo .mark { font-size: 16px; }
  .logo .sub { font-size: 8px; }
  .header-cta { padding: 7px 16px; font-size: 12px; }

  /* ---- hide breadcrumb; show the sidebar below the article ---- */
  .breadcrumb { display: none; }
  .article-layout aside { display: block; }

  section { padding: 32px 0; }
  section[style] { padding-top: 24px !important; }

  /* ---- overall type scale down ---- */
  body { font-size: 15px; }

  .article-layout,
  .article-content {
    min-width: 0;
  }
  .article-content { padding: 24px 20px; }

  .article-content .cat-label-inline { font-size: 12px; }
  .article-content h1 { font-size: 21px; margin-bottom: 14px; }
  .article-content h2 { font-size: 17px; margin: 32px 0 12px; }
  .article-content h3 { font-size: 14px; margin: 24px 0 10px; }
  .article-content p,
  .article-content .lead-p,
  .article-content ul,
  .article-content ol,
  .static-page-content ul,
  .static-page-content ol {
    font-size: 15px;
    line-height: 1.8;
  }

  .byline-text .name { font-size: 13px; }
  .byline-text .date { font-size: 12px; }

  /* ---- first view: text before image ---- */
  .article-content {
    display: flex;
    flex-direction: column;
  }
  .article-content > * { order: 4; }
  .article-content > .cat-label-inline { order: 0; }
  .article-content > h1 { order: 1; }
  .article-content > .article-byline { order: 1; margin-bottom: 20px; padding-bottom: 20px; }
  .article-content > .lead-p { order: 2; margin-bottom: 20px; }
  .article-content > .article-eyecatch {
    order: 3;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: 24px;
  }

  .article-content table {
    display: block;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article-content th, .article-content td {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .info-box { padding: 16px 18px; font-size: 13px; }
  .inline-cta { padding: 20px 18px; }
  .inline-cta p { font-size: 13px; }
  .jkn-checklist { padding: 4px 18px; margin: 24px 0; }
  .jkn-checklist-item { gap: 12px; padding: 14px 0; }
  .jkn-checklist-title { font-size: 14px; }
  .jkn-checklist-desc { font-size: 13px; }
  .jkn-faq-item { padding: 18px 18px; margin-bottom: 10px; }
  .jkn-faq-item h3.wp-block-heading { font-size: 14.5px; gap: 10px; margin-bottom: 10px; }
  .jkn-faq-item h3.wp-block-heading::before,
  .jkn-faq-item p::before { width: 24px; height: 24px; font-size: 12px; }
  .jkn-faq-item p { font-size: 13px; gap: 10px; padding-top: 10px; }
  .author-inline { padding: 16px 18px; gap: 12px; }
  .author-inline-avatar { width: 42px; height: 42px; font-size: 14px; }
  .author-inline-name { font-size: 13px; display: block; }
  .author-inline-role { display: block; margin-left: 0; margin-top: 2px; }
  .author-inline-bio { font-size: 12px; }

  .footer-bottom { font-size: 12px; }
}

/* ────────────────────────────────────────────────
   法務監修者（高村行政書士）誘導枠
   ──────────────────────────────────────────────── */

.takamura-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  flex-shrink: 0;
}

/* 監修者カード（本文中：SEOディレクター＋高村さんの2枚組） */
.supervisor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.supervisor-grid.supervisor-grid-single {
  grid-template-columns: 1fr;
}
.supervisor-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.supervisor-card .role-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.supervisor-card .role-tag.seo { background: var(--gold-tint); color: var(--gold); }
.supervisor-card .role-tag.legal { background: var(--navy-tint); color: var(--navy); }
.supervisor-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.supervisor-card .org {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.supervisor-card p.bio {
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.75;
}
/* 記事内バッジ（byline横） */
.byline-sep {
  width: 1px; height: 28px;
  background: var(--border);
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-tint);
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
}
.legal-badge .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.legal-badge .icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.legal-badge .txt {
  font-size: 11.5px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.legal-badge .txt small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 10.5px;
}

/* 記事末尾インラインCTA */
.legal-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy-tint);
  border: 1px solid #dde3ee;
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.legal-cta .takamura-avatar { background: var(--navy); color: #fff; }
.legal-cta .body { flex: 1; min-width: 220px; }
.legal-cta .kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.legal-cta h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.legal-cta p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-cta .btn-legal {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
}

/* サイドバー固定バナー */
.sidebar-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  text-align: center;
  background: #fff;
}
.sidebar-banner .takamura-avatar {
  margin: 0 auto 12px;
}
.sidebar-banner .eyebrow-sm {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.sidebar-banner h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.sidebar-banner p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.sidebar-banner .btn-legal-outline {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 999px;
}

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