
    :root {
      --ink: #0a0b0d;
      --paper: #f7f7f4;
      --white: #ffffff;
      --line: rgba(10, 11, 13, .14);
      --muted: #5b6068;
      --orange: #ff5a00;
      --orange-dark: #c94100;
      --charcoal: #171a1f;
      --steel: #dce1e4;
      --shadow: 0 18px 60px rgba(10, 11, 13, .14);
      --radius: 8px;
      --hero-image: url("assets/hero-store-experience.png");
      --hero-mobile-image: url("assets/hero-store-experience.png");
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
      letter-spacing: 0;
      line-height: 1.75;
    }

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

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

    .site-header {
      position: fixed;
      z-index: 20;
      top: 0;
      left: 0;
      right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .24);
      color: var(--white);
      background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .06));
      backdrop-filter: blur(14px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(1180px, calc(100% - 32px));
      min-height: 72px;
      margin: 0 auto;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      line-height: 1.2;
    }

    .brand-mark {
      width: 34px;
      height: 46px;
      border: 2px solid var(--white);
      border-radius: 5px;
      background: linear-gradient(150deg, var(--orange) 0 48%, #111 49% 100%);
      box-shadow: 8px 8px 0 rgba(255, 90, 0, .24);
      transform: skew(-8deg) rotate(4deg);
    }

    .brand small {
      display: block;
      color: rgba(255, 255, 255, .7);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .nav a {
      position: relative;
      padding: 10px 0;
    }

    .nav a::after {
      position: absolute;
      right: 0;
      bottom: 4px;
      left: 0;
      height: 2px;
      background: var(--orange);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .2s ease;
    }

    .nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, .45);
      border-radius: 6px;
      color: var(--white);
      background: rgba(0, 0, 0, .35);
      font-size: 24px;
      line-height: 1;
    }

    .hero {
      position: relative;
      min-height: 94svh;
      overflow: hidden;
      isolation: isolate;
      color: var(--white);
      background: #111;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .42) 34%, rgba(0, 0, 0, .08) 64%), var(--hero-image);
      background-position: center;
      background-size: cover;
      content: "";
    }

    .hero::after {
      position: absolute;
      inset: auto 0 0;
      z-index: -1;
      height: 30%;
      background: linear-gradient(180deg, rgba(247, 247, 244, 0), var(--paper));
      content: "";
    }

    .hero-inner {
      display: grid;
      align-items: center;
      width: min(1180px, calc(100% - 32px));
      min-height: 94svh;
      margin: 0 auto;
      padding: 112px 0 120px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 46px;
      height: 3px;
      background: var(--orange);
      content: "";
    }

    .hero-copy {
      max-width: 760px;
    }

    body[data-hero-x="center"] .hero-copy {
      justify-self: center;
      text-align: center;
    }

    body[data-hero-x="right"] .hero-copy {
      justify-self: end;
      text-align: right;
    }

    body[data-hero-y="top"] .hero-inner {
      align-items: start;
      padding-top: 132px;
    }

    body[data-hero-y="middle"] .hero-inner {
      align-items: center;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(40px, 7vw, 86px);
      font-weight: 950;
      line-height: 1.05;
      text-wrap: balance;
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero h1 .no-break {
      color: var(--white);
      white-space: nowrap;
    }

    .hero-lead {
      max-width: 670px;
      margin: 26px 0 0;
      color: rgba(255, 255, 255, .9);
      font-size: clamp(17px, 2.2vw, 23px);
      font-weight: 800;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 12px 20px;
      border: 2px solid transparent;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.2;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      color: var(--white);
      background: var(--orange);
      box-shadow: 0 16px 34px rgba(255, 90, 0, .3);
    }

    .button-ghost {
      border-color: rgba(255, 255, 255, .62);
      color: var(--white);
      background: rgba(255, 255, 255, .08);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(780px, 100%);
      margin-top: 62px;
      border: 1px solid rgba(255, 255, 255, .26);
      background: rgba(255, 255, 255, .22);
    }

    .stat {
      min-height: 96px;
      padding: 18px;
      background: rgba(0, 0, 0, .42);
      backdrop-filter: blur(12px);
    }

    .stat b {
      display: block;
      color: var(--orange);
      font-size: clamp(20px, 3vw, 34px);
      line-height: 1.1;
    }

    .stat span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, .78);
      font-size: 12px;
      font-weight: 800;
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 96px 0;
    }

    .section-dark {
      color: var(--white);
      background: var(--charcoal);
    }

    .section-orange {
      color: var(--white);
      background: linear-gradient(135deg, #ff5a00, #b83200);
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(280px, .62fr);
      gap: 42px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-kicker {
      display: inline-block;
      margin: 0 0 12px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .section-dark .section-kicker,
    .section-orange .section-kicker {
      color: var(--white);
    }

    h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 950;
      line-height: 1.15;
      text-wrap: balance;
    }

    .section-head p,
    .lead {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      font-weight: 700;
    }

    .section-dark .section-head p,
    .section-dark .lead,
    .section-orange .section-head p,
    .section-orange .lead {
      color: rgba(255, 255, 255, .78);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .service-card,
    .store-card,
    .news-card,
    .recruit-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 10px 34px rgba(10, 11, 13, .06);
    }

    .service-card {
      min-height: 280px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 74px;
      height: 5px;
      background: var(--orange);
      content: "";
    }

    .service-card strong {
      display: block;
      margin-top: 24px;
      font-size: 22px;
      font-weight: 950;
      line-height: 1.35;
    }

    .service-card p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .number {
      color: rgba(10, 11, 13, .1);
      font-size: 60px;
      font-weight: 950;
      line-height: 1;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 24px;
      padding-left: 28px;
    }

    .timeline::before {
      position: absolute;
      top: 8px;
      bottom: 8px;
      left: 6px;
      width: 2px;
      background: linear-gradient(var(--orange), rgba(255, 255, 255, .24));
      content: "";
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      gap: 24px;
      padding: 22px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .timeline-item::before {
      position: absolute;
      top: 32px;
      left: -28px;
      width: 14px;
      height: 14px;
      border: 3px solid var(--charcoal);
      border-radius: 50%;
      background: var(--orange);
      content: "";
    }

    .timeline-item time {
      color: var(--orange);
      font-size: 22px;
      font-weight: 950;
    }

    .timeline-item h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.35;
    }

    .timeline-item p {
      margin: 8px 0 0;
      color: rgba(255, 255, 255, .72);
      font-weight: 700;
    }

    .company-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 18px;
      margin-top: 44px;
    }

    .company-panel {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .06);
    }

    .company-list {
      display: grid;
      gap: 0;
      margin: 0;
    }

    .company-list div {
      display: grid;
      grid-template-columns: 130px minmax(0, 1fr);
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .company-list dt {
      color: rgba(255, 255, 255, .58);
      font-weight: 900;
    }

    .company-list dd {
      margin: 0;
      font-weight: 800;
    }

    .recruit-layout {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
      gap: 20px;
      align-items: stretch;
    }

    .recruit-card {
      padding: 30px;
    }

    .recruit-card h3 {
      margin: 0 0 18px;
      font-size: 26px;
      line-height: 1.35;
    }

    .policy-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .policy-list li {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      color: var(--muted);
      font-weight: 800;
    }

    .policy-list b {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 5px;
      color: var(--white);
      background: var(--orange);
      font-size: 13px;
    }

    .reward-panel {
      display: grid;
      gap: 1px;
      overflow: hidden;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .22);
      box-shadow: var(--shadow);
    }

    .reward-row {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 20px;
      padding: 22px;
      background: var(--charcoal);
    }

    .reward-row b {
      color: var(--orange);
      font-size: 18px;
    }

    .reward-row span {
      color: rgba(255, 255, 255, .8);
      font-weight: 800;
    }

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

    .store-card {
      overflow: hidden;
    }

    .store-visual {
      display: grid;
      place-items: center;
      aspect-ratio: 16 / 10;
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(0, 0, 0, .72), rgba(255, 90, 0, .55)),
        repeating-linear-gradient(120deg, #111 0 16px, #222 17px 30px, #ff5a00 31px 36px);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .store-body {
      padding: 24px;
    }

    .store-body h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.35;
    }

    .store-body p {
      margin: 12px 0 0;
      color: var(--muted);
      font-weight: 700;
    }

    .store-tag {
      display: inline-flex;
      margin-top: 18px;
      padding: 5px 9px;
      border-radius: 4px;
      color: var(--orange-dark);
      background: rgba(255, 90, 0, .12);
      font-size: 12px;
      font-weight: 950;
    }

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

    .news-card {
      padding: 24px;
    }

    .news-card time {
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
    }

    .news-card h3 {
      margin: 10px 0 0;
      font-size: 18px;
      line-height: 1.5;
    }

    .contact {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .contact::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .36)),
        var(--hero-image) center / cover;
      content: "";
      filter: saturate(1.1);
    }

    .contact-box {
      max-width: 760px;
      color: var(--white);
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .contact-actions .button-ghost {
      background: rgba(0, 0, 0, .32);
    }

    .site-footer {
      color: rgba(255, 255, 255, .72);
      background: #070809;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 34px 0;
      font-size: 13px;
      font-weight: 800;
    }

    @media (max-width: 980px) {
      .menu-button {
        display: inline-grid;
        place-items: center;
      }

      .nav {
        position: absolute;
        top: 72px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: var(--radius);
        background: rgba(8, 9, 10, .96);
        box-shadow: var(--shadow);
      }

      .nav.is-open {
        display: flex;
      }

      .nav a {
        padding: 13px 12px;
      }

      .section-head,
      .recruit-layout,
      .company-grid {
        grid-template-columns: 1fr;
      }

      .service-grid,
      .store-grid,
      .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .header-inner {
        min-height: 64px;
      }

      .brand {
        font-size: 14px;
      }

      .brand-mark {
        width: 28px;
        height: 38px;
      }

      .nav {
        top: 64px;
      }

      .hero {
        min-height: 100svh;
      }

      .hero::before {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 48%, rgba(0, 0, 0, .28) 100%), url("assets/hero-trecaline.png");
        background-position: 62% center;
      }

      .hero-inner {
        min-height: 100svh;
        padding: 96px 0 92px;
      }

      .hero h1 {
        font-size: clamp(38px, 13vw, 62px);
      }

      .hero-stats,
      .service-grid,
      .store-grid,
      .news-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 72px 0;
      }

      .timeline-item,
      .company-list div,
      .reward-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .footer-inner {
        flex-direction: column;
      }
    }

    @media (max-width: 680px) {
      body {
        line-height: 1.68;
      }

      .site-header {
        background: linear-gradient(180deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .2));
      }

      .header-inner,
      .container {
        width: min(100% - 28px, 420px);
      }

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

      .hero::before {
        background-image:
          linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .16) 42%, rgba(0, 0, 0, .62) 100%),
          var(--hero-mobile-image);
        background-position: center top;
      }

      .hero-inner {
        align-items: end;
        padding: 78px 0 24px;
      }

      .hero-copy {
        max-width: 100%;
        padding-bottom: env(safe-area-inset-bottom);
      }

      .eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
        line-height: 1.4;
      }

      .eyebrow::before {
        width: 32px;
      }

      .hero h1 {
        font-size: clamp(36px, 11.5vw, 50px);
        line-height: 1.08;
        text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
      }

      .hero-lead {
        max-width: 20em;
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
        text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
      }

      .hero-actions,
      .contact-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
      }

      .button {
        width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        font-size: 14px;
      }

      .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 14px;
      }

      .stat {
        min-height: 66px;
        padding: 8px 7px;
      }

      .stat b {
        font-size: 18px;
      }

      .stat span {
        font-size: 10px;
        line-height: 1.35;
      }

      section {
        padding: 62px 0;
      }

      .section-head {
        gap: 14px;
        margin-bottom: 24px;
      }

      h2 {
        font-size: clamp(28px, 8.8vw, 38px);
        line-height: 1.22;
      }

      .section-head p,
      .lead {
        font-size: 14px;
      }

      .service-card,
      .recruit-card,
      .company-panel,
      .news-card {
        padding: 20px;
      }

      .service-card {
        min-height: 0;
      }

      .service-card strong,
      .store-body h3 {
        font-size: 20px;
      }

      .number {
        font-size: 44px;
      }

      .timeline {
        gap: 8px;
        padding-left: 22px;
      }

      .timeline-item {
        padding: 18px 0;
      }

      .timeline-item::before {
        left: -25px;
      }

      .timeline-item h3,
      .timeline-item time {
        font-size: 19px;
      }

      .company-list div {
        padding: 14px 0;
      }

      .policy-list li {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
        font-size: 14px;
      }

      .policy-list b {
        width: 30px;
        height: 30px;
        font-size: 12px;
      }

      .reward-row {
        padding: 18px;
      }

      .store-body {
        padding: 20px;
      }

      .contact::before {
        background:
          linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .54)),
          var(--hero-mobile-image) center / cover;
      }
    }
  

