main.sdgs {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 35px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 1080px){
    justify-content: center;
    padding-left: 0;
    padding-right: 20px;
  }
}
.sdgs__left {
  position: relative;
  flex: 1;
  padding-right: 30px;
  @media screen and (max-width: 750px){
    padding-right: 20px;
  }
  nav {
    position: sticky;
    height: 100vh;
    top: 70px;
    display: flex;
    justify-content: flex-end;
    &:before {
      content: "";
      height: 100%;
      width: 200vw;
      position: absolute;
      top: 0px;
      right: 142px;
      background: var(--grad-blue);
      @media screen and (max-width: 750px){
        right: calc(100% - 20px);
      }
    }
  }
}
.sdgs__title {
  font-size: 132px;
  font-weight: bold;
  color: var(--color-blue);
  font-family: var(--font-josefin);
  letter-spacing: -0.02em;
  line-height: 1;
  writing-mode: vertical-rl;
  @media screen and (max-width: 750px){
    font-size: 66px;
  }
}
.sdgs__right {
  width: 942px;
  padding-top: 80px;
  padding-bottom: 150px;
  @media screen and (max-width: 750px){
    width: calc(100% - 96px);
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.sdgsIntro__text {
  text-align: center;
  font-size: 14px;
  line-height: 2.5;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-top: 70px;
  @media screen and (max-width: 750px){
    line-height: 1.8;
    text-align: left;
    margin-top: 40px;
  }
}
.sdgs__block {
  margin-top: 160px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
  + .sdgs__block {
    margin-top: 90px;
    @media screen and (max-width: 750px){
      margin-top: 40px;
    }
  }
}
.sdgs__h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.34em;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
  &:before {
    content: "";
    display: inline-block;
    width: 70px;
    aspect-ratio: 1 / 1;
    background: url(../img/sdgs/icon_goals.png) no-repeat center / contain;
    margin-right: 20px;
    @media screen and (max-width: 750px){
      width: 48px;
    }
  }
}
.sdgs__text {
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-top: 50px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }
}
.sdgs__list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    gap: 8px;
  }
}
.sdgs__thumb {
  position: relative;
  z-index: 1;
  margin-top: -90px;
  @media screen and (max-width: 750px){
    margin-top: 10px;
  }
}