/* m-company-box — 導入企業名などの白ボックス */

.m-company-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 3.2rem;
  padding: 0.6rem 1rem 0.8rem;
  background: #fff;
  box-shadow: 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.28);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.m-company-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 0.15rem;
  background: linear-gradient(90deg, #a56d16 0%, #f6d36d 50%, #a56d16 100%);
}
