:root {
  --navy-950: #06142F;
  --navy-900: #071A3A;
  --navy-800: #0B2552;
  --navy-700: #113A7A;
  --blue-600: #0F5FD2;
  --blue-500: #2478F2;
  --blue-100: #EAF2FF;
  --cyan-500: #19B7CF;
  --teal-500: #1A9A9B;
  --ink: #172033;
  --text: #283447;
  --muted: #66758C;
  --line: #D9E2EF;
  --line-soft: rgba(217, 226, 239, .68);
  --surface: #FFFFFF;
  --surface-soft: #F6F8FC;
  --surface-blue: #F1F6FF;
  --warning: #B26B1F;
  --success: #147A57;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-card: 0 18px 46px rgba(7, 26, 58, .10);
  --shadow-strong: 0 30px 90px rgba(7, 26, 58, .16);
  --container: 1168px;
  --wide: 1280px;
  --ease: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.75;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--blue-100); color: var(--navy-900); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(calc(100% - 40px), var(--wide));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}
.skip-link:focus { left: 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,226,239,.72);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img { width: 104px; display: block; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
}
.nav-list a {
  transition: color var(--ease), opacity var(--ease);
  white-space: nowrap;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--blue-600); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid var(--navy-800);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.header-button:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(7,26,58,.10); }
.header-button.primary { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.header-button svg { width: 16px; height: 16px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-900);
  position: relative;
}
.menu-button span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease), top var(--ease);
}
.menu-button span:nth-child(1) { top: 14px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 28px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: .04em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}
.button::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, #094CA8 0%, var(--navy-900) 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(15,95,210,.22);
}
.button-primary:hover { box-shadow: 0 22px 56px rgba(15,95,210,.28); }
.button-outline {
  color: var(--navy-900);
  background: rgba(255,255,255,.72);
  border-color: #AFC1D8;
}
.button-outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.button-light {
  background: #fff;
  color: var(--navy-900);
}

/* Shared sections */
.section { padding: 104px 0; }
.section-tight { padding: 76px 0; }
.section-muted { background: var(--surface-soft); }
.section-blue {
  background:
    radial-gradient(circle at 12% 16%, rgba(36,120,242,.13), transparent 32%),
    radial-gradient(circle at 86% 32%, rgba(25,183,207,.12), transparent 28%),
    #F7FAFF;
}
.section-navy {
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(36,120,242,.33), transparent 30%),
    radial-gradient(circle at 92% 24%, rgba(25,183,207,.20), transparent 24%),
    var(--navy-950);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, .6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-navy .eyebrow { color: #7AD8FF; }
.section-title {
  margin: 0;
  color: var(--navy-900);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.22;
  letter-spacing: -.02em;
}
.section-navy .section-title { color: #fff; }
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}
.section-navy .section-lead { color: rgba(255,255,255,.72); }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 86px;
  background:
    radial-gradient(circle at 84% 22%, rgba(36,120,242,.14), transparent 28%),
    radial-gradient(circle at 52% 94%, rgba(25,183,207,.10), transparent 22%),
    linear-gradient(180deg, #fff 0%, #F8FAFE 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,26,58,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,26,58,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, .83fr) minmax(520px, 1.17fr);
  gap: 54px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 0 0 4px rgba(36,120,242,.12);
}
.hero h1 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 1.16;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.hero-lead {
  margin: 28px 0 0;
  max-width: 670px;
  color: #42526B;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2.05;
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 510px;
  margin-top: 34px;
}
.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
  max-width: 650px;
}
.mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 16px 14px;
  border: 1px solid rgba(217,226,239,.92);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 36px rgba(7,26,58,.07);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}
.mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-600);
  background: var(--blue-100);
}
.mini-icon svg { width: 21px; height: 21px; }

