@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  background-color: #DAEDE6
}
body {
  color: #463132; /* RGB */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}
a :hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/*_____________header_______________*/
.header {
  position: fixed;
  width: 100vw;
  height: 85px;
  top: 0;
  z-index: 10000;
  background-image: url("../images/header/scallop.png");
  background-repeat: repeat-x;
  margin-bottom: 1rem;
}
main {
  margin-top: 90px;
  margin-bottom: 90px;
}
.container {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .header {
    position: fixed;
    height: 6.6rem;
    background-image: url("../images/header/re-scallop.png");
    margin-bottom: 0.1rem;
    background-size: 22.2%;
  }
  main {
    margin-top: 5rem;
  }
}
/*==================================================
Instagramアイコンのためのcss
===================================*/
.anim-box_poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/*_____________lunchメニューを浮かす_______________*/
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, -3px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
}
/*_____________バナーをpoyopoyon_______________*/
.poyoyon3 {
  animation: poyoyon3 2.5s infinite;
  opacity: 1;
}
@keyframes poyoyon3 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
/*_____________footer_______________*/
footer {
  background-image: url(../images/common/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 33.3vw;
  position: relative;
}
.footer_wrapper {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 1vw;
  font-size: 1.5rem;
}
.footer_logo img {
  padding-bottom: 0;
  width: 10.33vw;
}
.copyright {
  font-family: 'Kaisei Decol';
  font-size: smaller;
}
/* アニメーション */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-10px);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  40% {
    transform: translateY(0);
  }
}
.anime-object {
  animation: bounce 4s linear infinite;
}
@media screen and (max-width: 640px) {
  footer {
    background: inherit;
    background-image: url("../images/common/mobile-footer.png");
    background-repeat: no-repeat;
    background-size: contain;
    height: 94.3vw;
  }
  .footer_wrapper {
    bottom: 0rem;
    font-size: 1.4rem;
  }
  img.footer_logo {
    padding-bottom: 3vw;
    width: 30.512vw;
  }
  .copyright {
    padding-bottom: 1.1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 440px) {
  .copyright {
    padding-bottom: 0.1rem;
    font-size: 1rem;
  }
}