@media screen and (min-width:768px) and (max-width:991px) {
  #company .container {
    width: 90%;
  }
}

.timeline-section {
  padding-top: 60px;
  position: sticky;
  top: 60px;
  z-index: 2;
}
@media screen and (max-width:767px) {
  .timeline-section {
    padding-top: 30px;
    top: 45px;
  }
}

.anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #0B4773 #fff;
}
@media screen and (max-width:767px) {
  .anchor-list {
    padding-bottom: 10px;
  }
}
.anchor-list::-webkit-scrollbar {
  height: 6px;
}
.anchor-list::-webkit-scrollbar-track {
  background-color: #fff;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
}
.anchor-list::-webkit-scrollbar-thumb {
  background-color: #0B4773;
  border-radius: 10px;
}
.anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  border-radius: 100vmax;
  padding: 10px 20px;
}
.anchor-link:hover .text {
  opacity: 0.5;
}
.anchor-link:hover .arrow::before {
  -webkit-animation: btn-ripple 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
          animation: btn-ripple 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.anchor-link .text {
  font-size: clamp(14px, 13.097px + 0.258vw, 18px);
  color: #0B4773;
  font-weight: bold;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.anchor-link .arrow {
  position: relative;
  width: 1lh;
  border: 1px solid #0A2747;
  aspect-ratio: 1;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width:767px) {
  .anchor-link .arrow {
    width: 0.7lh;
  }
}
.anchor-link .arrow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid #0A2747;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.anchor-link .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25%;
  aspect-ratio: 1;
  border-top: 1px solid #0A2747;
  border-right: 1px solid #0A2747;
  -webkit-transform: translate(-50%, -63%) rotate(135deg);
          transform: translate(-50%, -63%) rotate(135deg);
}

.history-content__title {
  background: #fff;
  font-size: clamp(18px, 16.645px + 0.387vw, 24px);
  color: #0B4773;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 100vmax;
  padding: 15px 20px;
  text-align: center;
  position: sticky;
  top: 220px;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .history-content__title {
    top: 150px;
  }
}
.history-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width:767px) {
  .history-content__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.history-content__inner-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width:767px) {
  .history-content__inner-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.history-content__inner-item .year {
  font-size: clamp(80px, 70.968px + 2.581vw, 120px);
  font-weight: bold;
  line-height: 1;
  font-family: "Prompt", sans-serif;
  text-align: center;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(21, 134, 217, 0.85)), to(rgb(11, 71, 115)));
  background-image: linear-gradient(180deg, rgba(21, 134, 217, 0.85), rgb(11, 71, 115));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.history-content__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media screen and (max-width:767px) {
  .history-content__info {
    padding-left: 30px;
  }
}
.history-content__info-line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  width: 1px;
}
@media screen and (max-width:767px) {
  .history-content__info-line {
    left: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}
.history-content__info-line span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #C2D1D5;
}
.history-content__info-line span::before, .history-content__info-line span::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0490B3;
}
.history-content__info-line span::before {
  top: 0;
}
.history-content__info-line span::after {
  bottom: 0;
}
.history-content__info-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 120px;
  padding-top: 30px;
}
@media screen and (max-width:767px) {
  .history-content__info-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.history-content__info-content .history-content__info-text {
  grid-column: 1;
}
.history-content__info-content.-reverse .history-content__info-text {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:768px) {
  .history-content__info-content.-reverse .history-content__info-text {
    grid-column: 2;
  }
}
@media screen and (min-width:768px) {
  .history-content__info-content.-reverse .history-content__info-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.history-content__info-content:last-child {
  padding-bottom: 30px;
}
.history-content__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width:767px) {
  .history-content__info-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}
.history-content__info-text .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.history-content__info-text .date > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.history-content__info-text .date-year {
  font-size: clamp(32px, 30.194px + 0.516vw, 40px);
  font-family: "Prompt", sans-serif;
  color: #0490B3;
  font-weight: bold;
  line-height: 1;
}
.history-content__info-text .date-tag {
  background: #fff;
  border-radius: 100vmax;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.history-content__info-text .desc > p {
  font-size: clamp(16px, 15.548px + 0.129vw, 18px);
  font-weight: bold;
  color: #0A2747;
}
.history-content__info-text .desc > a {
  color: #0490B3;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.history-content__info-image p {
  font-size: clamp(14px, 13.548px + 0.129vw, 16px);
  color: #0A2747;
  padding-top: 5px;
}/*# sourceMappingURL=style-history.css.map */