*, *::before, *::after {
  box-sizing: border-box;
}
html {
  color-scheme: light; background: var(--bg); scroll-padding-top: calc(var(--tm-header-height) + var(--space-4));
}
body {
  margin: 0; min-width: 320px; overflow-x: clip; color: var(--fg); background-color: var(--bg); background-image: linear-gradient(rgba(150, 150, 150, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(150, 150, 150, 0.04) 1px, transparent 1px); background-size: 30px 30px; font-family: 'Noto Sans JP', var(--font-body); font-size: var(--text-base); font-weight: 400; line-height: 1.8; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}
::selection {
  color: var(--fg); background: var(--tm-accent-soft);
}
img, svg, video, iframe {
  display: block; max-width: 100%;
}
button, input, select, textarea {
  color: inherit; font: inherit;
}
button, select {
  cursor: pointer;
}
a {
  color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em;
}
a:hover {
  text-decoration-thickness: 2px;
}
h1, h2, h3, p, ul, ol, figure, blockquote {
  margin-top: 0;
}
h1, h2, h3 {
  font-family: 'Noto Sans JP', var(--font-display); font-weight: 700; letter-spacing: 0; text-wrap: balance;
}
h1 {
  line-height: 1.32;
}
h2, h3 {
  line-height: 1.4;
}
p, li {
  overflow-wrap: anywhere;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}
.skip-link {
  position: fixed; top: var(--space-3); left: var(--space-3); z-index: 1000; padding: var(--space-3) var(--space-4); transform: translateY(-160%); border: 1px solid var(--fg); background: var(--surface); font-size: var(--text-sm); font-weight: 700;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: none; box-shadow: var(--focus-ring);
}
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.container {
  width: min(calc(100% - 40px), var(--container-max)); margin-inline: auto;
}
.site-header {
  position: sticky; top: 0; z-index: 100; min-height: var(--tm-header-height); border-bottom: 1px solid var(--border-soft); background: color-mix(in oklab, var(--bg) 91%, transparent); backdrop-filter: blur(14px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; min-height: var(--tm-header-height); gap: var(--space-6);
}
.site-name {
  display: inline-flex; align-items: center; min-height: 44px; gap: var(--space-3); flex: 0 1 auto; font-size: clamp(15px, 1.5vw, 19px); font-weight: 700; letter-spacing: 0.02em; line-height: 1.3; text-decoration: none; white-space: nowrap;
}
.site-name::before {
  width: 10px; height: 10px; flex: 0 0 auto; background: var(--accent); content: '';
}
.primary-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: clamp(var(--space-4), 2vw, var(--space-8));
}
.primary-nav__link, .primary-nav__cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em; line-height: 1.4; text-decoration: none;
}
.primary-nav__link {
  position: relative; color: var(--fg-2);
}
.primary-nav__link::after {
  position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: currentColor; content: ''; transition: transform var(--motion-base) var(--ease-standard);
}
.primary-nav__link:hover, .primary-nav__link[aria-current='page'] {
  color: var(--fg);
}
.primary-nav__link:hover::after, .primary-nav__link[aria-current='page']::after {
  transform: scaleX(1); transform-origin: left;
}
.primary-nav__cta {
  padding-inline: var(--space-5); border: 1px solid var(--fg); background: var(--surface); transition: transform var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard);
}
.primary-nav__cta:hover {
  transform: translate(-2px, -2px); background: var(--bg); box-shadow: var(--tm-shadow-hard); text-decoration: none;
}
.primary-nav__cta:active {
  transform: translate(1px, 1px); box-shadow: none;
}
.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 12px; border: 1px solid var(--fg); background: var(--surface);
}
.nav-toggle span {
  display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--fg); transition: transform var(--motion-base) var(--ease-standard), opacity var(--motion-fast) var(--ease-standard);
}
.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: var(--space-4) var(--space-6); border: 1px solid var(--fg); border-radius: var(--radius-sm); font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.02em; line-height: 1.3; text-align: center; text-decoration: none; transition: transform var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
}
.button:hover {
  transform: translate(-2px, -2px); box-shadow: var(--tm-shadow-hard); text-decoration: none;
}
.button:active {
  transform: translate(1px, 1px); box-shadow: none;
}
.button:disabled, .button[aria-disabled='true'] {
  cursor: not-allowed; opacity: 0.55; transform: none; box-shadow: none;
}
.button-primary {
  color: var(--surface); background: var(--fg);
}
.button-primary:hover {
  color: var(--surface); background: var(--fg-2);
}
.button-secondary {
  color: var(--fg); background: var(--surface);
}
.button-secondary:hover {
  color: var(--fg); background: var(--bg);
}
.button-light {
  color: var(--fg); border-color: var(--surface); background: var(--surface);
}
.button-light:hover {
  color: var(--fg); background: var(--bg);
}
.home-hero {
  position: relative; isolation: isolate; overflow: hidden; color: var(--surface); background: var(--fg);
}
.home-hero::before {
  position: absolute; z-index: -1; inset: 0; opacity: 0.75; background-image: linear-gradient(color-mix(in oklab, var(--surface) 7%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in oklab, var(--surface) 7%, transparent) 1px, transparent 1px); background-size: 30px 30px; content: '';
}
.home-hero__grid {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(var(--space-8), 6vw, 84px); align-items: center; min-height: min(780px, calc(100svh - var(--tm-header-height))); padding-block: clamp(64px, 8vw, 112px);
}
.hero-kicker {
  display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-6); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; line-height: 1.5;
}
.hero-kicker::before {
  width: 30px; height: 2px; flex: 0 0 auto; background: var(--accent); content: '';
}
.home-hero h1 {
  max-width: 8.5em; margin-bottom: 0; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.32;
}
.home-hero__copy {
  min-width: 0; padding-left: clamp(var(--space-5), 3vw, var(--space-12)); border-left: 1px solid color-mix(in oklab, var(--surface) 32%, transparent);
}
.hero-lead {
  max-width: 64ch; margin-bottom: var(--space-8); color: color-mix(in oklab, var(--surface) 84%, transparent); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.9;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6);
}
.home-hero .button-secondary {
  color: var(--surface); border-color: color-mix(in oklab, var(--surface) 62%, transparent); background: transparent;
}
.home-hero .button-secondary:hover {
  color: var(--fg); border-color: var(--surface); background: var(--surface);
}
.hero-capacity {
  margin: 0; color: color-mix(in oklab, var(--surface) 70%, transparent); font-size: var(--text-sm);
}
.metric-band {
  border-bottom: 1px solid var(--border-soft); background: var(--surface);
}
.metric-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.metric-card {
  min-width: 0; padding: clamp(var(--space-6), 3.5vw, var(--space-12)); border-left: 1px solid var(--border-soft);
}
.metric-card:last-child {
  border-right: 1px solid var(--border-soft);
}
.metric-card h2 {
  margin-bottom: var(--space-4); font-size: clamp(20px, 2vw, 27px);
}
.metric-card p {
  margin: 0; color: var(--fg-2); font-size: var(--text-sm); line-height: 1.75;
}
.section {
  padding-block: var(--section-y-desktop);
}
.section-alt {
  border-block: 1px solid var(--border-soft); background: color-mix(in oklab, var(--surface) 74%, transparent);
}
.section-heading {
  display: grid; grid-template-columns: minmax(72px, 0.24fr) minmax(0, 1fr); gap: var(--space-8); align-items: start; margin-bottom: clamp(var(--space-8), 5vw, 64px);
}
.section-index {
  margin: 0; padding-top: 0.45em; color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; line-height: 1;
}
.section-heading h2 {
  max-width: 24em; margin: 0; font-size: clamp(27px, 3.4vw, 46px); line-height: 1.35;
}
.section-heading p {
  max-width: 65ch; margin: var(--space-4) 0 0; color: var(--fg-2);
}
.principles-grid {
  display: grid; grid-template-columns: 1.15fr 0.95fr 0.9fr; border-top: 1px solid var(--fg); border-bottom: 1px solid var(--fg);
}
.principle {
  min-width: 0; padding: clamp(var(--space-6), 3vw, var(--space-12)); border-right: 1px solid var(--border-soft);
}
.principle:last-child {
  border-right: 0;
}
.principle__number {
  display: block; margin-bottom: clamp(var(--space-8), 5vw, 64px); color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
}
.principle h3 {
  margin-bottom: var(--space-4); font-size: clamp(20px, 2vw, 25px);
}
.principle p {
  margin: 0; color: var(--fg-2);
}
.statement-band {
  position: relative; overflow: hidden; padding-block: clamp(64px, 8vw, 112px); color: var(--surface); background: var(--fg);
}
.statement-band::after {
  position: absolute; right: -0.04em; bottom: -0.42em; color: color-mix(in oklab, var(--surface) 5%, transparent); font-family: var(--font-mono); font-size: clamp(160px, 28vw, 380px); font-weight: 700; line-height: 1; content: '02';
}
.statement-band p {
  position: relative; z-index: 1; max-width: 27em; margin: 0; font-size: clamp(27px, 4vw, 52px); font-weight: 600; line-height: 1.55; text-wrap: balance;
}
.digest-list {
  margin: 0 0 var(--space-8); padding: 0; list-style: none; border-top: 1px solid var(--fg);
}
.digest-list li {
  display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: var(--space-5); padding-block: var(--space-6); border-bottom: 1px solid var(--border-soft); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.75;
}
.digest-list li::before {
  color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; content: attr(data-index);
}
.media-layout, .service-layout, .contact-layout {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr); gap: clamp(var(--space-8), 6vw, 88px); align-items: start;
}
.video-placeholder {
  position: relative; display: grid; aspect-ratio: 16 / 9; place-items: center; overflow: hidden; border: 1px solid var(--fg); color: var(--surface); background-color: var(--fg); background-image: linear-gradient(color-mix(in oklab, var(--surface) 8%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in oklab, var(--surface) 8%, transparent) 1px, transparent 1px); background-size: 30px 30px;
}
.video-placeholder::before {
  width: 0; height: 0; margin-left: 8px; border-top: 18px solid transparent; border-bottom: 18px solid transparent; border-left: 28px solid var(--surface); content: '';
}
.video-ratio {
  position: absolute; top: var(--space-4); right: var(--space-4); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
}
.video-caption {
  margin-top: var(--space-3); color: var(--muted); font-size: 12px; line-height: 1.6;
}
.media-note {
  padding-top: var(--space-6); border-top: 1px solid var(--fg);
}
.media-note p {
  max-width: 34ch; color: var(--fg-2);
}
.service-copy > p {
  max-width: 62ch; color: var(--fg-2);
}
.plain-list, .notice-list, .practice-list, .issue-list, .topic-grid, .credentials-list {
  margin: 0; padding: 0; list-style: none;
}
.plain-list li, .issue-list li, .practice-list li {
  position: relative; padding: var(--space-4) 0 var(--space-4) var(--space-6); border-bottom: 1px solid var(--border-soft);
}
.plain-list li::before, .issue-list li::before, .practice-list li::before {
  position: absolute; top: 1.55em; left: 0; width: 8px; height: 1px; background: var(--fg); content: '';
}
.price-panel {
  border: 1px solid var(--fg); border-top: 4px solid var(--accent); background: var(--surface); box-shadow: var(--tm-shadow-hard);
}
.price-panel__main {
  padding: clamp(var(--space-6), 4vw, var(--space-12)); border-bottom: 1px solid var(--border-soft);
}
.price-panel__label {
  margin-bottom: var(--space-5); color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
}
.price-figure {
  margin: 0; font-family: var(--font-mono); font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.25;
}
.price-figure small {
  font-family: 'Noto Sans JP', var(--font-body); font-size: var(--text-sm); font-weight: 500;
}
.price-panel__conditions {
  padding: var(--space-6); color: var(--fg-2); font-size: var(--text-sm); line-height: 1.8;
}
.section-action {
  margin-top: var(--space-8);
}
.final-cta {
  color: var(--surface); background: var(--fg);
}
.final-cta__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-8); align-items: end; padding-block: clamp(64px, 8vw, 104px);
}
.final-cta h2 {
  margin-bottom: var(--space-4); font-size: clamp(31px, 4vw, 52px);
}
.final-cta p {
  max-width: 58ch; margin: 0; color: color-mix(in oklab, var(--surface) 78%, transparent);
}
.page-hero {
  border-bottom: 1px solid var(--border-soft); background: color-mix(in oklab, var(--surface) 76%, transparent);
}
.page-hero__inner {
  display: grid; grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr); gap: clamp(var(--space-8), 6vw, 88px); align-items: end; min-height: 390px; padding-block: clamp(64px, 8vw, 104px);
}
.breadcrumbs {
  margin: 0; color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; line-height: 1.7;
}
.breadcrumbs a {
  display: inline-flex; align-items: center; min-height: 44px; color: var(--fg-2);
}
.page-hero h1 {
  margin-bottom: var(--space-5); font-size: clamp(38px, 5vw, 68px);
}
.page-hero__lead {
  max-width: 61ch; margin: 0; color: var(--fg-2); font-size: clamp(16px, 1.5vw, 19px);
}
.audience-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--fg);
}
.audience-list li {
  min-width: 0; padding: clamp(var(--space-5), 3vw, var(--space-8)); border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); font-size: clamp(16px, 1.6vw, 19px);
}
.audience-list li:nth-child(2n) {
  border-right: 0;
}
.table-shell {
  overflow: hidden; border: 1px solid var(--fg); background: var(--surface); box-shadow: var(--tm-shadow-soft);
}
.data-table, .definition-table {
  width: 100%; border-collapse: collapse; table-layout: fixed;
}
.data-table th, .data-table td, .definition-table th, .definition-table td {
  padding: var(--space-5) var(--space-6); border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); vertical-align: top; text-align: left; overflow-wrap: anywhere;
}
.data-table th:last-child, .data-table td:last-child, .definition-table th:last-child, .definition-table td:last-child {
  border-right: 0;
}
.data-table tr:last-child td, .definition-table tr:last-child th, .definition-table tr:last-child td {
  border-bottom: 0;
}
.data-table thead th {
  color: var(--surface); background: var(--fg); font-size: var(--text-sm); font-weight: 700;
}
.definition-table thead th {
  color: var(--surface); background: var(--fg); font-size: var(--text-sm); font-weight: 700;
}
.data-table th:first-child, .data-table td:first-child {
  width: 31%;
}
.definition-table tbody th {
  width: 27%; background: var(--bg); font-weight: 600;
}
.price-line {
  margin-top: var(--space-6); font-size: clamp(22px, 3vw, 34px); font-weight: 700;
}
.difference-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--fg); border-bottom: 1px solid var(--fg);
}
.difference-item {
  min-width: 0; padding: clamp(var(--space-6), 3vw, var(--space-12)); border-right: 1px solid var(--border-soft);
}
.difference-item:last-child {
  border-right: 0;
}
.difference-item h3 {
  margin-bottom: var(--space-4); font-size: clamp(20px, 2vw, 25px);
}
.difference-item p {
  margin: 0; color: var(--fg-2);
}
.topic-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--fg);
}
.topic-grid li {
  padding: var(--space-5) var(--space-6); border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.topic-grid li:nth-child(2n) {
  border-right: 0;
}
.promise-panel, .publication-policy {
  padding: clamp(var(--space-6), 5vw, 64px); border: 1px solid var(--fg); border-top: 4px solid var(--accent); background: var(--surface); box-shadow: var(--tm-shadow-hard);
}
.promise-panel .notice-list {
  display: grid; gap: 0;
}
.notice-list li {
  padding: var(--space-4) 0; border-bottom: 1px solid var(--border-soft);
}
.notice-list li:last-child {
  border-bottom: 0;
}
.steps {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; counter-reset: step; border-top: 1px solid var(--fg); border-bottom: 1px solid var(--fg);
}
.steps li {
  min-width: 0; padding: var(--space-6) var(--space-5); border-right: 1px solid var(--border-soft); counter-increment: step;
}
.steps li:last-child {
  border-right: 0;
}
.steps li::before {
  display: block; margin-bottom: var(--space-8); color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; content: '0' counter(step);
}
.steps strong {
  display: block; margin-bottom: var(--space-3); font-size: 17px;
}
.steps span {
  color: var(--fg-2); font-size: var(--text-sm); line-height: 1.75;
}
.accordion-list {
  border-top: 1px solid var(--fg);
}
.accordion-item {
  border-bottom: 1px solid var(--border-soft);
}
.accordion-button {
  position: relative; display: grid; width: 100%; min-height: 68px; padding: var(--space-5) 60px var(--space-5) 0; border: 0; background: transparent; font-weight: 700; line-height: 1.65; text-align: left;
}
.accordion-button::after {
  position: absolute; top: 50%; right: var(--space-3); width: 28px; height: 28px; transform: translateY(-50%); border: 1px solid var(--fg); font-family: var(--font-mono); font-size: 20px; font-weight: 400; line-height: 25px; text-align: center; content: '+';
}
.accordion-button[aria-expanded='true']::after {
  content: '−';
}
.accordion-button:hover {
  background: var(--surface);
}
.accordion-panel {
  max-width: 70ch; padding: 0 60px var(--space-6) 0; color: var(--fg-2);
}
.result-feature {
  display: grid; grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr); gap: clamp(var(--space-8), 6vw, 88px); padding: clamp(var(--space-8), 6vw, 80px); color: var(--surface); background: var(--fg);
}
.result-feature__figure {
  margin: 0; font-family: var(--font-mono); font-size: clamp(54px, 7vw, 92px); font-weight: 700; line-height: 1;
}
.result-feature h2 {
  margin-bottom: var(--space-5); font-size: clamp(28px, 4vw, 46px);
}
.result-feature p {
  margin: 0; color: color-mix(in oklab, var(--surface) 80%, transparent);
}
.record-list {
  border-top: 1px solid var(--fg);
}
.record {
  display: grid; grid-template-columns: minmax(96px, 0.22fr) minmax(0, 1fr); gap: clamp(var(--space-6), 5vw, 72px); padding-block: clamp(var(--space-8), 6vw, 80px); border-bottom: 1px solid var(--fg);
}
.record__number {
  margin: 0; color: var(--muted); font-family: var(--font-mono); font-size: clamp(48px, 7vw, 86px); font-weight: 700; line-height: 1;
}
.record h3 {
  margin-bottom: var(--space-5); font-size: clamp(24px, 3vw, 36px);
}
.record__body > p {
  max-width: 70ch; color: var(--fg-2);
}
.record__body ul {
  max-width: 68ch; margin: var(--space-5) 0; padding-left: 1.3em;
}
.record__body li {
  margin-bottom: var(--space-2);
}
.transfer-line {
  max-width: 70ch; margin-top: var(--space-6) !important; padding: var(--space-5) var(--space-6); border-left: 4px solid var(--fg); color: var(--fg) !important; background: var(--surface); font-weight: 600;
}
.publication-policy h2 {
  margin-bottom: var(--space-4); font-size: clamp(22px, 2.5vw, 30px);
}
.publication-policy p {
  max-width: 72ch; margin: 0; color: var(--fg-2); font-size: var(--text-sm);
}
.profile-hero__inner {
  display: grid; grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr); gap: clamp(var(--space-8), 7vw, 96px); align-items: center; padding-block: clamp(64px, 9vw, 120px);
}
.portrait-placeholder {
  position: relative; display: flex; aspect-ratio: 4 / 5; align-items: flex-end; overflow: hidden; padding: var(--space-5); border: 1px solid var(--fg); background-color: var(--surface); background-image: linear-gradient(rgba(150, 150, 150, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(150, 150, 150, 0.09) 1px, transparent 1px); background-size: 30px 30px; box-shadow: var(--tm-shadow-hard);
}
.portrait-placeholder::before, .portrait-placeholder::after {
  position: absolute; border: 1px solid var(--border); content: '';
}
.portrait-placeholder::before {
  inset: 17% 18% 26%;
}
.portrait-placeholder::after {
  inset: 25% 27% 34%;
}
.portrait-placeholder span {
  position: relative; z-index: 1; font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em;
}
.profile-copy .breadcrumbs {
  margin-bottom: var(--space-8);
}
.profile-copy h1 {
  margin-bottom: var(--space-5); font-size: clamp(38px, 5vw, 64px);
}
.profile-name {
  margin-bottom: var(--space-6); font-size: clamp(18px, 2vw, 23px); font-weight: 700;
}
.profile-copy > p:not(.breadcrumbs):not(.profile-name) {
  max-width: 66ch; color: var(--fg-2);
}
.practice-list {
  border-top: 1px solid var(--fg);
}
.practice-list li {
  padding-block: var(--space-6); padding-left: var(--space-8); font-size: clamp(15px, 1.5vw, 18px);
}
.credentials-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--fg);
}
.credentials-list li {
  padding: var(--space-5) var(--space-6); border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.credentials-list li:nth-child(2n) {
  border-right: 0;
}
.trademark-note {
  margin-top: var(--space-4); color: var(--muted); font-size: 12px;
}
.contact-layout {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}
.contact-aside {
  position: sticky; top: calc(var(--tm-header-height) + var(--space-8));
}
.contact-aside h2 {
  margin-bottom: var(--space-6); font-size: clamp(24px, 3vw, 34px);
}
.issue-list {
  border-top: 1px solid var(--fg);
}
.issue-list li {
  padding-block: var(--space-5); padding-left: var(--space-6);
}
.form-panel {
  padding: clamp(var(--space-6), 5vw, 64px); border: 1px solid var(--fg); background: var(--surface); box-shadow: var(--tm-shadow-hard);
}
.form-panel h2 {
  margin-bottom: var(--space-8); font-size: clamp(24px, 3vw, 34px);
}
.field-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5);
}
.form-field {
  min-width: 0;
}
.form-field--wide {
  grid-column: 1 / -1;
}
.form-field label {
  display: flex; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-2); font-size: var(--text-sm); font-weight: 600;
}
.field-status {
  color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); transition: border-color var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard);
}
.form-field textarea {
  min-height: 180px; resize: vertical;
}
.form-field input:hover, .form-field select:hover, .form-field textarea:hover {
  border-color: var(--fg);
}
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
  border-color: var(--accent); box-shadow: var(--focus-ring);
}
.form-submit {
  margin-top: var(--space-6);
}
.form-notes {
  margin: var(--space-6) 0 0; padding: var(--space-5) 0 0 1.4em; border-top: 1px solid var(--border-soft); color: var(--muted); font-size: 12px; line-height: 1.8;
}
.legal-section + .legal-section {
  margin-top: var(--section-y-desktop);
}
.legal-section h1,
.legal-section > h2 {
  margin-bottom: clamp(var(--space-8), 5vw, 64px); font-size: clamp(34px, 5vw, 58px);
}
.policy-intro {
  max-width: 72ch; margin-bottom: var(--space-8); color: var(--fg-2);
}
.policy-list {
  border-top: 1px solid var(--fg);
}
.policy-item {
  display: grid; grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr); gap: var(--space-8); padding-block: var(--space-6); border-bottom: 1px solid var(--border-soft);
}
.policy-item h2,
.policy-item h3 {
  margin: 0; font-size: 18px;
}
.policy-item p {
  max-width: 72ch; margin: 0; color: var(--fg-2);
}
.policy-date {
  margin-top: var(--space-6); color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.04em;
}
.site-footer {
  border-top: 1px solid var(--border-soft); background: var(--surface);
}
.site-footer__inner {
  display: grid; grid-template-columns: 1.8fr 1fr auto; gap: var(--space-8); align-items: end; padding-block: var(--space-12);
}
.footer-operator, .footer-link, .footer-copy {
  margin: 0; color: var(--fg-2); font-size: 12px; line-height: 1.75;
}
.footer-link {
  min-height: 44px; display: inline-flex; align-items: center;
}
.footer-copy {
  font-family: var(--font-mono); letter-spacing: 0.02em; white-space: nowrap;
}
.reveal-pending {
  opacity: 0; transform: translateY(14px); transition: opacity 450ms var(--ease-standard), transform 450ms var(--ease-standard);
}
.reveal-pending.is-visible {
  opacity: 1; transform: translateY(0);
}