/* Hero visual */
.decision-visual {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}
.decision-visual::before {
  content: "";
  position: absolute;
  inset: 42px 0 38px 26%;
  z-index: -2;
  border-radius: 42px;
  background:
    radial-gradient(circle at 66% 46%, rgba(36,120,242,.16), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(241,246,255,.78));
  border: 1px solid rgba(217,226,239,.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
}
.decision-visual::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 146px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  z-index: -1;
  background:
    radial-gradient(circle, transparent 0 33%, rgba(36,120,242,.12) 34% 35%, transparent 36% 51%, rgba(36,120,242,.10) 52% 53%, transparent 54% 68%, rgba(36,120,242,.08) 69% 70%, transparent 71%),
    repeating-conic-gradient(from -12deg, rgba(36,120,242,.22) 0 2deg, transparent 2deg 11deg);
  mask-image: radial-gradient(circle, #000 0 68%, transparent 72%);
  opacity: .8;
}
.layer-stack {
  width: 62%;
  min-width: 430px;
  display: grid;
  gap: 13px;
  padding-top: 18px;
}
.layer-row {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 156px minmax(220px, 1fr);
  border: 1px solid rgba(185,200,222,.78);
  border-radius: 12px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 18px 44px rgba(7,26,58,.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-2.2deg);
}
.layer-row:nth-child(2) { transform: translateX(14px) perspective(1200px) rotateY(-2.2deg); }
.layer-row:nth-child(3) { transform: translateX(2px) perspective(1200px) rotateY(-2.2deg); }
.layer-row:nth-child(4) { transform: translateX(18px) perspective(1200px) rotateY(-2.2deg); }
.layer-row:nth-child(5) { transform: translateX(8px) perspective(1200px) rotateY(-2.2deg); }
.layer-row:nth-child(6) { transform: translateX(0) perspective(1200px) rotateY(-2.2deg); }
.layer-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), #0E4E9B);
}
.layer-row:nth-child(2) .layer-label { background: linear-gradient(135deg, #0E4E9B, #106AAE); }
.layer-row:nth-child(4) .layer-label { background: linear-gradient(135deg, #0A6F85, #22A1A5); }
.layer-row:nth-child(5) .layer-label { background: linear-gradient(135deg, #0E4E9B, #0F5FD2); }
.layer-row:nth-child(6) .layer-label { background: linear-gradient(135deg, #06142F, #0B2552); }
.layer-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.14);
  flex: 0 0 auto;
}
.layer-icon svg { width: 22px; height: 22px; }
.layer-title-ja { display: block; font-weight: 900; font-size: 13px; line-height: 1.28; }
.layer-title-en { display: block; opacity: .86; font-weight: 700; font-size: 11px; line-height: 1.2; margin-top: 2px; }
.layer-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 14px;
  align-items: center;
  padding: 13px 15px 13px 18px;
  color: #29405F;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.65;
}
.layer-body::after {
  content: "";
  position: absolute;
  right: 86px;
  top: 50%;
  width: min(220px, 30vw);
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(15,95,210,.40), rgba(15,95,210,.0));
  pointer-events: none;
}
.micro-chart {
  height: 50px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(234,242,255,.78);
  border: 1px solid rgba(217,226,239,.75);
}
.micro-chart span { width: 8px; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #73B8FF, #0F5FD2); opacity: .86; }
.micro-chart span:nth-child(1) { height: 18px; }
.micro-chart span:nth-child(2) { height: 26px; }
.micro-chart span:nth-child(3) { height: 34px; }
.micro-chart span:nth-child(4) { height: 22px; }
.micro-chart span:nth-child(5) { height: 42px; }
.micro-flow, .micro-cubes, .micro-network, .micro-check {
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(234,242,255,.78);
  border: 1px solid rgba(217,226,239,.75);
}
.micro-flow svg, .micro-cubes svg, .micro-network svg, .micro-check svg { width: 52px; height: 42px; }
.decision-lines {
  position: absolute;
  left: 51%;
  top: 78px;
  width: 238px;
  height: 496px;
  pointer-events: none;
  overflow: visible;
}
.decision-lines path { fill: none; stroke: rgba(15,95,210,.45); stroke-width: 1.7; }
.decision-lines circle { fill: #0F5FD2; stroke: #fff; stroke-width: 2; }
.decision-hub {
  position: absolute;
  right: 88px;
  top: 256px;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, var(--navy-900), #0F4FA2);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  box-shadow: 0 24px 60px rgba(7,26,58,.26);
}
.decision-hub::before {
  content: "";
  position: absolute;
  inset: -18px;
  clip-path: inherit;
  background: rgba(36,120,242,.13);
  z-index: -1;
}
.hub-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 6px;
}
.hub-title { display: block; font-weight: 950; font-size: 18px; line-height: 1.25; }
.hub-sub { display: block; font-size: 11px; opacity: .85; margin-top: 2px; line-height: 1.2; }
.outcome-list {
  position: absolute;
  right: 0;
  top: 202px;
  display: grid;
  gap: 10px;
  width: 176px;
  transform: translateX(16px);
}
.outcome {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(217,226,239,.86);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(7,26,58,.06);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}
.outcome svg { width: 24px; height: 24px; color: var(--blue-600); }

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .82fr);
  gap: 52px;
  align-items: start;
}
.issue-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.issue-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 14px 36px rgba(7,26,58,.06);
  font-weight: 750;
  color: var(--navy-900);
}
.issue-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}
.service-no { color: var(--blue-600); font-size: 13px; font-weight: 950; letter-spacing: .12em; }
.service-card h3 {
  margin: 16px 0 14px;
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: -.02em;
}
.service-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.service-card ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.service-card li {
  display: flex;
  gap: 8px;
  color: #364761;
  font-size: 14px;
  font-weight: 750;
}
.service-card li::before { content: ""; width: 6px; height: 6px; margin-top: .78em; border-radius: 50%; background: var(--blue-600); flex: 0 0 auto; }
.service-card .text-link { margin-top: auto; padding-top: 24px; }
.text-link { display: inline-flex; color: var(--blue-600); font-weight: 900; }
.text-link::after { content: "→"; margin-left: 8px; transition: transform var(--ease); }
.text-link:hover::after { transform: translateX(3px); }

/* Menu matrix */
.menu-matrix {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.menu-item {
  min-width: 160px;
  min-height: 210px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217,226,239,.76);
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(7,26,58,.06);
}
.menu-item span { display: block; color: var(--blue-600); font-size: 12px; font-weight: 950; letter-spacing: .12em; margin-bottom: 10px; }
.menu-item h3 { margin: 0 0 10px; color: var(--navy-900); font-size: 17px; line-height: 1.45; }
.menu-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

/* Capabilities */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.capability {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  min-height: 222px;
}
.capability strong { display: block; color: #fff; font-size: 18px; line-height: 1.45; margin-bottom: 12px; }
.capability p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.85; }
.capability .cap-no { display: block; color: #7AD8FF; font-size: 12px; font-weight: 950; letter-spacing: .16em; margin-bottom: 12px; }

/* Cases */
.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.case-card {
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.case-label { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: var(--blue-100); color: var(--blue-600); font-size: 11px; font-weight: 950; letter-spacing: .08em; }
.case-card h3 { margin: 18px 0 12px; color: var(--navy-900); font-size: 21px; line-height: 1.45; }
.case-card p { margin: 0; color: var(--muted); font-size: 14px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--line); color: #40516B; font-size: 12px; font-weight: 750; }

/* Papyone */
.venture-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.venture-badge { display: inline-flex; margin-bottom: 12px; padding: 4px 10px; border-radius: 999px; background: #ECF8F1; color: var(--success); font-size: 12px; font-weight: 950; letter-spacing: .1em; }
.venture-panel h3 { margin: 0 0 14px; color: var(--navy-900); font-size: 30px; }
.venture-panel p { margin: 0; color: var(--muted); }
.phone-frame {
  width: 250px;
  margin-inline: auto;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy-900), #345F9B);
  box-shadow: 0 22px 54px rgba(7,26,58,.22);
}
.phone-screen {
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #FAFFF9, #F1FAF4);
  padding: 18px;
  color: #244433;
}
.phone-head { display: flex; justify-content: space-between; align-items: center; font-weight: 950; margin-bottom: 18px; }
.phone-card { background: #fff; border: 1px solid rgba(64,145,98,.18); border-radius: 18px; padding: 14px; margin-bottom: 12px; box-shadow: 0 12px 28px rgba(20,84,52,.08); }
.phone-card strong { display: block; margin-bottom: 8px; }
.phone-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 1px solid rgba(64,145,98,.12); font-size: 13px; }
.phone-row:first-of-type { border-top: 0; }

/* CTA */
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(36,120,242,.36), transparent 32%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  box-shadow: var(--shadow-strong);
}
.cta-box h2 { margin: 0; font-size: clamp(24px, 3vw, 36px); line-height: 1.35; }
.cta-box p { margin: 12px 0 0; color: rgba(255,255,255,.74); }

/* Sub pages */
.page-hero {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 86% 10%, rgba(36,120,242,.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, #F7FAFF 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-title { margin: 0; color: var(--navy-900); font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif; font-size: clamp(38px, 6vw, 64px); line-height: 1.18; letter-spacing: -.05em; }
.page-lead { max-width: 850px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 2; }
.detail-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 42px; align-items: start; }
.side-nav { position: sticky; top: 104px; display: grid; gap: 8px; padding: 14px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line-soft); box-shadow: 0 14px 34px rgba(7,26,58,.06); }
.side-nav a { padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 850; color: var(--navy-900); }
.side-nav a:hover { background: var(--blue-100); color: var(--blue-600); }
.detail-section { padding: 34px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line-soft); box-shadow: 0 14px 34px rgba(7,26,58,.06); margin-bottom: 22px; }
.detail-section h2 { margin: 0 0 18px; color: var(--navy-900); font-size: 30px; line-height: 1.38; }
.detail-section h3 { margin: 24px 0 10px; color: var(--navy-900); font-size: 20px; }
.detail-section p { margin: 0 0 14px; color: var(--muted); }
.detail-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.detail-list li { display: flex; gap: 10px; }
.detail-list li::before { content: ""; width: 7px; height: 7px; margin-top: .78em; border-radius: 50%; background: var(--blue-600); flex: 0 0 auto; }
.detail-section p strong { color: var(--navy-900); font-weight: 850; }
.map-embed { margin-top: 22px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-soft); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }
.legal-content { max-width: 860px; margin-inline: auto; }
.legal-content .detail-section h3:first-child { margin-top: 0; }
.legal-content .detail-section a { color: var(--blue-600); text-decoration: underline; }
.legal-dates { margin-top: 28px !important; font-size: 13px; text-align: right; }
.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-grid { display: grid; gap: 16px; }
.field label { display: block; margin-bottom: 6px; color: var(--navy-900); font-size: 13px; font-weight: 850; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff; color: var(--text); }
.field textarea { min-height: 160px; resize: vertical; }
.hp-field { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.form-note a { color: var(--blue-600); text-decoration: underline; }
.form-status { margin: 14px 0 0; padding: 12px 14px; border-radius: 12px; font-size: 14px; font-weight: 700; }
.form-status.is-success { background: #ECF8F1; color: var(--success); border: 1px solid rgba(31,138,84,.25); }
.form-status.is-error { background: #FDF0EF; color: #B3261E; border: 1px solid rgba(179,38,30,.22); }
.notice { padding: 18px; border-radius: var(--radius-md); background: #FFF9EA; border: 1px solid #F5DFB2; color: #69451E; font-size: 14px; }

/* Footer */
.site-footer {
  padding: 60px 0 34px;
  color: rgba(255,255,255,.74);
  background: var(--navy-950);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
.footer-brand img { width: 100px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 520px; margin: 18px 0 0; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 34px; }
.footer-links a { color: #fff; font-weight: 750; font-size: 14px; opacity: .84; }
.footer-links a:hover { opacity: 1; }
.copyright { margin-top: 28px !important; font-size: 12px; opacity: .66; }

@media (max-width: 1180px) {
  .header-actions .header-button:not(.primary) { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 760px; }
  .decision-visual { min-height: 620px; max-width: 880px; margin-inline: auto; width: 100%; }
  .outcome-list { right: 20px; transform: none; }
  .decision-hub { right: 112px; }
  .decision-lines { left: 53%; }
  .hero-mini-cards { max-width: none; }
  .capability-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .container, .container-wide { width: min(calc(100% - 36px), var(--container)); }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 84px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-strong);
  }
  body.menu-open .site-nav { display: block; }
  .nav-list { display: grid; gap: 4px; }
  .nav-list a { display: block; padding: 12px; border-radius: 10px; }
  .nav-list a:hover { background: var(--blue-100); }
  .header-actions { display: none; }
  .section { padding: 78px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .hero { padding: 64px 0 72px; }
  .hero-actions { grid-template-columns: 1fr; max-width: 420px; }
  .hero-mini-cards { grid-template-columns: 1fr; gap: 10px; max-width: 460px; }
  .mini-card { min-height: auto; }
  .decision-visual {
    min-height: auto;
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow-card);
  }
  .decision-visual::before, .decision-visual::after, .decision-lines { display: none; }
  .layer-stack { width: 100%; min-width: 0; padding: 0; }
  .layer-row,
  .layer-row:nth-child(n) {
    transform: none;
    grid-template-columns: 150px 1fr;
  }
  .decision-hub {
    position: static;
    margin: 18px auto 12px;
    width: 138px;
    height: 138px;
  }
  .outcome-list {
    position: static;
    width: auto;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }
  .problem-grid, .venture-panel, .cta-box, .detail-grid { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .service-grid, .case-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { display: contents; }
  .footer-brand .copyright { order: 1; margin-top: 0 !important; }
}

@media (max-width: 640px) {
  body { line-height: 1.72; }
  .container, .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 88px; }
  .site-nav { top: 76px; left: 14px; right: 14px; }
  .hero { padding: 46px 0 60px; }
  .hero h1 { font-size: clamp(36px, 12vw, 50px); letter-spacing: -.07em; }
  .hero-lead { margin-top: 22px; font-size: 15px; line-height: 1.9; }
  .button { width: 100%; min-height: 52px; }
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(28px, 9vw, 40px); }
  .section-lead { font-size: 15px; }
  .layer-row, .layer-row:nth-child(n) {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .layer-label { padding: 13px 14px; }
  .layer-body { grid-template-columns: 1fr; }
  .layer-body::after { display: none; }
  .micro-chart, .micro-flow, .micro-cubes, .micro-network, .micro-check { display: none; }
  .outcome-list { grid-template-columns: 1fr; }
  .issue-list li { grid-template-columns: 42px 1fr; padding: 16px; }
  .issue-list span { width: 42px; height: 42px; border-radius: 14px; }
  .service-card, .detail-section { padding: 22px; }
  .service-card { min-height: auto; }
  .menu-matrix { grid-template-columns: 1fr; overflow: visible; }
  .menu-item { min-width: 0; min-height: auto; }
  .capability-grid { grid-template-columns: 1fr; }
  .venture-panel { padding: 24px; }
  .phone-frame { width: 220px; }
  .phone-screen { min-height: 370px; }
  .cta-box { padding: 28px; }
  .page-hero { padding: 56px 0 54px; }
  .footer-links { grid-template-columns: 1fr; }
}

/* --- v3 hero adjustments: SVG-fixed decision visual --- */
.hero {
  padding: 28px 0 34px;
  min-height: calc(100svh - 76px);
}
.hero-inner {
  grid-template-columns: minmax(380px, .8fr) minmax(540px, 1.2fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100svh - 76px - 62px);
}
.hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.14;
}
.hero-lead {
  margin: 20px 0 0;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.92;
}
.hero-actions {
  max-width: 470px;
  margin-top: 26px;
}
.hero-mini-cards {
  gap: 10px;
  margin-top: 28px;
  max-width: 620px;
}
.mini-card {
  min-height: 90px;
  padding: 14px 14px;
  font-size: 12.5px;
}
.mini-icon {
  width: 32px;
  height: 32px;
}
.decision-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.decision-visual::before,
.decision-visual::after {
  display: none;
}
.decision-svg {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
}

@media (max-width: 1280px) {
  .hero { min-height: auto; }
  .hero-inner {
    min-height: auto;
    grid-template-columns: minmax(360px, .82fr) minmax(500px, 1.18fr);
    gap: 28px;
  }
  .decision-svg { max-width: 700px; }
}

@media (max-width: 1180px) {
  .hero {
    padding: 34px 0 44px;
    min-height: auto;
  }
  .hero-inner {
    min-height: auto;
    gap: 42px;
  }
  .decision-visual {
    padding: 0;
    max-width: 900px;
    margin-inline: auto;
  }
  .decision-svg { max-width: 820px; }
}

@media (max-width: 960px) {
  .hero {
    padding: 44px 0 60px;
  }
  .decision-visual {
    padding: 10px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow-card);
  }
  .decision-svg {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 34px 0 52px;
  }
  .hero-inner {
    gap: 30px;
  }
  .hero-actions {
    margin-top: 22px;
  }
  .hero-mini-cards {
    margin-top: 20px;
  }
}

/* --- v4: fixed hero image 50/50 layout with provided logos --- */
.brand img {
  width: 120px;
  max-height: 52px;
  object-fit: contain;
}
.footer-brand img {
  width: 120px;
  max-height: 54px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.hero {
  padding: 34px 0 42px;
  min-height: calc(100svh - 76px);
}
.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100svh - 76px - 76px);
}
.hero-copy {
  max-width: 100%;
}
.hero h1 {
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.16;
}
.hero-lead {
  max-width: 100%;
  margin-top: 20px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.95;
}
.hero-actions {
  max-width: 500px;
  margin-top: 24px;
}
.hero-mini-cards {
  max-width: none;
  margin-top: 24px;
  gap: 10px;
}
.mini-card {
  min-height: 92px;
  padding: 14px;
  font-size: 12.5px;
}
.decision-visual {
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.decision-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding: 42px 0 52px;
  }
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .decision-visual {
    max-width: 860px;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .brand img,
  .footer-brand img {
    width: 106px;
    max-height: 48px;
  }
  .hero {
    padding: 40px 0 56px;
  }
  .hero-mini-cards {
    grid-template-columns: 1fr;
  }
  .decision-visual {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .brand img,
  .footer-brand img {
    width: 96px;
    max-height: 42px;
  }
  .hero {
    padding: 30px 0 48px;
  }
  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.88;
  }
}

/* --- v5: message-led hero + full-width approach diagram --- */
.hero {
  min-height: auto;
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 86% 18%, rgba(36,120,242,.13), transparent 28%),
    radial-gradient(circle at 66% 92%, rgba(25,183,207,.08), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  top: 18%;
  width: clamp(210px, 26vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 38%, rgba(36,120,242,.10) 39% 40%, transparent 41% 57%, rgba(36,120,242,.07) 58% 59%, transparent 60%),
    repeating-conic-gradient(from 0deg, rgba(36,120,242,.11) 0 1deg, transparent 1deg 12deg);
  opacity: .7;
  pointer-events: none;
}
.hero-inner.hero-single {
  display: block;
  min-height: 0;
}
.hero-single .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1060px;
}
.hero-single .hero-kicker {
  margin-bottom: 24px;
}
.hero-single h1 {
  max-width: 980px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.13;
  letter-spacing: -.055em;
}
.hero-single .hero-lead {
  max-width: 820px;
  margin-top: 28px;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2;
}
.hero-single .hero-actions {
  max-width: 520px;
  margin-top: 32px;
}
.hero-single .hero-mini-cards {
  max-width: 850px;
  margin-top: 38px;
}
.hero-single .mini-card {
  min-height: 100px;
  background: rgba(255,255,255,.86);
}

