@charset "utf-8";

.p-works {
  padding-top: 100px;
  padding-bottom: 172px;
  overflow: hidden;
  position: relative;

  @media (width < 768px) {
    padding-bottom: 100px;
  }

  .l-inner {
    max-width: 1180px;
    padding: 0 90px;

    @media (width < 768px) {
      padding: 0 20px;
    }
  }
}

.p-works::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: var(--color-g-green);
}

.p-works__categories {
  @media (width < 768px) {
    padding-right: 50px;
  }

  section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    a {
      display: block;
      border-radius: 100px;
      background: #f4f4f4;
      min-width: 160px;
      padding: 10px 20px;
      text-align: center;
      color: var(--color-blue);
      letter-spacing: 0;
      border: 1px solid #f4f4f4;
    }

    a:hover,
    a.is-selected {
      background: var(--color-blue);
      color: #f4f4f4;
    }
  }
}

.p-works__lists {
  margin-top: 60px;

  section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px 42px;

    @media (width < 1120px) {
      gap: 30px 20px;
      grid-template-columns: repeat(2, 1fr);
    }

    @media (width < 600px) {
      display: flex;
      flex-direction: column;
    }
  }
}