@media (max-width: 1080px) {.primary-nav {
  gap: var(--space-4);
}
.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.steps li {
  border-bottom: 1px solid var(--border-soft);
}
.steps li:nth-child(3n) {
  border-right: 0;
}
.steps li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

}

@media (max-width: 960px) {.site-header__inner {
  gap: var(--space-3);
}
.nav-toggle {
  display: block; flex: 0 0 auto;
}
.primary-nav {
  position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: var(--space-4) 20px var(--space-6); border-bottom: 1px solid var(--fg); background: var(--bg); box-shadow: var(--tm-shadow-hard);
}
.is-menu-open .primary-nav {
  display: grid;
}
.primary-nav__link, .primary-nav__cta {
  justify-content: flex-start; min-height: 50px; padding-inline: var(--space-3); border-bottom: 1px solid var(--border-soft);
}
.primary-nav__link::after {
  display: none;
}
.primary-nav__cta {
  justify-content: center; margin-top: var(--space-3); border: 1px solid var(--fg);
}
.home-hero__grid, .page-hero__inner, .profile-hero__inner {
  grid-template-columns: 1fr;
}
.home-hero__grid {
  min-height: auto;
}
.home-hero h1 {
  max-width: 11em;
}
.home-hero__copy {
  padding-top: var(--space-8); padding-left: 0; border-top: 1px solid color-mix(in oklab, var(--surface) 32%, transparent); border-left: 0;
}
.page-hero__inner {
  min-height: 340px; align-content: end;
}
.profile-hero__inner {
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
}
.principles-grid, .difference-grid {
  grid-template-columns: 1fr;
}
.principle, .difference-item {
  border-right: 0; border-bottom: 1px solid var(--border-soft);
}
.principle:last-child, .difference-item:last-child {
  border-bottom: 0;
}
.principle__number {
  margin-bottom: var(--space-6);
}
.media-layout, .service-layout, .contact-layout {
  grid-template-columns: 1fr;
}
.contact-aside {
  position: static;
}
.final-cta__inner {
  grid-template-columns: 1fr; align-items: start;
}
.result-feature {
  grid-template-columns: 1fr;
}
.result-feature__figure {
  font-size: 58px;
}
.site-footer__inner {
  grid-template-columns: 1fr 1fr;
}
.footer-copy {
  grid-column: 1 / -1;
}

}

