
  .neway-history,
  .neway-history * {
    box-sizing: border-box;
  }

  .neway-history {
    --ink: #082d53;
    --blue: #16839c;
    --aqua: #4acdd8;
    --muted: #647d8f;
    --line: #cbdce3;
    --paper: #fff;
    width: 100%;
    padding: 92px clamp(24px, 6vw, 96px) 100px;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
  }

  .neway-history .history-wrap {
    width: min(1400px, 100%);
    margin: 0 auto;
  }

  .neway-history .history-heading {
    padding: 0 0 46px;
    border-bottom: 1px solid var(--line);
  }

  .neway-history .title {
    max-width: 720px;
    margin: 0;
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.035em;
  }

  .neway-history .title span {
    color: var(--aqua);
  }

  .neway-history .timeline-scroll {
    overflow-x: auto;
    padding: 18px 0;
  }

  .neway-history .timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(205px, 1fr));
    min-width: 1120px;
    margin: 0;
    padding: 31px 0 0;
    list-style: none;
  }

  .neway-history .phase {
    position: relative;
    padding: 0 28px 0 0;
  }

  .neway-history .phase::before {
    content: "";
    position: absolute;
    top: -37px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: var(--paper);
  }

  .neway-history .phase.is-key::before {
    border-color: var(--aqua);
    background: var(--aqua);
    box-shadow: 0 0 0 5px var(--paper);
  }

  .neway-history .phase-years {
    display: block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
  }

  .neway-history .phase h3 {
    max-width: 185px;
    margin: 28px 0 11px;
    color: var(--ink);
    font-size: clamp(20px, 1.75vw, 26px);
    line-height: 1.04;
    letter-spacing: -.055em;
  }

  .neway-history .phase p {
    max-width: 205px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.57;
  }

  .neway-history .phase-events {
    max-width: 215px;
    margin: 23px 0 0;
    padding: 0;
    list-style: none;
  }

  .neway-history .phase-events li {
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.48;
  }

  .neway-history .phase-events b {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 12px;
  }

  .neway-history .history-note {
    margin: 41px 0 0;
    padding-top: 19px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
  }

  @media (max-width: 760px) {
    .neway-history {
      padding-top: 64px;
      padding-bottom: 70px;
    }

    .neway-history .history-heading {
      padding-bottom: 34px;
    }

    .neway-history .title {
      font-size: clamp(38px, 12vw, 58px);
      letter-spacing: -.04em;
    }

    .neway-history .timeline-scroll {
      margin: 0 -24px;
      padding: 18px 24px 14px;
    }

    .neway-history .timeline {
      min-width: 1080px;
    }

    .neway-history .history-note {
      font-size: 12px;
    }
  }
