:root {
  color: #10242c;
  background: #fbfbf8;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #10242c;
  --muted: #66777c;
  --teal: #0b7180;
  --teal-dark: #075c68;
  --teal-pale: #eaf3f2;
  --paper: #fbfbf8;
  --surface: #f3f6f4;
  --rule: #d5dcda;
  --rule-strong: #b7c2bf;
  --page-gutter: clamp(16px, calc(1.812298vw + 9.203883px), 44px);
  --shell-inset: clamp(32px, calc(3.624595vw + 18.407767px), 88px);
  --space-page: clamp(72px, calc(4.660194vw + 54.524272px), 144px);
  --space-section: clamp(64px, calc(4.142395vw + 48.466019px), 128px);
  --space-block: clamp(40px, calc(2.588997vw + 30.291262px), 80px);
  --space-card: clamp(20px, calc(1.294498vw + 15.145631px), 40px);
  --gap-layout: clamp(32px, calc(4.142395vw + 16.466019px), 96px);
  --gap-component: clamp(16px, calc(1.035599vw + 12.116505px), 32px);
  --type-display: clamp(56px, calc(4.142395vw + 40.466019px), 120px);
  --type-page-title: clamp(44px, calc(2.330097vw + 35.262136px), 80px);
  --type-article-title: clamp(40px, calc(2.071197vw + 32.23301px), 72px);
  --type-section-title: clamp(32px, calc(1.294498vw + 27.145631px), 52px);
  --type-card-title: clamp(22px, calc(0.647249vw + 19.572816px), 32px);
  --type-lead: clamp(18px, calc(0.38835vw + 16.543689px), 24px);
  --type-body: clamp(16px, calc(0.12945vw + 15.514563px), 18px);
  --type-small: clamp(12px, calc(0.12945vw + 11.514563px), 14px);
  --article-thumb-width: clamp(104px, calc(11.391586vw + 61.281553px), 280px);
  --article-thumb-height: clamp(84px, calc(2.718447vw + 73.805825px), 126px);
  --shell: min(1280px, calc(100% - var(--page-gutter) - var(--page-gutter)));
  line-break: strict;
  word-break: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 0 max(44px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(18px);
}

.site-branding {
  min-width: 0;
}

.brand,
.custom-logo-link {
  display: flex;
  width: clamp(154px, calc(4.271845vw + 137.980583px), 220px);
  min-height: 44px;
  align-items: center;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__logo,
.custom-logo {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, calc(1.682848vw + 15.68932px), 48px);
  font-size: 0.82rem;
  font-weight: 650;
}

.desktop-nav a,
.company-link {
  position: relative;
  padding-block: 24px;
}

.desktop-nav a::after,
.company-link::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.company-link:hover::after,
.company-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.78rem;
  font-weight: 650;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.mobile-menu-button,
.mobile-nav,
.mobile-article-link {
  display: none;
}

.masthead {
  padding-block: clamp(72px, calc(3.106796vw + 60.349515px), 120px) 48px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.masthead h1 {
  max-width: 920px;
  margin: 18px 0 8px;
  font-size: clamp(64px, calc(3.417476vw + 51.184466px), 116.8px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.tagline {
  margin: 24px 0 0;
  font-size: clamp(20px, calc(0.569579vw + 17.864078px), 28.8px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.masthead-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.95;
}

.issue {
  margin: 40px 0 0;
  font-family: "IBM Plex Mono", "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
  gap: clamp(44px, calc(3.106796vw + 32.349515px), 92px);
  align-items: center;
}

.lead-image {
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
}

.lead-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.lead-content h2 {
  margin: 18px 0 22px;
  font-size: 3rem;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.lead-content > p {
  margin: 24px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.meta span {
  display: inline-flex;
  align-items: center;
}

.meta span:not(:last-child)::after {
  margin-inline: 12px;
  color: var(--rule-strong);
  content: "|";
}

.text-button,
.stretched-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  color: var(--teal-dark);
  background: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.text-button svg,
.stretched-link svg {
  transition: transform 160ms ease;
}

.text-button:hover svg,
.text-button:focus-visible svg,
.stretched-link:hover svg,
.stretched-link:focus-visible svg {
  transform: translateX(4px);
}

.observations,
.ranking-section,
.deep-dives,
.guide-section,
.latest-section {
  padding-top: clamp(76px, calc(3.365696vw + 63.378641px), 128px);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24.8px, calc(0.724919vw + 22.081553px), 36px);
  font-weight: 720;
  letter-spacing: -0.035em;
}

.heading-with-rule::after {
  order: 2;
  width: 100%;
  height: 1px;
  background: var(--rule);
  content: "";
}

.heading-with-rule h2 {
  flex: none;
  order: 1;
}

.heading-with-rule .text-button {
  flex: none;
  order: 3;
}

.observation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.observation-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 44px;
  border-left: 1px solid var(--rule);
  text-align: center;
}

.observation-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.observation-grid article:last-child {
  padding-right: 0;
}

.observation-grid svg,
.guide-grid svg {
  color: var(--teal);
}

.observation-grid h3,
.guide-grid h3 {
  margin: 0 0 7px;
  font-size: 1.12rem;
}

.observation-grid p,
.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.ranking-table {
  border-top: 1px solid var(--rule-strong);
}

.ranking-header,
.ranking-row {
  display: grid;
  grid-template-columns: 64px minmax(230px, 1.15fr) 150px minmax(310px, 1.65fr) 74px;
  gap: 20px;
  align-items: center;
  padding: 18px 14px;
  border-bottom: 1px solid var(--rule);
}

.ranking-header {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.ranking-row {
  transition: background 160ms ease;
}

.ranking-row:hover {
  background: #f6f8f6;
}

.ranking-row .rank {
  font-size: 1.15rem;
  font-weight: 750;
}

.ranking-row code {
  overflow: hidden;
  color: var(--teal-dark);
  font-family: "IBM Plex Mono", "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-row > span:not(.rank, .movement),
.ranking-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.movement {
  justify-self: end;
  color: var(--teal);
  font-family: "IBM Plex Mono", "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 750;
}

.movement.down {
  color: #738387;
}

.feature-article {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 1fr);
  gap: clamp(40px, calc(2.330097vw + 31.262136px), 76px);
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--rule);
}

.feature-article > img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.feature-article h3 {
  margin: 14px 0 14px;
  font-size: clamp(32px, calc(1.346278vw + 26.951456px), 52.8px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.feature-article p {
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.article-list {
  display: grid;
}

.article-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}

.article-row img {
  width: 280px;
  height: 126px;
  object-fit: cover;
}

.article-row h3 {
  margin: 7px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.article-row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.article-row > a {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  place-items: center;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.article-row > a:hover,
.article-row > a:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateX(4px);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-grid article {
  padding: 8px 28px 12px;
  border-left: 1px solid var(--rule);
}

.guide-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.guide-grid article:last-child {
  padding-right: 0;
}

.guide-grid h3 {
  margin-top: 18px;
  font-size: 1.3rem;
}

.category-thumbnail {
  width: 100%;
  height: clamp(150px, calc(1.941748vw + 142.718447px), 180px);
  object-fit: cover;
}

.guide-grid p {
  min-height: 68px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.latest-list {
  border-top: 1px solid var(--rule-strong);
}

.latest-list a {
  display: grid;
  grid-template-columns: 120px 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--rule);
  transition: background 160ms ease;
}

.latest-list a:hover,
.latest-list a:focus-visible {
  background: #f6f8f6;
}

.latest-list time,
.latest-list .category {
  color: var(--muted);
  font-size: 0.72rem;
}

.latest-list .category {
  color: var(--teal);
  font-weight: 750;
}

.latest-list strong {
  font-size: 1rem;
  line-height: 1.55;
}

.consultation {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  margin-top: clamp(80px, calc(3.883495vw + 65.436893px), 140px);
  padding: 30px 44px;
  border: 1px solid #dbe4e1;
  background: #f2f6f4;
}

.consultation > img {
  width: 300px;
  height: 124px;
  object-fit: cover;
  object-position: left center;
}

.consultation h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.consultation p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border: 1px solid var(--teal-dark);
  border-radius: 3px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--teal-dark);
  background: transparent;
  transform: translateY(-2px);
}

.site-footer {
  margin-top: 52px;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 30px;
  padding-block: 40px 34px;
}

.footer-brand {
  display: block;
  width: clamp(280px, calc(5.177994vw + 260.582524px), 360px);
  max-width: 100%;
}

.footer-brand__logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-branding p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: flex-end;
  font-size: 0.72rem;
}

.footer-inner small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  background: rgb(16 36 44 / 48%);
  place-items: start center;
}

.search-panel,
.consultation-modal {
  width: min(720px, 100%);
  max-height: calc(100dvh - 48px);
  margin-top: 6vh;
  overflow-y: auto;
  padding: clamp(26px, calc(1.682848vw + 19.68932px), 52px);
  background: var(--paper);
  box-shadow: 0 30px 80px rgb(16 36 44 / 20%);
}

.consultation-modal {
  width: min(640px, 100%);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.panel-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(28.8px, calc(1.035599vw + 24.916505px), 44.8px);
  letter-spacing: -0.04em;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px solid var(--ink);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.05rem;
}

.search-results {
  display: grid;
  margin-top: 24px;
}

.search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  font-weight: 650;
}

.search-results a:hover,
.search-results a:focus-visible {
  color: var(--teal-dark);
}

.consultation-form {
  display: grid;
  gap: 20px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 750;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgb(11 113 128 / 10%);
}

.consultation-form .primary-button {
  justify-self: start;
  margin-top: 8px;
}

.success-state {
  display: grid;
  justify-items: start;
  padding-block: 12px;
}

.success-state svg {
  color: var(--teal);
}

.success-state h3 {
  margin: 20px 0 8px;
  font-size: 1.5rem;
}

.success-state p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

:focus-visible {
  outline: 3px solid rgb(11 113 128 / 35%);
  outline-offset: 4px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.72rem;
}

.article-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-category {
  margin: 18px 0 0;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.article-header h1 {
  max-width: 960px;
  margin: 18px 0 26px;
  font-size: clamp(48px, calc(2.485437vw + 38.679612px), 86.4px);
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.article-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.95;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.75rem;
}

.article-author {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.author-mark {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
  font-family: Georgia, serif;
  font-weight: 700;
  place-items: center;
}

.article-author strong {
  font-size: 0.82rem;
}

.article-author p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.article-hero > picture {
  display: block;
  margin-top: 46px;
}

.article-hero picture img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  gap: clamp(48px, calc(2.847896vw + 37.320388px), 92px);
  justify-content: center;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 104px;
  padding: 22px 0;
  border-block: 1px solid var(--rule);
}

.article-toc ol {
  display: grid;
  gap: 4px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: flex;
  min-height: 38px;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--teal-dark);
}

.article-body > section {
  margin-bottom: 96px;
  scroll-margin-top: 100px;
}

.article-section-no {
  color: var(--teal);
  font-family: "IBM Plex Mono", "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.article-body h2 {
  margin: 60px 0 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(28.8px, calc(0.724919vw + 26.081553px), 40px);
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.article-body h3 {
  line-height: 1.5;
}

.article-body section > p,
.article-lead-box p,
.aoki-judgment p,
.article-correction p {
  font-size: 1rem;
  line-height: 2;
}

.article-lead-box {
  padding: clamp(24px, calc(1.165049vw + 19.631068px), 42px);
  border-left: 4px solid var(--teal);
  background: var(--teal-pale);
}

.article-lead-box strong {
  font-size: 1.35rem;
  line-height: 1.65;
}

.article-lead-box p {
  margin: 18px 0 0;
}

.article-definition {
  margin: 0;
  border-top: 1px solid var(--rule-strong);
}

.article-definition div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--rule);
}

.article-definition dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.article-definition dd {
  margin: 0;
  font-size: 0.9rem;
}

.article-note,
.article-caution {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  color: var(--muted);
  background: var(--surface);
  font-size: 0.82rem !important;
  line-height: 1.75 !important;
}

.article-ranking {
  border-top: 1px solid var(--rule-strong);
}

.article-ranking-head,
.article-ranking-row {
  display: grid;
  grid-template-columns: 54px minmax(250px, 1fr) 92px 92px 92px;
  gap: 14px;
  align-items: center;
  padding: 15px 8px;
  border-bottom: 1px solid var(--rule);
}

.article-ranking-head {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.article-rank {
  font-size: 1.2rem;
  font-weight: 800;
}

.article-ranking-row code {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.article-ranking-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.article-ranking-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.article-ranking-facts span:last-child {
  flex-basis: 100%;
}

.article-ranking-facts span::before {
  content: attr(data-label) ": ";
  font-weight: 700;
}

.article-ranking-row > span,
.article-ranking-row > strong {
  font-size: 0.72rem;
}

.article-ranking-row > strong {
  color: var(--teal-dark);
}

.article-insight-grid,
.article-picks,
.article-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-insight-grid article,
.article-picks article {
  padding: 22px;
  border: 1px solid var(--rule);
  background: #fff;
}

.article-insight-grid article > span,
.article-pick-rank {
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.article-insight-grid h3,
.article-picks h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
}

.article-insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.article-picks code {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.article-picks dl {
  margin: 18px 0;
}

.article-picks dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.72rem;
}

.article-picks dt {
  color: var(--muted);
}

.article-picks dd {
  margin: 0;
}

.article-picks a,
.source-list a,
.article-related a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.aoki-judgment {
  padding: clamp(26px, calc(1.423948vw + 20.660194px), 48px);
  color: #fff;
  background: var(--ink);
}

.aoki-judgment .eyebrow {
  color: #75c9d3;
}

.aoki-judgment h3 {
  margin: 14px 0;
  font-size: 1.75rem;
}

.aoki-judgment p,
.aoki-judgment li {
  color: #dbe5e4;
}

.aoki-judgment ul {
  margin: 24px 0 0;
  padding-left: 1.25em;
}

.source-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.source-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--rule);
}

.source-list li > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.article-caution strong {
  color: var(--ink);
}

.article-caution p {
  margin: 5px 0 0;
}

.article-correction dl {
  margin: 20px 0 0;
}

.article-correction dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
}

.article-correction dd {
  margin: 0;
}

.article-related article {
  border-bottom: 1px solid var(--rule);
}

.article-related img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-related .eyebrow {
  display: block;
  margin-top: 14px;
}

.article-related h3 {
  margin: 8px 0;
  font-size: 1rem;
}

.article-consultation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  color: #fff;
  background: var(--ink);
}

.article-consultation h2 {
  margin: 10px 0;
  padding: 0;
  border: 0;
  font-size: 1.75rem;
}

.article-consultation p {
  margin: 0;
  color: #dbe5e4;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .company-link {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 0 9px 12px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 0.72rem;
    font-weight: 750;
  }

  .mobile-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--rule);
    background: var(--paper);
    box-shadow: 0 18px 36px rgb(16 36 44 / 8%);
  }

  .mobile-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--rule);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .lead-story,
  .feature-article {
    grid-template-columns: 1fr;
  }

  .lead-content {
    max-width: 700px;
  }

  .observation-grid {
    grid-template-columns: 1fr;
  }

  .observation-grid article,
  .observation-grid article:first-child,
  .observation-grid article:last-child {
    padding: 24px 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .ranking-header {
    display: none;
  }

  .ranking-row {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 8px 16px;
  }

  .ranking-row code {
    grid-column: 2;
  }

  .ranking-row > span:not(.rank, .movement) {
    grid-column: 2;
  }

  .ranking-row p {
    grid-column: 2 / -1;
  }

  .ranking-row .movement {
    grid-column: 3;
    grid-row: 1;
  }

  .consultation {
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1fr);
  }

  .consultation .primary-button {
    grid-column: 2;
    justify-self: start;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .article-toc ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-actions > .icon-button {
    display: none;
  }

  .mobile-article-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-inline: 10px;
    border: 1px solid var(--rule);
    font-size: 0.75rem;
  }

  .brand,
  .custom-logo-link {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .mobile-menu-button {
    min-height: 44px;
  }

  .mobile-nav {
    top: 60px;
    padding-inline: 16px;
  }

  .desktop-break {
    display: none;
  }

  .lead-image,
  .lead-image img {
    min-height: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .heading-with-rule::after {
    width: 100%;
  }

  .heading-with-rule .text-button {
    order: 2;
    margin-left: auto;
  }

  .article-row {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
  }

  .article-row h3 {
    line-height: 1.5;
  }

  .article-row p {
    display: none;
  }

  .article-row > a {
    grid-column: 2;
    width: auto;
    height: auto;
    justify-content: end;
    border: 0;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid article,
  .guide-grid article:first-child,
  .guide-grid article:last-child {
    padding: 26px 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .category-thumbnail {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .guide-grid p {
    min-height: 0;
  }

  .latest-list a {
    grid-template-columns: 92px minmax(0, 1fr) auto;
    padding-inline: 2px;
  }

  .latest-list .category {
    grid-column: 2;
    grid-row: 1;
  }

  .latest-list strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .latest-list svg {
    grid-column: 3;
    grid-row: 1;
  }

  .consultation {
    grid-template-columns: 1fr;
  }

  .consultation > img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    object-position: left center;
  }

  .consultation .primary-button {
    grid-column: 1;
    justify-self: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    display: grid;
    justify-content: stretch;
  }

  .footer-inner nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
  }

  .search-panel,
  .consultation-modal {
    max-height: calc(100dvh - 24px);
    margin-top: 0;
    padding: 24px;
  }

  .mobile-home {
    overflow-x: clip;
  }

  .mobile-home .page-shell {
    width: calc(100% - 32px);
    max-width: 343px;
  }

  .mobile-home section {
    margin-bottom: 56px;
  }

  .mobile-decision-hero {
    padding-block: 34px 30px;
  }

  .mobile-decision-hero h1 {
    margin: 8px 0 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .mobile-tagline {
    margin: 0;
    font-weight: 700;
  }

  .mobile-decision-hero > p:not(.mobile-tagline) {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
  }

  .mobile-purpose-links {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .mobile-purpose-links a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--teal);
    color: var(--teal-dark);
    font-size: 0.875rem;
    font-weight: 750;
  }

  .mobile-lead > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    object-fit: cover;
  }

  .mobile-lead h2 {
    margin: 10px 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .mobile-lead > p {
    margin: 14px 0;
    font-size: 1rem;
    line-height: 1.75;
  }

  .mobile-home .eyebrow,
  .mobile-purpose,
  .mobile-reading {
    font-size: 0.75rem;
  }

  .mobile-home .text-button {
    min-height: 44px;
  }

  .mobile-section-heading {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-section-heading h2 {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1.4375rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .mobile-signal-list {
    border-block: 1px solid var(--rule);
  }

  .mobile-signal-list article {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    min-height: 82px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-signal-list article:last-child {
    border-bottom: 0;
  }

  .mobile-signal-list article > span {
    color: var(--teal);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .mobile-signal-list h3 {
    margin: 0 0 2px;
    font-size: 1.0625rem;
    line-height: 1.45;
  }

  .mobile-signal-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .mobile-ranking-list {
    display: grid;
    gap: 12px;
  }

  .mobile-rank-card {
    overflow: hidden;
    padding: 16px;
    border: 1px solid var(--rule);
    background: #fff;
  }

  .mobile-rank-card.is-featured {
    padding-top: 0;
    border-top: 3px solid var(--teal);
  }

  .mobile-rank-card.is-featured > img {
    width: calc(100% + 32px);
    max-width: none;
    height: 150px;
    margin: 0 -16px 16px;
    object-fit: cover;
  }

  .mobile-rank-line {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .mobile-rank-number {
    flex: 0 0 34px;
    color: var(--teal-dark);
    font-family: Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-rank-card code {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 0.875rem;
    font-weight: 700;
  }

  .mobile-rank-card .movement {
    margin-left: auto;
  }

  .mobile-chip {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    margin-top: 8px;
    padding: 2px 8px;
    color: var(--teal-dark);
    background: var(--teal-pale);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .mobile-rank-card p {
    margin: 8px 0 0;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .mobile-outline-button {
    width: 100%;
    min-height: 52px;
    margin-top: 16px;
    border: 1px solid var(--teal);
    color: var(--teal-dark);
    background: transparent;
    font-size: 0.875rem;
    font-weight: 700;
  }

  .mobile-article-feed {
    border-top: 1px solid var(--rule);
  }

  .mobile-article-row {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    min-height: 102px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-article-row img {
    width: 104px;
    height: 78px;
    object-fit: cover;
  }

  .mobile-purpose {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-article-row h3 {
    margin: 4px 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .mobile-reading {
    color: var(--muted);
  }

  .mobile-guide-list {
    display: grid;
    gap: 8px;
  }

  .mobile-guide-list details {
    border: 1px solid var(--rule);
    background: #fff;
  }

  .mobile-guide-list summary {
    display: flex;
    min-height: 64px;
    align-items: center;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-guide-list details p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .mobile-policy {
    padding: 22px 18px;
    background: var(--teal-pale);
  }

  .mobile-policy h2 {
    margin: 4px 0 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .mobile-policy p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .mobile-policy .text-button {
    min-height: 44px;
  }

  .mobile-consultation {
    padding: 20px;
    color: #fff;
    background: var(--ink);
  }

  .mobile-consultation > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    object-fit: cover;
  }

  .mobile-consultation h2 {
    margin: 0 0 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.4375rem;
    line-height: 1.45;
  }

  .mobile-consultation p {
    margin: 0 0 18px;
    color: #dbe5e4;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .mobile-consultation .primary-button {
    width: 100%;
    min-height: 52px;
  }

  .footer-inner nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
  }

  .overlay .icon-button {
    width: 44px;
    height: 44px;
  }

  .article-breadcrumb {
    min-height: 44px;
    align-items: center;
  }

  .article-breadcrumb a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .article-header h1 {
    margin-block: 12px 18px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: -0.035em;
  }

  .article-author {
    align-items: flex-start;
  }

  .article-author p {
    line-height: 1.6;
  }

  .article-hero > picture {
    margin-top: 28px;
  }

  .article-toc {
    padding-block: 18px;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .article-toc a {
    border-bottom: 1px solid var(--rule);
  }

  .article-body h2 {
    font-family: "Noto Serif JP", serif;
  }

  .article-body section > p,
  .article-lead-box p,
  .aoki-judgment p,
  .article-correction p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .article-definition div {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .article-ranking-head {
    display: none;
  }

  .article-ranking {
    display: grid;
    gap: 12px;
    border-top: 0;
  }

  .article-ranking-row {
    display: block;
    padding: 0 0 18px;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: #fff;
  }

  .article-ranking-row > *[data-label]::before {
    display: block;
    margin: 0 -16px 12px;
    padding: 8px 16px;
    background: var(--surface);
    color: var(--teal-dark);
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.06em;
  }

  .article-ranking-row > div {
    display: block;
    margin: 14px 16px 0;
    padding: 0 16px 14px;
    border: 1px solid var(--rule);
    background: #fff;
  }

  .article-ranking-row > span:not(.article-rank),
  .article-ranking-row > strong {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    height: 40px;
    min-height: 40px;
    align-items: center;
    margin: 8px 16px 0;
    padding: 0 12px 0 0;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: #fff;
    column-gap: 12px;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .article-ranking-row > span:not(.article-rank)::before,
  .article-ranking-row > strong::before {
    display: flex;
    height: 100%;
    min-height: 0;
    align-items: center;
    align-self: stretch;
    margin: 0;
    padding: 8px 10px;
    background: #edf0ef;
    box-sizing: border-box;
  }

  .article-ranking-row .article-ranking-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .article-ranking-facts span {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    height: 40px;
    min-height: 40px;
    align-items: center;
    padding: 0 10px 0 0;
    overflow: hidden;
    border: 1px solid var(--rule);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 600;
    column-gap: 10px;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .article-ranking-facts span::before {
    display: grid;
    height: 100%;
    min-height: 0;
    align-content: center;
    align-self: stretch;
    margin: 0;
    padding: 7px 10px;
    background: #edf0ef;
    box-sizing: border-box;
    color: var(--teal-dark);
    content: attr(data-label);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.05em;
  }

  .article-ranking-row .article-rank {
    display: flex;
    min-height: 54px;
    align-items: baseline;
    gap: 10px;
    padding: 10px 16px;
    background: var(--teal-dark);
    color: #fff;
    font-size: 1.45rem;
  }

  .article-ranking-row .article-rank::before {
    margin: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .article-insight-grid,
  .article-picks,
  .article-related > div {
    grid-template-columns: 1fr;
  }

  .article-insight-grid article,
  .article-picks article {
    padding: 18px;
  }

  .source-list li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 10px;
  }

  .article-correction dl div {
    grid-template-columns: 1fr;
  }

  .article-related article {
    padding-bottom: 16px;
  }

  .article-consultation {
    grid-template-columns: 1fr;
  }

  .article-consultation .primary-button {
    width: 100%;
  }
}



.wide-section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: clamp(64px, calc(3.624595vw + 50.407767px), 120px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, calc(3.106796vw + 20.349515px), 80px);
  align-items: start;
  margin-bottom: clamp(36px, calc(2.330097vw + 27.262136px), 72px);
}

.section-intro h2,
.policy-body h2,
.work-detail h2,
.author-profile h2,
.not-found h1 {
  margin-top: 0;
  font-family: "Noto Serif JP", serif;
}

.section-intro p,
.policy-body p,
.policy-body li,
.work-detail p,
.work-detail li,
.author-profile p {
  color: var(--muted);
  line-height: 1.9;
}

.tag-grid,
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule-strong);
}

.tag-card,
.work-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, calc(1.812298vw + 21.203883px), 56px);
  border-bottom: 1px solid var(--rule-strong);
  color: var(--ink);
  text-decoration: none;
}

.tag-card:nth-child(odd),
.work-card:nth-child(odd) {
  border-right: 1px solid var(--rule-strong);
}

.tag-card:hover,
.work-card:hover {
  background: var(--surface);
}

.tag-card strong,
.work-card h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, calc(0.517799vw + 18.058252px), 28px);
}

.tag-card span,
.work-card p,
.work-card small {
  color: var(--muted);
}

.page-search {
  display: grid;
  gap: 32px;
  max-width: 920px;
  margin-inline: auto;
}

.page-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 2px solid var(--ink);
}

.page-search-form input {
  min-width: 0;
  padding: 18px 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
}

.page-search-form button {
  border: 0;
  color: var(--paper);
  background: var(--ink);
  padding-inline: 28px;
  font: inherit;
  font-weight: 700;
}

.page-search-status {
  color: var(--muted);
}

.page-search-results {
  border-top: 1px solid var(--rule-strong);
}

.page-search-results a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
}

.page-search-results a span:last-child {
  color: var(--teal-dark);
}

.strength-list {
  border-top: 1px solid var(--rule-strong);
}

.strength-list article {
  display: grid;
  grid-template-columns: minmax(72px, 0.15fr) minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, calc(2.071197vw + 16.23301px), 56px);
  padding-block: clamp(36px, calc(2.071197vw + 28.23301px), 68px);
  border-bottom: 1px solid var(--rule-strong);
}

.strength-list .number {
  color: var(--teal-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
}

.strength-list h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21.6px, calc(0.673139vw + 19.075728px), 32px);
}

.strength-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.template-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.work-detail,
.policy-layout,
.author-profile {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: clamp(64px, calc(3.624595vw + 50.407767px), 120px);
}

.work-detail > section,
.policy-body > section {
  padding-block: clamp(34px, calc(1.682848vw + 27.68932px), 60px);
  border-bottom: 1px solid var(--rule);
}

.work-facts,
.author-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  border-block: 1px solid var(--rule-strong);
}

.work-facts div,
.author-facts div {
  padding: 24px;
  border-right: 1px solid var(--rule);
}

.work-facts div:last-child,
.author-facts div:last-child {
  border-right: 0;
}

.work-facts dt,
.author-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.work-facts dd,
.author-facts dd {
  margin: 8px 0 0;
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, calc(3.624595vw + 30.407767px), 100px);
}

.policy-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  border-top: 1px solid var(--rule-strong);
}

.policy-nav a {
  padding-block: 13px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.policy-note {
  margin-top: 36px;
  padding: 24px;
  border-left: 3px solid var(--teal);
  background: var(--surface);
  color: var(--muted);
  line-height: 1.8;
}

.author-profile > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, calc(2.071197vw + 16.23301px), 56px);
  align-items: center;
  padding-bottom: clamp(42px, calc(2.330097vw + 33.262136px), 78px);
  border-bottom: 1px solid var(--rule-strong);
}

.author-initial {
  display: grid;
  place-items: center;
  width: clamp(88px, calc(1.035599vw + 84.116505px), 104px);
  height: clamp(88px, calc(1.035599vw + 84.116505px), 104px);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 72px 24px;
  text-align: center;
}

.not-found strong {
  color: var(--teal-dark);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(64px, calc(5.177994vw + 44.582524px), 144px);
  line-height: 1;
}

.not-found p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 1040px) {
  .strength-list article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .strength-list p {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .wide-section,
  .work-detail,
  .policy-layout,
  .author-profile {
    width: calc(100% - 32px);
    max-width: 343px;
  }

  .section-intro,
  .tag-grid,
  .works-grid,
  .strength-list article,
  .policy-layout,
  .author-profile > header {
    grid-template-columns: 1fr;
  }

  .tag-card:nth-child(odd),
  .work-card:nth-child(odd) {
    border-right: 0;
  }

  .page-search-form {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .page-search-form input {
    border-bottom: 2px solid var(--ink);
  }

  .page-search-form button {
    min-height: 48px;
  }

  .strength-list p {
    grid-column: auto;
  }

  .work-facts,
  .author-facts {
    grid-template-columns: 1fr;
  }

  .work-facts div,
  .author-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .work-facts div:last-child,
  .author-facts div:last-child {
    border-bottom: 0;
  }

  .policy-nav {
    position: static;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.mobile-only {
  display: none;
}

[hidden] {
  display: none !important;
}

.static-icon {
  width: clamp(144px, calc(2.330097vw + 135.262136px), 180px);
  height: clamp(144px, calc(2.330097vw + 135.262136px), 180px);
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.text-button::after,
.primary-button::after,
.stretched-link::after {
  content: "\2192";
  font-size: 1.05em;
}

.modal-status {
  margin: 0;
}

body.has-dialog,
body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.subpage {
  padding-bottom: clamp(88px, calc(3.106796vw + 76.349515px), 136px);
}

.subpage-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: clamp(24px, calc(1.553398vw + 18.174757px), 48px);
  color: var(--muted);
  font-size: 0.75rem;
}

.subpage-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.lower-hero {
  padding-block: clamp(70px, calc(4.789644vw + 52.038835px), 144px)
    clamp(64px, calc(3.624595vw + 50.407767px), 120px);
  border-bottom: 1px solid var(--rule-strong);
}

.lower-hero h1 {
  max-width: 1080px;
  margin: 18px 0 22px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(44.8px, calc(2.459547vw + 35.576699px), 82.8px);
  line-height: 1.13;
}

.lower-hero > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, calc(0.323625vw + 14.786408px), 21px);
  line-height: 1.9;
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
  gap: clamp(48px, calc(4.012945vw + 32.951456px), 110px);
  padding-top: clamp(58px, calc(3.106796vw + 46.349515px), 106px);
}

.filter-panel h2,
.content-heading h2 {
  margin: 0;
  font-size: 1rem;
}

.filter-panel nav {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--rule-strong);
}

.filter-panel a {
  padding-block: 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.filter-panel a:hover,
.filter-panel a:focus-visible {
  color: var(--teal-dark);
}

.content-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-strong);
}

.content-heading span {
  color: var(--muted);
  font-size: 0.75rem;
}

.archive-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, calc(2.330097vw + 19.262136px), 64px);
  padding-block: clamp(34px, calc(1.553398vw + 28.174757px), 58px);
  border-bottom: 1px solid var(--rule);
}

