/* --- ベース設定 --- */
body {
  background-color: #000;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/* --- ヒーローセクション（大きな画像+中央テキスト） --- */
.work-hero {
  position: relative;
  width: 90%;
  height: 80vh;
  margin: 5vh auto;
  margin-top: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
}

.work-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  border-radius: 36px;
  position: absolute;
  top: 0;
  left: 0;
}

.work-hero-text {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 20px;
}

.work-hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.work-hero-text p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-family: 'Noto Serif JP', serif;
}

/* --- 本文エリア（詳細セクション） --- */
.work-details {
  background: #000;
  color: #ccc;
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  line-height: 1.8;
}

.work-details h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  font-family: 'Noto Serif JP', serif;
  color: white;
  text-align: center;
}

.work-details p, .work-details ul {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
}

.work-details ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.work-details li {
  margin-bottom: 0.5rem;
}

/* --- メタ情報（リリース日、価格など） --- */
.work-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 2rem;
  text-align: center;
}

/* --- リンクボタン --- */
.work-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.work-links a {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.work-links a:hover {
  background-color: white;
  color: black;
}

/* --- フッター --- */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
  background: #000;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {

  .work-details {
    padding: 0 1rem;
  }

  .work-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .work-hero-text h1 {
    font-size: 2rem;
  }

  .work-hero-text p {
    font-size: 1rem;
  }
}
