@import url(./reset.css);

.wrap {
  padding: 80px 108px;
  box-sizing: border-box;
}

.company_group_list {
  padding: 0 104px;
  margin-bottom: 80px;
}

.company_group_list_box {
  display: flex;
  min-width: 756px;
  max-width: 1016px;
  padding: 16px;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: var(--Radius---L, 20px);
  background: var(--Background-Color-Gray, #F2F2F2);
  margin-bottom: 24px;
}

.company_group_list_box_img {
  display: flex;
  width: 184px;
  height: 184px;
  padding: 8px;
  align-items: center;
  gap: 10px;
  border-radius: var(--Radius---M, 12px);
  background: var(--Background-Color-White, #FAFAFA);
  object-fit: contain;
}

.company_group_list_box_info {
  width: 768px;
  height: 152px;
  display: flex;
  padding: 16px 0px;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
}

.company_group_list_box_info_company {
  color: var(--Text-Color-Primary, #1A1A1A);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.2px;
}

.company_group_list_box_info_content {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  color: var(--Text-Color-Secondary, #525252);
  text-overflow: ellipsis;
  font-family: "Noto Sans TC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.25px;
}

@media screen and (max-width: 1439px) {
  .wrap {
    padding: 80px 40px;
  }

  .company_group_list_box_info {
    width: 508px;
  }

  .company_group_list {
    padding: 0 78px;
  }

  .company_group_list_box_img {
    width: 168px;
    height: 168px;
  }
}

@media screen and (max-width: 991px) {
  .wrap {
    padding: 40px 40px;
  }

  .company_group_list {
    padding: 0 88px;
    margin-bottom: 40px;
  }

  .company_group_list_box {
    max-width: 756px;
    min-width: auto;
    gap: 24px;
  }

  .company_group_list_box_img {
    width: 168px;
    height: 168px;
  }

  .company_group_list_box_info {
    justify-content: center;
    width: 272px;
  }

  .company_group_list_box_info_company {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.1px;
  }

  .company_group_list_box_info_content {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .wrap {
    padding: 40px 24px;
  }

  .company_group_list {
    padding: 0 0;
  }

  .company_group_list_box {
    min-width: 310px;
    max-width: 720px;
    gap: 16px;
    flex-direction: column;
  }

  .company_group_list_box_img {
    width: 294px;
    height: 294px;
  }

  .company_group_list_box_info {
    align-items: center;
    padding: 0 0;
    width: 100%;
  }

  .company_group_list_box_info_company {
    font-size: 20px;
    line-height: 30px;
  }
}