/*===============================
overview
================================*/
#overview {
}
@media screen and (min-width: 768px) {
}
/*===========================
  会社概要（overview）
===========================*/
.overview {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 40px;
 margin-top: 60px;
}

/* 左の表部分 */
.overview-table {
 width: 50%;
 padding-bottom: 40px;
 border-radius: 12px;
}

.overview-table dl .row {
 display: flex;
 padding: 18px 0;
 border-bottom: 1px solid #e0e0e0;
}

.overview-table dl .row:last-child {
 border-bottom: none;
}

.overview-table dt {
 width: 25%;
 font-size: 18px;
 font-weight: bold;
 color: #fff;
}

.overview-table dd {
 width: 75%;
 font-size: 18px;
 line-height: 1.8;
 color: #fff;
}

/* 右の画像部分 */
.overview-img {
 width: 45%;
}

.overview-img img {
 width: 100%;
 border-radius: 12px;
 object-fit: cover;
}

/*===========================
  SP（767px以下）
===========================*/
@media screen and (max-width: 767px) {
 .overview {
  flex-direction: column;
  gap: 30px;
 }

 .overview-table {
  width: 100%;
  padding-bottom: 25px;
 }

 .overview-table dl .row {
  flex-direction: column;
  padding: 14px 0;
 }

 .overview-table dt {
  width: 100%;
  margin-bottom: 6px;
  font-size: 14px;
 }

 .overview-table dd {
  width: 100%;
  font-size: 14px;
 }

 .overview-img {
  width: 100%;
 }

 .overview-img img {
  width: 100%;
 }
}
