  /*作品紹介ページ*/

 
 /* パンくず */
.breadcrumb {
  font-size: 12px;
  margin: 20px;
}
.breadcrumb a {
  text-decoration: none;
  color: #777;

}
.breadcrumb span {
  color: #333;
  font-size: 12px;
  font-weight: bold;
}

/* タイトル */
.work-header {
  font-size: 20px;
  text-align: center;
  padding: 50px 20px 40px;
  
}
.work-header h1 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 3px;
}
.subtitle {
  font-size: 12px;
  color: #868686;
  font-weight: 300;
}

/* メイン画像 */
.work-image img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

/* 詳細情報 */
.work-meta {
  text-align: center;
  margin: 25px 0 50px;
  font-size: 13px;
  color: #696969;
}
.work-meta p {
  line-height: 1,4;
  letter-spacing: 0.05em;
}
.related-works ul li p:nth-child(2){
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 3px;
  color: #444;

}

/* 戻るボタン */
.back-btn {
  text-align: center;
  margin-bottom: 60px;
}
.back-btn a {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #333;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}
.back-btn a:hover {
  background: #333;
  color: #fff;
}







.section-title {/* 「Works」 */
  font-size: 22px;
  margin: 80px 0 60px;
  font-weight: 500;
  /* border-left: 1px solid #949494; */
  /* padding-left: 10px; */
  text-align: center;
  color: #333;
  letter-spacing: 0.03em
}
.related-works ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  padding: 0;
  margin: 20px 0 0;
}
.related-works ul li {
  list-style: none;
  font-size: 12px;

}
.related-works ul li a{
  text-decoration: none;
}
.related-works p{
  text-align: center;
  padding-bottom: -10px;
  color: #333;

}
.work-img {
  width: 100%;
  overflow: hidden;        /* はみ出した部分を隠す */
  margin-bottom: 15px;
  padding: 0 20px;
  position: relative;
}
.work-img img{
  width: 100%;            /* 横幅いっぱい */
  aspect-ratio: 1 / 1;    /* 正方形に固定 */
  object-fit: cover;  
  object-position: center; /* 表示位置を調整できる */  
  display: block;
  transition: transform 0.4s ease; /* なめらかに拡大 */
}
.fuyume-img img{
  object-position: top;

}

/* 白いオーバーレイ */
.work-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0); /* 初期は透明 */
  transition: background 0.4s ease;
}

.work-img:hover img {
  transform: scale(1.1); /* 拡大 */
}

.work-img:hover::after {
  background: rgba(255, 255, 255, 0.144); /* 薄い白レイヤー */
}
  









  