:root {
  --ink: #17262a;
  --muted: #626b79;
  --line: #e6e0d6;
  --bg: #FBFAF8;
  --soft: #f4f1ec;
  --soft-2: #ece7df;
  --teal: #168b86;
  --accent: #C9A76F;
  --accent-line: rgba(201, 167, 111, .34);
  --brand-teal: #008B8B;
  --teal-dark: #0f5753;
  --slate: #3f4656;
  --dark: #0D3237;
  --serif: "Libre Bodoni", "Times New Roman", serif;
  --title-serif: "Onest", "Zen Kaku Gothic New", system-ui, sans-serif;
  --sans: "Zen Kaku Gothic New", system-ui, sans-serif;
  --display-width: min(1500px, calc(100vw - clamp(40px, 13vw, 220px)));
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

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

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

button {
  border: 0;
  font: inherit;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.6vw, 48px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.is-solid {
  background: rgba(255, 255, 255, .98);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand__mk {
  width: 42px;
  height: 43px;
  flex: 0 0 auto;
  display: block;
  color: var(--brand-teal);
}

.brand__word {
  color: var(--brand-teal);
  font-family: "STIX Two Text", serif;
  font-size: 1.24rem;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
  font-size: 13px;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  transition: color .24s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-mobile-contact,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--teal) 34%, transparent);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--teal);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--line));
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 72%, var(--muted));
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
}

.lang-switch a {
  color: inherit;
  text-decoration: none;
  padding: 5px 2px;
  transition: color .22s var(--ease);
}

.lang-switch a::after {
  display: none;
}

.lang-switch a:hover,
.lang-switch a:focus-visible,
.lang-switch a.is-active {
  color: var(--teal);
}

.lang-switch span {
  color: color-mix(in srgb, var(--muted) 65%, transparent);
}

.nav-language-mobile {
  display: none;
}

.pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  padding: 12px 24px;
  background: var(--slate);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  transition: transform .28s var(--ease), background .28s var(--ease), gap .28s var(--ease);
}

.pill:hover {
  transform: translateY(-2px);
  gap: 20px;
}

.pill-primary,
.pill-wide {
  background: var(--teal);
}

.pill-light {
  background: #fff;
  color: var(--ink);
}

.pill-wide {
  width: min(520px, 100%);
  min-height: 64px;
}

.hero {
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

.hero-copy {
  text-align: center;
  padding: clamp(54px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
}

.hero-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: clamp(26px, 4.1vw, 58px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.hero-copy h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(58px, 8.6vw, 128px);
  line-height: .92;
}

.hero-copy p {
  max-width: 840px;
  margin: 0 auto;
}

.hero-copy p span {
  display: block;
  margin-top: 4px;
  font-size: clamp(15px, 1.7vw, 21px);
}

.hero-stage {
  position: relative;
  width: min(1550px, calc(100vw - 44px));
  height: clamp(320px, 43vw, 520px);
  margin: 0 auto;
  background: #000;
  overflow: hidden;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.68)),
    radial-gradient(circle at 50% 36%, rgba(22,139,134,.28), transparent 44%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
}

.hero-stage canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.video-effect {
  filter: grayscale(.92) contrast(1.18) brightness(.72) saturate(.75) sepia(.12) hue-rotate(122deg);
}

.logo-strip {
  overflow: hidden;
  padding: 58px 0;
  background: #fff;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 68px;
  width: max-content;
  animation: logoSlide 34s linear infinite;
}

.logo-track span {
  color: #777f8d;
  font-weight: 900;
  font-size: 18px;
  white-space: nowrap;
}

@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}

.news-band {
  padding: 0 0 96px;
  background: #fff;
}

.news-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  max-width: 1160px;
  padding: 30px 46px;
  background: #f2f3f6;
  border-radius: 8px;
}

.news-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
}

.news-list a {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #d9dce3;
}

.news-list a:first-child {
  padding-top: 0;
}

.news-list a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-list time {
  color: #848b99;
  font-size: 13px;
}

.news-list span {
  color: #293244;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.lang-en .section-kicker,
.lang-en .business-label,
.lang-en .news-detail-kicker {
  display: none;
}

.lang-en .about-ceo-section .section-kicker {
  display: block;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  line-height: .95;
}

.section-head p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #344053;
  font-size: 15px;
}

.about-grid,
.origin-grid,
.approach-grid,
.company-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px, 7vw, 92px);
}

.large-copy {
  margin: 0 0 18px;
}

.lang-en #about .section-kicker {
  display: none;
}

.lang-en #about .large-copy {
  max-width: min(100%, 34ch);
}

.sub-copy,
.about-body p,
.origin-text p,
.approach-copy p {
  color: #344053;
}

.about-body p,
.origin-text p,
.approach-copy p {
  margin: 0 0 18px;
}

.origin {
  background: #111722;
  color: #fff;
}

.origin .section-kicker,
.origin .section-head p {
  color: #9bd7d1;
}

.origin-text p {
  color: #d6dce7;
}

.media-panel {
  margin: 34px 0 0;
}

.media-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-panel figcaption {
  margin-top: 10px;
  color: #9bd7d1;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.solution {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.solution::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 400px;
  height: 420px;
  background-image: radial-gradient(#d6d8e1 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: .45;
  pointer-events: none;
}

.solution .wrap {
  position: relative;
  z-index: 1;
}

.solution-stage {
  padding: clamp(28px, 4.5vw, 58px);
  background: #fff;
  border-radius: 8px;
}

.circ {
  max-width: 920px;
  margin: clamp(32px, 5vw, 56px) auto 0;
}

.circ svg {
  width: 100%;
  height: auto;
}

.circ-ring {
  fill: none;
  stroke: #cfd3dc;
  stroke-width: 1;
  stroke-dasharray: 3 6;
}

.circ-arrows {
  color: #667080;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  opacity: .72;
}

.circ-box rect {
  fill: #fff;
  stroke: #cfd3dc;
  rx: 10px;
}

.circ-core rect {
  fill: var(--teal);
  stroke: var(--teal);
}

.circ-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 700;
  fill: var(--ink);
}

.circ-core .circ-ja {
  font-size: 18px;
  fill: #fff;
}

.circ-en {
  font-family: "Libre Bodoni", serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 1px;
  fill: var(--muted);
}

.circ-core .circ-en {
  font-size: 10px;
  fill: #cfe8e6;
}

.support-row {
  display: grid;
  grid-template-columns: 70px .7fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 112px;
  padding: 24px 30px;
  background: var(--soft);
  border-radius: 8px;
}

.support-row span,
.flow-item span {
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
}

.support-row h3,
.flow-title h3,
.flow-item h4,
.related-services h3,
.related-list h4 {
  margin: 0;
  font-weight: 900;
  line-height: 1.45;
}

.support-row p {
  margin: 0;
  color: #344053;
  font-size: 14px;
}

.support-icon,
.line-icon {
  position: relative;
  width: 58px;
  height: 58px;
  color: #50596b;
}

.support-icon::before,
.support-icon::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 25px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 12px 12px 0 0;
}

.support-icon::before {
  left: 4px;
}

.support-icon::after {
  right: 4px;
}

.flow-title {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 32px;
  margin: 46px 14px 24px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flow-item {
  position: relative;
  min-height: 520px;
  padding: 18px 18px 24px;
  background: var(--soft);
  border-radius: 8px;
  text-align: left;
}

.flow-item + .flow-item::before {
  content: "→";
  position: absolute;
  left: -17px;
  top: 50%;
  color: var(--teal);
  font-weight: 900;
}

.flow-item h4 {
  margin-top: 8px;
  font-size: 21px;
}

.flow-item p {
  margin: 12px 0 0;
  color: #344053;
  font-size: 13px;
}

.business-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 6px;
  background: #050506;
}

.flow-item ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.flow-item li {
  position: relative;
  padding-left: 15px;
  color: #344053;
  font-size: 12px;
  line-height: 1.75;
}

.flow-item li + li {
  margin-top: 8px;
}

.flow-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 6px;
  height: 1px;
  background: var(--teal);
}

.line-icon {
  margin: 0 auto 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.line-icon.plus::before,
.line-icon.plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.line-icon.plus::before {
  left: 18px;
  right: 18px;
  top: 28px;
  height: 1.5px;
}

.line-icon.plus::after {
  top: 18px;
  bottom: 18px;
  left: 28px;
  width: 1.5px;
}

.line-icon.bottle {
  border-radius: 16px 16px 26px 26px;
}

.line-icon.network::before,
.line-icon.network::after,
.line-icon.arch::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.line-icon.arch {
  border-radius: 50% 50% 6px 6px;
}

.investment-main {
  background: #fff;
}

.investment-lead {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.business-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
}

.investment-lead h2 {
  margin: 0;
  font-family: var(--title-serif);
  font-size: clamp(58px, 8vw, 106px);
  font-style: normal;
  line-height: 1.14;
}

.investment-lead p,
.adjacent-head p,
.investment-statement p,
.investment-points p,
.adjacent-card p,
.adjacent-card li {
  color: #344053;
}

.investment-lead p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}