@media (max-width: 720px) {.container {
  width: min(calc(100% - 24px), var(--container-max));
}
.site-header, .site-header__inner {
  min-height: 70px;
}
.site-name {
  font-size: 15px;
}
.section {
  padding-block: var(--section-y-phone);
}
.section-heading {
  grid-template-columns: 1fr; gap: var(--space-3); margin-bottom: var(--space-8);
}
.section-index {
  padding-top: 0;
}
.metric-grid, .audience-list, .topic-grid, .credentials-list, .field-grid {
  grid-template-columns: 1fr;
}
.metric-card {
  border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.metric-card:last-child {
  border-bottom: 0;
}
.audience-list li, .topic-grid li, .credentials-list li, .audience-list li:nth-child(2n), .topic-grid li:nth-child(2n), .credentials-list li:nth-child(2n) {
  border-right: 0;
}
.home-hero__grid {
  padding-block: 52px 64px;
}
.home-hero h1 {
  font-size: clamp(38px, 11vw, 48px);
}
.hero-lead {
  line-height: 1.82;
}
.hero-actions {
  display: grid;
}
.hero-actions .button, .section-action .button, .final-cta .button {
  width: 100%;
}
.digest-list li {
  grid-template-columns: 40px minmax(0, 1fr); gap: var(--space-3);
}
.statement-band p {
  font-size: clamp(25px, 8vw, 37px);
}
.page-hero__inner {
  min-height: 300px; padding-block: 48px;
}
.page-hero h1, .profile-copy h1 {
  font-size: clamp(34px, 10vw, 46px);
}
.table-shell {
  border-right: 0; border-left: 0; box-shadow: none;
}
.data-table, .data-table tbody, .data-table tr, .data-table td {
  display: block; width: 100%;
}
.data-table thead {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0);
}
.data-table tr {
  border-bottom: 1px solid var(--fg);
}
.data-table tr:last-child {
  border-bottom: 0;
}
.data-table td, .data-table td:first-child {
  width: 100%; padding: var(--space-4); border-right: 0;
}
.data-table td::before {
  display: block; margin-bottom: var(--space-2); color: var(--muted); font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; content: attr(data-label);
}
.steps {
  grid-template-columns: 1fr;
}
.steps li, .steps li:nth-child(3n), .steps li:nth-last-child(-n + 2) {
  display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: var(--space-3); padding: var(--space-5) 0; border-right: 0; border-bottom: 1px solid var(--border-soft);
}
.steps li:last-child {
  border-bottom: 0;
}
.steps li::before {
  grid-row: 1 / 3; margin: 0; padding-top: 0.45em;
}
.record {
  grid-template-columns: 1fr; gap: var(--space-5);
}
.record__number {
  font-size: 42px;
}
.profile-hero__inner {
  grid-template-columns: 1fr;
}
.portrait-placeholder {
  max-width: 420px;
}
.form-panel {
  margin-inline: -12px; border-right: 0; border-left: 0; box-shadow: none;
}
.form-field--wide {
  grid-column: auto;
}
.policy-item {
  grid-template-columns: 1fr; gap: var(--space-3);
}
.site-footer__inner {
  grid-template-columns: 1fr; gap: var(--space-4);
}
.footer-copy {
  grid-column: auto; white-space: normal;
}

}

