/* =============================================
   WORK DETAIL PAGE - work_detail.css
   ============================================= */

body.work-detail-page {
  min-width: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Arial,sans-serif;
}

/* ======= 固定×ボタン ======= */
#wd_close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s, transform 0.25s;
}
#wd_close:hover {
  opacity: 1;
  transform: scale(1.15);
  text-decoration: none;
}

/* ======= メイン ======= */
.wd-main {
  padding-top: 20px;
}

/* ======= 画像エリア（固定幅800px・中央寄せ）======= */
.wd-images {
  width: 800px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wd-images img {
  display: block;
  width: 800px;
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.wd-images img.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* ======= 作品情報 ======= */
.wd-info {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
  box-sizing: border-box;
}

.wd-info__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.wd-info__category {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #f4d723;
  text-transform: uppercase;
  border: 1px solid #f4d723;
  padding: 3px 10px;
}

.wd-info__year {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.wd-info__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: #fff;
}

.wd-info__client {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}

.wd-info__desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
}

.wd-info__credits {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.wd-info__credits dt { color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
.wd-info__credits dd { color: rgba(255,255,255,0.8); }

/* ======= レスポンシブ（800px未満）======= */
@media (max-width: 860px) {
  #wd_close { top: 14px; right: 14px; }

  .wd-images,
  .wd-info {
    width: 100%;
  }
  .wd-images img { width: 100%; }
  .wd-info { padding: 24px 16px 40px; }
  .wd-info__title { font-size: 22px; }
}
