html {
  scroll-behavior: smooth;
}


.contents {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  color: #0D635A;
  font-family: "Yu Gothic", sans-serif;
}

.toc-section h2,
.gallery-section h3 {
  margin-bottom: 10px;
  color: #0D635A;
  border-left: 5px solid #90D1D0;
  padding-left: 10px;
}

.toc-section ul {
  list-style: none;
  padding-left: 1em;
}

.toc-section li {
  margin-bottom: 5px;
  font-weight: bold;
}

p {
  font-weight: 600; /* 少し太め。400が普通、700が太字 */
}


/* 目次のリンク（動画参照作品・オリジナル作品）用のスタイル */
.toc-section a {
  color: inherit;              /* 親要素と同じ色を使う */
  text-decoration: none;       /* 下線を消す */
  font-weight: bold;           /* 太字（任意） */
}

/* ホバー時の装飾（任意） */
.toc-section a:hover {
  text-decoration: underline;  /* ホバー時だけ下線を出すなど */
  color: #0D635A;              /* 好みの色に変える */
}


.gallery-section {
  margin-top: 40px;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 個々のギャラリーアイテム */
.gallery-item {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* スクロールイン時に表示 */
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 画像本体・拡大アニメーション */
.gallery-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* キャプション */
.caption {
  margin-top: 10px;
  color: #0D635A;
  font-size: 16px;
  font-weight: bold;
}

/* 参考動画リンクの控えめスタイル */
.ref-link {
  font-size: 13px;
  color: #7a9c9c;
  text-decoration: none;
  white-space: nowrap;     /* 改行させず、なるべく一行に表示 */
  overflow: hidden;        /* はみ出した場合は非表示に */
  text-overflow: ellipsis; /* 長すぎたら「...」で切る */
  display: inline-block;
  max-width: 100%;
}

/* ホバー時に少し強調（任意） */
.ref-link:hover {
  color: #467c7c;
  text-decoration: underline;
}

.review-section {
  background: #f5fbfa;         /* 柔らかい背景色 */
  border-left: 6px solid #90D1D0;
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}



/* レスポンシブ対応：768px以上で2列 */
@media (min-width: 768px) {
  .gallery-item {
    width: calc(50% - 20px);
  }
}