.approach-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(36,120,242,.11), transparent 30%),
    radial-gradient(circle at 90% 22%, rgba(25,183,207,.08), transparent 26%),
    #F4F8FE;
}
.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,26,58,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,26,58,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 88%);
  pointer-events: none;
}
.approach-head {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}
.approach-head .section-title {
  font-size: clamp(26px, 3.6vw, 46px);
}
@media (min-width: 721px) {
  /* 1行固定は十分な幅がある画面のみ。スマホは通常の折り返し */
  .approach-head .section-title { white-space: nowrap; }
}
.approach-head .section-lead {
  max-width: 790px;
  margin: 22px auto 0;
}
.approach-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(14px, 2vw, 26px);
  border: 1px solid rgba(185,200,222,.72);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 80px rgba(7,26,58,.13);
}
.approach-image-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}
.approach-image-button img {
  display: block;
  width: 100%;
  height: auto;
}
.approach-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.approach-zoom-note {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.diagram-dialog {
  width: min(96vw, 1500px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 36px 120px rgba(0,0,0,.35);
}
.diagram-dialog::backdrop {
  background: rgba(2,10,26,.78);
  backdrop-filter: blur(4px);
}
.diagram-dialog-inner {
  position: relative;
  max-height: 94vh;
  overflow: auto;
  padding: 42px 20px 20px;
}
.diagram-dialog-inner img {
  display: block;
  width: 100%;
  min-width: 900px;
  height: auto;
}
.diagram-dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  margin: -32px 0 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7,26,58,.12);
}