.archive-feature img,
.archive-list img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.archive-feature h3 {
  margin: 12px 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26.4px, calc(0.776699vw + 23.487379px), 38.4px);
  line-height: 1.35;
}

.archive-feature p,
.archive-list p {
  color: var(--muted);
  line-height: 1.8;
}

.archive-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(22px, calc(1.423948vw + 16.660194px), 44px);
  padding-block: clamp(26px, calc(1.165049vw + 21.631068px), 44px);
  border-bottom: 1px solid var(--rule);
}

.archive-list img {
  max-height: 180px;
}

.archive-list h3 {
  margin: 8px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, calc(0.38835vw + 18.543689px), 26px);
  line-height: 1.45;
}

.archive-list p {
  margin: 0 0 14px;
}

.status-label {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid var(--rule-strong);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.category-index,
.service-index,
.company-facts {
  padding-top: clamp(64px, calc(3.624595vw + 50.407767px), 120px);
}

.category-index > article {
  display: grid;
  grid-template-columns: minmax(72px, 0.15fr) minmax(0, 1fr);
  gap: clamp(24px, calc(2.071197vw + 16.23301px), 56px);
  padding-block: clamp(34px, calc(1.682848vw + 27.68932px), 60px);
  border-top: 1px solid var(--rule-strong);
}

.category-index > article:last-child {
  border-bottom: 1px solid var(--rule-strong);
}

.category-number,
.service-number {
  color: var(--teal);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(38.4px, calc(1.035599vw + 34.516505px), 54.4px);
}

.category-index h2,
.service-index h3 {
  margin: 8px 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(27.2px, calc(0.776699vw + 24.287379px), 39.2px);
}

.category-index p,
.service-index p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.9;
}

