.works-submenu {
  margin-top: -10px;
  margin-left: 0px; 
  line-height: 1.4; 
  list-style: none;
  padding-left: 0; 
}

.works-submenu li {
  margin-bottom: 3px; 
}

.works-submenu a {
  text-decoration: none;
  color: #333;
  display: inline-block;
}

nav .works-submenu a {
  font-size: 13px !important;
  color: #292929;
}

/* 左揃え用ラッパー */
.works-container {
  width: 100%;
  padding-left: 40px; /* about や works の見出しと揃える */
  box-sizing: border-box;
}

/* グリッド */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: start;
  align-items: start;
}

/* 各作品 */
.work-item {
  position: relative;
  width: 100%;
  text-align: left;
}

/* リンクブロック */
.work-item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* サムネイル画像 */
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

/* オーバーレイ（初期は透明） */
.work-item a::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);  
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

/* ホバーでオーバーレイを暗く */
.work-item a:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

/* ホバー時に画像を拡大（なめらかに） */
.work-item img {
  transition: transform 0.3s ease;
}

.work-item img:hover {
  transform: scale(1.02);
}

/* タイトル（初期非表示） */
.work-title {
  position: absolute;
  top: 8px;
  left: 8px;
  color: white;
  font-size: 14px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  pointer-events: none;
  margin: 0;
}

/* ホバー時にタイトル表示 */
.work-item a:hover .work-title {
  opacity: 1;
}




/* 非表示カテゴリ */
.tanka, .knit {
  display: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .works-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#page-top {
  z-index: 9999;         
}