@media (max-width: 430px) {.site-name::before {
  width: 8px; height: 8px;
}

}

/* Homepage editorial refresh — photographs, asymmetric rhythm, fewer template-like panels */
.page-home {
  --home-paper: #f1eee7;
  --home-paper-deep: #e5dfd4;
}

.page-home .home-hero {
  color: var(--fg);
  background: var(--home-paper);
}

.page-home .home-hero::before {
  display: none;
}

.page-home .home-hero__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5.2vw, 76px);
  align-items: center;
  min-height: min(760px, calc(100svh - var(--tm-header-height)));
  padding-block: clamp(52px, 6.5vw, 88px) clamp(40px, 5vw, 68px);
}

.page-home .home-hero__content {
  position: relative;
  z-index: 1;
}

.page-home .hero-kicker {
  color: var(--fg-2);
}

.page-home .home-hero h1 {
  max-width: 9em;
  margin-bottom: clamp(24px, 3vw, 38px);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.17;
  letter-spacing: -0.055em;
}

.page-home .hero-lead {
  max-width: 39em;
  margin-bottom: var(--space-8);
  color: var(--fg-2);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.95;
}

.page-home .hero-actions {
  margin-bottom: var(--space-5);
}

.page-home .hero-capacity {
  max-width: 46em;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.page-home .hero-photo {
  position: relative;
  margin: 0;
}

.page-home .hero-photo::before {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38%;
  height: 31%;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  content: '';
  pointer-events: none;
}

.page-home .hero-photo img {
  display: block;
  width: 100%;
  height: clamp(470px, 52vw, 650px);
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.82) contrast(1.02);
}