.company-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(48px, calc(4.012945vw + 32.951456px), 110px);
  padding-block: clamp(68px, calc(3.624595vw + 54.407767px), 124px);
  border-bottom: 1px solid var(--rule-strong);
}

.company-statement h2,
.scope-note h2,
.subpage-cta h2,
.contact-guidance h2 {
  margin: 12px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26.4px, calc(0.906149vw + 23.001942px), 40.4px);
  line-height: 1.45;
}

.company-statement p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 2;
}

.company-facts dl {
  margin: 0;
  border-bottom: 1px solid var(--rule-strong);
}

.company-facts dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: clamp(6px, calc(1.423948vw + 0.660194px), 28px);
  padding-block: 22px;
  border-top: 1px solid var(--rule);
}

.company-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.company-facts dd {
  margin: 0;
}

.company-profile-page {
  --company-ink: #102f38;
  --company-accent: #287784;
  --company-warm: #f3efe6;
  padding-bottom: clamp(80px, calc(5.177994vw + 60.582524px), 160px);
}

.entry-content.company-profile-page > * {
  max-width: 1080px;
}

.company-intro {
  display: block;
  padding-block: clamp(44px, calc(2.588997vw + 34.291262px), 84px);
  border-bottom: 1px solid var(--rule-strong);
}

