ul.illust {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
    list-style: none;
  }
  
  ul.illust li {
    position: relative;
    width: 250px;
    margin-bottom: 5px;
    padding: 0;
  }
  
  ul.illust li:before {
    display: none;
  }
  
  ul.illust li:not(:nth-of-type(3n)) {
    margin-right: 5px;
  }
  
  ul.illust li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  ul.illust li a:hover {
    opacity: .7;
  }
  
  ul.illust li a img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  @media (max-width: 575px) {
    ul.illust li {
      height: 70px;
      width: 70px;
    }
    ul.illust li a img {
      height: 70px;
      width: 70px;
    }
  }
  
  .work {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .work:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
  }
  
  .work:hover .work-image {
    transform: scale(1.1);
  }
  
  .work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
  }
  
  
  .work-info h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
  }
  
  .work-info p {
    margin: 5px 0 0;
    color: #fff;
    font-size: 12px;
  }
  
  #tags ul, .delete-search ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #tags li, .delete-search ul li {
    display: inline-block;
    margin-right: 10px;
  }
  
  #tags a {
    display: inline-block;
    padding: 5px;
    border: 1px solid #ccc;
    font-size: 12px;
  }
  