/* ---------------------------
メイン画像
--------------------------- */
.main {
  padding: 0 16px;
  position: relative;
  height: 100%;
  background-image: url(../images/top/main.png);
  &:before {
    position: absolute;
    background: url("../images/top/main_bottom.png") no-repeat;
    background-size: 100% 100%;
    top: initial;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
  }
  @media screen and (max-width: 991px) {
    &:before {
      height: 48px;
    }
  }
  .main__text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #fff;
    width: fit-content;
    margin-inline: auto;
    padding: 175px 0;
    height: auto;
    @media screen and (max-width: 991px) {
      flex-direction: column;
      justify-content: flex-start;
      padding: 120px 0 80px;
      gap: 24px;
    }
    .main__text__heading {
      font-size: 5.6rem;
      line-height: 1.2;
      font-style: italic;
      font-weight: bold;
      margin-top: 0;
      position: static;
      transform: initial;
      text-align: left;
      @media screen and (max-width: 991px) {
        font-size: 4rem;
      }
    }
    .main__text__sub {
      font-size: 1.4rem;
      line-height: 1.5;
      font-weight: bold;
      text-align: center;
      @media screen and (max-width: 991px) {
        font-size: 1.2rem;
        font-weight: 500;
      }
    }
  }
}

/* ---------------------------
コンテンツ背景
--------------------------- */
.top-triangle-bg {
  padding: 80px 0;
  position: relative;
  &:before {
    content: "";
    position: absolute;
    background: url("../images/top/top-bg-left.png");
    background-repeat: repeat-y;
    background-size: contain;
    height: 100%;
    width: 10.5%;
    left: 0;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }
  &:after {
    content: "";
    position: absolute;
    background: url("../images/top/top-bg-right.png");
    background-repeat: repeat-y;
    background-size: contain;
    background-position: right;
    height: 100%;
    width: 10.5%;
    right: 0;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }
  &.top-triangle-bg--under-main {
    padding-top: 20px;
  }
  &.top-triangle-bg--history {
    @media screen and (max-width: 991px) {
      padding-bottom: 40px;
    }
  }
  .top-triangle-bg__in {
    position: relative;
    z-index: 1;
  }
}

/* ---------------------------
タイトル
--------------------------- */
.heading-treat {
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
  @media screen and (max-width: 991px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .heading-treat__title {
    font-size: 5.6rem;
    line-height: 1;
    display: inline-block;
    margin: 0;
    position: relative;
    text-align: left;
    &:after {
      content: "";
      position: absolute;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      top: 0;
      bottom: 0;
      margin-block: auto;
      right: 0;
    }
    @media screen and (max-width: 991px) {
      font-size: 4rem;
      &:after {
        top: -24px;
        margin-block: initial;
      }
    }
    .heading-treat--introduction & {
      color: #1fbecc;
      padding-right: 90px;
      &:after {
        background-image: url("../images/top/title_treat01.png");
        width: 90px;
        height: 82px;
      }
      @media screen and (max-width: 991px) {
        padding-right: 60px;
        &:after {
          width: 53px;
          height: 48px;
        }
      }
    }
    .heading-treat--business & {
      color: #59d059;
      padding-right: 74px;
      &:after {
        background-image: url("../images/top/title_treat02.png");
        width: 65px;
        height: 82px;
      }
      @media screen and (max-width: 991px) {
        padding-right: 60px;
        &:after {
          width: 48px;
          height: 60px;
        }
      }
    }
    .heading-treat--history & {
      color: #6b85fe;
      padding-right: 74px;
      &:after {
        background-image: url("../images/top/title_treat03.png");
        width: 61px;
        height: 67px;
      }
      @media screen and (max-width: 991px) {
        padding-right: 60px;
        &:after {
          width: 48px;
          height: 53px;
        }
      }
    }
    .heading-treat--blog & {
      color: #fff;
      padding-right: 90px;
      &:after {
        background-image: url("../images/top/title_treat04.png");
        width: 78px;
        height: 90px;
      }
      @media screen and (max-width: 991px) {
        padding-right: 60px;
        &:after {
          width: 48px;
          height: 55px;
        }
      }
    }
  }
  .heading-treat__sub {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 30px;
    font-weight: bold;
    @media screen and (max-width: 991px) {
      padding-left: 0;
    }
    .heading-treat--introduction & {
      color: #009fbf;
    }
    .heading-treat--business & {
      color: #26bf26;
    }
    .heading-treat--history & {
      color: #3061f2;
    }
    .heading-treat--blog & {
      color: #fff;
    }
  }
}

/* ---------------------------
need you
--------------------------- */
.introduction {
  padding-bottom: 0; /* 打ち消し用 */
  margin-top: 80px;
}
.introduction-list {
  margin-bottom: 0; /* 打ち消し用 */
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  @media screen and (max-width: 991px) {
    gap: 10px;
  }
  .introduction-list__item {
    background: #c2eff2;
    padding: 11px 20px;
    @media screen and (min-width: 1150px) {
      &:nth-child(-n + 4) {
        width: 264px;
      }
      &:nth-last-child(-n + 3) {
        width: 360px;
      }
    }
    @media screen and (max-width: 991px) {
      padding: 6px 20px;
      width: 100%;
      min-height: 48px;
      display: flex;
      align-items: center;
    }
    .introduction-list__item__text {
      margin-bottom: 0; /* 打ち消し用 */
      margin-left: 0; /* 打ち消し用 */
      position: relative;
      padding-left: 40px;
      line-height: 1.5;
      font-size: 1.4rem;
      font-weight: bold;
      &:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        display: block;
        left: 0;
        top: 0;
        bottom: 0;
        margin-block: auto;
        background: #1fbecc;
      }
      &:after {
        content: "";
        position: absolute;
        width: 16px;
        height: 14px;
        top: 0;
        bottom: 0;
        margin-block: auto;
        left: 2px;
        background: url(../images/flow_check.png) center center no-repeat;
        background-size: 16px 14px;
      }
      @media screen and (max-width: 991px) {
        font-size: 1.2rem;
      }
    }
  }
}

