#footer {
	margin-top: 0;
}

.company-content dl {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  padding: 30px 0 28px;
  border-top: 1px solid #E6E6E6;
}
.company-content dl dt {
  width: 202px;
}
.company-content dl dd {
  width: calc(100% - 202px);
}
.company-content dl dd:has(a) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.company-content dl dd a:not(.telhref) {
  text-decoration: underline;
}
.company-content dl dd a:not(.telhref):hover {
  text-decoration: none;
}
.company-content dl dd p + p {
  margin-top: 20px;
}
.company-content dl:last-child {
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 767px) {
  .company-content dl {
    padding: 15px 0;
  }
  .company-content dl dt {
    width: 120px;
  }
  .company-content dl dd {
    width: calc(100% - 120px);
  }
  .company-content dl dd:has(a) {
    display: block;
  }
}

.group-history {
  background: #F4F8F2;
  padding: 140px 40px;
  margin: 140px 0 0;
}
.group-history .h2-common {
  margin: 0 0 60px;
}
.group-history .group {
  position: relative;
  padding: 0 0 30px;
  line-height: 1.5;
}
.group-history .group::before {
  content: "";
  position: absolute;
  width: 1px;
  bottom: 0;
  top: 12px;
  background: #48AE29;
  left: 120px;
}
.group-history .group dl {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}
.group-history .group dl::before {
  content: "";
  position: absolute;
  background: #48AE29;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  left: 118px;
  top: 10px;
}
.group-history .group dl + dl {
  margin-top: 25px;
}
.group-history .group dl dt {
  width: 163px;
}
.group-history .group dl dd {
  width: calc(100% - 163px);
}
@media screen and (max-width: 767px) {
  .group-history {
    margin: 60px 0 0;
    padding: 60px 15px;
  }
  .group-history .h2-common {
    margin: 0 0 30px;
  }
  .group-history .group {
    padding: 0 0 15px;
  }
  .group-history .group::before {
    left: 0;
  }
  .group-history .group dl {
    display: block;
    padding: 0 0 0 20px;
  }
  .group-history .group dl + dl {
    margin-top: 20px;
  }
  .group-history .group dl::before {
    left: -2px;
  }
  .group-history .group dl dt, .group-history .group dl dd {
    width: 100%;
  }
}