:root {
  --ivory: #f7f5ef;
  --paper: #fcfbf7;
  --forest: #103f35;
  --jade: #238f6a;
  --jade-light: #9ddbc5;
  --ink: #26312d;
  --muted: #66716c;
  --line: rgba(16, 63, 53, 0.2);
  --gold: #b89b5e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family:
    var(--font-geist-sans), "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 108px;
  grid-template-columns: minmax(300px, 1fr) auto 178px;
  align-items: center;
  gap: 38px;
  padding: 0 4.6vw;
  border-bottom: 1px solid rgba(16, 63, 53, 0.19);
  background: rgba(252, 251, 247, 0.83);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  gap: 8px;
  padding-left: 17px;
  border-left: 2px solid var(--jade);
}

.brand-ja {
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: 0.09em;
}

.brand-en,
.eyebrow,
.hero-index,
.section-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand-en {
  color: var(--forest);
  font-size: 9px;
  opacity: 0.68;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 48px);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.main-nav a,
.contact-link {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

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

.contact-link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.contact-link:hover {
  border-color: var(--jade);
  background: var(--jade);
  color: white;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  overflow: hidden;
  padding: 150px 4.6vw 0;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 108px;
  bottom: 0;
  left: 4.6vw;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(184, 155, 94, 0.7),
    rgba(184, 155, 94, 0.05) 45%,
    transparent 76%
  );
  content: "";
}

.jade-light {
  position: absolute;
  z-index: 0;
  top: 108px;
  right: -9vw;
  width: 54vw;
  height: calc(100% - 108px);
  overflow: hidden;
  background:
    linear-gradient(
      102deg,
      transparent 3%,
      rgba(175, 224, 207, 0.035) 32%,
      rgba(79, 190, 149, 0.11) 66%,
      rgba(35, 143, 106, 0.22) 100%
    );
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.jade-light::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(16, 63, 53, 0.08) 72% 72.1%, transparent 72.1%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 28% 70%, rgba(255, 255, 255, 0.3));
  content: "";
}

.beam {
  position: absolute;
  top: -20%;
  display: block;
  width: 8%;
  height: 145%;
  transform: rotate(13deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.86),
    rgba(219, 249, 238, 0.72),
    transparent
  );
  filter: blur(5px);
  opacity: 0.72;
  animation: pass-light 10s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.beam-one {
  left: 24%;
}

.beam-two {
  left: 45%;
  width: 2%;
  opacity: 0.18;
  animation-delay: -5s;
}

@keyframes pass-light {
  0% {
    transform: translateX(-12vw) rotate(13deg);
    opacity: 0;
  }
  18% {
    opacity: 0.72;
  }
  72% {
    opacity: 0.72;
  }
  100% {
    transform: translateX(31vw) rotate(13deg);
    opacity: 0;
  }
}

.hero-index {
  position: absolute;
  z-index: 2;
  top: 158px;
  left: 4.6vw;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
}

.hero-index > span:first-child,
.section-meta > span:first-child {
  color: var(--gold);
}

.index-rule {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1080px, 78vw);
  margin: 2px 0 166px 7.1vw;
}

.hero-copy .eyebrow {
  margin: 0 0 31px;
  color: var(--jade);
}

.hero h1 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(50px, 4.75vw, 76px);
  font-weight: 450;
  line-height: 1.34;
  letter-spacing: 0.025em;
}

.headline-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.headline-opening {
  margin-bottom: 0.06em;
  color: #204d43;
  font-size: 0.78em;
  letter-spacing: 0.075em;
}

.headline-lit {
  position: relative;
  color: #0b4d3f;
  letter-spacing: 0.035em;
}

.headline-lit::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    transparent 38%,
    rgba(43, 158, 118, 0.86) 47%,
    rgba(230, 255, 245, 0.98) 50%,
    rgba(43, 158, 118, 0.86) 53%,
    transparent 62%
  );
  background-position: 145% 0;
  background-size: 230% 100%;
  background-clip: text;
  color: transparent;
  content: attr(data-text);
  pointer-events: none;
  -webkit-background-clip: text;
  animation: headline-glint 11s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes headline-glint {
  0%,
  20% {
    background-position: 145% 0;
    opacity: 0;
  }
  26% {
    opacity: 1;
  }
  47% {
    background-position: -45% 0;
    opacity: 1;
  }
  53%,
  100% {
    background-position: -45% 0;
    opacity: 0;
  }
}

.hero-lead {
  margin: 40px 0 0;
  color: #3e4a45;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.text-link {
  display: inline-flex;
  min-width: 218px;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding: 0 2px 13px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    min-width 220ms ease,
    color 220ms ease;
}

.text-link:hover {
  min-width: 236px;
  color: var(--jade);
}

.hero-definition {
  position: absolute;
  z-index: 2;
  right: 6.7vw;
  bottom: 34px;
  left: 10.2vw;
  color: var(--forest);
}