/* ---------------------------
Diezonの採用HOTワードエリア
--------------------------- */
.provision {
  background: url(../images/top/bg01.png) center center no-repeat;
  background-size: cover;
  padding: 60px 0 !important;
  @media screen and (max-width: 991px) {
    padding: 40px 0 !important;
  }
  .provision__list {
    margin-bottom: 0; /* 打ち消し用 */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .provision__item {
    margin-bottom: 0; /* 打ち消し用 */
    color: #fff;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 50px;
    padding: 5px 20px;
    display: inline-block;
    line-height: 1.2;
    &:first-child {
      position: relative;
      margin-left: 200px;
      display: inline-block;
      &:before {
        content: "Diezonの採用HOTワード：";
        position: absolute;
        left: -190px;
        top: 5px;
        color: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.2;
      }
      @media screen and (max-width: 991px) {
        margin-left: 170px;
        &:before {
          font-size: 1.2rem;
          left: -170px;
        }
      }
    }
  }
  .provision__band {
    background: #ff850b;
    margin-top: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    .provision__band__text {
      margin-bottom: 0; /* 打ち消し用 */
      color: #fff;
      font-size: 2.4rem;
      font-weight: bold;
      line-height: 1.2;
      text-align: center;
      @media screen and (max-width: 991px) {
        font-size: 1.6rem;
      }
    }
    .provision__band__note {
      margin-bottom: 0; /* 打ち消し用 */
      color: #fff;
      font-size: 1.2rem;
      line-height: 1.2;
      @media screen and (max-width: 991px) {
        font-size: 1rem;
      }
    }
  }
}

/* ---------------------------
BUSINESS
--------------------------- */
.business {
  padding-bottom: 0; /* 打ち消し用 */
  .business-box {
    position: relative;
    &:before {
      position: absolute;
      content: "";
      background-size: 100% 100%;
      right: 0;
      bottom: 0;
    }
    &:after {
      position: absolute;
      content: "";
      clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
      right: 0;
      top: 0;
      bottom: 0;
      margin-block: auto;
      background: rgba(255, 255, 255, 0.16);
      height: 100%;
    }
    &.business-box--01 {
      background: #1f1f4d;
      width: calc((100% - 488px));
      padding: 30px 40px;
      &:before {
        background-image: url("../images/top/regolith_logo.png");
        width: 192px;
        height: 128px;
      }
      &:after {
        width: 37%;
      }
      @media screen and (max-width: 991px) {
        width: 100%;
        padding: 20px;
        &:before {
          width: 120px;
          height: 80px;
        }
        &:after {
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        }
      }
    }
    &.business-box--02,
    &.business-box--03 {
      /* padding: 20px 40px; */
      padding: 30px 40px;
      height: 100%;
      &:before {
        width: 96px;
        height: 64px;
      }
      &:after {
        width: 27%;
      }
      @media screen and (max-width: 991px) {
        padding: 20px;
        &:after {
          width: 34%;
        }
      }
    }
    &.business-box--02 {
      background: #00a7b3;
      &:before {
        background-image: url("../images/top/vislite_logo.png");
      }
    }
    &.business-box--03 {
      background: #005b42;
      &:before {
        background-image: url("../images/top/markt_logo.png");
      }
    }
    .business-box__heading {
      /* 打ち消し用のスタイル ここから */
      font-style: normal !important;
      position: static;
      padding: 0;
      background: none;
      text-align: left;
      margin: 0;
      width: auto;
      /* 打ち消し用のスタイル ここまで */
      color: #fff;
      font-size: 2.4rem;
      font-weight: bold;
      line-height: 1.2;
      @media screen and (max-width: 991px) {
        font-size: 1.6rem;
      }
    }
    .business-box__sub-text {
      margin-bottom: 0; /* 打ち消し用 */
      color: #fff;
      font-size: 1.2rem;
      line-height: 1.5;
      margin-top: 10px;
      @media screen and (max-width: 991px) {
        margin-top: 5px;
      }
    }
    .business-box__amendment-text {
      margin-bottom: 0; /* 打ち消し用 */
      color: #fff;
      font-size: 1.4rem;
      font-weight: bold;
      line-height: 1.5;
      margin-top: 20px;
      @media screen and (max-width: 991px) {
        font-size: 1.2rem;
        margin-top: 10px;
      }
    }
    .business-box__treatment {
      position: absolute;
      content: "";
      clip-path: polygon(0 0, 0% 100%, 100% 0);
      left: 4px;
      top: 4px;
      width: 14px;
      height: 43px;
      background-color: #59d059;
    }
  }
}

.business-box-wrap {
  display: flex;
  gap: 8px;
  @media screen and (max-width: 991px) {
    flex-direction: column;
  }
  .business-box-wrap__right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 480px;
    @media screen and (max-width: 991px) {
      width: 100%;
    }
  }
}

