ul{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}

h1,h2,h3,h4,h5{
	padding: 0;
	margin: 0;
}

dd{
  margin: 0;
}

.clearfix {
    min-height: 1px;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.pc-elm{
  display: block;
}
.sp-elm{
  display: none;
}


.foodkeeper{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  line-height: 2;
  letter-spacing: .2rem;
  overflow: hidden;
}

.foodkeeper *{
  box-sizing: border-box;
}


header .logo{
  position: absolute;
  top: 22px;
  left: 180px;
  z-index: 1;
}

header .logo_foodkeeper{
  top: 22px;
  left: 30px;
  z-index: 1;
}




#sec04{
  background-color: #f0dc6b;
}

#sec04 .inner{
  position: relative;
  width: 960px;
  margin: 0 auto;
  padding: 75px 0;
}

#sec04 .inner h2{
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}

#sec04 .btns{
  display: flex;
  justify-content: space-between;
  justify-content: center;
}



.pagetop{
  position: fixed;
  right:20px;
  bottom: 20px;
  transition: all .3s ease-out;
  bottom: -60px;
  z-index: 10;
}

.pagetop.show{
  bottom: 20px;
}

footer{
  padding: 20px 0;
  background-color: #FFF;
  text-align: center;
  font-size: 10px;
  letter-spacing: .1rem;
}


.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*
header{
  position: fixed;
  z-index: 1;
}
*/

.menu-trigger{
  position: fixed;
  width: 36px;
  height: 22px;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #535353;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-30deg);
  transform: translateY(10px) rotate(-30deg) scaleX(1.13);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(30deg);
  transform: translateY(-10px) rotate(30deg) scaleX(1.13);
}


.menu_bg{
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  top: 0;
  left: 0;
  display: none;

  animation-duration: 0.5s;
  animation-name: fade-out;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-out;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-out;
  animation-fill-mode:forwards;
}

.menu_bg.active{
  display: block;
  opacity: .75;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: .75;
  }
}

@keyframes fade-out {
  0% {
    display: block;
    opacity: .75;
  }

  99% {
    display: block;
    opacity: 0;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

.menu{
  position: fixed;
  background-color: #f0dc6b;
  background-size: cover;
  width: 24%;
  height: 100vh;
  top: 0;
  right: -24%;

  transition: all .5s ease;
}

.menu.active{
  right: 0;
}

.menu ul{
  margin: 55.6% 14% 0 14%;
}

.menu li{
  font-size: 20px;
  line-height: 2.0rem;
  margin-bottom: 1.5rem;
  color: #999;
}

.menu li.banner{
  margin-top: 3rem;
}

.menu li a{
  color: #404040;
  text-decoration: none;
}

.modal .num{
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-style: normal;
}




/*----------------------------------------------------
  sp
----------------------------------------------------*/

@media screen and (max-width: 1023px) {

  img{
    width: 100%;
    height: auto;
    max-width: 100%;
  }

.pc-elm{
  display: none;
}
.sp-elm{
  display: block;
}

header .logo {
    width: 160px;
    top: 6px;
    left: 100px;
}

header .logo_foodkeeper{
  top: 8px;
  left: 10px;
  z-index: 1;
  width: 92px;
}



#sec04{
}
#sec04 .inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}

#sec04 .inner h2 {
    font-size: 16px;
    margin-bottom: 40px;
}

#sec04 .btns {
  display: block;
}

#sec04 .btns li{
  width: 250px;
  margin: 0 auto;
  font-size: 0;
  margin-bottom: 20px;
}

  .pagetop{
    width: 46px;
    right:10px;
  }

  .pagetop.show{
    bottom: 10px;
  }

#mv .main {
  bottom: 3%;
}

.menu {
    width: 100%;
    right: -100%;
}

.menu ul {
    margin: 26% 0 0;
    text-align: center;
}

}


/*----------------------------------------------------
  tablet
----------------------------------------------------*/

@media screen and (min-width: 768px) and (max-width: 1023px) {



}






