.anchorList {
  max-width: 1183px;
  padding: 0 25px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.anchorListLink {
  border: 1px solid #ccc;
  line-height: 1.625;
  padding: 10px 30px 10px 15px;
  text-decoration: none;
  color: #0065bb;
  display: flex;
  border-radius: 5px;
  position: relative;
  align-items: center;
  height: 100%;
}
.anchorListLink::after {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  border-left: 1px solid #0065bb;
  border-bottom: 1px solid #0065bb;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.setctionIntro {
  margin: 0 0 30px;
}

.sectionListWrap {
  overflow-x: clip;
}

.sectionList {
  margin: 0 0 60px;
}

.sectionListBox {
  display: grid;
  gap: 25px;
}

.sectionListItem:not(:last-of-type) {
  margin: 0 0 60px;
}

.sectionListPic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.sectionListPic::before {
  content: "";
  background-color: #f5f5f5;
  width: 100svw;
  aspect-ratio: 405/321;
  position: absolute;
  top: -25px;
  z-index: -1;
}
.sectionListItem:nth-of-type(2n + 1) .sectionListPic::before {
  right: 50px;
}
.sectionListItem:nth-of-type(2n) .sectionListPic::before {
  left: 50px;
}

.sectionListTitle {
  color: #0065bb;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 15px;
}

@media (min-width: 960px) {
  .anchorList {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
    margin: 0 auto 134px;
  }
  .anchorListLink {
    padding: 18px 29px;
  }
  .anchorListLink::after {
    right: 26px;
  }
  .setctionIntro {
    margin: 0 0 70px;
  }
  .sectionList {
    margin: 0 0 140px;
  }
  .sectionListBox {
    gap: 6.2016%;
  }
  .sectionListBox:nth-of-type(2n + 1) {
    grid-template-columns: 440fr 528fr;
  }
  .sectionListBox:nth-of-type(2n) {
    grid-template-columns: 528fr 440fr;
  }
  .sectionListItem:not(:last-of-type) {
    margin: 0 0 140px;
  }
  .sectionListItem:nth-of-type(2n + 1) .sectionListBody {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .sectionListItem:nth-of-type(2n) .sectionListBody {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .sectionListPic {
    gap: 30px 28px;
  }
  .sectionListPic::before {
    top: -46px;
    width: 92.045%;
  }
  .sectionListItem:nth-of-type(2n + 1) .sectionListPic {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .sectionListItem:nth-of-type(2n + 1) .sectionListPic::before {
    right: 176px;
  }
  .sectionListItem:nth-of-type(2n) .sectionListPic {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .sectionListItem:nth-of-type(2n) .sectionListPic::before {
    left: 176px;
  }
  .sectionListTitle {
    font-size: 3rem;
    margin: 0 0 25px;
  }
}

/*# sourceMappingURL=section.css.map*/