/* ---------------------------
ボタン群エリア
--------------------------- */
.special-feature {
  background: url(../images/top/bg02.png) center center no-repeat;
  background-size: cover;
  padding: 40px 0;
  @media screen and (max-width: 991px) {
    padding: 80px 0 40px;
    background-position: right;
  }
  .button-list {
    margin-top: 0;
  }
}

/* ---------------------------
COMPANY HISTORY
--------------------------- */
.history {
  padding-bottom: 0; /* 打ち消し用 */
}
.history-main {
  margin-bottom: 0; /* 打ち消し用 */
  position: relative;
  @media screen and (max-width: 1300px) {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
    padding-right: 16px;
  }
  .history-main__image {
    padding: 172px 0 172px 0;
    @media screen and (max-width: 1300px) {
      display: none;
    }
  }
  .history-main__person {
    position: absolute;
  }
  .history-main__person--01 {
    left: 299px;
    top: -36px;
    @media screen and (max-width: 1300px) {
      width: 59px;
      top: 331px;
      left: auto;
      right: 65px;
    }
  }
  .history-main__person--02 {
    left: 174px;
    bottom: -19px;
    @media screen and (max-width: 1300px) {
      width: 51px;
      left: auto;
      top: -52px;
      right: 90px;
    }
  }
  .history-main__person--03 {
    left: 718px;
    top: 106px;
    @media screen and (max-width: 1300px) {
      width: 78px;
      left: auto;
      top: 550px;
      right: 110px;
    }
  }
  .history-main__person--04 {
    right: -70px;
    bottom: 8px;
    @media screen and (max-width: 1300px) {
      width: 86px;
      left: 8px;
      bottom: -40px;
    }
  }
}