.investment-panel {
  display: grid;
  grid-template-columns: minmax(310px, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 76px);
  padding: clamp(34px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.investment-statement span,
.adjacent-card span {
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
}

.investment-statement h3 {
  margin: 12px 0 20px;
}

.investment-statement p {
  margin: 0;
}

.investment-points {
  border-top: 1px solid var(--line);
}

.investment-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.investment-points b {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
}

.investment-points h4 {
  grid-column: 2;
  margin: 0 0 6px;
  font-size: 21px;
}

.investment-points p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
}

.investment-main .center-cta {
  margin: clamp(26px, 3vw, 34px) 0 0;
}

.adjacent-businesses {
  background: var(--soft);
}

.adjacent-head {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}

.adjacent-head h2 {
  margin: 0;
}

.adjacent-head p {
  margin: 0;
  font-size: 15px;
}

.adjacent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.adjacent-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #dfe2e8;
  border-radius: 8px;
  background: #fff;
}

.adjacent-card h3 {
  margin: 18px 0 18px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.38;
}

.adjacent-card p {
  margin: 0 0 20px;
}

.adjacent-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.adjacent-card li {
  position: relative;
  padding-left: 16px;
}

.adjacent-card li + li {
  margin-top: 10px;
}

.adjacent-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .86em;
  width: 7px;
  height: 1px;
  background: var(--teal);
}

.adjacent-card-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: clamp(20px, 3vw, 30px);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.adjacent-card-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  background: currentColor;
  transform: scaleX(.32);
  transform-origin: left center;
  transition: transform .28s var(--ease);
}

.adjacent-card-link:hover::after,
.adjacent-card-link:focus-visible::after {
  transform: scaleX(1);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin: 48px 0 96px;
}

.related-services {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.related-services > div > p {
  color: #344053;
}

.related-list {
  border-top: 1px solid #cfd3dc;
}

.related-list article {
  position: relative;
  padding: 28px 70px 28px 0;
  border-bottom: 1px solid #cfd3dc;
}

.related-list article p {
  margin: 6px 0 0;
  color: #344053;
  font-size: 13px;
}

.related-list article span,
.round-link {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.approach {
  background: #fff;
}

.asset-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  background:
    repeating-radial-gradient(circle at center, transparent 0 28px, #d9e1df 29px 30px),
    #f8faf9;
  overflow: hidden;
}

.asset-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(248,250,249,.62), rgba(248,250,249,.92));
  pointer-events: none;
}

.asset-core {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
  text-align: center;
}

.asset-map span {
  position: absolute;
  z-index: 1;
  padding: 7px 12px;
  border: 1px solid #cbd6d4;
  border-radius: 999px;
  background: #fff;
  color: #334053;
  font-size: 12px;
  font-weight: 700;
}

.asset-map span:nth-child(2) { left: 42%; top: 38px; }
.asset-map span:nth-child(3) { right: 48px; top: 100px; }
.asset-map span:nth-child(4) { right: 28px; top: 205px; }
.asset-map span:nth-child(5) { right: 68px; bottom: 84px; }
.asset-map span:nth-child(6) { left: 42%; bottom: 36px; }
.asset-map span:nth-child(7) { left: 42px; bottom: 96px; }
.asset-map span:nth-child(8) { left: 28px; top: 205px; }
.asset-map span:nth-child(9) { left: 70px; top: 92px; }

.map-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.pmap {
  margin: 0;
}

.pmap-stage {
  position: relative;
  width: min(600px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.pmap-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed #cfd3dc;
  pointer-events: none;
}

.pmap-ring-out {
  width: 86%;
  height: 86%;
}

.pmap-ring-in {
  width: 52%;
  height: 52%;
  border-color: rgba(22, 139, 134, .42);
}

.pmap-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 31%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 3px;
  border-radius: 50%;
  padding: 18px;
  text-align: center;
  background: radial-gradient(circle at 50% 36%, #29aaa4, var(--teal-dark) 74%);
  color: #fff;
  box-shadow: 0 18px 38px -24px rgba(15, 87, 83, .8);
}

.pmap-core span {
  color: #cfe8e6;
  font-family: var(--serif);
  font-size: clamp(10px, 1vw, 13px);
  font-style: italic;
  line-height: 1.1;
}

.pmap-core b {
  font-size: clamp(13px, 1.35vw, 17px);
  line-height: 1.35;
}

.pmap-nodes {
  position: absolute;
  inset: 0;
}

.pmap-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  min-width: 92px;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 2px;
  padding: 8px 11px;
  border: 1px solid #d8dedc;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 20px -16px rgba(17, 19, 25, .45);
}

.pmap-node span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
  line-height: 1.2;
}

.pmap-node b {
  color: #283244;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

.pmap-strat {
  border-color: rgba(22, 139, 134, .48);
  background: #f4fbfa;
}

.pmap-strat span {
  color: var(--teal-dark);
}

.pmap-listed { --x: 50%; --y: 8%; }
.pmap-private { --x: 79.7%; --y: 20.3%; }
.pmap-bonds { --x: 92%; --y: 50%; }
.pmap-fx { --x: 79.7%; --y: 79.7%; }
.pmap-derivatives { --x: 50%; --y: 92%; }
.pmap-crypto { --x: 20.3%; --y: 79.7%; }
.pmap-commodities { --x: 8%; --y: 50%; }
.pmap-art { --x: 20.3%; --y: 20.3%; }
.pmap-quants { --x: 50%; --y: 26%; }
.pmap-arbitrage { --x: 72%; --y: 63%; }
.pmap-alternative { --x: 28%; --y: 63%; }

.pmap-cap {
  max-width: 54ch;
  margin: 24px auto 0;
  color: #667080;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.business-overview {
  background: var(--bg);
}

.business-overview-body {
  max-width: 1060px;
  margin: 0 auto;
}

.business-overview-body > p {
  max-width: 58em;
  margin: 0;
  color: #344053;
  font-size: 15px;
  line-height: 2.05;
}

.business-overview-body > p + p {
  margin-top: 1em;
}

.business-cycle {
  margin: clamp(1rem, 3vw, 2rem) 0 0;
}

.business-cycle-stage {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 920 / 470;
  margin: 0 auto;
}

.business-cycle-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px dashed #cfd3dc;
  border-radius: 50%;
  pointer-events: none;
}

.business-cycle-core,
.business-cycle-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
}

.business-cycle-core {
  left: 50%;
  top: 50%;
  width: clamp(160px, 20vw, 206px);
  min-height: clamp(88px, 9vw, 114px);
  transform: translate(-50%, -50%);
  gap: 7px;
  padding: 20px 24px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 32%, #29aaa4, var(--teal-dark) 76%);
  color: #fff;
  box-shadow: 0 18px 38px -24px rgba(15, 87, 83, .8);
}

.business-cycle-core span {
  color: #d7eeec;
  font-family: var(--serif);
  font-size: clamp(10px, 1vw, 13px);
  font-style: italic;
  letter-spacing: .24em;
  line-height: 1.1;
}

