/**************************************/
.company-info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .company-info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.company-info__list > li {
  height: 38rem;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 834px) {
  .company-info__list > li {
    height: 20rem;
  }
}
.company-info__list > li:nth-child(1) {
  background: url(../img/company_info/company.webp) no-repeat center center/cover;
}
.company-info__list > li:nth-child(2) {
  background: url(../img/company_info/philosophy.webp) no-repeat center center/cover;
}
.company-info__list > li:nth-child(3) {
  background: url(../img/company_info/message.webp) no-repeat center center/cover;
}
.company-info__list > li:nth-child(4) {
  background: url(../img/company_info/recruit.webp) no-repeat center center/cover;
}

.company-info__list-link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 639px) {
  .company-info__list-link {
    padding: 1.2rem;
  }
}
.company-info__list-link.btn {
  max-width: none;
  background: transparent;
  padding: 0;
}

.company-info__list-label-area {
  background: #fff;
  padding: 1em 2.5em;
  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;
  gap: 1.5em;
  border-top-left-radius: 1rem;
}
@media (max-width: 834px) {
  .company-info__list-label-area {
    padding: 1em 1.8em;
  }
}

.company-info__list-label {
  font-size: var(--f21);
  font-weight: 600;
  line-height: 1.5;
}/*# sourceMappingURL=company-info.css.map */