#slider {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*========= レイアウトのためのCSS ===============*/

a{
  color: #fff;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.logo {
        max-width: none;
        width: 730px;
}


/* スマホ表示 */
@media screen and (max-width: 767px){
.logo {
width: 300px;
height: 45px;
}
h1{
      top: 56%;
    }
}
@media screen and (max-width: 767px){
h1 {
    z-index: 0;
}
}