    :root {
      --bg: #ececec;
      --ink: #121317;
      --body: #1f2126;
      --line: #9f9f9f;
      --footer: #c1a384;
      --card-border: #dddddd;
      --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.15);
      --page-width: min(1720px, calc(100vw - 120px));
      --page-top-gap: clamp(4px, 0.5vw, 8px);
      --section-gap: clamp(56px, 6vw, 96px);
      --section-inline: clamp(8px, 1.8vw, 28px);
      --font-sans-cjk: "鎬濇簮榛戜綋", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      --font-en: var(--font-sans-cjk);
      --font-cn: var(--font-sans-cjk);
      --side-pad: clamp(16px, 4vw, 64px);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      width: 100%;
      min-height: 100%;
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-en);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
      overflow-x: hidden;
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.6;
    }

    .page {
      width: min(var(--page-width), 100%);
      margin: 0 auto;
      padding: var(--page-top-gap) 0 var(--section-gap);
      display: flex;
      flex-direction: column;
      gap: var(--section-gap);
      padding-top:80px;
    }

    .page > section {
      width: 100%;
      padding-inline: var(--section-inline);
    }

    .topbar {
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-block {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1px;
      color: #0f1013;
      user-select: none;
    }

    .logo-main {
      font-size: clamp(32px, 3vw, 42px);
      line-height: 0.9;
      letter-spacing: 0.04em;
      font-weight: 400;
      font-family: var(--font-en);
    }

    .logo-sub {
      font-size: clamp(7px, 0.6vw, 8px);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.92;
      font-family: var(--font-en);
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .brand-chip {
      min-width: 62px;
      height: 29px;
      border-radius: 999px;
      border: 1px solid #000;
      background: #000;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-weight: 500;
      line-height: 1;
    }

    .section-financing {
      position: relative;
      display: grid;
      grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
      column-gap: clamp(48px, 7vw, 150px);
      align-items: start;
    }

    .news-entry {
      cursor: pointer;
    }

    .news-entry:focus-visible {
      outline: 2px solid rgba(47, 87, 207, 0.45);
      outline-offset: 6px;
    }

    .financing-copy-block {
      padding-top: clamp(4px, 0.6vw, 10px);
    }

    .section-financing .headline {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.1;
      letter-spacing: clamp(0.08em, 0.8vw, 0.15em);
      text-transform: uppercase;
      font-weight: 400;
      font-family: var(--font-en);
      margin-bottom: clamp(24px, 3vw, 40px);
    }

    .section-financing .copy {
      margin-top: 0;
      width: min(100%, 380px);
      color: var(--body);
      font-family: var(--font-cn);
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.8;
      letter-spacing: 0.02em;
      text-align: justify;
    }

    .financing-visual {
      --financing-card-width: clamp(252px, 25vw, 332px);
      --financing-card-height-factor: 1.2195122;
      --report-top: clamp(122px, 9vw, 168px);
      --news-top: clamp(52px, 4vw, 84px);
      --line-extend-top: clamp(42px, 3vw, 62px);
      width: 100%;
      display: grid;
      grid-template-columns: minmax(48px, 1fr) minmax(0, var(--financing-card-width)) minmax(0, var(--financing-card-width));
      column-gap: clamp(32px, 4vw, 92px);
      align-items: start;
      justify-content: end;
      align-self: end;
    }

    .financing-spine {
      display: flex;
      justify-content: center;
      align-self: start;
      padding-top: calc(var(--report-top) - var(--line-extend-top));
      transform: translateX(var(--financing-spine-offset, 0px));
    }

    .financing-accent {
      justify-self: end;
      width: min(100%, var(--financing-card-width));
      padding-top: var(--report-top);
    }

    .vline {
      position: relative;
      width: 1px;
      height: calc((var(--financing-card-width) * var(--financing-card-height-factor)) + var(--line-extend-top));
      background: transparent;
      overflow: hidden;
    }

    .vline::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--line);
      transform: scaleY(0);
      transform-origin: top center;
    }

    .section-financing.is-in .vline::before {
      animation: lineRevealScale 1.8s ease-out 0.15s forwards;
    }

    .media-card {
      border: 1px solid var(--card-border);
      background: #f7f7f7;
      box-shadow: var(--shadow);
      overflow: hidden;
      will-change: transform;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 4px;
    }

    .media-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: #c9a876;
    }

    .media-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .media-card:hover img {
      transform: scale(1.05);
    }

    .news-entry-card-link {
      display: block;
      width: 100%;
      text-decoration: none;
    }

    .news-entry-title-link {
      color: inherit;
      text-decoration: none;
      transition: color 0.22s ease;
    }

    .news-entry-title-link:hover {
      color: #2f57cf;
    }

    .news-entry-card-link:focus-visible .media-card,
    .news-entry-title-link:focus-visible {
      outline: 2px solid rgba(47, 87, 207, 0.5);
      outline-offset: 3px;
    }

    .news-card {
      width: min(100%, var(--financing-card-width));
      aspect-ratio: 0.82 / 1;
      justify-self: start;
      margin-top: var(--news-top);
    }

    .report-card {
      width: 100%;
      aspect-ratio: 0.82 / 1;
    }

    .section-tech {
      --tech-line-height: clamp(180px, 15vw, 260px);
      display: grid;
      grid-template-columns: minmax(520px, 1fr) minmax(560px, 1fr);
      column-gap: clamp(70px, 7vw, 132px);
      align-items: start;
    }

    .tech-visual {
      padding-top: clamp(12px, 1vw, 22px);
    }

    .tech-visual .media-card {
      width: clamp(280px, 42vw, 600px);
      aspect-ratio: 1 / 1;
    }

    .tech-content {
      padding-top: clamp(12px, 1vw, 22px);
    }

    .tech-headline {
      width: min(100%, 600px);
      font-size: clamp(24px, 3.5vw, 42px);
      line-height: 1.2;
      letter-spacing: clamp(0.05em, 0.5vw, 0.1em);
      font-weight: 400;
      text-transform: uppercase;
      font-family: var(--font-en);
      margin-bottom: clamp(20px, 2.5vw, 32px);
    }

    .tech-body {
      margin-top: clamp(40px, 4vw, 64px);
      display: grid;
      grid-template-columns: 1px minmax(280px, 520px);
      column-gap: clamp(30px, 3vw, 50px);
      align-items: start;
    }

    .tech-body .line {
      width: 1px;
      height: var(--tech-line-height);
      background: transparent;
      margin-top: 20px;
      position: relative;
      overflow: hidden;
      transform: translateX(var(--tech-line-offset, 0px));
    }

    .tech-body .line::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 0;
      background: var(--line);
    }

    .section-tech.is-in .tech-body .line::before {
      animation: lineRevealDown 1.8s ease-out 0.15s forwards;
    }

    .tech-copy {
      padding-top: clamp(24px, 3vw, 48px);
      color: var(--body);
      font-family: var(--font-cn);
      font-size: clamp(15px, 1.15vw, 17px);
      line-height: 1.9;
      letter-spacing: 0.02em;
      text-align: justify;
      width: min(100%, 500px);
    }

    .section-financing.second {
      margin-top: 0;
    }

    .news-pagination-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      isolation: auto;
    }

    .news-pagination-wrap::before {
      display: none;
    }

    .pagination-meta {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .pagination-kicker {
      color: rgba(18, 19, 23, 0.5);
      font-size: 12px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .pagination-title {
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.1;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
      font-family: var(--font-en);
    }

    .pagination-summary {
      color: rgba(31, 33, 38, 0.76);
      font-family: var(--font-cn);
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.7;
      letter-spacing: 0.02em;
    }

    .news-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      list-style: none;
    }

    .pagination-pages {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .news-pagination li a {
      height: 40px;
      border: 1px solid rgba(191, 191, 191, 0.5);
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.92));
      color: var(--ink);
      display: inline-block;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-family: var(--font-en);
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 4px 14px rgba(124, 124, 124, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      width:40px;
      line-height: 40px;
      text-align: center;
    }

    .pagination-nav:hover,
    .pagination-page:hover {
      transform: translateY(-1px);
      border-color: rgba(159, 160, 160, 0.75);
      background: #fff;
      box-shadow: 0 8px 18px rgba(124, 124, 124, 0.14);
    }

    .pagination-nav {
      min-width: 88px;
      padding: 0 16px;
      color: rgba(18, 19, 23, 0.84);
    }

    .pagination-page {
      width: 40px;
      min-width: 40px;
      padding: 0;
      border-radius: 50%;
      font-size: 15px;
      letter-spacing: 0;
      text-transform: none;
    }

    .pagination-page.is-current {
      border-color: rgba(159, 160, 160, 0.78);
      color: #101114;
      background: linear-gradient(180deg, #ffffff, #f6f6f6);
      box-shadow: 0 8px 18px rgba(159, 160, 160, 0.18);
    }

    .pagination-nav.is-disabled {
      border-color: rgba(191, 191, 191, 0.32);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 247, 247, 0.76));
      box-shadow: 0 4px 12px rgba(124, 124, 124, 0.06);
      color: rgba(18, 19, 23, 0.34);
      cursor: not-allowed;
    }

    .pagination-ellipsis {
      color: rgba(18, 19, 23, 0.42);
      font-size: 14px;
      letter-spacing: 0.24em;
      padding-inline: 2px;
      user-select: none;
    }

    .site-footer {
      margin-top: var(--section-gap);
      background: var(--footer);
    }

    .site-footer-inner {
      width: min(var(--page-width), 100%);
      margin: 0 auto;
      min-height: 118px;
      display: grid;
      grid-template-columns: 1.4fr 1px 0.9fr auto;
      column-gap: clamp(20px, 2vw, 34px);
      align-items: center;
      padding: 10px var(--section-inline);
    }

    .footer-left {
      min-width: 0;
      color: #1c1711;
    }

    .footer-left .logo-main {
      font-size: 46px;
    }

    .footer-left .logo-sub {
      font-size: 8px;
      letter-spacing: 0.12em;
    }

    .footer-text {
      margin-top: 12px;
      font-family: var(--font-cn);
      font-size: clamp(14px, 0.9vw, 16px);
      line-height: 1.8;
      letter-spacing: 0.02em;
      color: rgba(28, 23, 17, 0.92);
    }

    .footer-divider {
      width: 1px;
      height: 70px;
      background: transparent;
      justify-self: center;
      position: relative;
      overflow: hidden;
    }

    .footer-divider::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 0;
      background: rgba(100, 76, 54, 0.62);
    }

    .site-footer.is-in .footer-divider::before {
      animation: lineRevealDown 1.8s ease-out 0.15s forwards;
    }

    .footer-right {
      font-family: var(--font-cn);
      font-size: clamp(14px, 0.9vw, 16px);
      line-height: 1.8;
      letter-spacing: 0.02em;
      text-align: center;
      width: min(360px, 100%);
      color: rgba(28, 23, 17, 0.92);
      justify-self: end;
    }

    .footer-qr {
      width: clamp(94px, 5.6vw, 124px);
      aspect-ratio: 1 / 1;
      border: 1px solid rgba(86, 64, 44, 0.45);
      background: #fff;
      padding: 5px;
      object-fit: cover;
      justify-self: end;
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.is-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* 娴溿倝鏁婇崝銊ф暰瀵ゆ儼绻?*/
    .reveal:nth-child(1) { transition-delay: 0.1s; }
    .reveal:nth-child(2) { transition-delay: 0.2s; }
    .reveal:nth-child(3) { transition-delay: 0.3s; }
    .reveal:nth-child(4) { transition-delay: 0.4s; }

    @keyframes lineRevealDown {
      from { height: 0; }
      to { height: 100%; }
    }

    @keyframes lineRevealScale {
      from { transform: scaleY(0); }
      to { transform: scaleY(1); }
    }

    @media (max-width: 1440px) {
      :root {
        --page-width: min(1720px, calc(100vw - 84px));
        --section-inline: clamp(8px, 1.4vw, 22px);
      }

      .section-financing {
        column-gap: clamp(40px, 5vw, 92px);
      }

      .financing-visual {
        --financing-card-width: clamp(228px, 23vw, 300px);
        --report-top: clamp(104px, 7.8vw, 142px);
        --news-top: clamp(42px, 3.2vw, 68px);
        --line-extend-top: clamp(34px, 2.6vw, 50px);
        column-gap: clamp(24px, 3vw, 56px);
      }

      .financing-spine {
        min-width: 40px;
      }
    }

    @media (max-width: 1160px) {
      :root {
        --page-width: calc(100vw - 48px);
        --page-top-gap: 4px;
        --section-gap: 48px;
        --section-inline: 0px;
      }

      .section-financing {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 24px;
      }

      .financing-copy-block {
        max-width: 560px;
      }

      .section-financing .copy {
        width: min(100%, 520px);
        margin: 0;
      }

      .financing-visual {
        --financing-card-width: 292px;
        --report-top: 96px;
        --news-top: 26px;
        --line-extend-top: 30px;
        width: min(100%, 760px);
        grid-template-columns: minmax(40px, 1fr) minmax(0, var(--financing-card-width)) minmax(0, var(--financing-card-width));
        column-gap: 32px;
        justify-content: start;
        min-height: 0;
      }

      .financing-spine {
        min-width: 32px;
      }

      .section-tech {
        grid-template-columns: 1fr;
        row-gap: 34px;
        min-height: 0;
      }

      .tech-visual {
        padding-left: 0;
      }

      .tech-visual .media-card {
        width: min(100%, 700px);
      }

      .tech-content {
        padding-top: 0;
      }

      .tech-body {
        margin-top: 38px;
      }

      .tech-copy {
        padding-top: 70px;
      }

      .site-footer-inner {
        grid-template-columns: 1fr;
        row-gap: 14px;
        padding: 16px var(--section-inline) 20px;
      }

      .news-pagination-wrap {
        justify-content: center;
      }

      .news-pagination {
        justify-content: center;
      }

      .footer-divider {
        display: none;
      }

      .footer-right,
      .footer-qr {
        justify-self: start;
      }
    }

    @media (max-width: 760px) {
      :root {
        --page-width: calc(100vw - 24px);
        --page-top-gap: 0px;
        --section-gap: 24px;
        --section-inline: 0px;
      }

      .logo-main {
        font-size: 28px;
      }

      .logo-sub {
        font-size: 7px;
      }

      .brand-chip {
        min-width: 44px;
        height: 22px;
        font-size: 12px;
      }

      .section-financing,
      .section-financing.second {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: auto;
      }

      .section-financing .headline {
        font-size: clamp(20px, 6vw, 28px);
        letter-spacing: 0.05em;
      }

      .section-financing .copy {
        font-size: clamp(12px, 3.5vw, 14px);
        line-height: 1.7;
        margin-left: 0;
        width: 100%;
      }

      .financing-visual {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
      }

      .financing-spine {
        display: none;
      }

      .financing-accent {
        order: 2;
        width: 100%;
        padding: 0;
      }

      .vline {
        display: none;
      }

      .news-card,
      .report-card {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        aspect-ratio: 16 / 10;
      }

      .news-card {
        order: 1;
      }

      .section-tech {
        row-gap: 24px;
      }

      .tech-visual {
        padding-left: 0;
      }

      .tech-visual .media-card {
        width: 100%;
        max-width: 100%;
      }

      .tech-headline {
        font-size: clamp(16px, 5vw, 24px);
        letter-spacing: 0.04em;
        line-height: 1.3;
      }

      .tech-body {
        margin-top: 20px;
        grid-template-columns: 1fr;
        row-gap: 12px;
      }

      .tech-body .line {
        display: none;
      }

      .tech-copy {
        padding-top: 0;
        width: 100%;
        font-size: clamp(12px, 3.5vw, 14px);
        line-height: 1.7;
      }

      .news-pagination-wrap {
        padding: 0;
      }

      .pagination-title {
        font-size: clamp(18px, 5.6vw, 24px);
        letter-spacing: 0.06em;
      }

      .news-pagination {
        width: 100%;
        gap: 8px;
        flex-wrap: wrap;
      }

      .pagination-pages {
        gap: 8px;
      }

      .pagination-nav,
      .pagination-page {
        height: 38px;
        font-size: 12px;
      }

      .pagination-nav {
        min-width: 86px;
        padding: 0 14px;
      }

      .pagination-page {
        width: 38px;
        min-width: 38px;
        padding: 0;
        font-size: 14px;
      }

      .site-footer-inner {
        padding: 16px var(--section-inline);
      }

      .footer-left .logo-main {
        font-size: 32px;
      }

      .footer-text,
      .footer-right {
        font-size: 12px;
      }

      .footer-qr {
        width: 64px;
      }
    }
  