:root{--hero-image:url('hero-store-experience.png');--hero-mobile-image:url('hero-store-experience.png')}
.site-header{position:sticky;top:0;z-index:30;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px max(18px,calc((100vw - 1180px)/2));background:rgba(255,255,255,.96);border-bottom:1px solid rgba(10,11,13,.12);backdrop-filter:blur(14px)}
.brand{display:flex;align-items:center;gap:10px;color:#0a0b0d;text-decoration:none}.brand-mark{display:grid;place-items:center;width:38px;height:38px;background:#ff5a00;color:#fff;font-weight:900}.brand strong,.brand small{display:block}.brand small{margin-top:2px;color:#69717c;font-size:10px}.menu-toggle{display:none;border:1px solid rgba(10,11,13,.18);background:#fff;padding:9px 12px;font-weight:800}.nav{display:flex;align-items:center;gap:22px}.nav a{color:#0a0b0d;text-decoration:none;font-weight:800;font-size:14px}.nav a:hover{color:#d94c00}
.hero{min-height:min(840px,92vh);background:#111}.hero::before{background-image:linear-gradient(90deg,rgba(8,10,13,.92) 0%,rgba(8,10,13,.58) 31%,rgba(8,10,13,.12) 62%),var(--hero-image);background-position:center;background-size:cover}.hero::after{height:18%;background:linear-gradient(180deg,rgba(8,10,13,0),rgba(8,10,13,.4))}.hero-inner{position:relative;min-height:min(840px,92vh);padding-bottom:150px}.hero-copy{max-width:650px}.hero h1{max-width:760px;font-size:clamp(52px,8vw,104px);letter-spacing:0}.hero-lead{max-width:560px}.hero-actions{flex-wrap:wrap}.hero-value-line{position:absolute;right:0;bottom:44px;left:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));max-width:760px;border-top:1px solid rgba(255,255,255,.42);color:rgba(255,255,255,.68);font-size:11px;font-weight:900}.hero-value-line span{padding:16px 18px;border-right:1px solid rgba(255,255,255,.22)}.hero-value-line span:first-child{padding-left:0}.hero-value-line b{display:block;margin-top:3px;color:#fff;font-size:16px}.hero-image-note{position:absolute;right:max(18px,calc((100vw - 1180px)/2));bottom:20px;z-index:2;margin:0;color:rgba(255,255,255,.7);font-size:11px;font-weight:700}.page-hero{padding:clamp(84px,12vw,150px) 0 70px;background:#11151a;color:#fff}.page-hero h1{max-width:880px;margin:10px 0 18px;font-size:clamp(38px,6vw,72px);line-height:1.12;letter-spacing:0}.page-hero p{max-width:720px;color:rgba(255,255,255,.72);font-size:18px;font-weight:700}
.experience-section{padding-top:clamp(76px,10vw,132px)}.experience-heading{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr);gap:28px;align-items:end}.experience-heading .section-kicker{grid-column:1/-1}.experience-heading h2{max-width:780px;margin:0;font-size:clamp(38px,5.5vw,72px);line-height:1.12}.experience-heading p{margin:0;color:#59616c;font-size:17px;font-weight:700}.experience-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin-top:54px;border-top:1px solid rgba(10,11,13,.18);border-bottom:1px solid rgba(10,11,13,.18)}.experience-value{display:grid;grid-template-columns:auto 1fr;gap:20px;min-height:220px;padding:34px 28px;border-right:1px solid rgba(10,11,13,.16)}.experience-value:last-child{border-right:0}.experience-value>span{color:#d94c00;font-size:14px;font-weight:900}.experience-value h3{margin:0 0 14px;font-size:26px}.experience-value p{margin:0;color:#59616c;font-weight:700}.experience-actions{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-top:28px}.experience-actions>span{color:#69717c;font-size:12px;font-weight:700}.buyback-feature{background:#11151a;color:#fff}.buyback-layout,.recruit-layout{display:flex;align-items:center;justify-content:space-between;gap:40px}.buyback-layout h2,.recruit-layout h2{margin:7px 0 10px;font-size:clamp(34px,4.5vw,58px);line-height:1.12}.buyback-layout p{max-width:680px;margin:0;color:rgba(255,255,255,.7);font-weight:700}.connected-section{background:#eef0f1}.recruit-feature{background:#ff5a00;color:#111}.recruit-layout p{max-width:640px;margin:0;font-weight:800}.button-ink{color:#fff;background:#11151a}.company-closing{padding-top:72px;padding-bottom:72px;background:#fff}.company-closing-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.8fr);gap:56px;align-items:start}.company-closing-layout h2{max-width:650px;margin:8px 0 0;font-size:clamp(30px,4vw,52px);line-height:1.2}.company-closing-layout p{margin:0;color:#59616c;font-weight:700}
.text-link{display:inline-flex;margin-top:18px;color:#d94c00;font-weight:900;text-decoration:none}.text-link::after{content:' →'}.action-band{display:flex;align-items:center;justify-content:space-between;gap:28px;padding-top:36px;padding-bottom:36px}.action-band h2{margin:5px 0 8px}.step-list{display:grid;gap:0;margin:0;padding:0;list-style:none}.step-list li{display:grid;grid-template-columns:80px 1fr;gap:20px;padding:24px 0;border-top:1px solid rgba(255,255,255,.18)}.step-list b{color:#ff5a00;font-size:28px}.step-list h3{margin:0 0 6px}.step-list p{margin:0;color:rgba(255,255,255,.68)}
.principle-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;background:#d8dce0;border:1px solid #d8dce0}.principle-grid article{padding:26px;background:#fff}.principle-grid article>b{color:#d94c00}.principle-grid h2{font-size:22px}.list-stack{display:grid;gap:1px;background:#d8dce0;border:1px solid #d8dce0}.list-row{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px;background:#fff}.list-row h2{margin:5px 0 0;font-size:24px}.empty-state{padding:30px;border:1px solid rgba(10,11,13,.15);background:#fff;font-weight:800;color:#59616c}.detail-list,.policy-meta{margin:0}.detail-list>div,.policy-meta>div{display:grid;grid-template-columns:180px 1fr;padding:18px 0;border-top:1px solid rgba(10,11,13,.14)}.detail-list dt,.policy-meta dt{font-weight:900}.policy-document{max-width:860px}.policy-document>section{padding:24px 0;border-top:1px solid rgba(10,11,13,.14)}.policy-document h2{font-size:24px}.review-note{padding:14px 16px;border-left:4px solid #ff5a00;background:#fff3e8;font-weight:900;color:#853600}
.site-footer{padding:34px max(18px,calc((100vw - 1180px)/2));background:#0a0b0d;color:#fff}.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:24px}.footer-inner>div small{display:block;color:rgba(255,255,255,.55)}.footer-inner nav{display:flex;gap:16px}.footer-inner a{color:rgba(255,255,255,.78);text-decoration:none;font-size:13px}
@media(max-width:760px){.site-header{padding:10px 14px}.brand strong{font-size:13px}.menu-toggle{display:block}.nav{display:none;position:absolute;top:59px;left:0;right:0;flex-direction:column;align-items:stretch;gap:0;padding:8px 14px 18px;background:#fff;border-bottom:1px solid rgba(10,11,13,.14)}.nav.is-open{display:flex}.nav a{padding:13px 4px;border-bottom:1px solid rgba(10,11,13,.08)}.hero{min-height:720px}.hero::before{background-image:linear-gradient(180deg,rgba(8,10,13,.12) 0%,rgba(8,10,13,.3) 38%,rgba(8,10,13,.94) 78%),var(--hero-mobile-image);background-position:62% center}.hero-inner{min-height:720px;align-items:end;padding:110px 0 138px}.hero h1{font-size:clamp(48px,15vw,68px)}.hero-lead{font-size:17px}.hero-value-line{bottom:32px}.hero-value-line span{padding:12px 8px}.hero-value-line span:first-child{padding-left:0}.hero-value-line b{font-size:13px}.hero-image-note{right:14px;bottom:8px;font-size:10px}.experience-heading,.company-closing-layout{grid-template-columns:1fr}.experience-heading .section-kicker{grid-column:auto}.experience-heading h2{font-size:38px}.experience-grid{grid-template-columns:1fr}.experience-value{min-height:auto;padding:24px 4px;border-right:0;border-bottom:1px solid rgba(10,11,13,.14)}.experience-value:last-child{border-bottom:0}.experience-actions,.buyback-layout,.recruit-layout{align-items:flex-start;flex-direction:column}.action-band,.footer-inner,.list-row{align-items:flex-start;flex-direction:column}.principle-grid{grid-template-columns:1fr}.detail-list>div,.policy-meta>div{grid-template-columns:1fr;gap:6px}.footer-inner nav{flex-wrap:wrap}}