@media (max-width: 960px) {
  .hero {
    padding: 58px 0 60px;
  }
  .hero::after {
    right: -120px;
    top: 8%;
    opacity: .45;
  }
  .hero-single h1 {
    font-size: clamp(42px, 8.5vw, 64px);
  }
  .hero-single .hero-mini-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
  .approach-head {
    margin-bottom: 32px;
    text-align: left;
  }
  .approach-head .section-lead {
    margin-left: 0;
    margin-right: 0;
  }
  .approach-figure {
    border-radius: 24px;
  }
  .approach-figure figcaption {
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 42px 0 52px;
  }
  .hero-single h1 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .hero-single h1 br {
    display: none;
  }
  .hero-single .hero-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.88;
  }
  .hero-single .hero-actions {
    margin-top: 24px;
  }
  .hero-single .hero-mini-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .hero-single .mini-card {
    min-height: auto;
  }
  .approach-head .section-title {
    white-space: normal;
    font-size: clamp(24px, 6.5vw, 30px);
    line-height: 1.4;
  }
  .approach-figure {
    padding: 8px;
    border-radius: 18px;
  }
  .approach-image-button {
    border-radius: 13px;
  }
  .approach-figure figcaption {
    padding: 0 4px 6px;
    font-size: 12px;
  }
  .diagram-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }
  .diagram-dialog-inner {
    max-height: 100dvh;
    padding: 48px 10px 18px;
  }
  .diagram-dialog-inner img {
    min-width: 1050px;
  }
}

