/* 施工事例アーカイブページ用グリッドレイアウト */
.work-archive-container {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.useful-information-stripe {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.useful-information-stripe > * {
  flex: none;
  width: calc((100% - 100px) / 3);
}

.useful-information-stripe > *:last-child:nth-child(3n + 1) {
  margin-right: calc((100% - 100px) * 2 / 3);
}

.useful-information-stripe > *:last-child:nth-child(3n + 2) {
  margin-right: calc((100% - 100px) / 3);
}

@media screen and (max-width: 1024px) {
  .useful-information-stripe > * {
    width: auto !important;
    margin-right: 0 !important;
  }
}

.work-item {
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease;
}

.work-item:hover {
  transform: translateY(-4px);
}

.work-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-item .thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.work-title {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}
