@charset "UTF-8";
/* 会社情報 */
.company-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px 50px;
  margin: 120px auto;
}

.company-list li {
  width: 475px;
}

.company-list li .news-info figure {
  display: block;
  width: 100%;
}

.company-list li .company-link {
  width: 100%;
  margin-top: 18px;
}

.company-list li .company-link p {
  display: block;
  width: 100%;
  position: relative;
  font-size: 2.4rem;
  line-height: 1.58;
  padding: 0 35px 0 0;
  font-weight: 700;
}

.company-list li .company-link p::after {
  position: absolute;
  right: 0;
  top: -3px;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  content: "";
}

.company-list li figure {
  width: 100%;
  height: 325px;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company-list li figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: none;
}