@charset "UTF-8";

.group-pic {
  max-width: 600px;
  margin: 0 auto;
}
.ul-group-pic {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.ul-group-pic li {
  width: calc(100% / 3 - 1.4rem);
}
.ul-group-pic li:first-child {
  width: 100%;
}
.ul-group-pic li:first-child {
  width: 100%;
}
.ul-group-pic li a {
  display: block;
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .ul-group-pic li {
    width: calc(100% / 2 - 1rem);
  }
}
@media screen and (max-width: 767px) {
  .ul-group-pic li {
    width: 100%;
  }
  .ul-group-pic li:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}