  @import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=JetBrains+Mono:wght@400;500&display=swap');

  /* ========== Global keyframes (defined outside @media so they apply on all viewports) ========== */
  @keyframes hero-reveal-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ========== Reset ========== */
  * {
    box-sizing: border-box;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }
  html {
    scroll-behavior: smooth;
  }
  html,
  body {
    background: #f0f7f3;
    color: #0d2b1a;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
  }
  .subpage-anchor-nav ~ section[id],
  section[id].section {
    scroll-margin-top: 180px;
  }
  @media (max-width: 767px) {
    .subpage-anchor-nav ~ section[id],
    section[id].section {
      scroll-margin-top: 72px;
    }
  }
  h1, h2, h3, h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  ul {
    list-style: none;
  }
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* ========== Scroll Animations ========== */
  .fade-in,
  .slide-from-left,
  .slide-from-right {
    opacity: 0;
    transition: opacity 600ms ease-out, transform 600ms ease-out;
  }
  .fade-in {
    transform: translateY(32px);
  }
  .slide-from-left {
    transform: translateX(-40px);
  }
  .slide-from-right {
    transform: translateX(40px);
  }
  .fade-in.is-visible,
  .slide-from-left.is-visible,
  .slide-from-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  .stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
  }
  .stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .stagger.is-visible > *:nth-child(1)  { transition-delay:   0ms; }
  .stagger.is-visible > *:nth-child(2)  { transition-delay: 120ms; }
  .stagger.is-visible > *:nth-child(3)  { transition-delay: 240ms; }
  .stagger.is-visible > *:nth-child(4)  { transition-delay: 360ms; }
  .stagger.is-visible > *:nth-child(5)  { transition-delay: 480ms; }
  .stagger.is-visible > *:nth-child(6)  { transition-delay: 600ms; }
  .stagger.is-visible > *:nth-child(7)  { transition-delay: 720ms; }
  .stagger.is-visible > *:nth-child(8)  { transition-delay: 840ms; }
  .stagger.is-visible > *:nth-child(9)  { transition-delay: 960ms; }
  .stagger.is-visible > *:nth-child(10) { transition-delay: 1080ms; }

  @media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-from-left,
    .slide-from-right,
    .stagger > * {
      opacity: 1;
      transform: none;
      animation: none;
      transition: none;
    }
  }

  /* ========== Splash Screen ========== */
  body.splash-active {
    overflow: hidden;
  }
  #splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d2b1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
  }
  #splash.exit {
    transform: translateY(-100%);
    pointer-events: none;
  }
  .splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 480px;
  }
  .counter-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0 0 32px 0;
  }
  #counter {
    font-family: 'Shippori Mincho', serif;
    font-size: 96px;
    font-weight: 400;
    color: #f0f7f3;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .percent-sign {
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    font-weight: 400;
    color: #f0f7f3;
    margin: 0 0 0 8px;
    line-height: 1;
    opacity: 0.55;
  }
  .progress-track {
    width: 480px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 24px 0;
  }
  .progress-bar {
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #109954 0%, #b8d9c8 100%);
    border-radius: 8px;
    animation: splashBarGrow 2.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  }
  .loading-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }
  @keyframes splashBarGrow {
    0%   { width: 0%; }
    100% { width: 100%; }
  }
  @media (max-width: 767px) {
    .splash-inner {
      width: 280px;
    }
    #counter {
      font-size: 64px;
      letter-spacing: -0.01em;
    }
    .percent-sign {
      font-size: 28px;
      margin-left: 4px;
    }
    .progress-track {
      width: 280px;
      margin-bottom: 16px;
    }
    .loading-label {
      font-size: 10px;
      letter-spacing: 0.42em;
    }
  }

  /* ========== Utilities ========== */
  .u-sketch {
    text-decoration: underline wavy #109954;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
  }

  /* ========== WebGL Backgrounds (Philosophy section only) ========== */
  .webgl-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: opacity 1200ms ease;
  }
  .webgl-bg.webgl-ready {
    opacity: 1;
  }
  #philosophy {
    position: relative;
    overflow: hidden;
  }
  #philosophy > .section-head,
  #philosophy > .kanji-grid,
  #philosophy > .article-head,
  #philosophy > .philosophy-lead,
  #philosophy > .cell-grid {
    position: relative;
    z-index: 2;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 28px 0 28px;
    border: 1.5px solid #5f8d5b;
    background: transparent;
    color: #5f8d5b;
    font-family: 'Manrope', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  }
  .btn::after {
    content: '→';
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .btn:hover {
    background: #5f8d5b;
    color: #ffffff;
    border-color: #5f8d5b;
  }
  .btn:hover::after {
    transform: translateX(4px);
  }
  .btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(95, 141, 91, 0.28);
  }
  .btn:active {
    transform: translateY(1px);
  }
  .btn-solid {
    background: #5f8d5b;
    color: #ffffff;
    border-color: #5f8d5b;
  }
  .btn-solid:hover {
    background: #4a7547;
    border-color: #4a7547;
    color: #ffffff;
  }
  .btn-outline-dark {
    border-color: #0d2b1a;
    color: #0d2b1a;
  }
  .btn-outline-dark:hover {
    background: #0d2b1a;
    border-color: #0d2b1a;
    color: #ffffff;
  }
  .btn-white {
    background: transparent;
    color: #3e3e3e;
    border-color: #3e3e3e;
  }
  .btn-white:hover {
    background: #ffffff;
    color: #5f8d5b;
    border-color: #5f8d5b;
  }
  .btn-white:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
  }
  /* Keep btn-white text/border colors inside .cta section
     (page CSS applies `.cta *` override that would otherwise darken it). */
  .cta .btn-white,
  .cta .btn-white::after {
    color: #3e3e3e;
  }
  .cta .btn-white:hover,
  .cta .btn-white:hover::after {
    color: #5f8d5b;
  }


  /* ========== Hamburger / Drawer ========== */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 8px 8px 8px 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    position: relative;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #0d2b1a;
    border-radius: 8px;
    transform-origin: center;
    transition: transform 300ms ease, opacity 300ms ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    background: #f0f7f3;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid #b8d9c8;
    display: flex;
    flex-direction: column;
  }
  .nav-drawer[aria-hidden="false"] {
    transform: translateX(0);
  }
  .nav-drawer-inner {
    display: flex;
    flex-direction: column;
    padding: 88px 32px 48px 32px;
    gap: 0;
    flex: 1;
  }
  .drawer-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #b8d9c8;
    text-decoration: none;
  }
  .drawer-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #109954;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.5;
  }
  .drawer-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    color: #0d2b1a;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }
  .drawer-cta {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 0;
    padding: 12px 24px 12px 24px;
    background: #109954;
    color: #f0f7f3;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
  }
  /* drawer-ctaの上余白は最後のdrawer-linkのbottom paddingで確保 */
  .drawer-link:last-of-type {
    margin: 0 0 32px 0;
  }

  .nav-overlay {
    position: fixed;
    inset: 0 0 0 0;
    background: rgba(13, 43, 26, 0.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms ease;
  }
  .nav-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
  }

  body.drawer-open {
    overflow: hidden;
  }

  /* ========== Organization ========== */
  @keyframes org-fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes org-drawLine {
    to { stroke-dashoffset: 0; }
  }
  #orgsvg .node {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
  }
  #orgsvg .animate .node,
  #orgsvg.animate .node {
    animation: org-fadeIn 0.5s ease-out forwards;
  }
  #orgsvg.animate .line {
    animation: org-drawLine 0.5s ease-out forwards;
  }
  #orgsvg.animate .logo  { animation-delay: 0s; }
  #orgsvg.animate .n1    { animation-delay: 0.6s; }
  #orgsvg.animate .l1    { animation-delay: 1.1s; }
  #orgsvg.animate .l2a, #orgsvg.animate .l2b { animation-delay: 1.5s; }
  #orgsvg.animate .n2, #orgsvg.animate .n3   { animation-delay: 2.0s; }
  #orgsvg.animate .l3, #orgsvg.animate .l4   { animation-delay: 2.5s; }
  #orgsvg.animate .l5a, #orgsvg.animate .l5b { animation-delay: 3.0s; }
  #orgsvg.animate .n4    { animation-delay: 3.5s; }
  #orgsvg.animate .l6    { animation-delay: 4.0s; }
  #orgsvg.animate .l7a, #orgsvg.animate .l7b { animation-delay: 4.4s; }
  #orgsvg.animate .n5, #orgsvg.animate .n6   { animation-delay: 4.9s; }

  .org-desc-cursor::after {
    content: '|';
    color: #109954;
    animation: blink 0.7s step-end infinite;
  }
  @keyframes blink {
    50% { opacity: 0; }
  }

  /* ========== PC Layout ========== */
  @media (min-width: 768px) {

    /* --- Header --- */
    .nav-toggle {
      display: none;
    }
    .nav-drawer,
    .nav-overlay {
      display: none;
    }
    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 48px 24px 48px;
      border-bottom: 1px solid #b8d9c8;
      background: #f0f7f3;
      position: sticky;
      top: 0;
      z-index: 50;
    }
    .brand {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .brand-jp {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0.1em;
      color: #0d2b1a;
    }
    .brand-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .site-nav {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .site-nav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 1.4;
      color: #0d2b1a;
    }
    .site-nav a .en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      color: #6a9e82;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .site-nav .nav-cta {
      flex-direction: row;
      gap: 8px;
      background: #109954;
      color: #f0f7f3;
      padding: 8px 20px 8px 20px;
      border-radius: 8px;
      font-size: 16px;
      letter-spacing: 0.05em;
    }

    /* --- Hero --- */
    .hero {
      position: relative;
      background: #ffffff;
      overflow: hidden;
      border-bottom: 1px solid #b8d9c8;
      min-height: calc(100vh - 80px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 0 0 0;
      margin: 0 0 0 0;
    }
    .hero-image {
      display: block;
      width: 100%;
      height: calc(100vh - 80px);
      object-fit: cover;
      object-position: center center;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(13, 43, 26, 0.55) 0%, rgba(13, 43, 26, 0.15) 55%, rgba(13, 43, 26, 0) 100%);
      pointer-events: none;
    }
    .hero-copy {
      position: absolute;
      left: 120px;
      top: 50%;
      transform: translateY(-50%);
      max-width: 760px;
      color: #ffffff;
      z-index: 2;
    }
    .hero-reveal {
      opacity: 0;
      transform: translateY(20px);
      animation: hero-reveal-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    .hero-reveal-1 { animation-delay: 4.5s; }
    .hero-reveal-2 { animation-delay: 4.8s; }
    .hero-reveal-3 { animation-delay: 5.1s; }
    .hero-reveal-4 { animation-delay: 5.5s; }
    body.splash-skipped .hero-reveal-1 { animation-delay: 0.1s; }
    body.splash-skipped .hero-reveal-2 { animation-delay: 0.35s; }
    body.splash-skipped .hero-reveal-3 { animation-delay: 0.6s; }
    body.splash-skipped .hero-reveal-4 { animation-delay: 0.9s; }
    @media (prefers-reduced-motion: reduce) {
      .hero-reveal {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }
    .hero-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.3em;
      color: #b8d9c8;
      margin: 0 0 28px 0;
      padding: 0 0 0 44px;
      position: relative;
    }
    .hero-eyebrow::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 28px;
      height: 1px;
      background: #b8d9c8;
    }
    .hero-title {
      font-family: 'Shippori Mincho', serif;
      font-size: 64px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.06em;
      color: #ffffff;
      margin: 0 0 32px 0;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    }
    .hero-title span {
      display: block;
      white-space: nowrap;
    }
    .hero-lead {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      line-height: 2;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.92);
      margin: 0 0 0 0;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }

    /* --- Section Base --- */
    .section {
      padding: 80px 48px 80px 48px;
      border-bottom: 1px solid #b8d9c8;
      background: #ffffff;
    }
    #services,
    #compliance,
    #organization {
      background: #f0faf5;
    }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      padding: 0 0 32px 0;
      margin: 0 0 40px 0;
      position: relative;
    }
    .section-head::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: #b8d9c8;
    }
    .fade-in.is-visible .section-head::after {
      animation: section-line-grow 1.6s ease-out forwards;
    }
    @keyframes section-line-grow {
      from { width: 0; }
      to   { width: 100%; }
    }
    .section-head h2 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 40px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0.04em;
      color: #0d2b1a;
    }
    .section-head > div:first-child {
      border-left: 2px solid #109954;
      padding: 0 0 0 16px;
    }
    .section-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #109954;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin: 0 0 8px 0;
    }
    .section-lead {
      margin: 0 0 48px 0;
    }
    .section-lead p {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 2;
      letter-spacing: 0.02em;
      color: #1e3828;
      margin: 0 0 16px 0;
    }
    .section-lead p:last-child {
      margin: 0 0 0 0;
    }
    .section-cta {
      padding: 0 0 0 0;
      margin: 0 0 0 0;
      text-align: center;
    }
    /* section-ctaの上余白は直前のコンテナのmargin-bottomで確保 */
    .services-grid,
    .strengths-grid,
    .services-list,
    .philosophy-grid {
      margin: 0 60px 48px 60px;
    }

    /* --- About (Full-width photo + block text) --- */
    .about-editorial {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }
    .about-editorial-photo {
      width: 100%;
      max-width: 720px;
      margin: 64px auto 64px auto;
      overflow: hidden;
      border-radius: 8px;
      text-align: center;
    }
    .about-editorial-photo img {
      /* ロゴをコンパクトに中央表示（高解像度なので拡大しても鮮明。サイズは意図的に抑えている） */
      width: 120px;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    .about-editorial-content {
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    .about-editorial-heading {
      font-family: 'Shippori Mincho', serif;
      font-size: 38px;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.1em;
      color: #0d2b1a;
      margin: 0 0 40px 0;
      padding: 0;
    }
    .about-editorial-heading::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: #109954;
      margin: 28px auto 0 auto;
    }
    .about-editorial-body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      line-height: 2.2;
      letter-spacing: 0.06em;
      color: #3a4e44;
      margin: 0 0 14px 0;
      white-space: nowrap;
    }
    .about-editorial-body:last-of-type {
      margin: 0 0 36px 0;
    }

    /* --- Services Grid --- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .service-cell {
      padding: 32px 32px 32px 32px;
      position: relative;
      overflow: hidden;
      min-height: 260px;
      display: flex;
      cursor: pointer;
      color: #ffffff;
      isolation: isolate;
    }
    .service-cell-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: grayscale(1);
      transition: transform 0.6s ease, filter 0.3s ease;
    }
    .service-cell::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(90, 90, 90, 0.45);
      z-index: 1;
      transition: background 0.3s ease;
      pointer-events: none;
    }
    .service-cell:hover .service-cell-img {
      transform: scale(1.06);
      filter: grayscale(0);
    }
    .service-cell:hover::before {
      background: rgba(0, 0, 0, 0.25);
    }
    .service-cell-body {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      width: 100%;
    }
    .service-cell .num {
      align-self: flex-start;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      line-height: 1;
      color: #ffffff;
      letter-spacing: 0.24em;
      padding: 6px 12px 6px 12px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      margin: 0 0 24px 0;
    }
    .service-cell h3 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 28px;
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: 0.06em;
      color: #ffffff;
      margin: 0 0 4px 0;
    }
    .service-cell .en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.22em;
      margin: 0 0 12px 0;
    }
    .service-cell .desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.88);
      margin: 0 0 0 0;
      padding: 0 0 0 0;
      border: none;
    }

    /* --- Strengths --- */
    /* --- Strengths (2x2 Grid) --- */
    .strengths-rows {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 80px;
      row-gap: 0;
      max-width: 1200px;
      margin: 0 auto;
    }
    /* Override .fade-in for container so children animate instead */
    .strengths-reveal.fade-in {
      opacity: 1;
      transform: none;
      transition: none;
    }
    /* Row: slide in from the left */
    .strengths-reveal .strength-row {
      opacity: 0;
      transform: translateX(-56px);
      transition: opacity 800ms ease-out, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .strengths-reveal.is-visible .strength-row {
      opacity: 1;
      transform: translateX(0);
    }
    .strengths-reveal.is-visible .strength-row:nth-child(1) { transition-delay: 0ms; }
    .strengths-reveal.is-visible .strength-row:nth-child(2) { transition-delay: 180ms; }
    .strengths-reveal.is-visible .strength-row:nth-child(3) { transition-delay: 360ms; }
    .strengths-reveal.is-visible .strength-row:nth-child(4) { transition-delay: 540ms; }
    /* Number: scale pop after row arrives */
    .strengths-reveal .strength-row-num {
      display: inline-block;
      transform: scale(0.5);
      opacity: 0;
      transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 600ms ease-out;
    }
    .strengths-reveal.is-visible .strength-row-num {
      transform: scale(1);
      opacity: 1;
    }
    .strengths-reveal.is-visible .strength-row:nth-child(1) .strength-row-num { transition-delay: 180ms; }
    .strengths-reveal.is-visible .strength-row:nth-child(2) .strength-row-num { transition-delay: 360ms; }
    .strengths-reveal.is-visible .strength-row:nth-child(3) .strength-row-num { transition-delay: 540ms; }
    .strengths-reveal.is-visible .strength-row:nth-child(4) .strength-row-num { transition-delay: 720ms; }
    @media (prefers-reduced-motion: reduce) {
      .strengths-reveal .strength-row,
      .strengths-reveal .strength-row-num {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
    .strength-row {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 32px;
      align-items: center;
      padding: 48px 0 48px 0;
      position: relative;
      cursor: pointer;
    }
    .strength-row:nth-child(1),
    .strength-row:nth-child(2) {
      border-top: 1px solid #b8d9c8;
    }
    .strength-row {
      border-bottom: 1px solid #b8d9c8;
    }
    .strength-row-num {
      font-family: 'Shippori Mincho', serif;
      font-size: 110px;
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: transparent;
      -webkit-text-stroke: 1.2px #109954;
      font-weight: 400;
      transition: color 0.35s ease;
      display: inline-block;
    }
    .strength-row:hover .strength-row-num {
      color: #109954;
    }
    .strength-row-body {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .strength-row-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.28em;
      color: #6a9e82;
      padding: 0 0 0 36px;
      position: relative;
      margin: 0;
    }
    .strength-row-en::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 24px;
      height: 1px;
      background: #109954;
    }
    .strength-row-title {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.06em;
      color: #0d2b1a;
      margin: 0;
      transition: color 0.35s ease;
    }
    .strength-row:hover .strength-row-title {
      color: #109954;
    }
    .strength-row-desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 1.95;
      letter-spacing: 0.04em;
      color: #3a4e44;
      margin: 0;
    }
    .strength-feature p {
      font-size: 14px;
    }

    /* --- Services List (SDGs) --- */
    .services-list .service-row {
      display: grid;
      grid-template-columns: 60px 1fr 2fr 120px;
      gap: 32px;
      padding: 36px 24px 36px 24px;
      border-top: 1px solid #b8d9c8;
      align-items: center;
      position: relative;
      isolation: isolate;
      cursor: pointer;
    }
    .services-list .service-row::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--row-bg);
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }
    .services-list .service-row::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(240, 247, 243, 0.55);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }
    .services-list .service-row:hover::before {
      opacity: 0.9;
    }
    .services-list .service-row:hover::after {
      opacity: 1;
    }
    .services-list .service-row:hover .index,
    .services-list .service-row:hover h3,
    .services-list .service-row:hover .en,
    .services-list .service-row:hover .desc {
      color: #0d2b1a;
    }
    .services-list .service-row:last-of-type {
      border-bottom: 1px solid #b8d9c8;
    }
    .service-row .index {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 24px;
      font-weight: 300;
      line-height: 1;
      color: #109954;
      transition: color 0.4s ease;
    }
    .service-row h3 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 24px;
      line-height: 1.4;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 4px 0;
      transition: color 0.4s ease;
    }
    .service-row .en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      transition: color 0.4s ease;
    }
    .service-row .desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 1.8;
      color: #1e3828;
      transition: color 0.4s ease;
    }
    .service-row .more {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.5;
      text-align: right;
      color: #109954;
    }

    /* --- Governance (2-Column Editorial) --- */
    .gov-editorial {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 120px;
      max-width: 1400px;
      margin: 0 auto;
      align-items: center;
    }
    .gov-editorial-left {
      align-self: center;
    }
    .gov-editorial-lead {
      font-family: 'Shippori Mincho', serif;
      font-size: 30px;
      font-weight: 500;
      line-height: 1.8;
      letter-spacing: 0.08em;
      color: #0d2b1a;
      margin: 0 0 32px 0;
      position: relative;
    }
    .gov-editorial-intro {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      line-height: 2.1;
      letter-spacing: 0.04em;
      color: #3a4e44;
      margin: 0;
      padding: 0 0 0 28px;
      border-left: 2px solid #b8d9c8;
    }
    .gov-editorial-intro strong {
      color: #109954;
      font-weight: 600;
    }
    .gov-editorial-list {
      counter-reset: gov;
    }
    .gov-editorial-item {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 24px;
      align-items: center;
      padding: 28px 0 28px 0;
      border-top: 1px solid #d9e3dd;
    }
    .gov-editorial-item:last-child {
      border-bottom: 1px solid #d9e3dd;
    }
    .gov-editorial-num {
      font-family: 'Shippori Mincho', serif;
      font-size: 60px;
      line-height: 1;
      color: #109954;
      letter-spacing: 0.02em;
    }
    .gov-editorial-item h3 {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: 0.06em;
      color: #0d2b1a;
      margin: 0 0 12px 0;
    }
    .gov-editorial-item h3 small {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.28em;
      color: #6a9e82;
      margin-left: 10px;
      text-transform: uppercase;
    }
    .gov-editorial-item p {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 2;
      letter-spacing: 0.04em;
      color: #3a4e44;
      margin: 0;
    }

    /* --- Philosophy / Kanji Cards --- */
    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
    }
    .kanji-card {
      text-align: center;
    }
    .kanji-char {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 144px;
      line-height: 1;
      letter-spacing: 0;
      color: #109954;
      margin: 0 0 16px 0;
    }
    .kanji-char.ink {
      color: #0d2b1a;
    }
    .kanji-label {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 24px;
      line-height: 1.4;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 0 0;
    }
    .kanji-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      margin: 0 0 16px 0;
    }
    .kanji-desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 2;
      color: #1e3828;
    }
    .kanji-desc:not(:last-of-type) {
      margin: 0 0 8px 0;
    }

    /* --- Philosophy (三つの漢字) --- */
    #philosophy .kanji-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    #philosophy .kanji-grid.fade-in {
      opacity: 1;
      transform: none;
      transition: none;
    }
    #philosophy .kanji-grid .kanji-item {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 1200ms ease-out, transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    #philosophy .kanji-grid.is-visible .kanji-item {
      opacity: 1;
      transform: translateY(0);
    }
    #philosophy .kanji-grid.is-visible .kanji-item:nth-child(1) { transition-delay: 100ms; }
    #philosophy .kanji-grid.is-visible .kanji-item:nth-child(2) { transition-delay: 550ms; }
    #philosophy .kanji-grid.is-visible .kanji-item:nth-child(3) { transition-delay: 1000ms; }
    #philosophy .kanji-item {
      text-align: center;
      padding: 32px 24px 32px 24px;
      background: transparent;
      border: none;
    }
    #philosophy .kanji-glyph {
      font-family: 'Shippori Mincho', serif;
      font-size: 140px;
      line-height: 1;
      color: #0d2b1a;
      margin: 0 0 24px 0;
      display: inline-block;
      text-shadow:
        1px 1px 0 #1a3a26,
        2px 2px 0 #233f2c,
        3px 3px 0 #2b4432,
        4px 4px 0 #324937,
        5px 5px 0 #384e3c,
        6px 6px 2px rgba(13, 43, 26, 0.3),
        8px 8px 16px rgba(13, 43, 26, 0.25);
      transition: transform 0.4s ease, text-shadow 0.4s ease;
    }
    #philosophy .kanji-glyph:hover {
      transform: translate(-2px, -2px);
      text-shadow:
        1px 1px 0 #1a3a26,
        2px 2px 0 #233f2c,
        3px 3px 0 #2b4432,
        4px 4px 0 #324937,
        5px 5px 0 #384e3c,
        6px 6px 0 #3e5341,
        7px 7px 0 #445846,
        8px 8px 4px rgba(13, 43, 26, 0.35),
        12px 12px 24px rgba(13, 43, 26, 0.3);
    }
    #philosophy .kanji-glyph.kanji-accent {
      color: #109954;
      text-shadow:
        1px 1px 0 #0d7a43,
        2px 2px 0 #0b6d3c,
        3px 3px 0 #0a6035,
        4px 4px 0 #08532e,
        5px 5px 0 #074627,
        6px 6px 2px rgba(16, 153, 84, 0.35),
        8px 8px 16px rgba(16, 153, 84, 0.3);
    }
    #philosophy .kanji-glyph.kanji-accent:hover {
      text-shadow:
        1px 1px 0 #0d7a43,
        2px 2px 0 #0b6d3c,
        3px 3px 0 #0a6035,
        4px 4px 0 #08532e,
        5px 5px 0 #074627,
        6px 6px 0 #063f22,
        7px 7px 0 #05381e,
        8px 8px 4px rgba(16, 153, 84, 0.4),
        12px 12px 24px rgba(16, 153, 84, 0.35);
    }
    #philosophy .kanji-reading {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      line-height: 1.4;
      color: #0d2b1a;
      margin: 0 0 6px 0;
    }
    #philosophy .kanji-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.24em;
      margin: 0 0 20px 0;
    }
    #philosophy .kanji-copy {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 2;
      color: #1e3828;
      margin: 0 0 0 0;
    }

    /* --- Organization --- */
    .org-layout {
      display: flex;
      gap: 56px;
      align-items: center;
      padding: 0 0 0 0;
      margin: 0 auto 0 auto;
      max-width: 1800px;
    }
    .org-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      width: 45%;
    }
    .org-wrap svg {
      width: 100%;
      height: auto;
      margin: 0 0 24px 0;
    }
    .org-desc {
      flex: 1;
      min-width: 0;
      padding: 0 0 0 0;
    }
    .org-desc-lead {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 28px 0;
    }
    .org-desc p {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 21px;
      line-height: 2;
      letter-spacing: 0.02em;
      color: #1e3828;
      margin: 0 0 16px 0;
      min-height: 1em;
    }
    .org-replay {
      margin: 0 0 0 0;
      padding: 8px 16px 8px 16px;
      background: transparent;
      border: 1px solid #b8d9c8;
      border-radius: 8px;
      color: #6a9e82;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.1em;
      cursor: pointer;
    }
    .org-replay:hover {
      background: #f0faf5;
    }

    /* --- Access --- */
    .access-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 48px;
      align-items: center;
    }
    .access-info {
      padding: 0 0 0 0;
    }
    .access-info h3 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 24px;
      line-height: 1.3;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 32px 0;
      padding: 0 0 16px 0;
      border-bottom: 1px solid #109954;
    }
    .access-list {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 16px 24px;
    }
    .access-list dt {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0 0 0 0;
    }
    .access-list dd {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 1.9;
      letter-spacing: 0.02em;
      color: #1e3828;
    }
    .access-map {
      border-radius: 8px;
      overflow: hidden;
    }
    .access-map iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* --- CTA --- */
    .cta {
      position: relative;
      padding: 120px 64px 120px 64px;
      text-align: center;
      background: #0d2b1a;
      border-top: 1px solid #b8d9c8;
      overflow: hidden;
      isolation: isolate;
    }
    .cta::before {
      content: '';
      position: absolute;
      inset: -30px;
      background-image: url('../img/hero.png');
      background-size: cover;
      background-position: center;
      filter: blur(18px);
      z-index: -2;
    }
    .cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.13);
      z-index: -1;
    }
    .cta-eyebrow {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #b8d9c8;
      letter-spacing: 0.2em;
      margin: 0 0 16px 0;
    }
    .cta-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 56px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0.04em;
      color: #787878;
      margin: 0 0 24px 0;
    }
    .cta-text {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 2;
      letter-spacing: 0.02em;
      color: #787878;
      white-space: normal;
      margin: 0 auto 32px auto;
    }
    .cta-text:not(:last-of-type) {
      margin: 0 auto 12px auto;
    }

    /* --- Footer --- */
    .site-footer {
      background: #f0f7f3;
      color: #0d2b1a;
      padding: 64px 48px 32px 48px;
      border-top: 1px solid #b8d9c8;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      padding: 0 0 40px 0;
      border-bottom: 1px solid #b8d9c8;
      margin: 0 auto 24px auto;
    }
    .footer-brand-kanji {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 32px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0.04em;
      margin: 0 0 8px 0;
    }
    .footer-brand-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      letter-spacing: 0.2em;
      color: #109954;
      margin: 0 0 20px 0;
    }
    .footer-address {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.8;
      color: #2d5a3d;
      max-width: 280px;
    }
    .site-footer h4 {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #109954;
      margin: 0 0 16px 0;
    }
    .site-footer ul li {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.6;
      letter-spacing: 0.02em;
      margin: 0 0 8px 0;
      color: #2d5a3d;
    }
    .footer-bot {
      display: flex;
      justify-content: center;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(13, 43, 26, 0.5);
      letter-spacing: 0.15em;
    }

  }

  /* ========== SP Layout ========== */
  @media (max-width: 767px) {

    /* --- Header --- */
    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px 16px 24px;
      border-bottom: 1px solid #b8d9c8;
      background: #f0f7f3;
      position: sticky;
      top: 0;
      z-index: 50;
      flex-wrap: nowrap;
      gap: 0;
    }
    .brand {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .brand-jp {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0.1em;
      color: #0d2b1a;
    }
    .brand-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .site-nav {
      display: none;
    }
    .nav-toggle {
      display: flex;
    }

    /* --- Hero --- */
    .hero {
      position: relative;
      background: #ffffff;
      overflow: hidden;
      border-bottom: 1px solid #b8d9c8;
      display: block;
      padding: 0 0 0 0;
      margin: 0 0 0 0;
      min-height: 560px;
    }
    .hero-image {
      display: block;
      width: 100%;
      height: 560px;
      object-fit: cover;
      object-position: center center;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 43, 26, 0.2) 0%, rgba(13, 43, 26, 0.65) 100%);
      pointer-events: none;
    }
    .hero-copy {
      position: absolute;
      left: 32px;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      color: #ffffff;
      z-index: 2;
    }
    .hero-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.28em;
      color: #b8d9c8;
      margin: 0 0 20px 0;
      padding: 0 0 0 32px;
      position: relative;
    }
    .hero-eyebrow::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 20px;
      height: 1px;
      background: #b8d9c8;
    }
    .hero-title {
      font-family: 'Shippori Mincho', serif;
      font-size: 26px;
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: 0.04em;
      color: #ffffff;
      margin: 0 0 20px 0;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }
    .hero-title span {
      display: block;
    }
    .hero-lead {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 1.9;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.92);
      margin: 0 0 0 0;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }
    .hero-reveal {
      opacity: 0;
      transform: translateY(20px);
      animation: hero-reveal-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    .hero-reveal-1 { animation-delay: 4.5s; }
    .hero-reveal-2 { animation-delay: 4.8s; }
    .hero-reveal-3 { animation-delay: 5.1s; }
    .hero-reveal-4 { animation-delay: 5.5s; }
    body.splash-skipped .hero-reveal-1 { animation-delay: 0.1s; }
    body.splash-skipped .hero-reveal-2 { animation-delay: 0.35s; }
    body.splash-skipped .hero-reveal-3 { animation-delay: 0.6s; }
    body.splash-skipped .hero-reveal-4 { animation-delay: 0.9s; }
    @media (prefers-reduced-motion: reduce) {
      .hero-reveal {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }

    /* --- Section Base --- */
    .section {
      padding: 48px 24px 48px 24px;
      border-bottom: 1px solid #b8d9c8;
      background: #ffffff;
    }
    #services,
    #compliance,
    #organization {
      background: #f0faf5;
    }
    .section-head {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 0 0 32px 0;
      margin: 0 0 40px 0;
      position: relative;
    }
    .section-head::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: #b8d9c8;
    }
    .fade-in.is-visible .section-head::after {
      animation: section-line-grow 1.6s ease-out forwards;
    }
    .section-head h2 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 28px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0.04em;
      color: #0d2b1a;
    }
    .section-head > div:first-child {
      border-left: 2px solid #109954;
      padding: 0 0 0 16px;
    }
    .section-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #109954;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin: 0 0 8px 0;
    }
    .section-lead {
      margin: 0 0 48px 0;
    }
    .section-lead p {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 2;
      letter-spacing: 0.02em;
      color: #1e3828;
      margin: 0 0 16px 0;
    }
    .section-lead p:last-child {
      margin: 0 0 0 0;
    }
    .section-cta {
      padding: 0 0 0 0;
      margin: 0 0 0 0;
      text-align: center;
    }
    /* section-ctaの上余白は直前のコンテナのmargin-bottomで確保 */
    .services-grid,
    .strengths-grid,
    .services-list,
    .philosophy-grid {
      margin: 0 0 32px 0;
    }

    /* --- About (Editorial) --- */
    .about-editorial {
      max-width: 100%;
    }
    .about-editorial-photo {
      width: 100%;
      max-width: 520px;
      margin: 0 auto 36px auto;
      overflow: hidden;
      border-radius: 8px;
      text-align: center;
    }
    .about-editorial-photo img {
      /* ロゴをコンパクトに中央表示（高解像度なので拡大しても鮮明。サイズは意図的に抑えている） */
      width: 100px;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    .about-editorial-content {
      max-width: 100%;
      text-align: center;
    }
    .about-editorial-heading {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.06em;
      color: #0d2b1a;
      margin: 0 0 28px 0;
    }
    .about-editorial-heading::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: #109954;
      margin: 20px auto 0 auto;
    }
    .about-editorial-body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      line-height: 2.1;
      letter-spacing: 0.04em;
      color: #3a4e44;
      text-align: left;
      margin: 0 0 18px 0;
    }
    .about-editorial-body:last-of-type {
      margin: 0 0 28px 0;
    }

    /* --- Services Grid --- */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
    }
    .service-cell {
      padding: 28px 24px 28px 24px;
      position: relative;
      overflow: hidden;
      min-height: 220px;
      display: flex;
      cursor: pointer;
      color: #ffffff;
      isolation: isolate;
    }
    .service-cell-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: grayscale(1);
    }
    .service-cell::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(90, 90, 90, 0.45);
      z-index: 1;
      pointer-events: none;
    }
    .service-cell-body {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      width: 100%;
    }
    .service-cell .num {
      align-self: flex-start;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      line-height: 1;
      color: #ffffff;
      letter-spacing: 0.22em;
      padding: 5px 10px 5px 10px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      margin: 0 0 20px 0;
    }
    .service-cell h3 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: 0.06em;
      color: #ffffff;
      margin: 0 0 4px 0;
    }
    .service-cell .en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.22em;
      margin: 0 0 10px 0;
    }
    .service-cell .desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.88);
      margin: 0 0 0 0;
      padding: 0 0 0 0;
      border: none;
    }

    /* --- Strengths (Editorial: Outlined Number) --- */
    .strengths-rows {
      max-width: 100%;
    }
    .strength-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 32px 0 32px 0;
      border-bottom: 1px solid #b8d9c8;
    }
    .strength-row:first-child {
      border-top: 1px solid #b8d9c8;
    }
    .strength-row-num {
      font-family: 'Shippori Mincho', serif;
      font-size: 80px;
      line-height: 0.9;
      color: transparent;
      -webkit-text-stroke: 1.2px #109954;
      display: inline-block;
    }
    .strength-row-body {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .strength-row-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.26em;
      color: #6a9e82;
      padding: 0 0 0 32px;
      position: relative;
      margin: 0;
    }
    .strength-row-en::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 22px;
      height: 1px;
      background: #109954;
    }
    .strength-row-title {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.5;
      color: #0d2b1a;
      margin: 0;
    }
    .strength-row-desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 1.95;
      color: #3a4e44;
      margin: 0;
    }

    /* --- Services List (SDGs) --- */
    .services-list .service-row {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      padding: 24px 0 24px 0;
      border-top: 1px solid #b8d9c8;
      align-items: center;
    }
    .services-list .service-row:last-of-type {
      border-bottom: 1px solid #b8d9c8;
    }
    .services-list .service-row .desc,
    .services-list .service-row .more {
      grid-column: 1 / -1;
    }
    .service-row .index {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 24px;
      font-weight: 300;
      line-height: 1;
      color: #109954;
    }
    .service-row h3 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 4px 0;
    }
    .service-row .en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
    }
    .service-row .desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.8;
      color: #1e3828;
    }
    .service-row .more {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.5;
      text-align: right;
      color: #109954;
    }

    /* --- Governance (Editorial List) --- */
    .gov-editorial {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 100%;
      padding: 0;
    }
    .gov-editorial-left {
      position: static;
    }
    .gov-editorial-lead {
      font-family: 'Shippori Mincho', serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1.8;
      letter-spacing: 0.06em;
      color: #0d2b1a;
      margin: 0 0 24px 0;
    }
    .gov-editorial-intro {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 14px;
      line-height: 2;
      color: #3a4e44;
      margin: 0 0 36px 0;
      padding: 0 0 0 20px;
      border-left: 2px solid #b8d9c8;
    }
    .gov-editorial-intro strong {
      color: #109954;
      font-weight: 600;
    }
    .gov-editorial-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 16px;
      align-items: center;
      padding: 24px 0 24px 0;
      border-top: 1px solid #d9e3dd;
    }
    .gov-editorial-item:last-child {
      border-bottom: 1px solid #d9e3dd;
    }
    .gov-editorial-num {
      font-family: 'Shippori Mincho', serif;
      font-size: 52px;
      line-height: 1;
      color: #109954;
    }
    .gov-editorial-item h3 {
      font-family: 'Shippori Mincho', serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.4;
      color: #0d2b1a;
      margin: 0 0 10px 0;
    }
    .gov-editorial-item h3 small {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.28em;
      color: #6a9e82;
      margin: 4px 0 0 0;
      text-transform: uppercase;
    }
    .gov-editorial-item p {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 1.95;
      color: #3a4e44;
      margin: 0;
    }

    /* --- Philosophy / Kanji Cards --- */
    .philosophy-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .kanji-card {
      text-align: center;
    }
    .kanji-char {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 96px;
      line-height: 1;
      letter-spacing: 0;
      color: #109954;
      margin: 0 0 16px 0;
    }
    .kanji-char.ink {
      color: #0d2b1a;
    }
    .kanji-label {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 0 0;
    }
    .kanji-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      margin: 0 0 16px 0;
    }
    .kanji-desc {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 2;
      color: #1e3828;
    }
    .kanji-desc:not(:last-of-type) {
      margin: 0 0 8px 0;
    }

    /* --- Philosophy (三つの漢字) --- */
    #philosophy .kanji-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    #philosophy .kanji-item {
      text-align: center;
      padding: 24px 16px 24px 16px;
      background: transparent;
      border: none;
    }
    #philosophy .kanji-glyph {
      font-family: 'Shippori Mincho', serif;
      font-size: 110px;
      line-height: 1;
      color: #0d2b1a;
      margin: 0 0 20px 0;
      display: inline-block;
      text-shadow:
        1px 1px 0 #1a3a26,
        2px 2px 0 #233f2c,
        3px 3px 0 #2b4432,
        4px 4px 0 #324937,
        5px 5px 2px rgba(13, 43, 26, 0.3),
        6px 6px 12px rgba(13, 43, 26, 0.25);
    }
    #philosophy .kanji-glyph.kanji-accent {
      color: #109954;
      text-shadow:
        1px 1px 0 #0d7a43,
        2px 2px 0 #0b6d3c,
        3px 3px 0 #0a6035,
        4px 4px 0 #08532e,
        5px 5px 2px rgba(16, 153, 84, 0.35),
        6px 6px 12px rgba(16, 153, 84, 0.3);
    }
    #philosophy .kanji-reading {
      font-family: 'Shippori Mincho', serif;
      font-size: 20px;
      line-height: 1.4;
      color: #0d2b1a;
      margin: 0 0 6px 0;
    }
    #philosophy .kanji-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.24em;
      margin: 0 0 16px 0;
    }
    #philosophy .kanji-copy {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 13px;
      line-height: 1.9;
      color: #1e3828;
      margin: 0 0 0 0;
    }

    /* --- Organization --- */
    .org-layout {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      padding: 0 0 0 0;
      margin: 0 auto 0 auto;
      max-width: 100%;
    }
    .org-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      width: 100%;
    }
    .org-wrap svg {
      width: 100%;
      height: auto;
      margin: 0 0 24px 0;
    }
    .org-desc {
      flex: none;
      width: 100%;
      padding: 0 0 0 0;
    }
    .org-desc-lead {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 24px 0;
    }
    .org-desc p {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 2;
      letter-spacing: 0.02em;
      color: #1e3828;
      margin: 0 0 16px 0;
      min-height: 1em;
    }
    .org-replay {
      margin: 0 0 0 0;
      padding: 8px 16px 8px 16px;
      background: transparent;
      border: 1px solid #b8d9c8;
      border-radius: 8px;
      color: #6a9e82;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.1em;
      cursor: pointer;
    }
    .org-replay:hover {
      background: #f0faf5;
    }

    /* --- Access --- */
    .access-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: center;
    }
    .access-info {
      padding: 0 0 0 0;
    }
    .access-info h3 {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: 0.04em;
      color: #0d2b1a;
      margin: 0 0 32px 0;
      padding: 0 0 16px 0;
      border-bottom: 1px solid #109954;
    }
    .access-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4px 0;
    }
    .access-list dt {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #6a9e82;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0 0 0 0;
    }
    .access-list dd {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 1.9;
      letter-spacing: 0.02em;
      color: #1e3828;
    }
    .access-map {
      border-radius: 8px;
      overflow: hidden;
      min-height: 280px;
    }
    .access-map iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* --- CTA --- */
    .cta {
      position: relative;
      padding: 64px 24px 64px 24px;
      text-align: center;
      background: #0d2b1a;
      border-top: 1px solid #b8d9c8;
      overflow: hidden;
      isolation: isolate;
    }
    .cta::before {
      content: '';
      position: absolute;
      inset: -20px;
      background-image: url('../img/hero.png');
      background-size: cover;
      background-position: center;
      filter: blur(14px);
      z-index: -2;
    }
    .cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(13, 43, 26, 0.45);
      z-index: -1;
    }
    .cta-eyebrow {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: #b8d9c8;
      letter-spacing: 0.2em;
      margin: 0 0 16px 0;
    }
    .cta-title {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 27px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0.04em;
      color: #ffffff;
      margin: 0 0 24px 0;
    }
    .cta-text {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      line-height: 2;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.9);
      white-space: normal;
      margin: 0 auto 32px auto;
    }
    .cta-text:not(:last-of-type) {
      margin: 0 auto 12px auto;
    }

    /* --- Footer --- */
    .site-footer {
      background: #f0f7f3;
      color: #0d2b1a;
      padding: 48px 24px 24px 24px;
      border-top: 1px solid #b8d9c8;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      padding: 0 0 40px 0;
      border-bottom: 1px solid #b8d9c8;
      margin: 0 0 24px 0;
    }
    .footer-brand-kanji {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 28px;
      font-weight: 500;
      line-height: 1.3;
      letter-spacing: 0.04em;
      margin: 0 0 8px 0;
    }
    .footer-brand-en {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      letter-spacing: 0.2em;
      color: #109954;
      margin: 0 0 20px 0;
    }
    .footer-address {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.8;
      color: #2d5a3d;
      max-width: 100%;
    }
    .site-footer h4 {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #109954;
      margin: 0 0 16px 0;
    }
    .site-footer ul li {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 12px;
      line-height: 1.6;
      letter-spacing: 0.02em;
      margin: 0 0 8px 0;
      color: #2d5a3d;
    }
    .footer-bot {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(13, 43, 26, 0.5);
      letter-spacing: 0.15em;
    }
  }

  /* ========== Subpage Shared ========== */
  .u-accent {
    color: #109954;
    font-weight: 500;
  }
  .sp-only {
    display: none;
  }

  /* --- Current nav state --- */
  .site-nav a.is-current {
    position: relative;
    color: #109954;
  }
  .site-nav a.is-current .en {
    color: #109954;
  }
  .site-nav a.is-current::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #109954;
    border-radius: 2px;
  }

  /* ========== Subpage Hero ========== */
  .subpage-hero {
    position: relative;
    overflow: hidden;
    background: #0d2b1a;
    color: #ffffff;
    isolation: isolate;
  }
  .subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(135deg, rgba(13, 43, 26, 0.82) 0%, rgba(19, 74, 42, 0.72) 100%),
      var(--hero-bg, url('https://picsum.photos/seed/architecture/1920/1080'));
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  .subpage-hero-inner {
    position: relative;
    z-index: 1;
  }
  .subpage-hero-inner > * {
    opacity: 0;
    transform: translateY(20px);
    animation: subhero-reveal 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .subpage-hero-inner > *:nth-child(1) { animation-delay: 200ms; }
  .subpage-hero-inner > *:nth-child(2) { animation-delay: 450ms; }
  .subpage-hero-inner > *:nth-child(3) { animation-delay: 700ms; }
  .subpage-hero-inner > *:nth-child(4) { animation-delay: 950ms; }
  .subpage-hero-inner > *:nth-child(5) { animation-delay: 1250ms; }
  @keyframes subhero-reveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .subpage-hero-inner > * {
      opacity: 1;
      transform: none;
      animation: none;
    }
  }
  .subpage-hero-breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: rgba(240, 247, 243, 0.55);
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 32px 0;
  }
  .subpage-hero-breadcrumb a {
    color: rgba(240, 247, 243, 0.55);
    transition: color 0.2s ease;
  }
  .subpage-hero-breadcrumb a:hover {
    color: #b8d9c8;
  }
  .subpage-hero-breadcrumb span:nth-child(2) {
    color: rgba(184, 217, 200, 0.35);
  }
  .subpage-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: #b8d9c8;
    padding: 0 0 0 44px;
    position: relative;
    margin: 0 0 24px 0;
  }
  .subpage-hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: #b8d9c8;
  }
  .subpage-hero-title {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 0 0 12px 0;
  }
  .subpage-hero-jp {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: #b8d9c8;
    margin: 0 0 32px 0;
  }
  .subpage-hero-lead {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    color: rgba(255, 255, 255, 0.78);
  }

  /* ========== Subpage Anchor Nav ========== */
  .subpage-anchor-nav {
    background: #f0f7f3;
    border-bottom: 1px solid #b8d9c8;
    position: sticky;
    top: 81px;
    z-index: 40;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .subpage-anchor-nav ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
  }
  .subpage-anchor-nav li {
    flex: 1;
    border-right: 1px solid #d9e8df;
    opacity: 0;
    transform: translateY(10px) scale(0.92);
    animation: anchor-pop 420ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  .subpage-anchor-nav li:first-child {
    border-left: 1px solid #d9e8df;
  }
  .subpage-anchor-nav li:nth-child(1) { animation-delay: 220ms; }
  .subpage-anchor-nav li:nth-child(2) { animation-delay: 320ms; }
  .subpage-anchor-nav li:nth-child(3) { animation-delay: 420ms; }
  .subpage-anchor-nav li:nth-child(4) { animation-delay: 520ms; }
  .subpage-anchor-nav li:nth-child(5) { animation-delay: 620ms; }
  .subpage-anchor-nav li:nth-child(6) { animation-delay: 720ms; }
  .subpage-anchor-nav li:nth-child(7) { animation-delay: 820ms; }
  .subpage-anchor-nav li:nth-child(8) { animation-delay: 920ms; }
  @keyframes anchor-pop {
    0%   { opacity: 0; transform: translateY(10px) scale(0.92); }
    60%  { opacity: 1; transform: translateY(-2px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  @media (prefers-reduced-motion: reduce) {
    .subpage-anchor-nav li {
      opacity: 1;
      transform: none;
      animation: none;
    }
  }
  .subpage-anchor-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px 16px 8px;
    gap: 2px;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
  }
  .subpage-anchor-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #109954;
    transition: width 0.3s ease;
  }
  .subpage-anchor-nav a:hover::before {
    width: 100%;
  }
  .subpage-anchor-nav a:hover {
    background: #e4f0ea;
  }
  .subpage-anchor-nav .anchor-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    letter-spacing: 0.2em;
    color: #109954;
  }
  .subpage-anchor-nav .anchor-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: #0d2b1a;
  }
  .subpage-anchor-nav .anchor-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #6a9e82;
    text-transform: uppercase;
  }

  /* ========== Message (代表メッセージ) ========== */
  .message-editorial {
    max-width: 1400px;
    margin: 0 auto;
  }
  .message-photo {
    background: #f0faf5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .message-photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.15) contrast(1.02);
  }
  .message-photo-caption {
    padding: 20px 24px 20px 24px;
    border-top: 1px solid #d9e8df;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .message-photo-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: #6a9e82;
    text-transform: uppercase;
  }
  .message-photo-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: #0d2b1a;
  }
  .message-headline {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #0d2b1a;
  }
  .message-text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #3a4e44;
  }
  .message-sign {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0 0 0;
    border-top: 1px solid #d9e8df;
  }
  .sign-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: #6a9e82;
  }
  .sign-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: #6a9e82;
  }
  .sign-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    letter-spacing: 0.14em;
    color: #0d2b1a;
  }

  /* ========== Philosophy Lead ========== */
  .philosophy-lead {
    max-width: 960px;
    margin: 0 auto 56px auto;
    text-align: center;
    position: relative;
  }
  .philosophy-lead-copy {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.1em;
    color: #0d2b1a;
    margin: 8px 0 32px 0;
  }
  .philosophy-lead-text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #3a4e44;
  }

  /* ========== Profile (会社概要) ========== */
  .profile-editorial {
    max-width: 1400px;
    margin: 0 auto;
  }
  .profile-intro-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #109954;
    padding: 0 0 0 44px;
    position: relative;
    margin: 0 0 24px 0;
  }
  .profile-intro-en::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: #109954;
  }
  .profile-intro-copy {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.1em;
    color: #0d2b1a;
  }
  .profile-table dl {
    border-top: 1px solid #d9e8df;
  }
  .profile-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #d9e8df;
    align-items: start;
  }
  .profile-row dt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #109954;
    font-weight: 500;
  }
  .profile-row dd {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #1e3828;
  }
  .profile-row dd small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #6a9e82;
    margin-left: 8px;
  }

  /* ========== History (沿革) ========== */
  .history-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 1px;
    background: linear-gradient(to bottom, #109954 0%, #b8d9c8 50%, transparent 100%);
  }
  .history-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 48px;
    padding: 28px 0 28px 0;
    position: relative;
  }
  .history-item::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 115px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #109954;
    border: 2px solid #f0f7f3;
    box-shadow: 0 0 0 2px #109954;
  }
  .history-year {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    padding: 0 24px 0 0;
    text-align: right;
  }
  .history-year-num {
    font-family: 'Shippori Mincho', serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #109954;
  }
  .history-year-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #6a9e82;
    text-transform: uppercase;
  }
  .history-body {
    padding: 0 0 0 32px;
  }
  .history-body h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: #0d2b1a;
    margin: 0 0 10px 0;
  }
  .history-body p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
    color: #3a4e44;
    margin: 0;
  }

  /* ========== Business Overview ========== */
  .business-overview {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    text-align: center;
  }
  .business-overview-lead {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #0d2b1a;
    margin: 0 0 24px 0;
  }
  .business-overview-lead::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #109954;
    margin: 24px auto 24px auto;
  }
  .business-overview-text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #3a4e44;
  }

  /* ========== Business Detail ========== */
  .business-detail {
    scroll-margin-top: 160px;
  }
  .business-detail.alt {
    background: #f0faf5;
  }
  .business-detail-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .business-detail-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #ffffff;
    background: #109954;
    padding: 6px 12px 6px 12px;
    display: inline-block;
    margin: 0 0 16px 0;
  }
  .business-detail-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #6a9e82;
    margin: 0 0 12px 0;
  }
  .business-detail-title {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0 0 16px 0;
  }
  .business-detail-sub {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #109954;
    padding: 16px 0 0 0;
    border-top: 1px solid #b8d9c8;
  }
  .business-detail-text {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #3a4e44;
  }
  .business-detail-list {
    display: grid;
    gap: 10px;
  }
  .business-detail-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 16px;
    padding: 14px 20px 14px 20px;
    background: #ffffff;
    border: 1px solid #d9e8df;
    border-radius: 4px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .business-detail.alt .business-detail-list li {
    background: #ffffff;
  }
  .business-detail-list li:hover {
    transform: translateX(4px);
    border-color: #109954;
    box-shadow: 0 4px 16px rgba(16, 153, 84, 0.08);
  }
  .business-detail-list .list-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.14em;
    color: #109954;
    font-weight: 500;
  }
  .business-detail-list .list-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #1e3828;
  }

  /* ========== PC (768+) Subpage Styles ========== */
  @media (min-width: 768px) {
    .subpage-hero {
      padding: 120px 48px 120px 48px;
      min-height: 520px;
      display: flex;
      align-items: center;
    }
    .subpage-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }
    .subpage-hero-title {
      font-size: 80px;
    }
    .subpage-hero-jp {
      font-size: 22px;
    }
    .subpage-hero-lead {
      font-size: 15px;
      max-width: 640px;
    }

    .message-editorial {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }
    .message-photo {
      position: sticky;
      top: 120px;
    }
    .message-photo img {
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }
    .message-headline {
      font-size: 34px;
      margin: 0 0 32px 0;
    }
    .message-text {
      font-size: 15px;
      margin: 0 0 20px 0;
    }
    .message-sign {
      margin: 24px 0 0 0;
    }

    .philosophy-lead-copy {
      font-size: 34px;
    }
    .philosophy-lead-text {
      font-size: 15px;
    }

    .profile-editorial {
      display: grid;
      grid-template-columns: 4fr 8fr;
      gap: 80px;
      align-items: start;
    }
    .profile-intro {
      position: sticky;
      top: 120px;
    }
    .profile-intro-copy {
      font-size: 30px;
    }

    .business-overview-lead {
      font-size: 34px;
    }
    .business-overview-text {
      font-size: 15px;
    }

    .business-detail {
      padding: 120px 48px 120px 48px;
    }
    .business-detail-inner {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }
    .business-detail-inner.reverse .business-detail-head {
      order: 2;
    }
    .business-detail-head {
      position: sticky;
      top: 120px;
    }
    .business-detail-title {
      font-size: 42px;
    }
    .business-detail-sub {
      font-size: 18px;
    }
    .business-detail-text {
      font-size: 15px;
      margin: 0 0 20px 0;
    }
    .business-detail-list {
      margin: 32px 0 0 0;
    }
  }

  /* ========== SP Subpage Styles ========== */
  @media (max-width: 767px) {
    .sp-only {
      display: inline;
    }

    .subpage-hero {
      padding: 64px 24px 64px 24px;
      min-height: 360px;
      display: flex;
      align-items: center;
    }
    .subpage-hero-breadcrumb {
      font-size: 10px;
      margin: 8px 0 20px 0;
      gap: 8px;
    }
    .subpage-hero-eyebrow {
      font-size: 11px;
      padding: 0 0 0 32px;
      margin: 0 0 16px 0;
    }
    .subpage-hero-eyebrow::before {
      width: 20px;
    }
    .subpage-hero-title {
      font-size: 42px;
      letter-spacing: 0.06em;
    }
    .subpage-hero-jp {
      font-size: 16px;
      margin: 0 0 20px 0;
    }
    .subpage-hero-lead {
      font-size: 13px;
      line-height: 1.9;
    }

    .subpage-anchor-nav {
      top: 65px;
      overflow-x: auto;
    }
    .subpage-anchor-nav ul {
      justify-content: flex-start;
      min-width: 100%;
    }
    .subpage-anchor-nav li {
      flex: 1 0 96px;
    }
    .subpage-anchor-nav a {
      padding: 12px 14px 12px 14px;
    }
    .subpage-anchor-nav .anchor-en {
      display: none;
    }
    .subpage-anchor-nav .anchor-jp {
      font-size: 12px;
      white-space: nowrap;
    }
    .subpage-anchor-nav .anchor-num {
      font-size: 32px;
    }

    .message-editorial {
      display: block;
    }
    .message-photo {
      margin: 0 0 32px 0;
    }
    .message-photo img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }
    .message-headline {
      font-size: 22px;
      margin: 0 0 24px 0;
    }
    .message-text {
      font-size: 14px;
      margin: 0 0 16px 0;
    }
    .message-sign {
      margin: 24px 0 0 0;
    }
    .sign-name {
      font-size: 20px;
    }

    .philosophy-lead {
      margin: 0 0 40px 0;
    }
    .philosophy-lead-copy {
      font-size: 19px;
      margin: 4px 0 24px 0;
    }
    .philosophy-lead-text {
      font-size: 14px;
    }
    .philosophy-lead-text br {
      display: none;
    }

    .profile-editorial {
      display: block;
    }
    .profile-intro {
      margin: 0 0 32px 0;
    }
    .profile-intro-copy {
      font-size: 22px;
    }
    .profile-row {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 16px 0 16px 0;
    }
    .profile-row dt {
      font-size: 11px;
      letter-spacing: 0.18em;
    }
    .profile-row dd {
      font-size: 14px;
    }

    .history-timeline::before {
      left: 14px;
    }
    .history-item {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 24px 0 24px 40px;
    }
    .history-item::before {
      top: 30px;
      left: 8px;
      width: 10px;
      height: 10px;
    }
    .history-year {
      flex-direction: row;
      gap: 12px;
      align-items: baseline;
      padding: 0;
      text-align: left;
    }
    .history-year-num {
      font-size: 24px;
    }
    .history-year-sub {
      font-size: 9px;
    }
    .history-body {
      padding: 0;
    }
    .history-body h3 {
      font-size: 18px;
    }
    .history-body p {
      font-size: 13px;
    }

    .business-overview {
      margin: 0 0 32px 0;
    }
    .business-overview-lead {
      font-size: 22px;
    }
    .business-overview-text {
      font-size: 14px;
      text-align: left;
    }

    .business-detail {
      padding: 56px 24px 56px 24px;
    }
    .business-detail-inner {
      display: block;
    }
    .business-detail-inner.reverse .business-detail-head,
    .business-detail-inner.reverse .business-detail-body {
      order: unset;
    }
    .business-detail-head {
      margin: 0 0 28px 0;
    }
    .business-detail-num {
      font-size: 10px;
      padding: 5px 10px 5px 10px;
    }
    .business-detail-en {
      font-size: 11px;
    }
    .business-detail-title {
      font-size: 26px;
    }
    .business-detail-sub {
      font-size: 14px;
      padding: 12px 0 0 0;
    }
    .business-detail-text {
      font-size: 14px;
      margin: 0 0 16px 0;
    }
    .business-detail-list {
      margin: 24px 0 0 0;
    }
    .business-detail-list li {
      grid-template-columns: 40px 1fr;
      gap: 12px;
      padding: 12px 14px 12px 14px;
    }
    .business-detail-list .list-num {
      font-size: 12px;
    }
    .business-detail-list .list-text {
      font-size: 13px;
    }

    /* Service cell links should not underline */
    a.service-cell {
      text-decoration: none;
    }
  }

  /* Service cell links shared */
  a.service-cell {
    text-decoration: none;
  }

  /* Footer link hover */
  .site-footer ul li a {
    transition: color 0.2s ease;
  }
  .site-footer ul li a:hover {
    color: #109954;
  }

  /* ========== Editorial / Magazine Patterns ========== */

  /* Issue mark (magazine header) */
  .issue-mark {
    position: absolute;
    top: 32px;
    right: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(184, 217, 200, 0.4);
    color: rgba(184, 217, 200, 0.65);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: right;
  }
  .issue-mark b {
    color: #b8d9c8;
    font-weight: 500;
  }

  /* Article-style section head with Japanese numeral */
  .article-head {
    display: grid;
    grid-template-columns: 120px 1fr 140px;
    gap: 40px;
    align-items: center;
    padding: 0 0 32px 0;
    margin: 0 0 48px 0;
    border-bottom: 1px solid #b8d9c8;
  }
  .ja-num {
    font-family: 'Shippori Mincho', serif;
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #109954;
    text-align: center;
  }
  .article-head-title h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0 0 6px 0;
  }
  .article-head-title .en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #6a9e82;
    text-transform: uppercase;
  }
  .article-head-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #6a9e82;
    text-align: right;
    line-height: 1.8;
    text-transform: uppercase;
  }
  .article-head-meta b {
    color: #109954;
    font-weight: 500;
    font-size: 12px;
  }

  /* Cell-based grid */
  .cell-grid {
    display: grid;
    gap: 0;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    overflow: hidden;
  }
  .cell-grid.col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .cell-grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cell-grid.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .cell-grid.msg-grid {
    grid-template-columns: 5fr 7fr;
  }
  .cell-grid.msg-grid.reverse {
    grid-template-columns: 7fr 5fr;
  }
  .cell-grid.reverse > :first-child { order: 2; }
  .cell-grid.reverse > :nth-child(2) { order: 1; }
  .cell-grid.reverse .cell:nth-child(1) { border-right: none; }
  .cell-grid.reverse .cell:nth-child(2) { border-right: 1px solid #b8d9c8; }
  .cell {
    padding: 40px 36px;
    background: #ffffff;
    border-right: 1px solid #b8d9c8;
    border-bottom: 1px solid #b8d9c8;
    position: relative;
  }
  .cell:last-child {
    border-right: none;
  }
  .cell-grid.col-2 .cell:nth-child(2n) { border-right: none; }
  .cell-grid.col-3 .cell:nth-child(3n) { border-right: none; }
  .cell-grid.col-4 .cell:nth-child(4n) { border-right: none; }
  .cell.warm {
    background: #67b583a6;
  }
  .cell.inv {
    background: #389460;
    color: #f0f7f3;
  }
  .cell.inv h3,
  .cell.inv .cell-ja,
  .cell.inv .cell-desc {
    color: #f0f7f3;
  }
  .cell.inv .cell-label {
    color: #b8d9c8;
  }
  .cell.accent {
    background: #109954;
    color: #ffffff;
  }
  .cell.accent h3,
  .cell.accent .cell-ja,
  .cell.accent .cell-desc {
    color: #ffffff;
  }
  .cell.accent .cell-label {
    color: rgba(255, 255, 255, 0.75);
  }
  .cell.nopad {
    padding: 0;
  }
  .cell.nopad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Pullquote (magazine-style large quote) */
  .pullquote {
    font-family: 'Shippori Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    padding: 32px 0 32px 40px;
    border-left: 3px solid #109954;
    margin: 0 0 32px 0;
    position: relative;
  }
  .pullquote::before {
    content: '“';
    position: absolute;
    top: -16px;
    left: 24px;
    font-family: 'Shippori Mincho', serif;
    font-size: 96px;
    line-height: 1;
    color: rgba(16, 153, 84, 0.2);
  }
  .pullquote .shu {
    text-decoration: underline wavy #109954;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    padding: 0 2px 4px 2px;
  }

  /* Two-column text flow */
  .text-2col {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #3a4e44;
  }
  .text-2col p {
    margin: 0 0 14px 0;
    font-size: 15px;
  }
  .text-2col p:last-child {
    margin: 0;
  }
  .text-2col.columns {
    column-count: 2;
    column-gap: 40px;
  }
  .text-2col.columns p {
    break-inside: avoid;
  }

  /* BtoB/BtoC matrix */
  .segment-matrix {
    display: grid;
    grid-template-columns: 140px 1fr;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    overflow: hidden;
  }
  .segment-matrix-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 20px;
    background: #0d2b1a;
    color: #f0f7f3;
    border-bottom: 1px solid #b8d9c8;
  }
  .segment-matrix-label:last-of-type {
    border-bottom: none;
  }
  .segment-matrix-label .seg-ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    letter-spacing: 0.14em;
    margin: 0 0 6px 0;
  }
  .segment-matrix-label .seg-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: #b8d9c8;
  }
  .segment-matrix-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #b8d9c8;
  }
  .segment-matrix-items:last-of-type {
    border-bottom: none;
  }
  .segment-matrix-item {
    padding: 24px 20px;
    border-right: 1px solid #b8d9c8;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.2s ease;
  }
  .segment-matrix-item:last-child {
    border-right: none;
  }
  .segment-matrix-item:hover {
    background: #eaf5ee;
  }
  .seg-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: #109954;
  }
  .seg-jp {
    font-family: 'Shippori Mincho', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #0d2b1a;
    line-height: 1.4;
  }
  .seg-en-sm {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #6a9e82;
  }

  /* Chip tags for capabilities */
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0 0;
  }
  .chip {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #1e3828;
    background: transparent;
  }

  /* Business detail: banner layout (image top full-width, 3-col body below) */
  .biz-banner {
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
  }
  .biz-banner-media {
    position: relative;
    height: 420px;
    overflow: hidden;
  }
  .biz-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .business-detail.fade-in.is-visible .biz-banner-media img {
    transform: scale(1.06);
  }
  .biz-banner-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 43, 26, 0.35) 0%, transparent 100%);
    pointer-events: none;
  }
  .biz-banner-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 16px;
    background: rgba(13, 43, 26, 0.8);
    color: #b8d9c8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.28em;
    z-index: 1;
  }
  .biz-banner-body {
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 4fr 5fr 3fr;
    gap: 48px;
    align-items: start;
  }
  .biz-banner-body .pullquote {
    margin: 0;
    padding: 8px 0 8px 28px;
    font-size: 24px;
    line-height: 1.7;
  }
  .biz-banner-body .pullquote::before {
    top: -12px;
    left: 8px;
    font-size: 64px;
  }
  .biz-banner-body .text-2col {
    margin: 0;
  }
  .biz-banner-body .chips {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .biz-banner-body .chip {
    width: auto;
  }

  /* Business detail: split editorial layout */
  .biz-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 6fr 5fr;
    align-items: stretch;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
  }
  .biz-split.reverse {
    grid-template-columns: 5fr 6fr;
  }
  .biz-split.reverse .biz-split-main { order: 2; }
  .biz-split.reverse .biz-split-media { order: 1; }
  .biz-split-main {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .biz-split-main .pullquote {
    margin: 0 0 28px 0;
    font-size: 26px;
    line-height: 1.7;
  }
  .biz-split-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
  }
  .biz-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08) translateY(0);
    transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .business-detail.fade-in.is-visible .biz-split-media img {
    transform: scale(1) translateY(0);
  }
  .biz-split-caption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.92);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.26em;
    color: #0d2b1a;
    z-index: 1;
  }
  @media (max-width: 767px) {
    .biz-banner-media { height: 240px; }
    .biz-banner-body { padding: 28px 20px; grid-template-columns: 1fr; gap: 24px; }
    .biz-banner-body .pullquote { font-size: 20px; }
    .biz-banner-body .chips { flex-direction: row; }
    .biz-split, .biz-split.reverse { grid-template-columns: 1fr; }
    .biz-split.reverse .biz-split-main { order: 2; }
    .biz-split.reverse .biz-split-media { order: 1; }
    .biz-split-main { padding: 28px 20px; order: 2; }
    .biz-split-main .pullquote { font-size: 20px; }
    .biz-split-media { min-height: 240px; order: 1; }
  }

  /* Business detail: 3-column combined layout (LIFESTYLE) */
  .biz-tri {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .biz-tri-col {
    background: #ffffff;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .biz-tri-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -24px rgba(13, 43, 26, 0.35);
  }
  .biz-tri-media {
    position: relative;
    height: 280px;
    overflow: hidden;
  }
  .biz-tri-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
  }
  .biz-tri-col:hover .biz-tri-media img {
    transform: scale(1.06);
  }
  .biz-tri-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(13, 43, 26, 0.78);
    color: #b8d9c8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    z-index: 1;
  }
  .biz-tri-body {
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .biz-tri-num {
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #109954;
    margin: 0 0 12px 0;
  }
  .biz-tri-body h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0 0 4px 0;
  }
  .biz-tri-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.26em;
    color: #6a9e82;
    margin: 0 0 20px 0;
  }
  .biz-tri-pull {
    font-family: 'Shippori Mincho', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #0d2b1a;
    padding: 12px 0 12px 16px;
    border-left: 2px solid #109954;
    margin: 0 0 16px 0;
  }
  .biz-tri-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.95;
    color: #3a4e44;
    margin: 0 0 20px 0;
  }
  .biz-tri-body .chips {
    margin-top: auto;
    gap: 6px;
  }
  .biz-tri-body .chip {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* Business detail: diagonal 2-column layout (CREATIVE) */
  .biz-diagonal {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
  }
  .biz-diagonal-half {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px;
  }
  .biz-diagonal-half.left {
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
  }
  .biz-diagonal-half.right {
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 42% 100%);
  }
  .biz-diagonal-half::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(34 35 34 / 88%) 0%, rgba(19, 74, 42, 0.72) 100%);
  }
  .biz-diagonal-half.right::before {
    background: linear-gradient(225deg, rgb(32 55 42 / 88%) 0%, rgb(249 249 249 / 72%) 100%);
  }
  .biz-diagonal-content {
    position: relative;
    max-width: 42%;
    color: #ffffff;
  }
  .biz-diagonal-half.left .biz-diagonal-content {
    padding-right: 20px;
  }
  .biz-diagonal-half.right .biz-diagonal-content {
    margin-left: auto;
    padding-left: 20px;
  }
  .biz-diagonal-num {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 44px;
    line-height: 1;
    color: #b8d9c8;
    margin: 0 0 16px 0;
  }
  .biz-diagonal-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.26em;
    color: #b8d9c8;
    margin: 0 0 8px 0;
  }
  .biz-diagonal-ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.08em;
    margin: 0 0 20px 0;
  }
  .biz-diagonal-pull {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0 0 16px 0;
  }
  .biz-diagonal-pull .shu {
    text-decoration: underline wavy #109954;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    padding: 0 2px 2px;
  }
  .biz-diagonal-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
  }
  .biz-diagonal .chips {
    margin: 0;
    gap: 6px;
  }
  .biz-diagonal .chip {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 11px;
    padding: 4px 10px;
  }

  @media (max-width: 1023px) {
    .biz-tri { grid-template-columns: 1fr; gap: 20px; }
    .biz-diagonal-content { max-width: 46%; }
    .biz-diagonal-pull { font-size: 18px; }
  }
  @media (max-width: 767px) {
    .biz-tri-media { height: 220px; }
    .biz-tri-body { padding: 24px 20px 28px; }
    .biz-diagonal { height: auto; display: flex; flex-direction: column; overflow: visible; }
    .biz-diagonal-half,
    .biz-diagonal-half.left,
    .biz-diagonal-half.right { position: relative; inset: auto; clip-path: none; padding: 40px 24px; min-height: 380px; }
    .biz-diagonal-half.right::before,
    .biz-diagonal-half.left::before { background: linear-gradient(180deg, rgba(13, 43, 26, 0.85) 0%, rgba(19, 74, 42, 0.7) 100%); }
    .biz-diagonal-content { max-width: 100%; margin: 0 !important; padding: 0 !important; }
    .biz-diagonal-ja { font-size: 22px; }
    .biz-diagonal-pull { font-size: 18px; }
  }

  /* Process steps */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #b8d9c8;
    border-radius: 4px;
    overflow: hidden;
  }
  .process-step {
    padding: 32px 24px;
    background: #ffffff;
    border-right: 1px solid #b8d9c8;
    position: relative;
  }
  .process-step:last-child {
    border-right: none;
    background: #0d2b1a;
    color: #f0f7f3;
  }
  .process-step:last-child .process-step-ja,
  .process-step:last-child .process-step-title {
    color: #f0f7f3;
  }
  .process-step:last-child .process-step-desc {
    color: rgba(240, 247, 243, 0.75);
  }
  .process-step:last-child .process-step-num {
    color: #b8d9c8;
  }
  .process-step-num {
    font-family: 'Shippori Mincho', serif;
    font-size: 44px;
    line-height: 1;
    color: #109954;
    margin: 0 0 12px 0;
    letter-spacing: 0.04em;
  }
  .process-step-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: #6a9e82;
    text-transform: uppercase;
    margin: 0 0 8px 0;
  }
  .process-step-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: #0d2b1a;
    margin: 0 0 12px 0;
  }
  .process-step-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: #3a4e44;
    margin: 0;
  }

  /* Cell content styles */
  .cell-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.28em;
    color: #109954;
    text-transform: uppercase;
    margin: 0 0 12px 0;
  }
  .cell-ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
  }
  .cell-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: #3a4e44;
    margin: 0;
  }

  /* Compact profile row (JA/EN style from pattern C) */
  .profile-row-compact {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 40px 0 40px 20px;
    border-top: 1px dashed #b8d9c8;
    align-items: baseline;
  }
  .profile-row-compact:first-child {
    border-top: 1px solid #0d2b1a;
  }
  .profile-row-compact:last-child {
    border-bottom: 1px solid #0d2b1a;
  }
  .profile-row-compact dt {
    font-family: 'Shippori Mincho', serif;
    font-size:24px;
    letter-spacing: 0.08em;
    color: #1e3828;
  }
  .profile-row-compact dt small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: #6a9e82;
    margin-left: 6px;
    text-transform: uppercase;
  }
  .profile-row-compact dd {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    line-height: 1.9;
    color: #0d2b1a;
  }

  /* Organization roster (about.html) */
  .org-intro {
    max-width: 1000px;
    margin: 0 auto 56px auto;
    text-align: center;
  }
  .org-intro-lead {
    font-family: 'Shippori Mincho', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0 0 24px 0;
  }
  .org-intro-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #3a4e44;
    margin: 0;
  }
  .org-group {
    margin: 0 0 40px 0;
  }
  .org-group:last-child {
    margin: 0;
  }
  .org-group-head {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 0 0 16px 0;
    margin: 0 0 16px 0;
    border-bottom: 1px solid #0d2b1a;
  }
  .org-group-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: #109954;
  }
  .org-group-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0;
    flex: 1;
  }
  .org-group-title small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #6a9e82;
    margin-left: 12px;
  }
  .org-group-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #6a9e82;
  }
  .org-group .cell-ja {
    font-size: 20px;
    margin: 0 0 8px 0;
  }
  .org-group .cell-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #6a9e82;
  }
  .org-ranks {
    max-width: 1100px;
    margin: 0 auto 48px auto;
  }
  .org-ranks:last-child {
    margin-bottom: 0;
  }
  .org-ranks-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: baseline;
    gap: 24px;
    padding: 0 0 20px 0;
    margin: 0 0 8px 0;
  }
  .org-ranks-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #109954;
    text-transform: uppercase;
  }
  .org-ranks-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #0d2b1a;
    margin: 0;
    text-align: center;
  }
  .org-ranks-count {
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #109954;
    text-align: right;
  }
  .org-rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .org-rank-item {
    display: grid;
    grid-template-columns: 64px 1fr 1.5fr;
    align-items: center;
    gap: 32px;
    padding: 22px 8px;
    border-top: 1px dashed #b8d9c8;
    transition: background 0.2s ease, padding 0.2s ease;
  }
  .org-rank-item:first-child {
    border-top: none;
  }
  .org-rank-list > .org-rank-item:last-child {
    border-bottom: 1px dashed #b8d9c8;
  }
  .org-rank-item:hover {
    background: #eaf5ee;
    padding-left: 16px;
  }
  .org-rank-num {
    font-family: 'Shippori Mincho', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    color: #109954;
    text-align: center;
    letter-spacing: 0;
  }
  .org-rank-body h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #0d2b1a;
    margin: 0 0 4px 0;
  }
  .org-rank-en {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.26em;
    color: #6a9e82;
  }
  .org-rank-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 0.03em;
    color: #3a4e44;
    margin: 0;
  }
  @media (max-width: 767px) {
    .org-intro-lead { font-size: 20px; }
    .org-intro-text { font-size: 14px; }
    .org-group-head { flex-wrap: wrap; gap: 8px 16px; }
    .org-group-title { font-size: 18px; flex-basis: 100%; }
    .org-group-title small { display: block; margin: 4px 0 0 0; }
    .org-ranks-head { grid-template-columns: 1fr; gap: 4px; text-align: left; }
    .org-ranks-title { text-align: left; font-size: 20px; }
    .org-ranks-count { text-align: left; font-size: 22px; }
    .org-rank-item {
      grid-template-columns: 44px 1fr;
      gap: 16px;
      padding: 18px 4px;
    }
    .org-rank-item:hover { padding-left: 8px; }
    .org-rank-num { font-size: 26px; }
    .org-rank-body h4 { font-size: 17px; }
    .org-rank-desc { grid-column: 1 / -1; font-size: 12px; }
  }

  /* Compact history (pattern-C style with dots) */
  .timeline-compact {
    max-width: 1000px;
    margin: 0 auto;
  }
  .timeline-compact-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 24px 0;
    border-top: 1px dashed #b8d9c8;
    align-items: center;
  }
  .timeline-compact-item:first-child {
    border-top: 1px solid #0d2b1a;
  }
  .timeline-compact-item:last-child {
    border-bottom: 1px solid #0d2b1a;
  }
  .timeline-compact-year {
    font-family: 'Shippori Mincho', serif;
    font-size: 48px;
    letter-spacing: 0.04em;
    color: #0d2b1a;
    /* 140px の年カラム内で数字を垂直・水平とも中央寄せ */
    text-align: center;
    align-self: center;
  }
  .timeline-compact-item.hi .timeline-compact-year {
    color: #109954;
  }
  .timeline-compact-body h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #0d2b1a;
    margin: 0 0 6px 0;
  }
  .timeline-compact-body p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 2;
    color: #3a4e44;
    margin: 0;
  }

  /* Responsive tweaks */
  @media (max-width: 767px) {
    .issue-mark {
      top: 16px;
      right: 20px;
      font-size: 9px;
      padding: 8px 10px;
    }
    .article-head {
      grid-template-columns: 60px 1fr;
      gap: 20px;
      padding: 0 0 20px 0;
      margin: 0 0 32px 0;
    }
    .article-head-meta {
      display: none;
    }
    .ja-num {
      font-size: 44px;
    }
    .article-head-title h2 {
      font-size: 26px;
    }
    .cell-grid.col-2,
    .cell-grid.col-3,
    .cell-grid.col-4,
    .cell-grid.msg-grid {
      grid-template-columns: 1fr;
    }
    .cell-grid.col-2 .cell,
    .cell-grid.col-3 .cell,
    .cell-grid.col-4 .cell,
    .cell-grid.msg-grid .cell {
      border-right: none;
      border-bottom: 1px solid #b8d9c8;
    }
    .cell-grid .cell:last-child {
      border-bottom: none;
    }
    .cell {
      padding: 28px 24px;
    }
    .pullquote {
      font-size: 22px;
      padding: 24px 0 24px 24px;
    }
    .pullquote::before {
      font-size: 64px;
      top: -8px;
      left: 12px;
    }
    .text-2col.columns {
      column-count: 1;
    }
    .text-2col p {
      font-size: 14px;
    }
    .segment-matrix {
      grid-template-columns: 1fr;
    }
    .segment-matrix-label {
      border-bottom: 1px solid #b8d9c8;
    }
    .segment-matrix-items {
      grid-template-columns: 1fr 1fr;
    }
    .segment-matrix-item {
      padding: 16px 14px;
      border-bottom: 1px solid #b8d9c8;
    }
    .segment-matrix-item:nth-child(odd) {
      border-right: 1px solid #b8d9c8;
    }
    .segment-matrix-item:nth-child(even) {
      border-right: none;
    }
    .seg-jp {
      font-size: 14px;
    }
    .process-steps {
      grid-template-columns: 1fr;
    }
    .process-step {
      border-right: none;
      border-bottom: 1px solid #b8d9c8;
      padding: 24px 20px;
    }
    .process-step:last-child {
      border-bottom: none;
    }
    .process-step-num {
      font-size: 36px;
    }
    .profile-row-compact {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 16px 0;
    }
    .profile-row-compact dt {
      font-size: 11px;
      color: #109954;
    }
    .profile-row-compact dt small {
      margin-left: 4px;
    }
    .profile-row-compact dd {
      font-size: 14px;
    }
    .timeline-compact-item {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 20px 0;
    }
    .timeline-compact-year {
      font-size: 34px;
      /* 1カラム縦積み時は本文と左端を揃える */
      text-align: left;
    }
    .timeline-compact-body h4 {
      font-size: 16px;
    }
  }
