.p-company {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.p-company__title {
  border-bottom: 1px solid #d9d8da;
  padding-bottom: 16px;
  width: 100%;
}

.p-company-list__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-block: 20px;
}
.p-company-list__item:not(:last-child) {
  border-bottom: 1px solid #d9d8da;
}
.p-company-list__item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
.p-company-list__item h3 {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  width: 122px;
}

.p-company__map {
  aspect-ratio: 869/400;
  border-radius: 10px;
  height: 400px;
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
}
.p-company__map > div {
  height: 100%;
  width: 100%;
}

.p-company-staff {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  row-gap: 40px;
  width: 100%;
}

.p-company-staff__item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 269px;
  width: 100%;
}

.p-company-staff__img {
  aspect-ratio: 269/287;
  width: 100%;
}

.p-company-staff__contents {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-company-staff__contents h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 9px;
}

.p-company-staff__en {
  color: #61C4A9;
  font-size: 13px;
  font-weight: 700;
  line-height: calc(18 / 13);
}

.p-company-staff__desc {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.12px;
  line-height: 2;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .p-company-list__item {
    padding-block: 28px;
  }
  .p-company-list__item {
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .p-company-staff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
  }
  .p-company-staff__item {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .p-company-list {
    margin-top: 32px;
  }
  .p-company__map {
    margin-top: 60px;
  }
  .p-company-staff {
    row-gap: 50px;
  }
}

@media (min-width: 1366px) {
  .p-company-staff {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}