@charset "UTF-8";
.page-title span::after {
  content: "MANUFACTURERS";
}

.manu-main1 {
  width: 100%;
  aspect-ratio: 1120/300;
  position: relative;
  margin-bottom: 60px;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .manu-main1 {
    margin-bottom: 30px;
  }
}
.manu-main1::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 1120px;
  aspect-ratio: 1120/300;
  background-image: url(../image/manufacturer-list/main1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(20px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .manu-main1::after {
    width: 100%;
  }
}

.manu-main2 {
  width: 100%;
  aspect-ratio: 1120/300;
  position: relative;
  margin-bottom: 60px;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .manu-main2 {
    margin-bottom: 30px;
  }
}
.manu-main2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 1120px;
  aspect-ratio: 1120/300;
  background-image: url(../image/manufacturer-list/main2.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(20px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .manu-main2::after {
    width: 100%;
  }
}

.manu-main3 {
  width: 100%;
  aspect-ratio: 1120/300;
  position: relative;
  margin-bottom: 60px;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .manu-main3 {
    margin-bottom: 30px;
  }
}
.manu-main3::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 1120px;
  aspect-ratio: 1120/300;
  background-image: url(../image/manufacturer-list/main3.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(20px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .manu-main3::after {
    width: 100%;
  }
}

.manu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
.manu-list > * {
  /* Three items per row with equal width, accounting for two gaps of 40px */
  flex: 0 0 calc((100% - 80px) / 3);
}
@media screen and (max-width: 599px) {
  .manu-list {
    flex-direction: column;
  }
}
.manu-list li {
  border-bottom: 1px solid #e7e7e7;
  padding: 20px 0px 20px 40px;
  position: relative;
}
.manu-list li::before {
  content: "●";
  display: block;
  font-size: 12px;
  position: absolute;
  top: 20px;
  left: 10px;
  color: #9a0132;
}
@media screen and (min-width: 600px) {
  .manu-list li:last-child {
    margin-left: auto;
  }
}