@charset "utf-8";

.p-categories {
  padding-top: 80px;

  .l-inner {
    max-width: 1206px;
  }

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

  .c-category {
    display: block;
    border-radius: 26px;
    background: #ecf6ff;
    min-width: 160px;
    padding: 16px 50px;
    color: #0f55a4;
    font-size: 14px;
  }

  .c-category:hover,
  .c-category.is-selected {
    background: #0f55a4;
    color: #eff3fb;
  }
}

.p-works {
  padding-top: 60px;
  padding-bottom: 150px;

  .l-inner {
    max-width: 1206px;
  }

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

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

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