@charset "utf-8";

.business-right {
  text-align: right;
}

/* 表 ----------------------------------*/
.business-table {
  border-collapse: collapse;
  width: 100%;
}

.business-table th,
.business-table td {
  text-align: left;
  border: 1px solid #b6b6b6;
  padding: 10px;
}


/* 画像 ----------------------------------*/
.business-image img {
  width: 100%;
}

.business-image ul li p:nth-of-type(1) {
  font-weight: bold;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .business-image ul li:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .business-image ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .business-image ul li {
    width: calc(calc(100% - 40px) / 2);
  }

  .business-image ul li:nth-child(n+3) {
    margin-top: 40px;
  }

  .business-image ul li p:nth-of-type(1) {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1000px), print {
  .business-image ul li {
    width: calc(920px / 2);
  }
}