.company-intro > div + div {
  margin-top: 20px;
}

.company-intro h2,
.company-section-heading h2,
.company-principles > h2 {
  margin: 12px 0 0;
  color: var(--company-ink);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, calc(1.035599vw + 24.116505px), 44px);
  line-height: 1.45;
}

.company-intro p,
.company-section-heading p,
.company-person__body > p,
.company-principles p {
  color: var(--muted);
  line-height: 1.95;
}

.company-intro p:first-child {
  margin-top: 0;
}

.company-team {
  padding-top: clamp(44px, calc(2.588997vw + 34.291262px), 84px);
}

.company-section-heading {
  margin-bottom: clamp(44px, calc(2.588997vw + 34.291262px), 84px);
}

.company-section-heading p {
  margin-top: 20px;
}

.company-person {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(40px, calc(4.530744vw + 23.009709px), 110px);
  align-items: start;
  padding-block: clamp(48px, calc(3.365696vw + 35.378641px), 100px);
  border-top: 1px solid var(--rule-strong);
}

.company-person:last-child {
  border-bottom: 1px solid var(--rule-strong);
}

.company-person__portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 24px 24px 4px 4px;
  background: var(--company-ink);
}

.company-person__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.company-person__portrait figcaption {
  display: grid;
  gap: 4px;
  padding: 22px 24px 24px;
  color: #fff;
}