.page-home .hero-photo figcaption {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-5);
  padding: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.page-home .hero-photo figcaption span {
  color: var(--fg);
  font-size: 13px;
  font-weight: 700;
}

.page-home .hero-proof {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
  padding-block: 22px;
  border-top: 1px solid color-mix(in oklab, var(--fg) 32%, transparent);
}

.page-home .hero-proof p {
  margin: 0;
}

.page-home .hero-proof__label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .hero-proof > p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.page-home .hero-proof span {
  color: var(--accent);
}

.page-home .metric-band {
  border-top: 1px solid var(--fg);
  border-bottom-color: var(--fg);
}

.page-home .metric-grid {
  grid-template-columns: 1.2fr 1fr 0.84fr;
}

.page-home .metric-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(30px, 4vw, 54px) clamp(24px, 3.4vw, 46px);
}

.page-home .metric-card--lead {
  background: var(--fg);
}

.page-home .metric-card--lead h2,
.page-home .metric-card--lead p {
  color: var(--surface);
}

.page-home .metric-card__figure {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  margin: 0 0 auto;
  padding-bottom: clamp(36px, 5vw, 72px);
  color: var(--fg);
  font-family: var(--font-mono);
}

.page-home .metric-card__figure strong {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.page-home .metric-card__figure span {
  max-width: 8em;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.page-home .metric-card--lead .metric-card__figure,
.page-home .metric-card--lead .metric-card__figure span {
  color: var(--surface);
}

.page-home .metric-card__figure--words strong {
  font-family: 'Noto Sans JP', var(--font-body);
  font-size: clamp(38px, 4vw, 56px);
}

.page-home .metric-card h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
}

.page-home .metric-card p:last-child {
  font-size: 12px;
}

.page-home .section-heading {
  grid-template-columns: minmax(130px, 0.24fr) minmax(0, 1fr);
}

.page-home .section-label {
  margin: 0;
  padding-top: 0.62em;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .section-label::before {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 10px 0.25em 0;
  background: var(--accent);
  content: '';
}

.page-home .principles-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
}

.page-home .practice-photo {
  margin: 0;
}

.page-home .practice-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
}

