
html{
  font-size: 62.5%; /*10px*/
  scroll-behavior:smooth;
}

body{
  font-family: "century-gothic", sans-serif;
  font-family: "yu-gothic-pr6n", sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.4;
  margin:auto;

}




img{
  width: 100%;
  vertical-align: bottom;
}

a { text-decoration: none;
    color: #333333;
  }


/*header*/

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 6vh;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
    z-index: 9998;
}

.burger-btn{
  display: none;
}



.nav-list{
  display: flex;
  
}

.site-img{
  width: 80px;
}

.nav-item{
  justify-content: space-between;
  padding: 0 50px;
  color: #333333;
  font-family: "century-gothic", sans-serif;
  font-size: 1.4rem;
}



.nav-item a{
  color:#000;
}

.nav-item a:hover{
background-color:#fff;
color:#630C03;
transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
padding: 5px;
}

.site-img :hover{
  width: 90px;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}




.section-wrapper{
  max-width: 1500px;
  padding: 100px 50px;
  margin: auto;
  background-image: url(../images/tdee_back.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
}


.section-wrapper2{
  max-width: 1500px;
  padding-top: 150px;
  margin:50px  auto;
  background-attachment: fixed;
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
}

.footer-text{
  text-align: center;
  font-size: 1.4rem;
  font-family: "century-gothic", sans-serif;
  padding: 10px;
}


div.vid_contents {
  width: 100%;/*背景色を横幅いっぱいに広げる*/
  text-align: center;
  margin: auto;
  }
  video.vid_main {
    text-align: center;
  width: 100%;
  max-width: 1000px;/*PC版での最大幅*/
  }




div.vid_contents2 {
  width: 100%;/*背景色を横幅いっぱいに広げる*/
  text-align: center;
  margin: auto;
  padding:30px 10px;/*ここで動画の周りの余白を調整*/
  }
  video.vid_main2 {
    text-align: center;
  width: 100%;
  max-width: 1000px;/*PC版での最大幅*/
  }


@media screen and (max-width:800px){
  /* ----------------------------- */
  /* header_sp
  /* ----------------------------- */

  
  .section-wrapper{
    max-width: 1000px;
    padding: 50px 10px;
    margin: auto;
  }

  .section-wrapper2{
    max-width: 1000px;
    padding-top:100px;
  }
  

  div.vid_contents {

    margin: auto;
    padding:0px;/*ここで動画の周りの余白を調整*/
    }
  video.vid_main {
    text-align: center;
  width: 100%;
  margin: auto;
  max-width: 600px;/*PC版での最大幅*/
  }



div.vid_contents2 {
  width: 100%;/*背景色を横幅いっぱいに広げる*/
  text-align: center;
  margin: auto;
  padding:5px;/*ここで動画の周りの余白を調整*/
  }
  video.vid_main2 {
    text-align: center;
  width: 100%;
  max-width: 400px;/*PC版での最大幅*/
  }


   /* ハンバーガーボタン */
  .burger-btn{
    display: block;
    width: 75px;
    height: 44px;
    position: relative;
z-index: 5;

  }
  .bar{
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: #333333;
    position: absolute;
    

  }
  .bar_top{
    top: 0;
  }
  .bar_middle{
    top: 20px;
  }
  .bar_bottom{
    bottom: 0;
  }

   /* ハンバーガーボタンをクリックしたときのボタンの見た目 */
.burger-btn.cross .bar_top{
    transform: rotate(45deg);
    top: 20px;
    transition: .3s;
  }
  .burger-btn.cross .bar_middle{
    opacity: 0;
    transition: .3s;
  }
  .burger-btn.cross .bar_bottom{
    transform: rotate(-45deg);
    bottom: 20px;
    transition: .3s;
  }


  .header-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;

  }
  .nav-list{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
  }

  .nav-item{
padding-bottom: 30px;
    text-align: center;
  }



}