.company-person__portrait figcaption strong {
  color: #d5b16a;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.company-person__portrait figcaption span {
  font-size: 0.75rem;
  font-weight: 700;
}

.company-person__role {
  margin: 0 0 12px;
  color: var(--company-accent) !important;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.company-person__body h3 {
  margin: 0;
  color: var(--company-ink);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, calc(1.294498vw + 27.145631px), 52px);
  line-height: 1.25;
}

.company-person__body h3 small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.company-person__lead {
  margin: 34px 0 14px;
  color: var(--company-ink) !important;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(19.2px, calc(0.517799vw + 17.258252px), 27.2px);
  font-weight: 700;
}

.company-capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
}

.company-capabilities section {
  padding: 24px;
  border-radius: 16px;
  background: var(--company-warm);
}

.company-capabilities h4 {
  margin: 0 0 12px;
  color: var(--company-accent);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.company-capabilities p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.company-ai-note {
  margin-top: 22px;
  font-size: 0.7rem;
}

.company-principles {
  padding-top: clamp(76px, calc(4.401294vw + 59.495146px), 144px);
}

.company-principles > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-block: 1px solid var(--rule-strong);
}

.company-principles article {
  padding: 30px;
}

.company-principles article + article {
  border-left: 1px solid var(--rule);
}

