@charset "UTF-8";
body:has(#site_nav.open) .pagetop {
  bottom: 160px;
}

.site-nav {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 50;
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 150px;
  border-top: 2px solid #f82a64;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  opacity: 0;
}
.site-nav.on {
  visibility: visible;
  opacity: 1;
}
.site-nav.init {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.site-nav.open {
  bottom: 0;
}
.site-nav.open .site-nav-title::after {
  rotate: 0deg;
}
.site-nav * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav-inner {
  position: relative;
  width: 100%;
}
.site-nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0 12px;
  gap: 0 20px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.site-nav-title::after {
  display: block;
  aspect-ratio: 1;
  width: 18px;
  rotate: 180deg;
  background-image: url(/assets/img/common/nav_icon_menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.site-nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-nav-menu > li {
  position: relative;
  width: 160px;
  border-left: 1px solid #d4d4d4;
}
.site-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 84px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.site-nav-link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}
.site-nav-link-icon.top img {
  width: 64px;
}
.site-nav-link-icon.about img {
  width: 34px;
}
.site-nav-link-icon.recipe img {
  width: 38px;
}
.site-nav-link-icon.cook img {
  width: 38px;
}
.site-nav-link-icon.fruit img {
  width: 42px;
}
.site-nav-link-text {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body:has(#site_nav) .pagetop {
    bottom: 50px;
  }
  body:has(#site_nav) #pagetop_anchor.is_visible {
    bottom: 50px;
  }
  body:has(#site_nav.open) .pagetop {
    bottom: 120px;
  }
  body:has(#site_nav.open) #pagetop_anchor.is_visible {
    bottom: 120px;
  }
  .site-nav {
    bottom: -70px;
    height: 110px;
  }
  .site-nav-title {
    gap: 0 15px;
    font-size: 12px;
  }
  .site-nav-title::after {
    width: 14px;
  }
  .site-nav-menu > li {
    width: 20%;
  }
  .site-nav-link {
    height: 60px;
  }
  .site-nav-link-icon {
    height: 30px;
  }
  .site-nav-link-icon.top img {
    width: 35px;
  }
  .site-nav-link-icon.about img {
    width: 22px;
  }
  .site-nav-link-icon.recipe img {
    width: 30px;
  }
  .site-nav-link-icon.cook img {
    width: 28px;
  }
  .site-nav-link-icon.fruit img {
    width: 32px;
  }
  .site-nav-link-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 2lh;
    font-size: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .site-nav .sp {
    display: none;
  }
}
@media (any-hover: hover) {
  .site-nav-link:hover {
    opacity: 0.8;
  }
}