@charset "utf-8";

/* ----- section history --- */

.history {
  background: #eab22b;
  padding: 20px 0 70px;
}

.history__body {
  padding-left: 150px;
}

.history__item {
  display: flex;
  width: 100%;
  padding: 10px 0;
}

.history__item--year {
  width: 10%;
}

.history__item--team {
  width: 30%;
}

.history__item--txt {
  position: relative;
  padding-left: 56px;
}

.history__item--txt::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #222222;
}

.group {
  margin-bottom: 100px;
}

@media(max-width: 769px) {
  
  .history__body {
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
  }
}

@media(max-width: 499px) {
  
  .history__item--year {
    width: 20%;
  }

  .history__item--txt {
    width: 79%;
    padding-left: 50px;
  }

  .history__item--team {
    display: block;
  }

  .group__item {
    flex-direction: column;
  }

  .group__item--team {
    width: 90%;
    font-weight: bold;
  }

  .group__item--txt {
    width: 90%;
  }
}