.company-principles article > span {
  color: var(--company-accent);
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.company-principles h3 {
  margin: 16px 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
}

.company-principles p {
  margin: 0;
  font-size: 0.78rem;
}

.notice-text {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.service-index .content-heading {
  margin-bottom: 0;
}

.service-index > article {
  display: grid;
  grid-template-columns: minmax(72px, 0.14fr) minmax(0, 1fr);
  gap: clamp(24px, calc(2.071197vw + 16.23301px), 56px);
  padding-block: clamp(38px, calc(1.941748vw + 30.718447px), 68px);
  border-bottom: 1px solid var(--rule);
}

.service-index ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-index li {
  padding-left: 14px;
  border-left: 2px solid var(--teal);
  font-size: 0.82rem;
  font-weight: 650;
}

.scope-note {
  margin-top: clamp(56px, calc(3.106796vw + 44.349515px), 104px);
  padding: clamp(30px, calc(1.682848vw + 23.68932px), 56px);
  border-block: 1px solid var(--rule-strong);
  background: var(--surface);
}

.scope-note p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.9;
}

.subpage-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: clamp(72px, calc(3.106796vw + 60.349515px), 120px);
  padding-block: clamp(38px, calc(1.941748vw + 30.718447px), 68px);
  border-block: 1px solid var(--rule-strong);
}