.history-event {
  position: absolute;
  @media screen and (max-width: 1300px) {
    position: static;
    display: flex;
    gap: 8px;
  }
  &.history-event--2016 {
    bottom: 0;
    left: 0;
  }
  &.history-event--2017 {
    top: 68px;
    left: 77px;
  }
  &.history-event--2022 {
    bottom: 30px;
    left: 263px;
  }
  &.history-event--2021 {
    top: 109px;
    left: 381px;
  }
  &.history-event--2020 {
    bottom: 68px;
    left: 526px;
  }
  /* &.history-event--2021 {
    top: 70px;
    left: 605px;
  } */
  /* &.history-event--2022 {
    bottom: 8px;
    right: 30px;
  } */
  &.history-event--2023 {
    top: 0;
    right: 32px;
  }
  &.history-event--now {
    bottom: 152px;
    right: 0;
  }
  .history-event__in {
    position: relative;
    @media screen and (max-width: 1300px) {
      width: 100%;
      padding: 20px 0;
    }
  }
  .history-event__year {
    margin-bottom: 0; /* 打ち消し用 */
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    background: #6b85fe;
    padding: 6px 16px;
    display: inline-block;
    position: absolute;
    left: 16px;
    top: -8px;
    z-index: 1;
    @media screen and (max-width: 1300px) {
      top: 12px;
      font-size: 1.2rem;
    }
  }
  .history-event__year-sp {
    margin-bottom: 0; /* 打ち消し用 */
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    @media screen and (min-width: 1301px) {
      display: none;
    }
    .history-event--2016 &,
    .history-event--2018 &,
    .history-event--now & {
      background-color: #6b85fe;
    }
    .history-event--2017 &,
    .history-event--2019 &,
    .history-event--2023 & {
      background-color: #ccd5ff;
    }
    .history-event--2020 & {
      background: linear-gradient(
        0deg,
        #1fbecc 0.07%,
        #1fbecc 73.28%,
        #6b85fe 99.97%
      );
    }
    .history-event--2021 & {
      background-color: #c2eff2;
      position: relative;
    }
    .history-event--2022 & {
      background-color: #1fbecc;
    }
    .history-event__year-sp__text {
      transform: rotate(-90deg);
      width: inherit;
      .history-event--2016 &,
      .history-event--2018 &,
      .history-event--2020 &,
      .history-event--2022 &,
      .history-event--now & {
        color: #fff;
      }
      .history-event--2017 &,
      .history-event--2019 &,
      .history-event--2023 & {
        color: #6b85fe;
      }
      .history-event--2021 & {
        color: #009fbf;
      }
    }
  }
  .history-event-list {
    margin-bottom: 0; /* 打ち消し用 */
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    &:before {
      content: "";
      position: absolute;
      clip-path: circle(46% at 50% 50%);
      background: #6b85fe;
      width: 13px;
      height: 13px;
    }
    &:after {
      content: "";
      position: absolute;
      border-left: 2px dashed #6b85fe;
      width: 1px;
    }
    @media screen and (max-width: 1300px) {
      width: 100%;
      padding-right: 32px;
      &:before {
        top: 0;
        bottom: 0;
        margin-block: auto;
        left: initial;
        right: 0;
      }
      &:after {
        top: 0;
        bottom: 0;
        margin-block: auto;
        height: 16px;
        transform: rotate(90deg);
        left: initial;
        right: 22px;
      }
    }
    @media screen and (min-width: 1301px) {
      .history-event--2016 & {
        width: 240px;
        &:before {
          top: -106px;
          left: 60px;
        }
        &:after {
          height: 95px;
          top: -95px;
          left: 65px;
        }
      }
      .history-event--2017 & {
        width: 280px;
        &:before {
          bottom: -36px;
          left: 109px;
        }
        &:after {
          height: 23px;
          bottom: -26px;
          left: 114px;
        }
      }
      .history-event--2022 & {
        width: 240px;
        &:before {
          top: -81px;
          left: 48px;
        }
        &:after {
          height: 70px;
          top: -70px;
          left: 53px;
        }
      }
      .history-event--2019 & {
        width: 200px;
        &:before {
          bottom: -51px;
          left: 58px;
        }
        &:after {
          height: 38px;
          bottom: -38px;
          left: 63px;
        }
      }
      .history-event--2020 & {
        width: 208px;
        &:before {
          top: -65px;
          left: 39px;
        }
        &:after {
          height: 50px;
          top: -50px;
          left: 44px;
        }
      }
      .history-event--2021 & {
        width: 200px;
        &:before {
          bottom: -66px;
          left: 86px;
        }
        &:after {
          height: 50px;
          bottom: -50px;
          left: 91px;
        }
      }
      /* .history-event--2022 & {
        width: 320px;
        &:before {
          top: -125px;
          left: 43px;
        }
        &:after {
          height: 109px;
          top: -109px;
          left: 48px;
        }
      } */
      .history-event--2023 & {
        width: 280px;
        &:before {
          bottom: -36px;
          left: 116px;
        }
        &:after {
          height: 28px;
          bottom: -28px;
          left: 121px;
        }
      }
      .history-event--now & {
        width: 304px;
        &:before {
          top: -32px;
          right: 56px;
        }
        &:after {
          height: 15px;
          top: -20px;
          right: 62px;
        }
      }
    }
    .history-event-list__item {
      font-size: 1.4rem;
      line-height: 1.2;
      background: #ebeeff;
      padding: 10px 20px;
      @media screen and (max-width: 1300px) {
        font-size: 1.2rem;
      }
      &:first-child {
        padding-top: 30px;
      }
      &:last-child {
        padding-bottom: 20px;
      }
      .history-event--now & {
        color: #fff;
        font-weight: bold;
        text-align: center;
        background-color: #6b85fe !important;
        padding: 20px 60px 20px 20px !important;
        @media screen and (max-width: 1300px) {
          padding: 20px 20px 20px 60px !important;
        }
      }
      .history-event-list__item__emphasis {
        font-weight: bold;
        color: #3061f2;
      }
    }
  }
  .history-event__image {
    position: absolute;
    .history-event--2017 & {
      left: -24px;
      top: 0;
      bottom: 0;
      margin-block: auto;
      @media screen and (max-width: 1300px) {
        left: 154px;
      }
    }
    .history-event--2019 & {
      left: 136px;
      top: -18px;
      @media screen and (max-width: 1300px) {
        left: 118px;
        top: 5px;
      }
    }
    .history-event--2021 & {
      left: 138px;
      top: -28px;
      @media screen and (max-width: 1300px) {
        left: 118px;
        top: 0;
      }
    }
  }
  .history-event__speech-bubble {
    position: absolute;
    filter: drop-shadow(0px 4px 16px rgba(26, 26, 26, 0.12));
    .history-event--2017 & {
      left: 119px;
      top: -40px;
      @media screen and (max-width: 1300px) {
        top: -20px;
      }
    }
    .history-event--2018 & {
      left: 152px;
      top: -40px;
      @media screen and (max-width: 1300px) {
        top: -10px;
      }
    }
    .history-event--2020 & {
      left: 140px;
      top: -28px;
      @media screen and (max-width: 1300px) {
        top: -8px;
      }
    }
    .history-event--2022 & {
      left: 156px;
      top: -30px;
      @media screen and (max-width: 1300px) {
        top: -5px;
      }
    }
  }
  .history-main__sp-side-text {
    position: absolute;
    right: -13px;
    top: -60px;
    height: 130px;
    width: auto;
    @media screen and (min-width: 1301px) {
      display: none;
    }
  }
}

