.greeting {
  width: 100%;
  padding-bottom: min(7.5vw, 80px);
  background: #fff;
}
.greeting__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.greeting__img {
  flex: 0 0 33.33%;
}
.greeting__img img {
  border-radius: 20px;
}
.greeting__content {
  flex: 1;
}
.greeting__txt {
  font-size: 18px;
  color: #555555;
  font-weight: 500;
  line-height: 1.8;
}
.greeting__txt + .greeting__txt {
  margin-top: 32.4px;
}

@media screen and (max-width: 768px) {
  .greeting {
    padding-bottom: min(16vw, 80px);
  }
  .greeting__body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 24px;
  }
  .greeting__img {
    flex: 1;
    width: 240px;
  }
  .greeting__txt {
    font-size: 16px;
  }
  .greeting__txt + .greeting__txt {
    margin-top: 28.8px;
  }
}
.profile {
  width: 100%;
  padding-block: min(5.62vw, 60px) min(7.5vw, 80px);
  background: #F7F7F7;
}
.profile__list {
  width: 91.66%;
  padding: 60px;
  margin-inline: auto;
  border-radius: 40px;
  background: #fff;
}
.profile__row {
  position: relative;
  display: grid;
  grid-template-columns: 23% 1fr;
  align-items: baseline;
  justify-content: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 18px 32px;
  border-bottom: 2px solid #EFEFEF;
}
.profile__row::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 200px;
  height: 2px;
  background: #F48597;
}
.profile__row:first-child {
  padding-top: 0;
}
.profile__term {
  font-size: 16px;
  color: #F48597;
  font-weight: 700;
}
.profile__desc, .profile__desc-item {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .profile {
    padding-block: min(8.53vw, 42px) min(12.8vw, 64px);
  }
  .profile__list {
    width: 100%;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .profile__row {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 20px 10px;
  }
  .profile__row::before {
    width: 40px;
  }
  .profile__term {
    font-size: 14px;
    color: #F48597;
    font-weight: 700;
  }
  .profile__desc, .profile__desc-item {
    font-size: 12px;
  }
}
/*# sourceMappingURL=company.css.map */