.business-cycle-core b {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.business-cycle-node {
  min-width: clamp(172px, 19vw, 220px);
  min-height: 76px;
  gap: 6px;
  padding: 15px 20px;
  border: 1px solid #d8dedc;
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 10px 22px -18px rgba(17, 19, 25, .45);
}

.business-cycle-node b {
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.28;
}

.business-cycle-node span {
  color: #667080;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.business-cycle-node-top {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.business-cycle-node-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.business-cycle-node-bottom {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.business-cycle-node-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.business-cycle-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  background: #bfc8c5;
}

.business-cycle-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.business-cycle-arrow-top {
  left: 50%;
  top: 23%;
  width: 1px;
  height: 19%;
}

.business-cycle-arrow-top::after {
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #9eaaa6;
}

.business-cycle-arrow-right {
  right: 25%;
  top: 50%;
  width: 18%;
  height: 1px;
}

.business-cycle-arrow-right::after {
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 8px solid #9eaaa6;
}

.business-cycle-arrow-bottom {
  left: 50%;
  bottom: 23%;
  width: 1px;
  height: 19%;
}

.business-cycle-arrow-bottom::after {
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #9eaaa6;
}

.business-cycle-arrow-left {
  left: 25%;
  top: 50%;
  width: 18%;
  height: 1px;
}

.business-cycle-arrow-left::after {
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #9eaaa6;
}

.case-section {
  background: linear-gradient(180deg, #eef0f5, #e4e7ef);
  overflow: hidden;
}

.pf-scroll {
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.pf-track {
  display: flex;
  width: max-content;
  animation: pfMarquee 64s linear infinite;
}

.pf-scroll:hover .pf-track {
  animation-play-state: paused;
}

.pf-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.pf-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(154px, 20vw, 192px);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid #cfd3dc;
  border-radius: 6px;
  background: #fff;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.pf-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .35s var(--ease);
}

.pf-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
}

.pf-card:hover::after {
  width: 100%;
}

.pf-card .pf-no {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.pf-card b {
  margin-top: auto;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.pf-card span:last-child {
  margin-top: 4px;
  color: #667080;
  font-size: 11px;
  font-weight: 700;
}

@keyframes pfMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.portfolio-logo-marquees {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  position: relative;
  padding: clamp(8px, 1.6vw, 18px) 0 clamp(16px, 2.4vw, 28px);
  overflow: visible;
}

.portfolio-logo-row-shell {
  position: relative;
  padding-inline: clamp(28px, 3vw, 46px);
}

.portfolio-logo-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.portfolio-logo-nav {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: color .24s var(--ease), transform .24s var(--ease);
}

.portfolio-logo-nav:hover {
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}

.portfolio-logo-nav-prev {
  left: 0;
}

.portfolio-logo-nav-next {
  right: 0;
}

.portfolio-logo-row {
  overflow-x: auto;
  overflow-y: hidden;
  padding: clamp(8px, 1vw, 12px) 0;
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.portfolio-logo-row::-webkit-scrollbar {
  display: none;
}

.portfolio-logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.portfolio-logo-row:hover .portfolio-logo-track {
  animation-play-state: paused;
}

.portfolio-logo-row-large .portfolio-logo-track {
  animation: logoMoveRight 46s linear infinite;
}

.portfolio-logo-row-small .portfolio-logo-track {
  animation: logoMoveLeft 40s linear infinite;
}

.portfolio-logo-set {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding-right: clamp(14px, 2vw, 28px);
}

.portfolio-logo-set[aria-hidden="true"] {
  display: flex;
}

.portfolio-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.portfolio-logo-large {
  width: clamp(240px, 24vw, 360px);
  height: clamp(116px, 12vw, 170px);
  padding: clamp(24px, 3vw, 40px);
}

.portfolio-logo-small {
  width: clamp(158px, 16vw, 230px);
  height: clamp(76px, 8vw, 106px);
  padding: clamp(16px, 2vw, 26px);
}

.portfolio-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoMoveRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes logoMoveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.case-shell {
  margin-left: max(24px, calc((100vw - 1180px) / 2 + 48px));
}

.case-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 8px 0 38px;
  scroll-snap-type: x mandatory;
}

.case-track::-webkit-scrollbar {
  height: 5px;
}

.case-track::-webkit-scrollbar-thumb {
  background: #6a7280;
}

.case-card {
  flex: 0 0 min(420px, 72vw);
  scroll-snap-align: start;
}

.case-media,
.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-media {
  background: #050506;
}

.case-card:hover .case-media,
.case-card:hover img {
  filter: grayscale(.62) contrast(1.12) brightness(.82) saturate(.84) sepia(.1) hue-rotate(122deg);
}

.case-card h3 {
  min-height: 70px;
  margin: 22px 0 12px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

.case-card span {
  display: inline-flex;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
}

.case-foot {
  position: relative;
  min-height: 74px;
  margin-right: max(24px, calc((100vw - 1180px) / 2 + 48px));
}

.case-buttons {
  display: flex;
  gap: 22px;
}

.case-buttons button {
  background: transparent;
  color: #9aa1ad;
  cursor: pointer;
  font-size: 24px;
}

.case-buttons button:hover {
  color: var(--teal);
}

.round-link {
  top: 24px;
  right: 0;
  transform: none;
  width: 52px;
  height: 52px;
}

.small-note {
  margin: 10px 0 0;
  color: #606977;
  font-size: 12px;
}

.statement-band {
  padding: clamp(70px, 9vw, 116px) 0;
  text-align: center;
  background: #fff;
}

.statement-band p {
  margin: 0;
}

.statement-band span {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  color: var(--teal);
}

.members {
  background: var(--soft);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.88) contrast(.98) brightness(1.02);
  transition: filter .28s var(--ease), transform .28s var(--ease);
}

.member-card {
  cursor: pointer;
}

.member-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 5px;
}

.member-card:hover img {
  filter: saturate(1) contrast(1);
  transform: translateY(-4px);
}

.member-card p {
  margin: 15px 0 2px;
  color: #667080;
  font-size: 12px;
  line-height: 1.5;
  /* 肩書が1行/2行でも氏名の位置をそろえる(2行分を確保)。emなのでスマホでも可変 */
  min-height: 3em;
  display: flex;
  align-items: flex-end;
}

.member-card h3 {
  margin: 0;
  font-size: 18px;
}

.member-card span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 16px;
}

.member-card em {
  display: block;
  margin-top: 8px;
  color: #667080;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vh, 64px) clamp(16px, 4vw, 44px);
  background: rgba(5, 5, 6, .58);
  backdrop-filter: blur(4px);
}

.member-modal[hidden] {
  display: none;
}

.member-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, .88fr) 1.12fr;
  gap: clamp(20px, 3vw, 40px);
  overflow: auto;
  padding: clamp(22px, 3.2vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.member-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #667080;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.member-close:hover {
  color: var(--ink);
}

.member-modal-photo {
  min-width: 0;
}

.member-modal-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: none;
}

.member-modal-role {
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
}

.member-modal-name {
  margin: 8px 0 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
}

.member-modal-roman {
  margin: 2px 0 0;
  color: #667080;
  font-family: var(--serif);
  font-size: 17px;
}

.member-modal-tag {
  margin: 18px 0 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.member-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
}

.member-chips li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344053;
  font-size: 12px;
  font-weight: 700;
}

.member-modal-quote {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--teal);
  color: #283244;
  font-size: 18px;
  line-height: 1.8;
}

.member-modal-note {
  margin: 18px 0 0;
  color: #667080;
  font-size: 13px;
}

.member-focus {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.member-focus li {
  position: relative;
  padding: 0 0 0 14px;
  border: 0;
  border-radius: 0;
  color: #344053;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.member-focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .86em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.company {
  background: #fff;
}

.company-grid {
  align-items: start;
}

.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--teal);
  font-weight: 900;
}

.company-table dd {
  margin: 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-panel {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px) 24px;
  text-align: center;
  color: #fff;
}

.cta-contact {
  background:
    linear-gradient(rgba(18, 22, 31, .72), rgba(18, 22, 31, .72)),
    url("../images/business/history.jpg") center / cover;
}

.cta-company {
  background: var(--slate);
}

.cta-panel span {
  font-family: var(--serif);
  font-weight: 600;
}

.cta-panel h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
}

.cta-panel p {
  max-width: 430px;
  margin: 0 0 30px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.image-strip img {
  width: 100%;
  aspect-ratio: 7 / 3;
  object-fit: cover;
  filter: grayscale(.72) contrast(1.12) brightness(.86) saturate(.72) sepia(.16) hue-rotate(118deg);
}

/* Current prototype adjustments */
.wrap {
  max-width: 1240px;
  padding-inline: clamp(24px, 5vw, 64px);
}

.section {
  padding: clamp(96px, 11vw, 150px) 0;
}

.investment-statement > span,
.adjacent-card > span {
  display: none;
}

.section-kicker,
.business-label {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  margin-bottom: clamp(10px, 1.2vw, 16px);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.2;
}

.section-kicker::before,
.business-label::before {
  content: "○";
  font-size: .88em;
  line-height: 1;
}

.hero-stage {
  width: var(--display-width);
  margin-bottom: 0;
}

.hero-copy {
  min-height: clamp(390px, 51vw, 650px);
  display: flex;
  align-items: flex-end;
  text-align: left;
  padding: clamp(96px, 13vw, 170px) 0 clamp(64px, 8vw, 112px);
}

.hero-title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  line-height: .98;
}

.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-top: .04em;
}

.hero-script {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(58px, 8.2vw, 118px);
  line-height: .94;
}

.hero-title span:not(.hero-script) {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(58px, 8.2vw, 118px);
  line-height: .94;
}

.hero-title.hero-title-ja {
  max-width: 9.2em;
  color: var(--ink);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .02em;
}

.hero-copy p {
  max-width: 720px;
  color: var(--teal);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.72;
}

.hero-copy p span {
  display: none;
}

.news-band {
  padding: clamp(24px, 3vw, 38px) 0 clamp(18px, 2.6vw, 34px);
}

.news-box {
  width: var(--display-width);
  max-width: var(--display-width);
  box-shadow: 0 22px 56px -50px rgba(17, 19, 25, .55);
}

.about {
  padding-top: clamp(56px, 6vw, 86px);
}

