/* hole */
html,
body {
  margin: 0;
  padding: 0;
  background-color: black;
}

/* スクロール量を稼ぐダミー。高さは動画の「尺」に合わせて調整 */
.scroll-spacer {
  height:9500px; /* スクロール量＝動画の再生速度になるのでお好みで */
}

/* 動画エリア： (1080 - 48px) × 1920 というイメージ */
.video-fixed {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: calc(100vh - 48px); /* 下48pxをボタンエリアに */
  object-fit:contain;
  z-index: 10;
}

/* ボタンエリア固定 */
.btn-fixed {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;

}

.btn_top{
    width: 60px;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.repeat{
    width: 24px;
    height: 24px;
}
.btn {
    height: 100%;
    width:calc(50% - 30px);
  text-align: center;
  color: #fff;
  text-decoration: none;
    background:#686868;
}
/* hole */

.main_area{
    width: 90%;
    height: 92vh;
    margin: 0 auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_block{
    width: 100%;

}
.main_area h2{
    text-align: center;
    margin-bottom: 120px;
}
.main_area ul{
    margin-top: 40px;
    list-style: none;
    display: grid;

    row-gap: 40px;
    padding: 0;
     text-align:center;
}
.main_area ul li{
    width: fit-content;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    border-bottom:1px solid #fff;
}
.main_area ul li a{
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
footer{
    text-align: center;
    color: #fff;
}