html{
  overflow: auto;
}
body{
  font-family:'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  overflow-x: hidden;
}
:root{
  --ja:'Noto Sans JP', sans-serif;
  --myOrange:#FF9D00
}
img{
  max-width: 100%;
}
h1{
  font-size: 80px;
}
h2{
  font-size: 30px;
}
h3{
  font-size: 24px;
  text-align: center;
}
a{
  transition: .5s;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
.container{
  max-width: 1188px;
  padding: 0 4%;
  margin: 0 auto;
}
.products,.about,.shop,.contact{
  padding: 80px 0;
  }
.ttl{
  position: relative;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 60px;
}
.ttl::after{
  content:"" ;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--myOrange);
}

/* header,footer */
.menu ul{
  display: flex;
}
.menu li{
  padding: 0 40px;
}
.menu a{
  font-size: 20px;
}
.menu a:hover{
  color: var(--myOrange);
}

/* header */
header .menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  height: 80px;
  background-color: rgba(0, 0, 0, .8);
}
header .menu ul{
  height: 80px;
  align-items: center;
}
header .menu li:not(:last-of-type){
  border-right: solid 1px #fff;
}
header .menu a{
  color: #fff;

}
/* kv */
.kv{
  position: relative;
}
.kv h1{
  position: absolute;
  top: 145px;
  left:11%;
  color: #fff;
  font-weight: 500;
  z-index: 100;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, .3);
}
.my-swiper img{
  max-width: none;
  width: 100%;
  height: auto;
}

/* products */
.products ul{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 0;
  justify-content: center;
}
.products li{
  width: 25%;
  padding: 0 1%;

}
.products li p{
  text-align: center;
  padding-top: 20px;
}

/* about */
.about{
  background-image: url(../img/about.jpg);
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.about p{
  font-size: 24px;
  padding: 40px 0;
  line-height: 133%;
  width: 700px;
  margin: 0 auto;
}
.btn{
  display: block;
  width: 300px;
  height: 80px;
  border: solid 1px #fff;
  text-align: center;
  line-height: 80px;
  margin: 0 auto;
  font-size: 24px;
  position: relative;
  z-index: 10;
}
.btn::after{
  content: ">";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: .5s;
}
.btn:hover::after{
  right: 30px;
}
.btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--myOrange);
  z-index: -1;
  transform: scale(0,1);
  transform-origin: left top;
  transition: .5s;
}
.btn:hover::before{
  transform: scale(1,1);
}

/* shop */
.shop iframe{
  width: 100%;
  height: 400px;
  padding-bottom: 40px;
}
.shop p{
  font-size: 20px;
  text-align: center;
  font-family: var(--ja);
}

/* contact */
.contact{
  background-image: url(../img/contact.jpg);
  background-attachment: fixed;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 80px;
}
.contact p{
  font-size: 30px;
  text-align: center;
}
.contact p:first-of-type{
  padding-bottom: 40px;
}
.contact p a:hover{
  color: var(--myOrange);
}

/* footer */
footer{
  border-top: solid 1px #707070;
}
footer p{
  padding: 40px 0;
  font-size: 20px;
  text-align: center;
}
footer .menu ul{
  justify-content: center;
}
footer .menu li{
  border-right: solid 1px #333;
}
footer small{
  display: block;
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
}

/* sp版 */
@media screen and (max-width:750px){
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
  .products,.about,.shop,.contact{
    padding: 60px 0;
  }
  .ttl{
    margin-bottom: 40px;
  }
  .h-btn{
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
  }
  .h-btn div{
    width: calc(100% - 20px);
    height: 100%;
    margin: 0 auto;
    position: relative;
  }
  .h-btn div span{
    position: absolute;
    width: 100%;
    height: 1px;
    right:0;
    background-color: #fff;
    transition: .5s;
  }
  .h-btn div span:first-of-type{
    top: 19px;
  }
  .h-btn div span:last-of-type{
    top: 30px;
    width: 50%;
  }
  .h-btn.active div span{
    top: 50%;
  }
  .h-btn.active div span:first-of-type{
    transform: translateY(-50%) rotate(45deg);
  }
  .h-btn.active div span:last-of-type{
    transform: translateY(-50%) rotate(-45deg);
    width: 100%;
  }
  /* menu */
  /* header footer */
  .menu ul{
    flex-wrap: wrap;
  }
  .menu li{
    padding: 0;
    width: 100%;
    text-align: center;
  }
  header .menu{
    top: 50px;
    height: calc(100vh - 50px);
    width: 210px;
    padding-top: 60px;
    transform: translateX(100vw);
    transition: .5s;
  }
  header .menu ul{
    height: auto;
    gap: 40px 0;
  }
  header .menu li:not(:last-of-type){
    border-right: transparent;
  }
  header .menu.active{
    transform: translateX(0);
  }
  
  /* kv */
  .kv h1{
    font-size: 40px;
    top: 61px;
    left: 4%;
  }

  /* products */
  .products ul{
    gap: 40px 0;
  }
  .products li{
    width: 100%;
  }
  
  /* about */
  .about{
    background-image: url(../img/sp/about.jpg);
  }
  .about p{
    font-size: 16px;
    width: 100%;
  }

  /* shop */
  .shop iframe{
    height: 308px; 
    padding-bottom: 20px;
  }
  .shop p{
    font-size: 16px;
  }

  /* contact */
  .contact{
    background-image: url(../img/sp/contact.jpg);
    margin-bottom: 40px;
  }
  .contact p{
    font-size: 20px;
  }
  .contact p:first-of-type{
    padding-bottom: 20px;
  }
 
  /* footer */
  footer .menu ul{
    gap: 20px 0;
  }
  footer .menu li{
    border-right: transparent;
  }
  
}