.subpage-cta p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(52px, calc(4.401294vw + 35.495146px), 120px);
  padding-top: clamp(64px, calc(3.624595vw + 50.407767px), 120px);
}

.contact-guidance > p {
  color: var(--muted);
  line-height: 1.9;
}

.contact-guidance ol {
  margin: 36px 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.contact-guidance li {
  display: flex;
  gap: 18px;
  padding-block: 16px;
  border-bottom: 1px solid var(--rule);
  font-weight: 650;
}

.contact-guidance li span {
  color: var(--teal);
  font-family: "Noto Serif JP", serif;
}

.contact-form-panel {
  padding: clamp(26px, calc(1.812298vw + 19.203883px), 54px);
  border: 1px solid var(--rule-strong);
  background: #fff;
}

.contact-form-panel > h2 {
  margin: 0 0 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form .required-label {
  color: var(--teal-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400;
  line-height: 1.65;
}

.contact-form .consent-check input {
  width: 20px;
  margin-top: 3px;
}

.contact-success {
  padding-block: 48px;
  text-align: center;
}

.contact-success h2 {
  font-family: "Noto Serif JP", serif;
}

.contact-success p {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .subpage-layout,
  .company-statement,
  .company-intro,
  .company-person,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .company-person__portrait {
    width: min(100%, 520px);
  }

  .company-capabilities {
    grid-template-columns: 1fr;
  }

  .filter-panel nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .subpage-breadcrumb,
  .lower-hero,
  .subpage-layout,
  .category-index,
  .company-statement,
  .company-facts,
  .company-profile-page,
  .service-index,
  .scope-note,
  .subpage-cta,
  .contact-layout {
    width: calc(100% - 32px);
    max-width: 343px;
  }

  .filter-panel nav {
    grid-template-columns: 1fr;
  }

  .archive-feature,
  .archive-list article,
  .category-index > article,
  .service-index > article,
  .company-statement,
  .subpage-cta {
    grid-template-columns: 1fr;
  }

  .company-person {
    grid-template-columns: 1fr;
  }

  .company-person__portrait {
    width: 100%;
    border-radius: 18px 18px 4px 4px;
  }

  .company-capabilities {
    grid-template-columns: 1fr;
  }

  .company-principles > div {
    grid-template-columns: 1fr;
  }

  .company-principles article {
    padding-inline: 0;
  }

  .company-principles article + article {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .company-facts dl div {
    grid-template-columns: 1fr;
  }

  .service-index ul {
    display: grid;
  }

  .subpage-cta {
    align-items: stretch;
  }

  .subpage-cta .primary-button {
    width: 100%;
  }

}

body {
  font-size: var(--type-body);
}

.site-header {
  min-height: clamp(60px, calc(0.517799vw + 58.058252px), 68px);
  padding-inline: var(--shell-inset);
}

.header-actions {
  gap: clamp(10px, calc(0.776699vw + 7.087379px), 22px);
}

.brand {
  font-size: clamp(16px, calc(0.20712vw + 15.223301px), 19.2px);
}

.masthead {
  padding-block: var(--space-page) var(--space-block);
}

.masthead h1 {
  font-size: var(--type-display);
}

.tagline,
.lower-hero > p,
.article-summary {
  font-size: var(--type-lead);
}

.lead-story {
  gap: var(--gap-layout);
}

.lead-content h2,
.article-header h1 {
  font-size: var(--type-article-title);
}

.observations,
.ranking-section,
.deep-dives,
.guide-section,
.latest-section {
  padding-top: var(--space-section);
}

.section-heading h2 {
  font-size: var(--type-section-title);
}

.article-row {
  grid-template-columns: var(--article-thumb-width) minmax(0, 1fr) auto;
  gap: var(--gap-component);
}

.article-row img {
  width: var(--article-thumb-width);
  height: var(--article-thumb-height);
}

.article-row h3,
.consultation h2,
.article-lead-box strong {
  font-size: var(--type-card-title);
}

.latest-list a {
  row-gap: clamp(8px, calc(1.035599vw + 4.116505px), 24px);
  column-gap: clamp(12px, calc(0.776699vw + 9.087379px), 24px);
}

.consultation {
  gap: var(--gap-layout);
  padding: var(--space-card);
}

.consultation p {
  font-size: var(--type-body);
}

.footer-inner nav {
  row-gap: clamp(0px, calc(1.165049vw - 4.368932px), 18px);
  column-gap: clamp(0px, calc(2.071197vw - 7.76699px), 32px);
}

.overlay {
  padding: clamp(12px, calc(0.776699vw + 9.087379px), 24px);
}

.article-breadcrumb {
  padding-top: clamp(12px, calc(1.035599vw + 8.116505px), 28px);
  font-size: var(--type-small);
}

.article-header {
  padding-block: var(--space-block);
}

.article-header h1 {
  max-width: 960px;
  margin: 18px 0 26px;
  letter-spacing: -0.055em;
  line-height: 1.3;
}

.article-summary {
  line-height: 1.9;
}

.article-meta {
  row-gap: clamp(4px, calc(0.2589vw + 3.029126px), 8px);
  column-gap: clamp(12px, calc(0.776699vw + 9.087379px), 24px);
  margin-top: clamp(20px, calc(0.38835vw + 18.543689px), 26px);
}

.article-author strong,
.article-author p,
.article-toc a {
  font-size: var(--type-small);
}

.article-hero > picture {
  margin-top: clamp(28px, calc(1.165049vw + 23.631068px), 46px);
}

.article-layout {
  gap: clamp(48px, calc(2.847896vw + 37.320388px), 92px);
}

.article-toc a {
  min-height: 44px;
}

.article-body > section {
  margin-bottom: clamp(72px, calc(1.553398vw + 66.174757px), 96px);
}

.article-lead-box {
  padding-block: clamp(22px, calc(1.294498vw + 17.145631px), 42px);
  padding-inline: clamp(18px, calc(1.553398vw + 12.174757px), 42px);
}

.article-definition div {
  gap: clamp(4px, calc(1.294498vw - 0.854369px), 24px);
}

.aoki-judgment {
  padding-block: clamp(24px, calc(1.553398vw + 18.174757px), 48px);
  padding-inline: clamp(20px, calc(1.812298vw + 13.203883px), 48px);
}

.aoki-judgment h3,
.article-consultation h2 {
  font-size: var(--type-card-title);
}

.source-list li {
  gap: clamp(0px, calc(1.553398vw - 5.825243px), 24px);
}

.article-correction dl div {
  gap: clamp(4px, calc(1.035599vw + 0.116505px), 20px);
}

.article-consultation {
  padding-block: clamp(24px, calc(0.906149vw + 20.601942px), 38px);
  padding-inline: clamp(20px, calc(1.165049vw + 15.631068px), 38px);
}

.lower-hero {
  padding-block: clamp(54px, calc(5.825243vw + 32.15534px), 144px)
    clamp(64px, calc(3.624595vw + 50.407767px), 120px);
}

.lower-hero h1 {
  font-size: var(--type-page-title);
}

.company-principles {
  padding-top: var(--space-page);
}

.company-person {
  gap: clamp(32px, calc(5.048544vw + 13.067961px), 110px);
  padding-block: clamp(48px, calc(3.365696vw + 35.378641px), 100px);
}

.scope-note {
  margin-top: clamp(48px, calc(3.624595vw + 34.407767px), 104px);
  padding-block: clamp(28px, calc(1.812298vw + 21.203883px), 56px);
  padding-inline: clamp(20px, calc(2.330097vw + 11.262136px), 56px);
}

.subpage-cta {
  margin-top: clamp(64px, calc(3.624595vw + 50.407767px), 120px);
}

.contact-form-panel {
  padding-block: clamp(24px, calc(1.941748vw + 16.718447px), 54px);
  padding-inline: clamp(18px, calc(2.330097vw + 9.262136px), 54px);
}

@media (max-width: 768px) {
  .article-row {
    grid-template-columns: var(--article-thumb-width) minmax(0, 1fr);
  }
}
