@charset "utf-8";

.company__wrap {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.message__wrap {
  margin-top: 61px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .message__wrap {
    margin-right: -60px;
  }
}
@media screen and (min-width: 1100px) {
  .message__wrap {
    margin-right: -100px;
    flex-direction: row;
    align-items: start;
  }
}

.message__img {
  aspect-ratio: 454 / 597;
  width: min(100%, 454px);
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .message__img {
    width: min(calc(454 / 1366 * 100vw), 454px);
  }
}
.message__item {
  margin: -35px 0 0;
  padding: 100px 20px 64px;
}
@media screen and (min-width: 768px) {
  .message__item {
    padding: 100px 40px 64px;
  }
}
@media screen and (min-width: 1100px) {
  .message__item {
    margin: 52px 0 0 -35px;
    padding: 64px 52px 135px 102px;
  }
}
.message__text {
  display: flex;
  align-items: center;
  gap: 14px;
}
.message__text p {
  flex-shrink: 0;
}
.message__text::after {
  content: "";
  background: rgba(225, 230, 226, 0.9);
  width: 100%;
  height: 1px;
}

.history__wrap {
  margin-top: 48px;
  
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .history__wrap {
    margin-left: 45px;
  }
}
.timeline-line {
  position: absolute;
  background: rgba(225, 230, 226, 0.9);
  width: 1px;
  transform-origin: top left;
  z-index: -1;
}

.history__boxes {
  display: flex;
  align-items: start;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .history__boxes {
    gap: 97px;
    margin-right: auto;
  }
}
.history__year {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.history__year::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #186A28;
  border-radius: 50%;
  flex-shrink: 0;
}

.history__box02 {
  border-top: 1px solid rgba(225, 230, 226, 0.9);
}
