.businesses-home {
  padding-left: 2.5em;
  padding-right: 2.5em;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 2em;
}

.businesses-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3em;
  gap: 0.5em;
}

.businesses-img {
  width: 140px;
  height: 140px;
  max-width: none;    /* ← 追加。上書き必須 */
  min-width: 140px;   /* ← 追加。お好みで */
  object-fit: contain;
  margin: 0 auto 1.1em auto;
  border-radius: 10px;
  display: block;
  background: #fafbfc;
}


.businesses-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
}

.businesses-main {
  flex: 1;
}

.businesses-text h3 {
  color: #0078d4;
  font-size: 1.22rem;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.businesses-text p {
  line-height: 1.7;
  font-size: 1.01rem;
  color: #222;
  font-weight: 400;
}

.business-link-btn {
  background: #009fe3;
  color: #fff;
  padding: 0.7em 1.5em;
  border-radius: 2em;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px #0001;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.business-link-btn:hover {
  background: #0077cc;
  transform: translateY(-2px) scale(1.06);
}

/* PCサイズ以上でレイアウト変更 */
@media screen and (min-width: 768px) {
  .businesses-block {
    flex-direction: row;
    align-items: center;
    gap: 2.5em;
    margin-bottom: 3.2em;
  }
  .businesses-img {
    width: 30%;
    max-width: 140px;
    margin: 0;
    border-radius: 10px;
    background: #fafbfc;
  }
  .businesses-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 1.8em;
    gap: 2em;
  }
}

@media screen and (min-width: 1100px) {
  .businesses-img {
    max-width: 180px;
  }
}
