@charset "utf-8";

span.bold {
  display: block;
  font-weight: bold;
}

.business-table .biz:nth-child(6) .text > p:nth-of-type(2) {
  margin-top: 2em;
}

@media screen and (min-width: 768px) {

  /* EC事業の画像を縦並び表示 */
  .business-table .biz:nth-child(6) {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 3%;
  }

  .business-table .biz:nth-child(6) .text {
    grid-column: 1;
    grid-row: 1 / -1;
    order: 1;
  }

  .business-table .biz:nth-child(6) .ec-img {
    grid-column: 2;
    height: 300px;
    transform: translateX(25px);
    border-radius: 150px 0 0 150px;
  }

  .business-table .biz:nth-child(6) .ec-img:nth-of-type(2) {
    margin-top: 20px;
  }

}

@media screen and (max-width: 767.9px) {

  .business-table .biz:nth-child(6) .ec-img {
    height: 75px;
  }

  .business-table .biz:nth-child(6) .ec-img:nth-of-type(1) img {
    object-position: center 77%;
  }
  
}