/* TOP ページ固有スタイル */

/* MV背景グラデーション装飾（参考サイト踏襲）*/
#slideshow::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(270deg, #8DC21F, #b8e05a);
  background-size: 600% 600%;
  mask-image: linear-gradient(transparent, #fff 100%);
  -webkit-mask-image: linear-gradient(transparent, #fff 100%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