.section-head > p,
.adjacent-head > p {
  display: none;
}

.section-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-head h2 {
  font-size: clamp(46px, 6vw, 78px);
}

.news-actions {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.news-more {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: color .24s var(--ease);
}

.news-more:hover {
  color: var(--teal-dark);
}

.nav-links a[aria-current="page"] {
  color: var(--teal);
}

.news-page {
  background: #fff;
}

.news-page-hero {
  padding: clamp(58px, 7vw, 96px) 0 clamp(12px, 2vw, 24px);
  border-bottom: 0;
  text-align: center;
}

.news-page-hero span {
  display: block;
  color: var(--teal);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.25;
  margin-top: clamp(14px, 1.8vw, 22px);
  letter-spacing: .08em;
}

.lang-en .news-page-hero span {
  display: none;
}

.news-page-hero h1 {
  margin: 0;
  font-family: var(--title-serif);
  font-style: normal;
  font-size: clamp(58px, 8.4vw, 124px);
  line-height: 1.12;
}

.news-page-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #344053;
  font-size: clamp(15px, 1.5vw, 18px);
}

.news-page-section {
  padding: clamp(18px, 3vw, 38px) 0 clamp(86px, 10vw, 140px);
}

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

.news-page-list a {
  display: grid;
  grid-template-columns: 128px 112px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.news-page-list time {
  color: #7b8492;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}

.news-page-list span {
  display: inline-flex;
  justify-content: center;
  min-width: 90px;
  border: 1px solid rgba(22, 139, 134, .32);
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.news-page-list b {
  grid-column: 3;
  color: var(--ink);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.85;
  transition: color .24s var(--ease);
}

.news-logo-frame {
  grid-column: 4;
  width: clamp(118px, 12vw, 168px);
  aspect-ratio: 16 / 9;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid rgba(194, 209, 211, .88);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 30px -28px rgba(18, 63, 70, .35);
}

.news-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-logo-frame.logo-revorn img {
  width: 72%;
  height: 72%;
}

.news-page-list a:hover b {
  color: var(--teal);
}

.news-detail-page {
  background: var(--bg);
}

.news-detail-hero {
  padding: clamp(54px, 7vw, 92px) 0 clamp(28px, 4vw, 56px);
}

.news-detail-hero .wrap,
.news-detail-section .wrap {
  max-width: 1120px;
}

.news-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .12em;
}

.news-detail-kicker::before {
  content: "";
  width: .62em;
  height: .62em;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.news-detail-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4.7vw, 62px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .02em;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: clamp(24px, 3vw, 38px);
}

.news-detail-meta time {
  color: #7b8492;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
}

.news-detail-meta span {
  display: inline-flex;
  border: 1px solid rgba(22, 139, 134, .32);
  border-radius: 999px;
  padding: 4px 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.news-detail-section {
  padding: 0 0 clamp(78px, 9vw, 132px);
}

.news-detail-article {
  max-width: 1040px;
}

.news-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.news-detail-intro:not(:has(.news-detail-logo)) {
  display: block;
}

.news-detail-body {
  color: #24323f;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 2;
}

.news-detail-body p {
  margin: 0 0 1.55em;
}

.news-detail-body h2 {
  margin: clamp(40px, 5vw, 64px) 0 1rem;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .04em;
}

.news-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 18px 0 8px;
}

.news-detail-gallery img {
  width: 100%;
  aspect-ratio: 952 / 500;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.news-detail-body ul,
.news-detail-list {
  margin: 0 0 1.55em;
  padding-left: 1.4em;
  list-style: none;
}

.news-detail-body ul li,
.news-detail-list li {
  position: relative;
  margin: 0 0 .5em;
}

.news-detail-body ul li::before,
.news-detail-list li::before {
  content: "";
  position: absolute;
  left: -1.1em;
  top: .85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #008B8B);
}

.news-detail-body h3 {
  margin: 2rem 0 .6rem;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
}

.news-detail-logo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 46px -34px rgba(18, 63, 70, .42);
}

.news-detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-detail-logo.logo-revorn img {
  width: 72%;
  height: 72%;
}

.news-detail-table {
  margin: 1.3rem 0 clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--accent-line);
}

.news-detail-table > div {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 36px);
  padding: clamp(15px, 2vw, 22px) 0;
  border-bottom: 1px solid var(--accent-line);
}

.news-detail-table dt {
  color: var(--teal);
  font-weight: 700;
}

.news-detail-table dd {
  margin: 0;
}

.news-detail-table a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: .22em;
}

.news-detail-pdf-panel {
  margin: clamp(34px, 5vw, 64px) 0;
  padding: clamp(22px, 3.4vw, 40px);
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 42px -34px rgba(18, 63, 70, .48);
}

.news-detail-pdf-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.news-detail-pdf-head h2 {
  margin: 0;
}

.news-detail-button,
.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.news-detail-button::after,
.news-detail-back::before {
  color: currentColor;
}

.news-detail-button::after {
  content: "→";
}

.news-detail-back::before {
  content: "←";
}

.news-detail-pdf {
  width: 100%;
  height: min(70vh, 680px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.news-detail-actions {
  display: flex;
  gap: 24px;
  margin-top: clamp(42px, 5vw, 70px);
}

.investment-statement .business-media,
.adjacent-card .business-media {
  width: calc(100% + 24px);
  max-width: none;
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
  object-position: center;
  margin: 0 0 clamp(20px, 2.8vw, 30px) -12px;
  border-radius: 6px;
  background: #101312;
  filter: grayscale(.92) contrast(1.05) brightness(.86);
  transition: filter .28s var(--ease), transform .28s var(--ease);
}

.adjacent-card .business-media {
  aspect-ratio: 16 / 7;
  filter: grayscale(.18) contrast(.98) brightness(1.02) saturate(.9) sepia(.03);
}

.video-effect-soft {
  filter: grayscale(.88) contrast(1.04) brightness(.82) saturate(.72);
}

.investment-statement:hover .business-media {
  filter: grayscale(.3) contrast(1.04) brightness(.9) saturate(.95);
}

.adjacent-card:hover .business-media {
  filter: grayscale(.04) contrast(1) brightness(1.04) saturate(.96);
}

.investment-panel {
  border-bottom: 0;
  padding-bottom: clamp(18px, 3vw, 34px);
}

.investment-points article:last-child {
  border-bottom: 0;
}

.section-head h2.jp-title,
.investment-lead h2.jp-title {
  color: var(--ink);
  font-family: var(--title-serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(52px, 6.8vw, 94px);
  line-height: 1.14;
  letter-spacing: .045em;
}

.hero-stage.hero-stage-video,
.hero-stage.hero-stage-collage {
  background: #101312;
}

.hero-stage.hero-stage-video::after,
.hero-stage.hero-stage-collage::after {
  background:
    linear-gradient(180deg, rgba(13, 50, 55, .025), rgba(13, 50, 55, .16)),
    radial-gradient(circle at 52% 36%, rgba(251,250,248,.1), transparent 52%);
}

.hero-stage.hero-stage-collage::after {
  display: none;
}

.hero-stage.hero-stage-video .hero-video {
  opacity: .88;
}

.hero-stage.hero-stage-video canvas {
  display: none;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, .9vw, 14px);
  padding: clamp(8px, .9vw, 14px);
  background: var(--dark);
}

.hero-tile {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  isolation: isolate;
}

.hero-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(13, 50, 55, .72) 0%, rgba(13, 50, 55, .34) 50%, rgba(13, 50, 55, .5) 100%);
  transition: opacity .42s var(--ease), background .42s var(--ease);
}

.hero-tile-label {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .22rem;
  padding: clamp(14px, 1.7vw, 24px);
  max-width: min(96%, 460px);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}

.hero-tile-label b {
  font-size: clamp(16px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .015em;
}

.hero-tile-label small {
  font-family: var(--serif);
  font-size: clamp(12px, .95vw, 15px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .9;
}

.lang-en .hero-tile-label small {
  display: none;
}

.hero-collage img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  filter: grayscale(.04) contrast(1) brightness(1.02) saturate(.96) sepia(.02);
  transition: transform .42s var(--ease), filter .42s var(--ease);
}

.hero-tile:hover::before {
  background:
    linear-gradient(135deg, rgba(13, 50, 55, .82) 0%, rgba(13, 50, 55, .42) 50%, rgba(13, 50, 55, .58) 100%);
}

.hero-tile:hover img {
  transform: scale(1.035);
  filter: grayscale(0) contrast(1.01) brightness(1.05) saturate(1) sepia(.01);
}

.hero-tile:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 5;
}

.hero-tile:nth-child(1) img {
  object-position: center 48%;
}

.hero-tile:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 4;
}

.hero-tile:nth-child(2) img {
  object-position: center 45%;
}

