#company_date section {
  padding: 20px 0;
  background-color: #fff;
}

@media screen and (max-width: 820px) {
  #company_date section {
    padding: 10px 20px;
  }
}
/* MV画像コンテナ */
#company_date section.mv .mv_wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

#company_date section.mv .mv_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像上のテキスト */
#company_date section.mv .mv_text {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}

#company_date section.mv .mv_subtitle {
  color: #5BAD49;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

#company_date section.mv .mv_title {
  color: #333;
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.1em;
}

/* 会社概要テーブル */

#company_date .info-list {
  margin: 0;
  padding: 0;
}

#company_date .info-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

#company_date .info-row:first-child {
  border-top: 1px solid #ddd;
}

#company_date .info-row:last-child {
  border-bottom: none;
}

#company_date .info-row dt {
  font-weight: bold;
  width: 160px;
  flex-shrink: 0;
}

#company_date .info-row dd {
  margin: 0;
  flex: 1;
  line-height: 1.7;
}

#company_date .info-row dd p {
  margin: 0 0 8px;
}

#company_date .info-row dd p:last-child {
  margin-bottom: 0;
}

/* SNSアイコン */
#company_date .sns-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

#company_date .sns_icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* グループサービス一覧 */
#company_date .service-group {
  margin-bottom: 20px;
}

#company_date .service-group:last-child {
  margin-bottom: 0;
}

#company_date .service-group__title {
  font-weight: bold;
  margin: 0 0 6px;
}

#company_date .service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2;
}

#company_date .service-list a {
  text-decoration: underline;
}

/* SP */
@media screen and (max-width: 768px) {
  #company_date section.mv .mv_text {
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
  }

  #company_date section.mv .mv_subtitle {
    font-size: 1rem;
  }

  #company_date section.mv .mv_title {
    font-size: 1.8rem;
  }

  /* SP: dtとddを縦積み */
  #company_date .info-row {
    flex-direction: column;
    padding: 16px 0;
  }

  #company_date .info-row dt {
    width: 100%;
    margin-bottom: 6px;
  }
}