/* --- v6: remove decorative radial/conic motif from hero --- */
.hero::after {
  display: none !important;
  content: none !important;
}
.hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(36,120,242,.07), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
}

/* --- v7: restore right-side gradient without circular ornament --- */
.hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(36,120,242,.16), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
}
.hero::after {
  display: none !important;
  content: none !important;
}

/* --- v8: Papyone actual screen capture --- */
.venture-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}
.papyone-shot {
  width: min(100%, 350px);
  margin: 0 auto;
  padding: 0;
}
.papyone-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(217,226,239,.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(7,26,58,.16);
}
.papyone-shot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.venture-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.venture-actions .button {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 14px;
}
.papyone-shot-pc {
  width: min(100%, 440px);
  margin: 24px auto 0;
}
.papyone-shot-pc img {
  border-radius: 14px;
}

@media (max-width: 960px) {
  .venture-panel {
    grid-template-columns: 1fr;
  }
  .papyone-shot {
    width: min(100%, 340px);
  }
  .papyone-shot-pc {
    width: min(100%, 440px);
  }
}

@media (max-width: 640px) {
  .papyone-shot {
    width: min(100%, 300px);
  }
  .papyone-shot img {
    border-radius: 18px;
  }
  .papyone-shot-pc {
    width: min(100%, 440px);
  }
}