/* ---------------------------
ロゴリスト
--------------------------- */
.logo-slide-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  overflow: hidden;
  @media screen and (max-width: 991px) {
    margin-top: 24px;
  }
}
.logo-slide {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
  overflow: hidden;
  .logo-slide__list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    .logo-slide__list__item {
      flex: 0 0 auto;
      display: inline-block;
      img {
        height: 36px !important;
        width: auto;
      }
    }
  }
}

/* ---------------------------
ブログ
--------------------------- */
.blog-top {
  background: url(../images/top/bg03.png) center center no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.blog-top-list {
  margin-bottom: 0; /* 打ち消し用 */
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  @media screen and (max-width: 991px) {
    flex-direction: column;
    align-items: center;
  }
  .blog-top-list__item {
    width: 215px;
    position: relative;
    @media screen and (max-width: 991px) {
      width: 100%;
      max-width: 600px;
    }
    &:hover {
      @media screen and (min-width: 992px) {
        .blog-top-list__link {
          &:after {
            right: -10px;
            bottom: -10px;
          }
          .blog-top-list__link__in {
            right: -10px;
            bottom: -10px;
          }
        }
      }
    }
  }
  .blog-top-list__link {
    position: relative;
    display: block;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease;
    &:before,
    &:after {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      transition: all 0.3s ease;
    }
    &:before {
      right: -10px;
      bottom: -10px;
      background: #b3ecfd;
    }
    &:after {
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.9);
    }
    @media screen and (max-width: 991px) {
      &:before {
        right: -5px;
        bottom: -5px;
      }
    }
    .blog-top-list__link__in {
      position: relative;
      transition: all 0.3s ease;
      right: 0;
      bottom: 0;
      z-index: 1;
      @media screen and (max-width: 991px) {
        display: flex;
      }
      img {
        object-fit: cover;
        @media screen and (max-width: 991px) {
          width: 160px;
        }
      }
    }
  }
  .blog-top-list__item__text-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .blog-top-list__item__title {
    font-size: 1.4rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 64px;
    @media screen and (max-width: 991px) {
      margin-bottom: auto; /* 打ち消し用 */
      font-size: 1.2rem;
      min-height: initial;
    }
  }
  .blog-top-list__item-list {
    margin-bottom: 0; /* 打ち消し用 */
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: auto;
    .blog-top-list__item-list__item {
      font-size: 1rem;
      color: #01ace5;
      font-weight: bold;
      line-height: 1.2;
      border: 1px solid #01ace5;
      border-radius: 30px;
      padding: 4px 10px;
    }
  }
}

.history-image {
  width: 100%;
  display: block;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .history-image {
    width: 100%;
    max-width: 1280px;
  }
}