.page-home .practice-photo figcaption {
  max-width: 34em;
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.page-home .principles-list {
  border-top: 1px solid var(--fg);
}

.page-home .principle {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(20px, 3vw, 44px);
  padding: clamp(26px, 3.5vw, 46px) 0;
  border-right: 0;
  border-bottom: 1px solid var(--border-soft);
}

.page-home .principle:last-child {
  border-bottom: 1px solid var(--fg);
}

.page-home .principle__eyebrow {
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.page-home .principle h3 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.45;
}

.page-home .principle > p:last-child {
  font-size: 14px;
  line-height: 1.9;
}

.page-home .statement-band {
  padding-block: clamp(64px, 8vw, 104px);
  background: #22211f;
}

.page-home .statement-band::after {
  display: none;
}

.page-home .statement-band__inner {
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1.25fr) minmax(180px, 0.38fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.page-home .statement-band__label {
  margin: 0;
  color: color-mix(in oklab, var(--surface) 58%, transparent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.page-home .statement-band blockquote {
  max-width: 19em;
  margin: 0;
  font-size: clamp(30px, 4.1vw, 54px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.5;
}

.page-home .statement-band__note {
  margin: 0;
  padding-top: 8px;
  border-top: 2px solid var(--accent);
  color: color-mix(in oklab, var(--surface) 72%, transparent);
  font-size: 12px;
  line-height: 1.8;
}

.page-home .media-note {
  min-height: 100%;
  padding-top: var(--space-5);
}

.page-home .media-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 960px) {
  .page-home .home-hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-home .home-hero__content {
    max-width: 720px;
  }

  .page-home .hero-photo img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .page-home .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .metric-card:last-child {
    grid-column: 1 / -1;
  }

  .page-home .principles-editorial {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: var(--space-8);
  }

  .page-home .statement-band__inner {
    grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  }

  .page-home .statement-band__note {
    grid-column: 2;
    max-width: 34em;
  }
}

@media (max-width: 720px) {
  .page-home .home-hero__layout {
    gap: 34px;
    padding-block: 44px 30px;
  }

  .page-home .home-hero h1 {
    max-width: none;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.2;
  }

  .page-home .hero-photo::before {
    top: -8px;
    right: -4px;
  }

  .page-home .hero-photo img {
    aspect-ratio: 4 / 3;
    object-position: 59% center;
  }

  .page-home .hero-photo figcaption {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-home .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-home .hero-proof > p:last-child {
    gap: 6px 9px;
    font-size: 12px;
  }

  .page-home .metric-grid {
    grid-template-columns: 1fr;
  }

  .page-home .metric-card,
  .page-home .metric-card:last-child {
    grid-column: auto;
    min-height: 270px;
  }

  .page-home .metric-card__figure {
    padding-bottom: 42px;
  }

  .page-home .section-heading {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .page-home .section-label {
    padding-top: 0;
  }

  .page-home .principles-editorial {
    grid-template-columns: 1fr;
  }

  .page-home .practice-photo img {
    aspect-ratio: 5 / 4;
    object-position: center 62%;
  }

  .page-home .principle {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .page-home .principle__eyebrow {
    grid-row: auto;
  }

  .page-home .statement-band__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .page-home .statement-band__note {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
.site-name {
  gap: var(--space-2); font-size: 14px;
}
.hero-kicker {
  align-items: flex-start;
}
.hero-kicker::before {
  margin-top: 0.65em;
}
.definition-table, .definition-table tbody, .definition-table tr, .definition-table th, .definition-table td {
  display: block; width: 100%;
}
.definition-table thead {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0);
}
.definition-table th, .definition-table td {
  padding: var(--space-4); border-right: 0;
}
.definition-table th {
  border-bottom: 0;
}
.definition-table td {
  border-bottom: 1px solid var(--fg);
}
.definition-table tr:last-child td {
  border-bottom: 0;
}
.accordion-button {
  padding-right: 48px;
}
.accordion-panel {
  padding-right: 0;
}

}

@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
  scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
}
.reveal-pending {
  opacity: 1; transform: none;
}

}

/* Profile page — real portrait and facility photography */
.page-profile {
  --profile-paper: #f1eee7;
}

.page-profile .page-hero {
  background: var(--profile-paper);
}

.page-profile .profile-hero__inner {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 104px);
  padding-block: clamp(56px, 8vw, 108px);
}

.page-profile .profile-portrait {
  position: relative;
  margin: 0;
}

.page-profile .profile-portrait::before {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -10px;
  width: 34%;
  height: 28%;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  content: '';
  pointer-events: none;
}

.page-profile .profile-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 57% center;
}

.page-profile .profile-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-3);
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.page-profile .profile-portrait figcaption span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.page-profile .profile-copy .breadcrumbs {
  margin-bottom: clamp(var(--space-8), 5vw, 60px);
}

.page-profile .profile-copy h1 {
  margin-bottom: var(--space-8);
  font-size: clamp(42px, 5.2vw, 68px);
  letter-spacing: -0.045em;
}

.page-profile .profile-name {
  padding-top: var(--space-5);
  border-top: 1px solid var(--fg);
  line-height: 1.65;
}

.page-profile .profile-name strong {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.035em;
}

.page-profile .profile-facility {
  padding-block: clamp(28px, 4vw, 52px) clamp(64px, 8vw, 108px);
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
}

.page-profile .profile-facility__figure {
  margin: 0;
}

.page-profile .profile-facility__figure > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 68%;
}

.page-profile .profile-facility__figure figcaption {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: baseline;
  padding-top: var(--space-4);
  border-top: 3px solid var(--fg);
}

.page-profile .profile-facility__figure figcaption span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-profile .profile-facility__figure figcaption p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 600;
}

