@charset "utf-8";

/* CSS Reset */
html,body,h1,h2,p,ul,li{
margin: 0;
padding: 0;
line-height:1;
font-family: sans-serif;
}
ul{
list-style: none;
}
img{
border:none;
vertical-align: bottom;
max-width: 100%;
height:auto;
}
a{
text-decoration: none;
color: inherit;
}

/* Header */
header{
max-width: 1000px;
height: 100vh;
padding: 0 10px;
color: #fff;
position: absolute;
left:0;
right:0;
margin: auto;
z-index: 999;
/* mix-blend-mode:initial; */
}
/* z-index: 999;ヘッダをレイヤーで一番上に表示設定 */
.top-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 50px 0 250px;
    font-family: 'Ubuntu', sans-serif;
}

h1{
    font-weight: bold;
    font-size: 2em;
    text-shadow: 0 0 15px rgb(117, 59, 11),0 0 15px rgb(117, 59, 11),0 0 15px rgb(117, 59, 11);
    }

/* Navgation  */
.spnav{
    display: none;
}


/* Navigation */
nav ul{
    display: flex;
    }
    nav li{
    margin-right: 10px;
    }
    nav a{
    transition: 300ms;
    }
    nav a:hover{
    color: #f90;
    border-bottom: 1px solid #f90;
    }


/* コピー */
.head{
    font-family: 'Ubuntu', sans-serif;
    font-size: 5em;
    text-align: center;
    margin-bottom: 50px;
    }

.head span{
    font-size: 1.5em;
    color: rgb(177, 55, 6);
}
.copy{
width: 700px;
box-sizing: border-box;
margin:0 auto;
color:#fff;
font-size: 1.5em;
line-height: 1.4;
background:rgba(109, 60, 5, 0.8);
padding: 20px;
}



/* Font-awsomme */
header i{
position: absolute;
width: 100%;
bottom: 50px;
font-size: 3em;
text-align: center;
cursor: pointer;
}

video{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
/* object-fit: cover;  画像サイズがをカバーしてくれます*/


/* overlay  ビデオの指定*/
.overlay{
    width: 100vw;
    height: 100vh;
    background: #700;
    position: absolute;
    top:0;
    left: 0;
    mix-blend-mode: overlay;
}
@media screen and (max-width:767px){

   /* Header */
   .top-header{
    margin: 40px 0 100px;
    }
    

    h1{
        font-size:50px;
        text-align: center;
    }
    .head{
        font-size:50px;
        text-align: center;
    }


    
    .copy{
        width:90%;
        font-size: 18px;
    }
    

    /* Navigation */
    .pcnav{
        display: none;
  
    }

    nav ul, .top-header{
        display: block;
    }


/* SP用 btn */

.btn{
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top:5px;
    right:10px;
    cursor: pointer;
    border-radius: 5px;
    /* border:3px solid #fff; */
   }
   
   .btn span{
      display: block;
      width: 35px;
      height: 1px;
      background: #fff;
      border-radius: 3px;
      position: absolute;
      top:0;
      right: 0;
      left: 0;
      bottom: 0;
      margin: auto;
      transition: .3ms;
      background-color: transparent;
   }
   /* ::before、::afte疑似要素--- */
   /*    【 content:"";】必ず つける決まり "ここに入力した文字が表示される"*/
   .btn span::before,
   .btn span::after{
       color: #fff;
       content:"";/* 必須 */
       display: block;
       width: 45px;
       height: 3px;
       background: #fff;
       border-radius: 3px;
       transition: .3ms;
   }
   .btn span::before{
       margin-top:-10px ;
   }
   
   .btn span::after{
       margin-top: 17px;
   }
   .spin span{
       background-color: transparent;
   }
   .spin span::before{
    transform: rotate(225deg);
    margin-top: 0;

   }
   .spin span::after{
       transform: rotate(-225deg);
       margin-top: -2px;
       }

/*-----/ SP用 btn /----- */
/* SP用 nav */

.spnav{
    display: block;
    position: absolute;
    width: 100%;
    /* height: 100%; */
    background-color: rgba(194, 91, 7, 0.6);
    color: #fff;
    transition:300ms;
    left:-100%;
    text-align: center;
    /* display: none; */
}
.slide{
    left: 0;
    }

.spnav ul{
    margin-top: 150px;

}
.spnav li{
    font-size: 1.5em;
    text-align: center;
    width:100%;
    height: 70px;
    line-height: 70px;

    }
    nav a{
    display: block;

    }
 


}

