@charset "utf-8";

.esgFigureWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 840px;
  margin: 50px auto 0;
  padding-bottom: 50px;
  &::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 70px;
    height: 20px;
    clip-path: polygon(0 0,100% 0,50% 100%);
    background-color: #34AA38;
    content: "";
  }
  & > div:not(:nth-child(2)) {
    width: 305px;
  }
  & > div:nth-child(2) {
    width: min(19.5vw,200px);
    margin: 0 -15px;
  }
}
@media screen and (width < 768px) {
  .esgFigureWrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2.66vw 13.3vw;
    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      translate: -50% 0;
      width: 18.6vw;
      height: 5.33vw;
      clip-path: polygon(0 0,100% 0,50% 100%);
      background-color: #34AA38;
      content: "";
    }
    & > div {
      display: flex;
      gap: 0 5.33vw;
    }
    & > div:not(:nth-child(2)) {
      width: 100%;
    }
    & > div:nth-child(2) {
      display: flex;
      justify-content: center;
      width: 100%;
      & img {
        width: 38.1vw;
      }
    }
  }
}

.esgFigure {
  &._02 {
    margin-top: 50px;
  }
  &._04 {
    margin-top: 50px;
  }
}
@media screen and (width < 768px) {
  .esgFigure {
    width: calc(100% - 5.33vw);
    &._02 {
      margin-top: 0;
    }
    &._04 {
      margin-top: 0;
    }
  }
}

.esgFigure-num {
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  ._01 & {
    color: #CA1A21;
    border-bottom-color: #CA1A21;
  }
  ._02 & {
    color: #CE6768;
    border-bottom-color: #CE6768;
  }
  ._03 & {
    color: #C96590;
    border-bottom-color: #C96590;
  }
  ._04 & {
    color: #3588A1;
    border-bottom-color: #3588A1;
  }
}
@media screen and (width < 768px) {
  .esgFigure-num {
    padding-bottom: 2.66vw;
    font-size: 7.46vw;
  }
}

.esgFigure-txt {
  display: flex;
  align-items: center;
  gap: 0 min(1.3vw,14px);
  justify-content: center;
  margin-top: 10px;
  & span {
    width: min(5.98vw,50px);
  }
  & p {
    font-size: min(1.69vw,16px);
    font-weight: 700;
    line-height: 1.6;
  }
}
@media screen and (width < 768px) {
  .esgFigure-txt {
    flex-wrap: wrap;
    gap: 2.66vw 0;
    & span {
      display: flex;
      align-items: center;
      width: 13.3vw;
      height: auto;
      aspect-ratio: 1;
      & img {
        width: 100%;
      }
    }
    & p {
      width: 100%;
      font-size: 3.73vw;
      text-align: center;
    }
  }
}

.esgList {
  max-width: 730px;
  margin: 30px auto 0;
  & ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    & li {
      display: flex;
      align-items: center;
      justify-content: center;
      width: calc((100% - 20px) / 2);
      max-width: 290px;
      height: auto;
      aspect-ratio: 290/147;
      padding: 20px 10px;
      border: 1px solid #34AA38;
      border-radius: 10px;
      background-color: #FFF;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.6;
      text-align: center;
    }
  }
}
@media screen and (width < 768px) {
  .esgList {
    margin-top: 8vw;
    & ul {
      gap: 1.33vw;
      & li {
        width: calc((100% - 1.33vw) / 2);
        max-width: 100%;
        aspect-ratio: 145/128;
        padding: 5.33vw;
        border-width: 2px;
        border-radius: 2.66vw;
        background-color: #FFF;
        font-size: 3.73vw;
      }
    }
  }
}