.esgPage .mainArea {
  position: relative;
  overflow: clip;
}
.esgPage .mainArea::before {
  content: "";
  position: absolute;
  width: clamp(200px, 27%, 534px);
  height: auto;
  aspect-ratio: 1/1;
  background: url("../images/deco/donutDeco.png") no-repeat center center;
  background-size: contain;
  top: 5%;
  right: -100px;
  z-index: -1;
  animation: rotate 20s linear infinite reverse;
}
.esgPage .mainArea::after {
  content: "";
  position: absolute;
  width: clamp(250px, 30%, 590px);
  height: auto;
  aspect-ratio: 1/1;
  background: url("../images/deco/donutDeco.png") no-repeat center center;
  background-size: contain;
  rotate: -90deg;
  bottom: -20%;
  left: -50px;
  z-index: -1;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}

.albumList {
  margin: 0 -20px;
}
.albumList .albumItem {
  cursor: pointer;
  padding: 0 20px;
}
.albumList .albumItem img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 1180px) {
  .albumList {
    margin: 0 -15px;
  }
  .albumList .albumItem {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .albumList {
    margin: 0 -8px;
  }
  .albumList .albumItem {
    padding: 0 8px;
  }
}