/* 下に向けて白くフェードアウトさせる */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, white 100%);
  pointer-events: none;
}

/* 下に向けて白くフェードアウトさせる */
.heroa::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, white 100%);
  pointer-events: none;
}

/* 下に向けて黒くフェードアウトさせる */
.herob::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #1e1e1e 100%);
  pointer-events: none;
}

/* メインパネルの黒いオーバーレイ背景 */
.overlay {
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 1rem;
  text-align: center;
  width: 100%;
  height: 100%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* 「もっと見る」ボタンのスタイル */
.btn {
  background: linear-gradient(to right, #fff, #e0e0e0);
  color: #000;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* ホバー時の浮き上がりと色変更 */
.btn:hover {
  background: #ccc;
  transform: translateY(-2px);
}