/* --- 代表者直接関与ノート(トップ・支援事例の下) --- */
.leader-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 26px;
  align-items: start;
  margin-top: 34px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.leader-note-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  white-space: nowrap;
}
.leader-note p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }
.leader-note .text-link { font-size: 14px; }

@media (max-width: 640px) {
  .leader-note {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
    padding: 20px;
  }
  .leader-note-badge { justify-self: start; }
}

/* --- お知らせ(News) --- */
.news-more { margin: 0; text-align: right; }
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.news-row {
  display: grid;
  grid-template-columns: 96px auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 8px 22px rgba(7,26,58,.05);
}
a.news-row { transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
a.news-row:hover { border-color: var(--blue-600); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(7,26,58,.09); }
a.news-row:hover .news-title { color: var(--blue-600); }
.news-row time { color: var(--muted); font-size: 13px; font-weight: 750; letter-spacing: .02em; }
.news-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: #40516B;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}
.news-title { color: var(--navy-900); font-weight: 700; font-size: 14.5px; transition: color var(--ease); }
.news-empty { color: var(--muted); padding: 8px 2px; }

@media (max-width: 640px) {
  .news-more { text-align: left; }
  .news-row {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 10px 14px;
    padding: 14px 16px;
  }
  .news-title { grid-column: 1 / -1; }
}
