@font-face {
  font-family: "kokoro";
  src: url("../fonts/Kokoro.otf") format("truetype");
}
.cat-link ul {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 8rem;
}
.cat-link a {
  display: block;
  background: #4663A7;
  color: #fff;
  border: 2px solid #4663A7;
  font-size: 3.2rem;
  padding: 1rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
.cat-link a .ico {
  font-size: 0;
  margin-right: 1rem;
}
.cat-link a .ico img {
  height: 40px;
  width: auto;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(262deg) brightness(100%) contrast(100%);
}
.cat-link a:hover {
  background: #fff;
  color: #4663A7;
}
.cat-link a:hover .ico img {
  filter: invert(39%) sepia(11%) saturate(2621%) hue-rotate(184deg) brightness(91%) contrast(88%);
}
@media only screen and (max-width: 834px) {
  .cat-link ul {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .cat-link a {
    width: 300px;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 2.4rem;
  }
}

.col-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
.col-list h3 {
  font-size: 2rem;
  line-height: 1.5em;
  margin-top: 1em;
}
.col-list p.cat {
  color: #777;
  font-size: 14px;
  margin-top: 1em;
}
@media only screen and (max-width: 834px) {
  .col-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .col-list ul {
    gap: 4rem 2rem;
  }
  .col-list h3 {
    font-size: 1.6rem;
  }
  .col-list .col-cat {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=works.css.map */