/* ============================================ */
/*  numbers
/* ============================================ */
#main {
  background: var(--color-blue);
}
#main .img::before {
  background-image: url(../img/about-us/numbers/top-img.png);
}

/* ===== numbers ===== */
#numbers .list {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 0;
  justify-content: space-between;
}
#numbers .list .item {
  width: 31%;
  padding: 30px 30px 45px;
  background-color: var(--color-white);
}
#numbers .list .item .item-name {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 220px;
  padding: 0.3em 2em 0.4em;
  margin: 0 auto 20px;
}
#numbers .list .item .img01 {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
#numbers .list .item .img02 {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
#numbers .list .item .year {
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  min-height: 1em;
  margin: 0.5em 0 0;
}
#numbers .list .item .text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin: 0.5em 0 0;
}

@media screen and (max-width: 1400px) {
  #numbers .list .item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #numbers .list .item .item-name {
    font-size: 15px;
    font-size: 0.9375rem;
    width: 100%;
    min-width: auto;
  }
  #numbers .list .item .text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 600px) {
  #numbers .list {
    flex-direction: column;
    gap: 30px;
  }
  #numbers .list .item {
    width: 100%;
  }
}

/*# sourceMappingURL=numbers.css.map */