.page-profile .section-label {
  margin: 0;
  padding-top: 0.62em;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-profile .section-label::before {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 10px 0.25em 0;
  background: var(--accent);
  content: '';
}

@media (max-width: 960px) {
  .page-profile .profile-hero__inner {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: var(--space-8);
  }
}

@media (max-width: 720px) {
  .page-profile .profile-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 44px 58px;
  }

  .page-profile .profile-portrait {
    max-width: 430px;
  }

  .page-profile .profile-portrait img {
    aspect-ratio: 5 / 4;
    object-position: 58% 48%;
  }

  .page-profile .profile-copy .breadcrumbs {
    margin-bottom: var(--space-6);
  }

  .page-profile .profile-facility__figure > img {
    aspect-ratio: 5 / 4;
    object-position: center 67%;
  }

  .page-profile .profile-facility__figure figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .page-profile .section-heading {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .page-profile .section-label {
    padding-top: 0;
  }
}

/* ===== 参謀室Astroキット v0.1.1 上書き（2026-08-18 Codex/axe color-contrast 指摘対応・原本 site.css は無改変） =====
   原本では .home-hero .button-secondary が白文字＋透明背景（暗い背景前提）だが、.page-home のヒーローは近白背景のため
   副CTA「顧問サービスの内容」が 1.15:1 でほぼ見えなかった。ヒーロー内の副CTAを暗文字＋細枠に戻し、
   小さい補足文（hero-capacity・写真キャプション）は --muted(#71717a) → --fg-2(#52525b) にして 4.5:1 以上を確保する。 */
.page-home .home-hero .button-secondary {
  color: var(--fg); border-color: var(--border); background: transparent;
}
.page-home .home-hero .button-secondary:hover {
  color: var(--fg); border-color: var(--fg); background: var(--surface);
}
.page-home .hero-capacity,
.page-home .hero-photo figcaption {
  color: var(--fg-2);
}
/* 同上（2回目のCodex/axe指摘）: --muted(#71717a) の極小文字（10〜11px）が #f1eee7 系の背景で 4.17:1。ラベル・パンくず・肩書は --fg-2 に寄せる */
.page-home .hero-proof__label,
.page-profile .profile-portrait figcaption span,
.page-profile .profile-copy .breadcrumbs,
.page-profile .profile-copy .breadcrumbs a {
  color: var(--fg-2);
}

/* News / field journal — shared production-site styling */
.page-news {
  --news-paper: #efeeeb;
  --news-ink: #0b0c10;
  --news-accent: #31dcc6;
}

.page-news .news-hero,
.page-news .news-post__hero {
  color: var(--news-paper);
  background: var(--news-ink);
}

.page-news .page-hero__inner { min-height: 560px; }

.page-news .news-eyebrow {
  margin-bottom: var(--space-5);
  color: var(--news-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
}

.page-news .news-hero h1,
.page-news .news-post__hero h1 {
  max-width: 11em;
  font-family: 'Iowan Old Style', Baskerville, 'Times New Roman', 'Yu Mincho', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .95;
}

.page-news .news-hero .breadcrumbs,
.page-news .news-hero .breadcrumbs a,
.page-news .news-post__hero .breadcrumbs,
.page-news .news-post__hero .breadcrumbs a { color: #c9c7c1; }
.page-news .news-hero .page-hero__lead { color: #c9c7c1; }

.news-list { border-top: 1px solid var(--fg); }

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 110px 130px minmax(0, 1fr) 34px;
  gap: var(--space-5);
  align-items: baseline;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border-soft);
  isolation: isolate;
}

.news-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #e4e0d8;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
  content: '';
}

.news-card:hover::before,
.news-card:focus-visible::before { transform: scaleY(1); }

.news-card__index,
.news-card time,
.news-card__category {
  color: var(--fg-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
}

.news-card__category { color: #6b4934; }
.news-card h3 { margin: 0; font-size: clamp(21px, 2.4vw, 34px); letter-spacing: -.03em; }
.news-card p { grid-column: 4; max-width: 48em; margin: var(--space-3) 0 0; color: var(--fg-2); }
.news-card__arrow { grid-column: 5; grid-row: 1 / 3; align-self: center; font-size: 22px; }

.news-post__hero time { display: block; margin-top: var(--space-6); color: #c9c7c1; font-family: var(--font-mono); font-size: 11px; }
.news-post__layout { display: grid; grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 120px); }
.news-post__label { margin: 0; color: var(--fg-2); font-family: var(--font-mono); font-size: 10px; line-height: 1.8; }
.news-post .prose { max-width: 720px; font-size: clamp(16px, 1.4vw, 18px); line-height: 2.1; }
.news-post .prose > :first-child { margin-top: 0; font-size: clamp(21px, 2.2vw, 30px); font-weight: 600; line-height: 1.75; }
.news-post .prose p + p { margin-top: 2em; }

@media (max-width: 720px) {
  .page-news .page-hero__inner { min-height: 470px; }
  .page-news .news-hero h1,
  .page-news .news-post__hero h1 { font-size: 48px; }
  .news-card { grid-template-columns: 36px minmax(0, 1fr) 24px; gap: 8px 12px; }
  .news-card time,
  .news-card__category,
  .news-card h3,
  .news-card p { grid-column: 2; }
  .news-card__arrow { grid-column: 3; grid-row: 1 / 6; }
  .news-post__layout { grid-template-columns: 1fr; gap: 28px; }
}