.hero-tile:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
}

.hero-tile:nth-child(3) img {
  object-position: center 50%;
}

.hero-tile:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 4 / 7;
}

.hero-tile:nth-child(4) img {
  object-position: center 50%;
}

.hero-tile:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 4 / 7;
}

.hero-tile:nth-child(5) img {
  object-position: center 50%;
}

.hero-tile:nth-child(6) {
  grid-column: 1 / 6;
  grid-row: 5 / 7;
}

.hero-tile:nth-child(6) img {
  object-position: center center;
}

.video-effect {
  filter: grayscale(1) contrast(1.08) brightness(.78);
}

.about-grid {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
}

.large-copy {
  max-width: 9.5em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.sub-copy,
.about-body p,
.origin-text p,
.approach-copy p,
.investment-statement p,
.adjacent-card p,
.adjacent-card li {
  font-size: 15px;
  line-height: 2.02;
}

.investment-statement h3,
.adjacent-head h2 {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.investment-statement h3 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.22;
}

.adjacent-head {
  align-items: start;
  margin-bottom: clamp(26px, 3.5vw, 42px);
}

.adjacent-head h2 {
  grid-column: 1 / -1;
  max-width: none;
  color: var(--ink);
  white-space: nowrap;
}

.sub-copy {
  max-width: 34em;
}

.origin {
  background: var(--bg);
  color: var(--ink);
}

.origin-text p {
  color: #344053;
}

.origin .section-head h2 {
  color: var(--ink);
}

.origin .section-kicker {
  color: var(--accent);
}

.investment-points article {
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 30px 0;
}

.investment-points h4,
.investment-points p {
  grid-column: 2;
  min-width: 0;
}

.flow-item + .flow-item::before {
  display: none;
}

.approach .section-head {
  max-width: 760px;
}

.pmap-asset-image {
  display: block;
  width: min(540px, 88%);
  height: auto;
  margin: clamp(-34px, -2.6vw, -18px) auto 0;
}

.pmap-asset-image + .pmap-stage,
.pmap-asset-image ~ .pmap-cap {
  display: none;
}

.member-grid {
  gap: 28px;
}

.adjacent-card {
  padding: clamp(30px, 3.6vw, 44px);
  box-shadow: 0 24px 54px -48px rgba(17, 19, 25, .68);
}

.member-card img {
  box-shadow: 0 22px 46px -38px rgba(17, 19, 25, .6);
}

.statement-band {
  padding: clamp(82px, 10vw, 132px) 0;
}

.statement-band p {
  font-size: clamp(30px, 4.35vw, 60px);
  line-height: 1.35;
}

.statement-band span {
  margin-top: 14px;
  font-size: clamp(24px, 3.4vw, 42px);
}

.member-card:hover img {
  filter: grayscale(0) contrast(1);
  transform: translateY(-4px);
}

.member-card:focus-visible img {
  filter: grayscale(0) contrast(1);
}

.cta-split,
.image-strip {
  display: none;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 38px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.site-footer .brand__mk {
  color: var(--brand-teal);
  width: 30px;
  height: 31px;
}

.site-footer .brand__word {
  color: var(--brand-teal);
  font-size: 1.05rem;
}

.footer-grid p,
.footer-grid a {
  color: #bbbfc8;
  font-size: 13px;
}

.footer-contact {
  margin-top: clamp(28px, 4vw, 54px);
  line-height: 1.8;
}

.footer-contact span {
  display: block;
  color: #E9F1F1;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
}

.footer-contact a {
  color: #E9F1F1;
  text-decoration: underline;
  text-decoration-color: rgba(233, 241, 241, .45);
  text-underline-offset: .22em;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.footer-grid a {
  display: block;
  padding: 4px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #aeb3bd;
  font-size: 12px;
}

@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Soft tone pass: visual texture only. */
.site-header {
  background: rgba(251, 250, 248, .94);
}

.site-header.is-solid {
  background: rgba(251, 250, 248, .98);
}

.section-head h2,
.section-head h2.jp-title,
.investment-lead h2,
.investment-lead h2.jp-title,
.adjacent-head h2,
.news-page-hero h1 {
  font-weight: 500;
  letter-spacing: .045em;
}

.large-copy,
.investment-statement h3,
.investment-points h4,
.adjacent-card h3,
.statement-band p {
  font-weight: 600;
  letter-spacing: .02em;
}

.news-band,
.investment-main,
.statement-band,
.company,
.news-page {
  background: var(--bg);
}

.news-box {
  background: #f3f0ea;
}

.solution-stage,
.adjacent-card,
.pf-card,
.portfolio-logo,
.member-dialog {
  background: #fffdf9;
}

.hero-stage,
.hero-stage.hero-stage-video,
.hero-stage.hero-stage-collage,
.hero-collage,
.origin,
.case-media,
.investment-statement .business-media,
.adjacent-card .business-media,
.site-footer {
  background: var(--dark);
}

.hero-stage,
.news-box,
.solution-stage,
.adjacent-card,
.pf-card,
.portfolio-logo,
.member-dialog {
  border-radius: 14px;
}

.hero-collage,
.hero-collage img,
.business-media,
.case-media,
.case-card img,
.member-card img,
.member-modal-photo img,
.pmap-asset-image {
  border-radius: 12px;
}

.pill {
  border-radius: 8px;
}

/* Warm accent pass: numbers, small labels, and fine rules only. */
.news-title,
.investment-points b,
.pf-card .pf-no {
  color: var(--accent);
}

.news-list a,
.investment-panel,
.investment-points,
.investment-points article,
.news-page-hero,
.news-page-list,
.news-page-list a {
  border-color: var(--accent-line);
}

/* Rhythm pass: section spacing, heading scale, and diagram polish. */
.section {
  padding: clamp(78px, 8.4vw, 118px) 0;
}

.section.approach {
  padding-bottom: clamp(46px, 5vw, 72px);
}

.section-head {
  max-width: 900px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.section-head h2.jp-title,
.investment-lead h2.jp-title,
.adjacent-head h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: .98;
}

.about-grid,
.origin-grid,
.approach-grid,
.company-grid {
  gap: clamp(40px, 6vw, 84px);
}

.hero-copy {
  min-height: clamp(330px, 42vw, 520px);
  padding-block: clamp(74px, 9vw, 126px) clamp(46px, 5.8vw, 76px);
  padding-inline: clamp(44px, 6.6vw, 108px) clamp(24px, 5vw, 64px);
}

.hero-title.hero-title-ja {
  max-width: 9.6em;
  font-size: clamp(48px, 5.7vw, 92px);
  line-height: 1.22;
}

.origin {
  background: var(--dark);
  color: #f8f6ef;
  padding-bottom: clamp(68px, 7vw, 104px);
}

.origin .section-head h2 {
  color: #f8f6ef;
}

.origin-text p {
  color: rgba(248, 246, 239, .82);
}

.business-overview {
  padding-top: clamp(48px, 5.4vw, 76px);
}

.business-overview .section-head {
  margin-bottom: clamp(22px, 3vw, 36px);
}

.business-overview-body {
  max-width: 1100px;
}

.business-cycle {
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-bottom: 0;
}

.business-cycle-stage {
  width: min(980px, 100%);
  aspect-ratio: 16 / 7;
  min-height: 430px;
}

.business-cycle-ring {
  width: 54%;
  border-color: rgba(201, 167, 111, .34);
}

.business-cycle-core {
  width: clamp(158px, 18vw, 196px);
  min-height: clamp(92px, 9vw, 116px);
  border-radius: 14px;
}

.business-cycle-node {
  min-width: clamp(178px, 18vw, 224px);
  min-height: 72px;
  padding: 14px 18px;
  border-color: #d8dedc;
}

.business-cycle-node-left {
  left: 5%;
}

.business-cycle-node-right {
  right: 5%;
}

.business-cycle-arrow {
  background: rgba(158, 170, 166, .66);
}

.business-cycle-arrow-top {
  top: 23%;
  height: 15.5%;
}

.business-cycle-arrow-bottom {
  bottom: 23%;
  height: 15.5%;
}

.business-cycle-arrow-left {
  left: 31%;
  width: 10%;
}

.business-cycle-arrow-right {
  right: 31%;
  width: 10%;
}

.adjacent-head {
  display: block;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.adjacent-head .business-label {
  margin-bottom: clamp(10px, 1.4vw, 18px);
}

.adjacent-head h2 {
  margin: 0;
}

/* Copy/layout correction after content update. */
.section-head h2.jp-title,
.investment-lead h2.jp-title,
.adjacent-head h2 {
  font-family: var(--title-serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.14;
  letter-spacing: .045em;
}

.about .section-head > p {
  display: none;
}

.about .section-head,
.origin .section-head,
.investment-lead > div {
  margin-bottom: clamp(28px, 3.8vw, 46px);
}

.about-grid,
.origin-grid,
.investment-lead {
  display: block;
}

.about-grid {
  max-width: min(1180px, 100%);
}

.large-copy {
  max-width: none;
  margin-bottom: clamp(24px, 3vw, 36px);
  font-size: clamp(30px, 3.35vw, 46px);
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
}

.lang-en #about .large-copy {
  max-width: min(100%, 34ch);
  font-size: clamp(30px, 3.25vw, 52px);
  line-height: 1.16;
  white-space: normal;
}

.about-body,
.origin-text,
.investment-lead > p {
  max-width: min(980px, 100%);
}

.origin-text,
.investment-lead > p {
  margin-top: 0;
}

.investment-lead {
  margin-bottom: clamp(24px, 3.2vw, 42px);
}

.investment-lead > p {
  font-size: 15px;
  line-height: 2.05;
}

.investment-panel {
  border-top: 0;
  border-bottom: 0;
  padding-top: clamp(12px, 2vw, 24px);
}

.business-cycle-stage {
  width: min(1040px, 100%);
  aspect-ratio: 16 / 7.2;
  min-height: 450px;
}

.business-cycle-ring {
  width: 64%;
  height: 88%;
  aspect-ratio: auto;
  border-color: rgba(201, 167, 111, .42);
}

.business-cycle-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0;
  transform-origin: center;
  background: conic-gradient(from -90deg, rgba(201, 167, 111, .72) 0deg 24deg, transparent 34deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 1px));
  pointer-events: none;
}

.business-cycle-node-top {
  top: 2%;
}

.business-cycle-node-bottom {
  bottom: 2%;
}

.business-cycle-node-left {
  left: 4%;
}

.business-cycle-node-right {
  right: 4%;
}

.business-cycle-arrow-top {
  top: 19%;
  height: 18%;
}

.business-cycle-arrow-bottom {
  bottom: 19%;
  height: 18%;
}

.business-cycle-arrow-left {
  left: 28%;
  width: 11%;
}

.business-cycle-arrow-right {
  right: 28%;
  width: 11%;
}

.business-cycle-arrow {
  z-index: 3;
  background: rgba(104, 124, 120, .74);
}

.business-cycle-core {
  z-index: 4;
}

.business-cycle-arrow-top::after {
  border-top-color: rgba(104, 124, 120, .86);
}

.business-cycle-arrow-right::after {
  border-right-color: rgba(104, 124, 120, .86);
}

.business-cycle-arrow-bottom::after {
  border-bottom-color: rgba(104, 124, 120, .86);
}

.business-cycle-arrow-left::after {
  border-left-color: rgba(104, 124, 120, .86);
}

.business-overview-body.reveal.in .business-cycle-ring::before,
.business-overview-body.reveal.is-visible .business-cycle-ring::before {
  animation: cycleRingOrbit 5.4s linear 1.9s infinite;
  opacity: .85;
}

@keyframes cycleRingOrbit {
  to {
    transform: rotate(360deg);
  }
}

.business-cycle {
  width: min(920px, 100%);
  max-width: 920px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}

.business-cycle-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.business-cycle-svg .ov-node,
.business-cycle-svg .ov-core,
.business-cycle-svg .ov-ring,
.business-cycle-svg .ov-arrow {
  transform-box: fill-box;
  transform-origin: center;
}

.business-cycle-svg .ov-node-top {
  --ov-i: 0;
}

.business-cycle-svg .ov-node-right {
  --ov-i: 1;
}

.business-cycle-svg .ov-node-bottom {
  --ov-i: 2;
}

.business-cycle-svg .ov-node-left {
  --ov-i: 3;
}

.business-cycle-svg .ov-arrow {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-svg .ov-arrow {
  opacity: 0;
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-svg .ov-node {
  opacity: 0;
  transform: scale(.94);
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-svg .ov-core {
  opacity: .92;
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-svg .ov-ring {
  opacity: .28;
}

.business-overview-body.reveal.in .business-cycle-svg .ov-node,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-node {
  animation: ovNodeIn .58s var(--ease) both;
  animation-delay: calc(.12s + var(--ov-i, 0) * .18s);
}

.business-overview-body.reveal.in .business-cycle-svg .ov-arrow,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-arrow {
  animation: ovArrowDraw .72s var(--ease) both;
}

.business-overview-body.reveal.in .business-cycle-svg .ov-arrow-top,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-arrow-top {
  animation-delay: .95s;
}

.business-overview-body.reveal.in .business-cycle-svg .ov-arrow-right,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-arrow-right {
  animation-delay: 1.08s;
}

.business-overview-body.reveal.in .business-cycle-svg .ov-arrow-bottom,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-arrow-bottom {
  animation-delay: 1.21s;
}

.business-overview-body.reveal.in .business-cycle-svg .ov-arrow-left,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-arrow-left {
  animation-delay: 1.34s;
}

.business-overview-body.reveal.in .business-cycle-svg .ov-ring,
.business-overview-body.reveal.is-visible .business-cycle-svg .ov-ring {
  animation: ovRingOnce 2.4s var(--ease) 1.72s both;
}

@keyframes ovNodeIn {
  from {
    opacity: 0;
    transform: scale(.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ovArrowDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ovRingOnce {
  from {
    opacity: .28;
    transform: rotate(0deg);
  }

  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}

.investment-statement::before {
  display: none;
}

.investment-statement .business-media,
.investment-statement:hover .business-media {
  filter: grayscale(0) contrast(1) brightness(1) saturate(.98) sepia(0);
}

.business-overview {
  padding-bottom: clamp(16px, 2.4vw, 32px);
}

.investment-main {
  padding-top: clamp(36px, 4.4vw, 58px);
}

.portfolio-logo-row-shell {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  padding-inline: 0;
}

.portfolio-logo-controls {
  display: contents;
}

.portfolio-logo-nav {
  position: static;
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 34px;
  height: auto;
  min-height: 92px;
  transform: none;
  z-index: 5;
}

.portfolio-logo-nav-prev {
  grid-column: 1;
}

.portfolio-logo-nav-next {
  grid-column: 3;
}

.portfolio-logo-nav:hover {
  transform: scale(1.08);
}

.portfolio-logo-nav-prev,
.portfolio-logo-nav-next {
  left: auto;
  right: auto;
}

.portfolio-logo-row {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

/* Motion pass: V3の「点を打ち、線で結ぶ」動きを白いヒーローへ移植。 */
.hero {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(251,250,248,1) 0%, rgba(250,251,248,.96) 45%, rgba(233,246,244,.86) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(430px, 54vw, 690px);
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 23%, rgba(22,139,134,.11) 0 11%, transparent 11.2%),
    radial-gradient(circle at 77% 78%, rgba(22,139,134,.08) 0 18%, transparent 18.2%),
    linear-gradient(90deg, rgba(255,255,255,.48), rgba(255,255,255,0));
}

.hero-net {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  width: 100%;
  height: clamp(430px, 54vw, 690px);
  pointer-events: none;
  opacity: .78;
}

.hero-copy,
.hero-stage {
  position: relative;
}

.hero-copy {
  z-index: 2;
}

.hero-stage {
  z-index: 3;
}

.hero-title.hero-title-ja {
  opacity: 0;
  transform: translateX(-.7em);
  filter: blur(3.5px);
  animation: heroReveal 2.3s var(--ease) .18s both;
}

.hero-title.hero-title-ja.hero-title-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.hero-title-en {
  display: none;
  max-width: 18em;
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: var(--teal);
  font-family: var(--sans);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .02em;
}

.translated-ltr .hero-title-ja,
.translated-rtl .hero-title-ja {
  display: none;
}

.translated-ltr .hero-title-en,
.translated-rtl .hero-title-en {
  display: block;
}

.lang-en .hero-title.hero-title-ja {
  max-width: min(900px, 13.5em);
  font-size: clamp(40px, 5.1vw, 82px);
  line-height: 1.22;
  letter-spacing: .01em;
  padding-bottom: .12em;
}

.lang-en .hero-title-en {
  display: none !important;
}

.hero-reveal-word,
.hero-reveal-plain {
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
}

.hero-title-reveal .hero-reveal-word,
.hero-title-reveal .hero-reveal-plain {
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
}

.hero-reveal-word {
  position: relative;
  overflow: hidden;
  padding-bottom: .08em;
}

.hero-reveal-word > span {
  display: inline-block;
  margin-top: 0;
}

.hero-title-reveal .hero-reveal-word > span {
  display: inline-block;
  margin-top: 0;
}

.hero-title.hero-title-ja.hero-title-reveal .hero-reveal-word,
.hero-title.hero-title-ja.hero-title-reveal .hero-reveal-word > span,
.hero-title.hero-title-ja.hero-title-reveal .hero-reveal-plain {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.hero-reveal-word--wipe::after {
  content: "";
  position: absolute;
  inset: -.04em -.06em -.02em;
  z-index: 2;
  background: linear-gradient(90deg, #008B8B, #0a9b98);
  transform: translateX(0);
  animation: heroBlockWipe .82s cubic-bezier(.22,.61,.36,1) .28s both;
}

.hero-reveal-plain {
  opacity: 0;
  animation: heroPlainFade .62s cubic-bezier(.22,.61,.36,1) .92s both;
}

.hero-reveal-word--rise > span {
  opacity: 0;
  transform: translateY(112%);
  animation: heroMaskRise .78s cubic-bezier(.22,.61,.36,1) 1.26s both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateX(-.7em);
    filter: blur(3.5px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes heroBlockWipe {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(116%);
  }
}

@keyframes heroPlainFade {
  from {
    opacity: 0;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes heroMaskRise {
  from {
    opacity: 0;
    transform: translateY(112%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

.section-head.reveal h2,
.investment-lead.reveal h2,
.adjacent-head.reveal h2 {
  opacity: 0;
  transform: translateX(-.8em);
  filter: blur(3px);
}

.section-head.reveal.in h2,
.section-head.reveal.is-visible h2,
.investment-lead.reveal.in h2,
.investment-lead.reveal.is-visible h2,
.adjacent-head.reveal.in h2,
.adjacent-head.reveal.is-visible h2 {
  animation: secReveal 2s var(--ease) .1s both;
}

@keyframes secReveal {
  from {
    opacity: 0;
    transform: translateX(-.8em);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.business-cycle-node-top {
  --cycle-x: -50%;
  --cycle-y: 0;
  --cycle-i: 0;
}

.business-cycle-node-right {
  --cycle-x: 0;
  --cycle-y: -50%;
  --cycle-i: 1;
}

.business-cycle-node-bottom {
  --cycle-x: -50%;
  --cycle-y: 0;
  --cycle-i: 2;
}

.business-cycle-node-left {
  --cycle-x: 0;
  --cycle-y: -50%;
  --cycle-i: 3;
}

.business-cycle-node-top,
.business-cycle-node-right,
.business-cycle-node-bottom,
.business-cycle-node-left {
  transform: translate(var(--cycle-x), var(--cycle-y)) scale(1);
}

.business-cycle-arrow-top {
  --arrow-i: 0;
  transform-origin: top center;
}

.business-cycle-arrow-right {
  --arrow-i: 1;
  transform-origin: right center;
}

.business-cycle-arrow-bottom {
  --arrow-i: 2;
  transform-origin: bottom center;
}

.business-cycle-arrow-left {
  --arrow-i: 3;
  transform-origin: left center;
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-node {
  opacity: 0;
  transform: translate(var(--cycle-x, 0), var(--cycle-y, 0)) scale(.92);
}

.business-overview-body.reveal.in .business-cycle-node,
.business-overview-body.reveal.is-visible .business-cycle-node {
  opacity: 1;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: calc(.15s + var(--cycle-i, 0) * .2s);
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-arrow {
  opacity: 0;
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-arrow-top,
.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-arrow-bottom {
  transform: scaleY(0);
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-arrow-left,
.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-arrow-right {
  transform: scaleX(0);
}

.business-overview-body.reveal.in .business-cycle-arrow,
.business-overview-body.reveal.is-visible .business-cycle-arrow {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(1.05s + var(--arrow-i, 0) * .13s);
}

.business-overview-body.reveal:not(.in):not(.is-visible) .business-cycle-ring {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.business-overview-body.reveal.in .business-cycle-ring,
.business-overview-body.reveal.is-visible .business-cycle-ring {
  animation: ringSweep 2.4s var(--ease) 1.65s both;
}

@keyframes ringSweep {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.investment-statement,
.adjacent-card,
.portfolio-logo {
  position: relative;
}

.investment-statement,
.adjacent-card {
  overflow: hidden;
}

.investment-statement::before,
.adjacent-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .42s var(--ease);
}

.investment-statement:hover::before,
.adjacent-card:hover::before {
  width: 100%;
}

.investment-statement:hover .business-media,
.adjacent-card:hover .business-media {
  transform: scale(1.018);
}

.portfolio-logo {
  overflow: hidden;
  transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}

.portfolio-logo::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s var(--ease);
}

.portfolio-logo:hover {
  border-color: rgba(22, 139, 134, .7);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -38px rgba(15, 87, 83, .54);
}

.portfolio-logo:hover::after {
  transform: scaleX(1);
}

.portfolio-logo,
.portfolio-logo:hover {
  background: transparent;
  box-shadow: none;
}

.portfolio-logo:hover {
  border-color: rgba(22, 139, 134, .34);
  transform: translateY(-2px);
}

.portfolio-logo::after {
  display: none;
}

.pill span {
  display: inline-block;
  transition: transform .28s var(--ease);
}

.pill:hover span {
  transform: translateX(4px);
}

.about-more {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(16px, 2vw, 28px);
}

.subtle-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(22, 139, 134, .36);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .24s var(--ease), border-color .24s var(--ease);
}

.subtle-link span {
  display: inline-block;
  transition: transform .24s var(--ease);
}

.subtle-link:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.subtle-link:hover span {
  transform: translateX(4px);
}

.about-detail-page {
  background: transparent;
}

.about-detail-hero {
  padding: clamp(62px, 7vw, 104px) 0 clamp(12px, 2vw, 24px);
}

.about-detail-hero .section-head {
  margin-bottom: 0;
}

.about-detail-hero h1.jp-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-serif);
  font-size: clamp(44px, 5.4vw, 78px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .045em;
}

.about-detail-section {
  padding: clamp(18px, 3vw, 34px) 0 clamp(56px, 7vw, 96px);
}

.about-ceo-section {
  padding: clamp(58px, 7vw, 104px) 0;
}

.about-detail-grid {
  max-width: 840px;
  margin-left: 0;
  margin-right: auto;
}

.ceo-profile {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.about-detail-table {
  margin: 0;
  border-top: 1px solid var(--accent-line);
}

.about-detail-table > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  padding: 20px 0;
  border-bottom: 1px solid var(--accent-line);
}

.about-detail-table dt {
  color: var(--teal);
  font-weight: 700;
}

.about-detail-table dd {
  margin: 0;
  color: #25343d;
  line-height: 1.95;
}

.about-detail-table dd span {
  color: var(--muted);
}

.about-detail-table a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(22, 139, 134, .34);
  text-underline-offset: .24em;
}

.about-detail-table .bio-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  text-decoration: none;
}

.business-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-detail-list li {
  position: relative;
  padding-left: 1.05em;
}

.business-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .95em;
  width: .42em;
  height: 1px;
  background: var(--accent);
}

.about-ceo-section {
  border-top: 1px solid var(--accent-line);
}

.ceo-photo {
  margin: 0;
}

.ceo-photo img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.ceo-copy h2 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(36px, 4.2vw, 60px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.ceo-role {
  margin: 0 0 28px;
  color: var(--teal-dark);
  font-weight: 700;
}

.ceo-copy p {
  margin: 0 0 18px;
  color: #25343d;
  font-size: 15px;
  line-height: 2.05;
}

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

  .hero-net {
    opacity: .42;
  }

  .hero-title.hero-title-ja,
  .hero-title.hero-title-ja.hero-title-reveal,
  .hero-reveal-word,
  .hero-reveal-word > span,
  .hero-reveal-plain,
  .section-head.reveal h2,
  .investment-lead.reveal h2,
  .adjacent-head.reveal h2,
  .business-cycle-arrow,
  .business-cycle-node,
  .pill span {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }

  .hero-reveal-word--wipe::after {
    display: none;
  }

  .business-cycle-ring {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: none;
    animation: none;
  }

  .business-cycle-ring::before {
    opacity: 0;
    animation: none;
  }

  .business-cycle-svg .ov-node,
  .business-cycle-svg .ov-core,
  .business-cycle-svg .ov-ring,
  .business-cycle-svg .ov-arrow {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .business-cycle-svg .ov-arrow {
    stroke-dashoffset: 0;
  }

  .reveal,
  .member-card img,
  .logo-track,
  .pf-track,
  .portfolio-logo-track {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(20px, 4.6vw, 48px);
    right: clamp(20px, 4.6vw, 48px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--teal) 18%, var(--line));
    border-radius: 14px;
    background: rgba(252, 253, 254, .98);
    box-shadow: 0 24px 50px -36px rgba(13, 50, 55, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s var(--ease);
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 10px;
  }

  .nav-links a::after {
    bottom: 6px;
    left: 10px;
    right: auto;
    width: 28px;
  }

  .nav-language-mobile {
    display: inline-flex;
    justify-self: start;
    margin: 6px 10px 4px;
  }

  .nav-mobile-contact {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .flow-grid,
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-item + .flow-item::before {
    display: none;
  }

  .about-grid,
  .origin-grid,
  .approach-grid,
  .company-grid,
  .related-services,
  .investment-lead,
  .investment-panel,
  .adjacent-head,
  .support-row {
    grid-template-columns: 1fr;
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

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

  .about-detail-grid,
  .ceo-profile {
    grid-template-columns: 1fr;
  }

  .ceo-photo img {
    max-width: 520px;
  }

  .member-dialog {
    grid-template-columns: 1fr;
  }

  .member-modal-photo img {
    max-width: 260px;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 66px;
  }

  .brand__mk {
    width: 36px;
    height: 38px;
  }

  .brand__word {
    font-size: 1.08rem;
  }

  .pill {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .about-more {
    justify-content: flex-start;
  }

  .about-detail-hero {
    padding-top: 62px;
  }

  .about-detail-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .business-detail-list {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 360px;
    padding: 74px 0 54px;
  }

  .hero-title {
    margin-bottom: 22px;
    line-height: .96;
  }

  .hero-title span + span {
    margin-top: .03em;
  }

  .hero-script {
    font-size: clamp(48px, 14.5vw, 72px);
    line-height: .94;
  }

  .hero-title span:not(.hero-script) {
    font-size: clamp(48px, 14.5vw, 72px);
    line-height: .94;
  }

  .hero-title.hero-title-ja {
    max-width: 8em;
    font-size: clamp(42px, 12.4vw, 64px);
    line-height: 1.18;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-stage {
    width: calc(100vw - 20px);
    height: 300px;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
  }

  .hero-tile {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .hero-collage img {
    object-position: center !important;
  }

  .logo-strip {
    padding: 42px 0;
  }

  .news-box,
  .news-list a,
  .flow-title,
  .flow-grid,
  .adjacent-grid,
  .member-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-box {
    width: auto;
    max-width: none;
    padding: 24px;
  }

  .news-actions {
    grid-column: 1;
    justify-content: flex-start;
  }

  .investment-statement .business-media,
  .adjacent-card .business-media {
    width: calc(100% + 16px);
    aspect-ratio: 16 / 8;
    margin-left: -8px;
  }

  .investment-statement h3,
  .adjacent-head h2 {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
    font-size: clamp(24px, 6.4vw, 34px);
  }

  .news-page-hero {
    padding-top: 54px;
  }

  .news-page-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .news-page-list span {
    justify-content: flex-start;
    width: fit-content;
  }

  .news-page-list b,
  .news-logo-frame {
    grid-column: auto;
  }

  .news-logo-frame {
    width: min(180px, 56vw);
    margin-top: 8px;
  }

  .news-detail-intro,
  .news-detail-table > div,
  .news-detail-pdf-head,
  .news-detail-actions {
    display: block;
  }

  .news-detail-logo {
    width: min(260px, 76vw);
    margin-top: 26px;
  }

  .news-detail-table dt {
    margin-bottom: 6px;
  }

  .news-detail-button {
    margin-top: 12px;
  }

  .news-detail-pdf {
    height: 420px;
  }

  .section {
    padding: 78px 0;
  }

  .section-head h2 {
    font-size: 44px;
  }

  .large-copy {
    white-space: normal;
  }

  .adjacent-head h2 {
    white-space: normal;
  }

  .portfolio-logo-marquees {
    gap: 12px;
    padding-inline: 38px;
  }

  .portfolio-logo-nav {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .portfolio-logo-large {
    width: 240px;
    height: 116px;
  }

  .portfolio-logo-small {
    width: 160px;
    height: 78px;
  }

  .solution-stage {
    padding: 22px;
  }

  .flow-item {
    min-height: auto;
  }

  .circ {
    margin-top: 28px;
    overflow-x: auto;
  }

  .circ svg {
    width: 760px;
    max-width: none;
  }

  .pmap-stage {
    width: 100%;
    aspect-ratio: auto;
  }

  .pmap-ring {
    display: none;
  }

  .pmap-core {
    position: static;
    width: auto;
    max-width: 300px;
    min-height: 118px;
    margin: 0 auto 18px;
    transform: none;
    border-radius: 8px;
  }

  .pmap-nodes {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pmap-node {
    position: static;
    min-width: 0;
    transform: none;
  }

  .pmap-node b {
    white-space: normal;
  }

  .business-overview-body > p {
    font-size: 14px;
    line-height: 1.95;
  }

  .business-cycle {
    margin-top: 24px;
  }

  .business-cycle-stage {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .business-cycle-ring,
  .business-cycle-arrow {
    display: none;
  }

  .business-cycle-core,
  .business-cycle-node {
    position: static;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .business-cycle-core {
    min-height: 108px;
  }

  .asset-map {
    min-height: auto;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .asset-core,
  .asset-map span {
    position: static;
    transform: none;
  }

  .asset-core {
    width: 100%;
    height: auto;
    min-height: 110px;
    border-radius: 8px;
  }

  .case-shell {
    margin-left: 20px;
  }

  .image-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-copy {
    min-height: 310px;
    padding-block: 58px 48px;
    padding-inline: 24px;
  }

  .hero-title.hero-title-ja {
    max-width: 8.4em;
    font-size: clamp(40px, 11.2vw, 58px);
  }

  .section {
    padding: 66px 0;
  }

  .business-overview {
    padding-top: 50px;
  }

  .business-cycle-stage {
    min-height: 0;
  }

  .adjacent-head .business-label {
    margin-bottom: 10px;
  }

  .adjacent-head h2 {
    font-size: clamp(42px, 13vw, 62px);
  }
}

.business-overview .business-cycle {
  width: min(940px, 100%);
  max-width: 940px;
  margin: clamp(1rem, 2.5vw, 1.8rem) auto 0;
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.1rem, 2.6vw, 2rem);
  border-radius: 16px;
  background: color-mix(in srgb, #ffffff 86%, var(--bg));
  box-shadow: 0 18px 38px -26px rgba(18, 63, 70, .28);
}

.business-overview .business-cycle-svg {
  width: min(880px, 100%);
  margin: 0 auto;
  transform: translateX(-1.4%);
}

.lang-en .business-cycle-svg .ov-node text:first-of-type {
  font-size: 12.8px;
}

.lang-en .business-cycle-svg .ov-node text:last-of-type {
  font-size: 7.6px;
  letter-spacing: .25px;
}

.lang-en .business-cycle-svg .ov-core text:last-of-type {
  font-size: 15.8px;
}

@media (max-width: 720px) {
  .business-overview .business-cycle {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .business-overview .business-cycle-svg {
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero-stage.hero-stage-collage {
    width: calc(100vw - 20px);
    height: auto;
  }

  .hero-stage.hero-stage-collage .hero-collage {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(148px, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .hero-stage.hero-stage-collage .hero-tile {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 148px;
  }

  .hero-tile-label {
    padding: 14px;
  }

  .hero-tile-label b {
    font-size: 16px;
  }

  .hero-tile-label small {
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .hero-stage.hero-stage-collage .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-stage.hero-stage-collage .hero-tile {
    min-height: 154px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tile::before,
  .hero-tile img {
    transition: none;
  }

  .hero-tile:hover img {
    transform: none;
  }
}

/* English pages do not show small gold kickers, so tighten the heading rhythm. */
.lang-en .section-head,
.lang-en .adjacent-head,
.lang-en .investment-lead > div {
  margin-top: clamp(-18px, -1.4vw, -10px);
}

.lang-en .news-page-hero {
  padding-top: clamp(44px, 5.4vw, 76px);
}

.lang-en .news-detail-hero {
  padding-top: clamp(42px, 5.4vw, 74px);
}

@media (max-width: 720px) {
  .lang-en .section-head,
  .lang-en .adjacent-head,
  .lang-en .investment-lead > div {
    margin-top: -8px;
  }

  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .member-card {
    width: 100%;
    max-width: 260px;
    justify-self: center;
  }

  .member-card img {
    display: block;
    max-width: 220px;
    margin: 0 auto;
  }
}

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

  .member-card img {
    max-width: 240px;
  }
}

/* ===== お問い合わせトースト(左下) ===== */
.toast {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1000;
  max-width: min(90vw, 440px);
  padding: 13px 18px;
  border-radius: 10px;
  background: #0f2a30;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .02em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.toast::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand-teal, #008B8B);
  vertical-align: middle;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ギャラリー ライトボックス(クリックで拡大) ===== */
.news-detail-gallery img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 20, 24, .92);
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  background: rgba(255, 255, 255, .12);
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, .24); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
@media (max-width: 560px) {
  .lightbox { padding: 12px; }
  .lightbox-nav { width: 40px; height: 54px; font-size: 20px; }
  .lightbox-close { top: 6px; right: 8px; }
}
