.about_us {
  display: flex;
  align-items: flex-end;
}

.about_us h2 { text-align: left !important; }
.about_us { display: flex; }
.about_us_item { flex: 1; }
.about_us_content {
  background-color: #f8f8f8;
  line-height: 180%;
  padding: 2rem;
  margin-top: 1.5rem;
  margin-right: 1.5rem;
}
.about_us_item {
  width: 50%;
  max-width: 100%;  /* 画像が親要素を超えないようにする */
  height: auto;     /* アスペクト比を保ちながら高さを自動調整 */
  border-bottom-left-radius: 100px;
}

.company table.tbl1 th, .company table.tbl1 td {
  border: none;
}
.company table .header {
  border-bottom: 2px solid #027CC8;
}
.company table th, .company table td {
  border-top: none !important;
}
.company table td {
  border-bottom: 2px solid #D9D9D9 !important;
}

@media only screen and (max-width: 768px) {
  table.tbl1 th { width: 30%; }
  .about_us {
    align-items: normal;
    flex-direction: column-reverse; /* モバイルでは画像を上に表示 */
}

.about_us_item {
    width: 100%;
}
.about_us_item img {
    width: 100%; /* 画像が親要素に合わせて広がるように */
}
}