/* ------------------------------
 導入企業一覧 */
#add_customizer_5_wrapper {
  width: 100%;
  color: #000;
}
#add_customizer_5_wrapper .sentence {
  margin: 2% 0;
}

#add_customizer_5_wrapper .sentence .companies-name {
  margin-top: 4em;
}

#add_customizer_5_wrapper .sentence .companies-name {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* PC:3列 */
  gap: 16px;
}
/* タブレット〜スマホは2カラム */
@media (max-width: 900px) {
  #add_customizer_5_wrapper .sentence .companies-name {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#add_customizer_5_wrapper .sentence .companies-name .companies-col {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

#add_customizer_5_wrapper
  .sentence
  .companies-name
  .companies-col
  > .companies-text {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.3rem);
}

/* 注釈 */
#add_customizer_5_wrapper .sentence .caution {
  font-size: 10px;
  text-align: end;
  padding-top: 8px;
}