.hero-definition > p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.hero-path {
  position: relative;
  display: grid;
  grid-template-columns: minmax(145px, auto) 1fr minmax(145px, auto) 1fr minmax(160px, auto);
  align-items: center;
  gap: clamp(15px, 2.2vw, 38px);
  padding-top: 19px;
  border-top: 1px solid rgba(16, 63, 53, 0.27);
}

.hero-path::after {
  position: absolute;
  top: -2px;
  left: 0;
  width: 14%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #55cda1, white, #55cda1, transparent);
  box-shadow: 0 0 13px rgba(45, 155, 120, 0.62);
  content: "";
  animation: path-sweep 8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes path-sweep {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  16%,
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(720%);
    opacity: 0;
  }
}

.hero-path > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
}

.hero-path small {
  color: var(--jade);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-path strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-path i {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(16, 63, 53, 0.27);
}

.hero-path i b {
  position: absolute;
  inset: 0 auto 0 -35%;
  display: block;
  width: 35%;
  background: linear-gradient(90deg, transparent, #72d4b0, white, #72d4b0, transparent);
  box-shadow: 0 0 9px rgba(89, 207, 164, 0.75);
  animation: trace-line 5s ease-in-out infinite;
}

.hero-path i:nth-of-type(2) b {
  animation-delay: 1.4s;
}

@keyframes trace-line {
  0%,
  16% {
    transform: translateX(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateX(385%);
    opacity: 0;
  }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4.6vw;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 58px;
  background: var(--forest);
}

.about-intro {
  position: relative;
  display: grid;
  min-height: 78vh;
  grid-template-columns: 1fr 2.1fr 1.25fr;
  gap: 5vw;
  padding: 112px 6vw 120px;
  background: #f0eee7;
}

.section-meta {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-top: 9px;
  color: var(--muted);
}

.section-kicker {
  margin: 0 0 31px;
  color: var(--jade);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.about-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 2.75vw, 48px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.about-copy {
  align-self: end;
  margin: 0 0 12px;
  color: #4d5853;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

.business-section {
  padding: 128px 6vw 140px;
  background: var(--paper);
}

.business-section > .section-meta {
  margin-bottom: 82px;
}

.business-heading {
  display: grid;
  grid-template-columns: 1fr 2.7fr;
  gap: 5vw;
  margin-bottom: 92px;
}

.business-heading h2,
.approach-copy h2,
.contact-section h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(40px, 4vw, 66px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.035em;
}

.business-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(45px, 6vw, 100px);
  padding-top: 67px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.business-flow::before {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.business-flow article {
  position: relative;
  min-height: 270px;
  padding: 0 0 46px;
  border-right: 0;
}

.business-flow article::before {
  position: absolute;
  top: -61px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 1px var(--jade);
  content: "";
}

.flow-number {
  display: block;
  margin-bottom: 55px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.business-flow h3 {
  margin: 0 0 23px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.business-flow p,
.foundation > p,
.approach-copy > p {
  margin: 0;
  color: #59635f;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.035em;
}

.foundation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 8vw;
  margin-top: 112px;
  padding: 68px 6vw;
  background:
    linear-gradient(96deg, rgba(255, 255, 255, 0.78), transparent 54%),
    linear-gradient(120deg, #e1f0e9, #b8ddcf);
}

.foundation > div > p {
  margin: 0 0 15px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.foundation h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 38px;
  font-weight: 500;
}

.foundation h3 span {
  margin: 0 8px;
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 400;
}

.foundation > p {
  max-width: 39em;
  padding-bottom: 8px;
  color: #364e45;
}

.approach-section {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
  padding: 126px 6vw;
  background: var(--forest);
  color: white;
}

.approach-light {
  position: absolute;
  top: -38%;
  right: -10%;
  width: 54%;
  height: 170%;
  transform: rotate(12deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 188, 151, 0.2),
    rgba(150, 225, 198, 0.35),
    transparent
  );
  filter: blur(15px);
}

.light-meta {
  position: relative;
  color: rgba(255, 255, 255, 0.55);
}

.approach-copy {
  position: relative;
  align-self: center;
  max-width: 950px;
}

.approach-copy .section-kicker {
  color: #9ee2ca;
}

.approach-copy h2 {
  color: white;
}

.approach-copy > p {
  max-width: 650px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.light-link {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

.page-links {
  padding: 72px 6vw 130px;
  background: var(--paper);
}

.page-links > a {
  display: grid;
  min-height: 154px;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 240ms ease,
    color 240ms ease;
}

.page-links > a:first-child {
  border-top: 1px solid var(--line);
}

.page-links > a:hover {
  padding: 0 22px;
  color: var(--jade);
}

.page-links > a > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.page-links div {
  display: flex;
  align-items: baseline;
  gap: 38px;
}

.page-links small {
  min-width: 205px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.page-links strong {
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.company-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8vw;
  padding: 112px 6vw;
  background: #eeece4;
}

.company-section h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 44px;
  font-weight: 500;
}

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

.company-section dl > div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.company-section dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.company-section dd {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
}

.contact-section {
  position: relative;
  padding: 140px 6vw 150px;
  background:
    linear-gradient(103deg, transparent 38%, rgba(132, 215, 185, 0.42)),
    var(--ivory);
}

.contact-section > p:first-child {
  margin: 0 0 40px;
  color: var(--jade);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.contact-copy {
  max-width: 600px;
  margin: 36px 0 48px;
  color: #56615c;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 2;
}

.contact-section > a {
  display: flex;
  width: min(520px, 100%);
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.contact-section > a:hover {
  background: var(--forest);
  color: white;
}

footer {
  display: grid;
  min-height: 230px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 55px 6vw;
  background: #0d342c;
  color: white;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand span {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  letter-spacing: 0.08em;
}

.footer-brand small,
footer > small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.18em;
}

footer nav {
  display: flex;
  gap: 28px;
  font-size: 9px;
  letter-spacing: 0.13em;
}

footer > small {
  grid-column: 1 / -1;
  align-self: end;
}

.main-nav .is-current {
  color: var(--jade);
}

.subpage {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 64svh;
  grid-template-columns: 1.55fr 0.85fr;
  align-items: end;
  gap: 8vw;
  overflow: hidden;
  padding: 178px 10.2vw 82px;
  background: #e7ede8;
}

.subpage-hero-light {
  position: absolute;
  top: 108px;
  right: -3vw;
  width: 58vw;
  height: calc(100% - 108px);
  background: linear-gradient(
    108deg,
    transparent,
    rgba(104, 193, 160, 0.08) 50%,
    rgba(35, 143, 106, 0.16)
  );
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}

.subpage-breadcrumb {
  position: absolute;
  z-index: 2;
  top: 142px;
  left: 10.2vw;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.subpage-breadcrumb a {
  color: var(--jade);
}

.subpage-breadcrumb > span:last-child {
  color: var(--forest);
}

.subpage-watermark {
  position: absolute;
  z-index: 0;
  right: 3.5vw;
  bottom: 46px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(100px, 13.5vw, 220px);
  line-height: 0.8;
  letter-spacing: -0.035em;
  opacity: 0.045;
  pointer-events: none;
  white-space: nowrap;
}

.subpage-title,
.subpage-lead {
  position: relative;
  z-index: 1;
}

.subpage-title h1 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(40px, 3.65vw, 58px);
  font-weight: 450;
  line-height: 1.52;
  letter-spacing: 0.025em;
}

.about-page-hero .subpage-title h1 {
  font-size: clamp(40px, 3.3vw, 56px);
}

.about-page-hero .subpage-title h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  word-break: keep-all;
}

.subpage-lead {
  margin: 0 0 13px;
  color: #46524d;
  font-family:
    var(--font-geist-sans), "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.025em;
}

.about-view {
  display: grid;
  grid-template-columns: 0.75fr 1.55fr 1.2fr;
  gap: 5vw;
  padding: 130px 6vw 140px;
}

.about-view {
  background: #f0eee7;
}

.about-view-heading h2,
.name-origin-intro h2,
.message-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.about-view-copy {
  align-self: end;
}

.about-view-copy p {
  margin: 0;
  color: #4d5853;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

.about-view-copy p + p {
  margin-top: 24px;
}

.name-origin {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 2.05fr;
  gap: 5vw;
  padding: 132px 6vw 145px;
  overflow: hidden;
  background: var(--paper);
}

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

.origin-grid article {
  display: grid;
  min-height: 250px;
  grid-template-columns: 92px minmax(138px, 0.55fr) 1.25fr;
  align-items: start;
  gap: 27px;
  padding: 39px 0 42px;
  border-top: 1px solid var(--line);
}

.origin-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.origin-grid article > span {
  padding-top: 9px;
  color: var(--jade);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.origin-grid h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.origin-grid p {
  margin: 0;
  color: #46524d;
  font-family:
    var(--font-geist-sans), "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.025em;
}

.representative-message {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 2.05fr;
  gap: 5vw;
  padding: 132px 6vw 150px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--forest) 0 21%,
    #e4ebe6 21% 100%
  );
}

.representative-message > .section-meta {
  color: rgba(255, 255, 255, 0.68);
}

.representative-message::after {
  position: absolute;
  right: -12vw;
  bottom: -30%;
  width: 48vw;
  height: 74%;
  background: radial-gradient(
    ellipse at center,
    rgba(35, 143, 106, 0.1),
    transparent 68%
  );
  content: "";
  pointer-events: none;
}

.message-heading h2 {
  color: var(--forest);
}

.message-body {
  position: relative;
  z-index: 1;
}

.message-body > p {
  margin: 0;
  color: #4d5853;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.025em;
}

.message-body > p + p {
  margin-top: 25px;
}

.message-body .message-closing {
  margin-top: 43px;
  padding-top: 34px;
  border-top: 1px solid rgba(35, 143, 106, 0.34);
  color: var(--forest);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.9;
}

.message-signatures {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  margin-top: 50px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
}

.message-signatures p {
  margin: 0;
}

.message-signatures span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.subpage-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.subpage-links a {
  position: relative;
  display: grid;
  min-height: 245px;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 14px;
  padding: 55px 8vw;
  border-right: 1px solid var(--line);
  color: var(--forest);
  transition: background 220ms ease;
}

.subpage-links a:hover {
  background: #f0eee7;
}

.subpage-links small {
  grid-column: 1 / -1;
  color: var(--jade);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.subpage-links strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.subpage-links a > span {
  align-self: center;
}

.company-hero {
  min-height: 64svh;
  grid-template-columns: 52% 48%;
  gap: 0;
  align-items: stretch;
  padding: 108px 0 0 10.2vw;
  background: #eceeea;
}

.company-hero > .subpage-title {
  align-self: center;
  padding-right: 5vw;
}

.company-hero-summary {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--forest);
  color: white;
}

.company-hero-summary > div {
  display: flex;
  min-height: 135px;
  flex-direction: column;
  justify-content: center;
  padding: 25px 5.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.company-hero-summary > div:last-child {
  border-bottom: 0;
}

.company-hero-summary small {
  margin-bottom: 15px;
  color: var(--jade-light);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.19em;
}

.company-hero-summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 400;
  letter-spacing: 0.07em;
}

.company-foundation-amount {
  display: flex;
  align-items: baseline;
}

.company-foundation-amount span {
  margin-right: 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
}

.company-foundation-amount strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(116px, 12vw, 190px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.company-foundation-amount b {
  margin-left: 13px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 23px;
  font-weight: 400;
}

.portfolio-bar {
  display: flex;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.portfolio-bar i {
  display: block;
  height: 100%;
}

.portfolio-bar .portfolio-stocks {
  width: 50%;
}

.portfolio-bar .portfolio-realestate {
  width: 37.5%;
}

.portfolio-bar .portfolio-other {
  width: 12.5%;
}

.portfolio-stocks {
  background: #8ad7b7;
}

.portfolio-realestate {
  background: #3f9f7d;
}

.portfolio-other {
  background: var(--gold);
}

.portfolio-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-labels > div {
  position: relative;
  padding-left: 14px;
}

.portfolio-labels i {
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 6px;
}

.portfolio-labels span,
.portfolio-labels strong {
  display: block;
}

.portfolio-labels span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  line-height: 1.5;
}

.portfolio-labels strong {
  margin-top: 7px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.portfolio-labels strong small {
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0;
}

.company-profile-page,
.company-access {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 2.05fr;
  gap: 5vw;
  padding: 130px 6vw 145px;
  background: var(--paper);
}

.company-profile-heading h2,
.company-access-heading h2,
.foundation-detail h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.company-profile-list {
  margin: 0;
}

.company-profile-list > div {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 34px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.company-profile-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.company-profile-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.company-profile-list dd {
  margin: 0;
  color: #35423d;
  font-size: 14px;
  line-height: 1.9;
}

.company-foundation {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr 1.8fr;
  gap: 5vw;
  padding: 132px 6vw 145px;
  background: #e4ebe6;
}

.company-foundation-heading .section-kicker {
  margin-bottom: 25px;
}

.company-foundation-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 2.65vw, 46px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.company-foundation-heading h2 span {
  display: block;
  white-space: nowrap;
}

.foundation-copy {
  max-width: 42em;
  margin: 0;
  color: #46524d;
  font-size: 15px;
  line-height: 2;
}

.foundation-visual {
  margin-top: 54px;
  padding: 42px 46px 38px;
  background: var(--forest);
  color: white;
}

.foundation-visual .company-foundation-amount {
  margin-bottom: 38px;
}

.foundation-visual .company-foundation-amount strong {
  font-size: clamp(88px, 8vw, 132px);
}

.foundation-visual .portfolio-labels {
  margin-top: 25px;
}

.foundation-visual > p {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.capital-policy {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 27px;
  margin-top: 45px;
}

.capital-policy small {
  padding-top: 7px;
  color: var(--jade);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.17em;
}

.capital-policy p {
  margin: 0;
  color: #46524d;
  font-size: 13px;
  line-height: 2;
}

.company-access {
  grid-template-columns: 0.65fr 1.5fr 1.8fr;
  background: #f0eee7;
}

.company-access-heading h2 {
  font-size: clamp(34px, 2.65vw, 46px);
  white-space: nowrap;
}

.company-access-heading h2 span + span::before {
  content: "";
}

.company-address {
  align-self: end;
}

.company-address p {
  margin: 0;
  color: #3e4a45;
  font-size: 14px;
  line-height: 2.05;
}

.company-address a {
  display: flex;
  width: min(100%, 310px);
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  padding: 16px 0;
  border-top: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.company-access-map {
  grid-column: 2 / -1;
  height: 430px;
  margin-top: 42px;
  overflow: hidden;
  background: #dce3de;
}

.company-access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.78) sepia(0.12) hue-rotate(82deg) saturate(0.72) contrast(0.92);
}

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

  .main-nav {
    display: none;
  }

  .hero-copy {
    width: min(820px, 80vw);
  }

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

  .subpage-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-view,
  .representative-message {
    grid-template-columns: 0.65fr 1.6fr;
  }

  .about-view-copy,
  .message-body {
    grid-column: 2;
  }

  .name-origin {
    grid-template-columns: 0.65fr 1.6fr;
  }

  .origin-grid {
    grid-column: 2;
  }

  .company-profile-page,
  .company-access {
    grid-template-columns: 0.65fr 1.6fr;
  }

  .company-profile-list,
  .company-address {
    grid-column: 2;
  }

  .company-foundation {
    grid-template-columns: 0.65fr 1.6fr;
  }

  .company-foundation-content {
    grid-column: 2;
  }

  .company-foundation-heading h2 span {
    white-space: normal;
  }

  .company-access-heading h2 {
    white-space: normal;
  }

  .company-hero {
    grid-template-columns: 48% 52%;
  }

}

@media (max-width: 720px) {
  .site-header {
    height: 86px;
    gap: 14px;
    padding: 0 22px;
  }

  .brand-ja {
    font-size: 16px;
  }

  .brand-en {
    font-size: 8px;
  }

  .contact-link {
    display: none;
  }

  .mobile-menu {
    position: relative;
    z-index: 40;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: flex;
    width: 44px;
    height: 38px;
    cursor: pointer;
    list-style: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 27px;
    height: 1px;
    background: var(--forest);
  }

  .mobile-menu summary span:last-child {
    width: 18px;
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: -22px;
    display: flex;
    width: 100vw;
    flex-direction: column;
    padding: 32px 24px 38px;
    background: rgba(247, 245, 239, 0.98);
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
    font-family: Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 780px;
    padding: 126px 22px 0;
  }

  .hero::before {
    top: 86px;
    left: 22px;
  }

  .jade-light {
    top: 86px;
    right: -46vw;
    width: 118vw;
    height: calc(100% - 86px);
    opacity: 0.72;
    mask-image: linear-gradient(90deg, transparent 2%, #000 52%, #000 100%);
  }

  .hero-index {
    top: 120px;
    left: 22px;
  }

  .hero-copy {
    width: 100%;
    margin: 48px 0 196px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.4vw, 50px);
    line-height: 1.55;
  }

  .headline-line {
    white-space: normal;
  }

  .hero-lead {
    max-width: 90%;
    font-size: 13px;
  }

  .desktop-only {
    display: none;
  }

  .hero-definition {
    right: 48px;
    bottom: 54px;
    left: 22px;
    width: auto;
  }

  .hero-definition > p {
    margin-bottom: 11px;
    font-size: 7px;
  }

  .hero-path {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 13px;
  }

  .hero-path i {
    display: none;
  }

  .hero-path > span {
    gap: 5px;
    white-space: normal;
  }

  .hero-path strong {
    font-size: 10px;
    line-height: 1.5;
  }

  .scroll-cue {
    right: 22px;
  }

  .about-intro {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 82px 22px 96px;
  }

  .about-heading h2 {
    font-size: 34px;
  }

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

  .business-section {
    padding: 86px 22px 96px;
  }

  .business-section > .section-meta {
    margin-bottom: 55px;
  }

  .subpage-hero {
    min-height: 600px;
    gap: 30px;
    padding: 158px 22px 66px;
  }

  .subpage-hero-light {
    top: 86px;
    right: -55vw;
    width: 130vw;
    height: calc(100% - 86px);
  }

  .subpage-breadcrumb {
    top: 116px;
    left: 22px;
  }

  .subpage-watermark {
    top: 155px;
    right: -5vw;
    bottom: auto;
    font-size: 22vw;
  }

  .subpage-title {
    align-self: end;
  }

  .subpage-title h1 {
    font-size: clamp(34px, 9.5vw, 46px);
  }

  .about-page-hero .subpage-title h1 {
    font-size: clamp(32px, 8.8vw, 43px);
  }

  .about-page-hero .subpage-title h1 span {
    width: auto;
    word-break: normal;
  }

  .subpage-lead {
    max-width: 92%;
    font-size: 13px;
  }

  .about-view,
  .name-origin,
  .representative-message {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 86px 22px 96px;
    border-top: 6px solid var(--forest);
    background: #e4ebe6;
  }

  .company-profile-page,
  .company-access {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 86px 22px 96px;
  }

  .company-hero {
    display: block;
    min-height: auto;
    padding: 86px 0 0;
  }

  .company-hero > .subpage-title {
    min-height: 360px;
    padding: 116px 22px 58px;
  }

  .company-hero-summary > div {
    min-height: 108px;
    padding: 23px 22px;
  }

  .portfolio-labels {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portfolio-labels > div {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .portfolio-labels span {
    grid-column: 1;
  }

  .portfolio-labels strong {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .company-access-map {
    grid-column: auto;
    height: 360px;
    margin-top: 8px;
  }

  .company-profile-list,
  .company-address {
    grid-column: auto;
  }

  .company-profile-list > div {
    grid-template-columns: 105px 1fr;
    gap: 20px;
  }

  .company-foundation {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 86px 22px 96px;
  }

  .company-foundation-content {
    grid-column: auto;
  }

  .company-foundation-heading h2 span {
    white-space: nowrap;
  }

  .company-access-heading h2 span {
    display: block;
    white-space: nowrap;
  }

  .foundation-visual {
    margin-top: 40px;
    padding: 34px 24px 30px;
  }

  .foundation-visual .company-foundation-amount {
    margin-bottom: 30px;
  }

  .foundation-visual .company-foundation-amount strong {
    font-size: clamp(82px, 25vw, 112px);
  }

  .capital-policy {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .representative-message > .section-meta {
    color: var(--muted);
  }

  .about-view-copy,
  .message-body,
  .origin-grid {
    grid-column: auto;
  }

  .about-view-heading h2,
  .name-origin-intro h2,
  .message-heading h2 {
    font-size: 34px;
  }

  .origin-grid,
  .subpage-links {
    grid-template-columns: 1fr;
  }

  .origin-grid article {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .message-signatures {
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
  }

  .subpage-links a {
    min-height: 190px;
    padding: 42px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-heading {
    gap: 22px;
    margin-bottom: 58px;
  }

  .business-heading h2,
  .approach-copy h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .business-flow {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-left: 28px;
  }

  .business-flow::before {
    top: 6px;
    bottom: 44px;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .business-flow article {
    min-height: auto;
    padding: 29px 8px 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-flow article:last-child {
    border-bottom: 0;
  }

  .business-flow article::before {
    top: 35px;
    left: -28px;
  }

  .flow-number {
    margin-bottom: 31px;
  }

  .foundation {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 70px;
    padding: 45px 26px;
  }

  .foundation h3 span {
    font-size: 62px;
  }

  .approach-section {
    min-height: 680px;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 85px 22px 96px;
  }

  .approach-copy {
    align-self: start;
  }

  .page-links {
    padding: 60px 22px 88px;
  }

  .page-links > a {
    min-height: 126px;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
  }

  .page-links div {
    flex-direction: column;
    gap: 8px;
  }

  .page-links small {
    min-width: 0;
  }

  .page-links strong {
    font-size: 20px;
  }

  .company-section {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 82px 22px;
  }

  .company-section dl > div {
    grid-template-columns: 100px 1fr;
  }

  .contact-section {
    padding: 92px 22px 100px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 55px 22px;
  }

  footer nav {
    flex-direction: column;
    gap: 16px;
  }

  footer > small {
    grid-column: auto;
  }
}

.approach-page-hero {
  position: relative;
  display: grid;
  min-height: 69svh;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  padding: 108px 0 0 10.2vw;
  background: var(--paper);
}

.approach-page-hero .subpage-breadcrumb {
  top: 142px;
}

.approach-hero-copy {
  align-self: center;
  padding: 68px 7vw 64px 0;
}

.approach-hero-copy h1 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.approach-hero-copy h1 span,
.judgement-intro h2 span,
.management-heading h2 span,
.principle-statements strong span {
  display: block;
  width: max-content;
  max-width: 100%;
  word-break: keep-all;
}

.approach-hero-copy > p:last-child {
  max-width: 600px;
  margin: 36px 0 0;
  color: #46524d;
  font-size: 15px;
  line-height: 2.05;
}

.approach-hero-copy > p:last-child span {
  display: block;
}

.approach-hero-axis {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(157, 219, 197, 0.24), transparent 38%),
    var(--forest);
  color: white;
}

.approach-hero-axis::before,
.approach-hero-axis::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.approach-hero-axis::before {
  width: 1px;
  height: 74%;
}

.approach-hero-axis::after {
  width: 74%;
  height: 1px;
}

.axis-ring {
  position: absolute;
  border: 1px solid rgba(157, 219, 197, 0.32);
  border-radius: 50%;
}

.axis-ring-one {
  width: 48%;
  aspect-ratio: 1;
}

.axis-ring-two {
  width: 72%;
  aspect-ratio: 1;
}

.axis-core {
  position: relative;
  z-index: 2;
  display: flex;
  width: 170px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(16, 63, 53, 0.78);
}

.axis-core small {
  margin-bottom: 12px;
  color: var(--jade-light);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.axis-core strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.axis-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.56);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.axis-label-one {
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.axis-label-two {
  right: 10%;
  bottom: 24%;
}

.axis-label-three {
  bottom: 24%;
  left: 10%;
}

.judgement-section {
  display: grid;
  grid-template-columns: 0.68fr 1.25fr 2.2fr;
  column-gap: 5vw;
  row-gap: 76px;
  padding: 132px 6vw 150px;
  background: #f0eee7;
}

.judgement-intro {
  grid-column: 2 / 4;
  max-width: 920px;
}

.judgement-intro h2,
.management-heading h2,
.principles-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.judgement-intro > p:last-child {
  margin: 34px 0 0;
  color: #52605a;
  font-size: 14px;
  line-height: 2;
}

.judgement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.judgement-grid article {
  min-height: 264px;
  padding: 30px 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(252, 251, 247, 0.56);
}

.judgement-grid article:nth-child(even) {
  border-right: 0;
}

.judgement-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 218px;
}

.judgement-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.judgement-card-meta span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.judgement-card-meta small {
  color: var(--jade);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.judgement-grid h3 {
  margin: 34px 0 17px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.judgement-grid p {
  margin: 0;
  color: #52605a;
  font-size: 13px;
  line-height: 1.9;
}

.management-process {
  position: relative;
  display: grid;
  grid-template-columns: 0.68fr 1.25fr 2.2fr;
  column-gap: 5vw;
  row-gap: 76px;
  padding: 138px 6vw 150px;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.management-process::after {
  position: absolute;
  right: -16vw;
  bottom: -40%;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(157, 219, 197, 0.12);
  border-radius: 50%;
  content: "";
}

.management-heading {
  position: relative;
  z-index: 1;
  grid-column: 2 / 4;
  max-width: 920px;
}

.management-heading .section-kicker {
  color: var(--jade-light);
}

.management-heading h2 {
  color: white;
}

.management-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.management-steps article {
  min-height: 245px;
  padding: 31px 30px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.management-steps article:nth-child(even) {
  border-right: 0;
}

.management-steps article > span {
  color: var(--jade-light);
  font-family: Georgia, serif;
  font-size: 10px;
}

.management-steps h3 {
  margin: 37px 0 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.management-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.management-principles {
  display: grid;
  grid-template-columns: 0.68fr 1.25fr 2.2fr;
  gap: 5vw;
  padding: 132px 6vw 150px;
  background: var(--paper);
}

.principles-heading {
  grid-column: 2 / 4;
}

.management-principles ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.management-principles li {
  display: grid;
  grid-template-columns: 50px minmax(210px, 0.95fr) 1.15fr;
  gap: 25px;
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.management-principles li > span {
  padding-top: 5px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
}

.management-principles strong {
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.management-principles li p {
  margin: 0;
  color: #52605a;
  font-size: 13px;
  line-height: 1.9;
}

.approach-contact {
  position: relative;
  padding: 118px 10.2vw 126px;
  overflow: hidden;
  background: #dce8e1;
}

.approach-contact::after {
  position: absolute;
  top: -70%;
  right: -8vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(35, 143, 106, 0.16);
  border-radius: 50%;
  content: "";
}

.approach-contact > p:first-child {
  margin: 0 0 28px;
  color: var(--jade);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.approach-contact h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.65;
}

.approach-contact > p:nth-of-type(2) {
  max-width: 650px;
  margin: 33px 0 0;
  color: #52605a;
  font-size: 14px;
  line-height: 2;
}

.approach-contact a {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 320px);
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding: 17px 0;
  border-top: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
}

.approach-hero-verbs {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--forest);
  color: white;
}

.approach-hero-visual {
  display: grid;
  min-height: 540px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--forest);
}

.approach-hero-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #dce9e3;
}

.approach-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(16, 63, 53, 0.18)),
    linear-gradient(90deg, rgba(16, 63, 53, 0.08), transparent 35%);
  content: "";
}

.approach-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-continuity {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  align-content: center;
  column-gap: 24px;
  padding: 22px 3vw;
  background: var(--forest);
  color: white;
}

.approach-continuity::before {
  position: absolute;
  top: 0;
  right: 3vw;
  left: 3vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.approach-continuity strong {
  grid-column: 1;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.approach-continuity > span {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  color: var(--jade-light);
  font-size: 20px;
}

.approach-hero-verbs > div {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: center;
  gap: 10px 20px;
  min-height: 190px;
  padding: 36px 5.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  overflow: hidden;
}

.approach-hero-verbs > div:last-child {
  border-bottom: 0;
}

.approach-hero-verbs > div::after {
  position: absolute;
  right: -30px;
  bottom: -58px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
  content: attr(data-index);
}

.approach-hero-verbs span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.approach-hero-verbs small {
  color: var(--jade-light);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.approach-hero-verbs strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.decision-map {
  grid-column: 2 / 4;
  width: 100%;
  padding: 0;
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(16, 63, 53, 0.35);
  list-style: none;
}

.decision-flow li {
  position: relative;
  min-height: 285px;
  padding: 30px 3vw 35px 0;
  border-bottom: 1px solid rgba(16, 63, 53, 0.35);
}

.decision-flow li:not(:last-child) {
  margin-right: 3vw;
}

.decision-flow li:not(:last-child)::after {
  position: absolute;
  top: 47px;
  right: -1.5vw;
  color: var(--jade);
  content: "→";
}

.decision-flow li > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
}

.decision-flow small {
  margin-left: 18px;
  color: var(--jade);
  font-size: 11px;
  font-weight: 650;
}

.decision-flow h3 {
  margin: 52px 0 22px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

.decision-flow p {
  max-width: 330px;
  margin: 0;
  color: #52605a;
  font-size: 13px;
  line-height: 1.9;
}

.management-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 2 / 4;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  padding-top: 54px;
}

.management-line {
  position: absolute;
  top: 62px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--jade-light), rgba(255, 255, 255, 0.18));
}

.management-flow article {
  position: relative;
  min-height: 300px;
  padding: 54px 28px 30px 0;
}

.management-flow article::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--forest);
  border-radius: 50%;
  background: var(--jade-light);
  box-shadow: 0 0 0 1px rgba(157, 219, 197, 0.7);
  content: "";
}

.management-flow article > span {
  color: var(--jade-light);
  font-family: Georgia, serif;
  font-size: 10px;
}

.management-flow h3 {
  min-height: 66px;
  margin: 35px 0 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
}

.management-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.9;
}

.principle-statements {
  grid-column: 2 / 4;
  border-top: 1px solid var(--line);
}

.principle-statements article {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 190px;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.principle-statements article > div {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) 1fr;
  align-items: center;
  gap: 4vw;
}

.principle-statements article > span {
  align-self: center;
  padding-top: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.principle-statements strong {
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 3.1vw, 50px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.principle-statements p {
  max-width: 500px;
  margin: 0;
  color: #52605a;
  font-size: 13px;
  line-height: 1.9;
}

@media (max-width: 1050px) {
  .approach-page-hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .judgement-section,
  .management-process,
  .management-principles {
    grid-template-columns: 0.65fr 1.6fr;
  }

  .judgement-grid,
  .management-steps,
  .management-principles ol,
  .decision-map,
  .management-flow,
  .principle-statements {
    grid-column: 2;
  }

  .judgement-intro {
    grid-column: 2;
  }

  .management-heading {
    grid-column: 2;
  }

  .principles-heading {
    grid-column: 2;
  }

  .decision-flow {
    grid-template-columns: 1fr;
  }

  .decision-flow li {
    min-height: auto;
    padding: 30px 0 36px;
  }

  .decision-flow li:not(:last-child) {
    margin-right: 0;
  }

  .decision-flow li:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: -11px;
    transform: rotate(90deg);
  }

  .decision-flow h3 {
    margin: 25px 0 15px;
  }

  .principle-statements article > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .approach-page-hero {
    display: block;
    min-height: auto;
    padding: 86px 0 0;
  }

  .approach-page-hero .subpage-breadcrumb {
    top: 116px;
  }

  .approach-hero-copy {
    min-height: 520px;
    padding: 130px 22px 70px;
  }

  .approach-hero-copy h1 {
    font-size: 36px;
  }

  .approach-hero-copy > p:last-child {
    font-size: 13px;
  }

  .approach-hero-axis {
    min-height: 470px;
  }

  .judgement-section,
  .management-process,
  .management-principles {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 88px 22px 98px;
  }

  .judgement-grid,
  .management-steps,
  .management-principles ol,
  .decision-map,
  .management-flow,
  .principle-statements {
    grid-column: auto;
  }

  .judgement-intro {
    grid-column: auto;
  }

  .management-heading {
    grid-column: auto;
  }

  .principles-heading {
    grid-column: auto;
  }

  .judgement-grid,
  .management-steps {
    grid-template-columns: 1fr;
  }

  .judgement-grid article,
  .judgement-grid article:last-child,
  .management-steps article {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
  }

  .management-principles li {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .management-principles li p {
    grid-column: 2;
  }

  .approach-hero-verbs > div {
    min-height: 145px;
    padding: 30px 22px;
  }

  .approach-hero-visual {
    min-height: auto;
  }

  .approach-hero-image {
    min-height: 420px;
  }

  .approach-continuity {
    min-height: 110px;
    padding: 22px;
  }

  .approach-continuity::before {
    right: 22px;
    left: 22px;
  }

  .approach-hero-copy > p:last-child span {
    display: inline;
  }

  .approach-hero-copy h1 span,
  .judgement-intro h2 span,
  .management-heading h2 span,
  .principle-statements strong span {
    width: auto;
    word-break: normal;
  }

  .decision-map {
    padding-left: 0;
  }

  .management-flow {
    grid-template-columns: 1fr;
    padding: 0 0 0 34px;
  }

  .management-line {
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .management-flow article {
    min-height: auto;
    padding: 5px 0 58px 20px;
  }

  .management-flow article::before {
    top: 4px;
    left: -34px;
  }

  .management-flow h3 {
    min-height: auto;
    margin: 20px 0 13px;
  }

  .principle-statements article {
    grid-template-columns: 38px 1fr;
    min-height: auto;
    padding: 38px 0;
  }

  .principle-statements strong {
    font-size: 32px;
  }

  .approach-contact {
    padding: 88px 22px 98px;
  }

  .approach-contact h2 {
    font-size: 34px;
  }
}

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

  .beam {
    animation: none;
  }
}
