.company-page-title {
  display: flex;
  margin-top: 80px;
  justify-content: center;
}

.company-page-title-image {
  width: 30%;
  height: auto;
}

/* table */
.company-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}


.company-info-table th,
.company-info-table td {
  padding: 12px 15px;
  border-bottom: 2px dashed grey;
  text-align: left;
  line-height: 2.5rem;
}

.company-info-table th {
  width: 30%;
  white-space: nowrap;
}

.company-info-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-tag {
  width: 120px;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: #fff;
  background: var(--se-accent);
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(14, 165, 233, .2);
  padding: 0 10px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--se-text);
  line-height: 0.7;
}

.company-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-steps li {
  position: relative;
  padding-left: 36px;
  margin: 10px 0;
  line-height: 1.8;
}

.company-steps li {
  margin-bottom: 1em;
}

.company-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: #fff;
  background: var(--se-accent);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(14, 165, 233, .2);
}

/* detail */
.company-page-detail {
  width: 79%;
  margin: 10px auto;
}

/* google map */
.google-map {
  position: relative;
  width: 100%;
  max-width: 80%;
  margin: 20px auto;
  padding-bottom: 20%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}