@charset "utf-8";

#gourmet .top_bg {
  background-color: #f0336f;
}

#gourmet .mv_icon {
  width: 31%;
  max-width: 158px;
  right: 0;
  bottom: 0;
  transform: translateY(-6.3%);
}
/* ======================
shop nav
========================= */
#shop_nav {
  padding: clamp(20px, 5.86vw, 45px) 0 clamp(30px, 6.25vw, 100px);
  border-bottom: 1px solid #000;
}
.nav_txt {
  font-size: clamp(18px, 5.35vw, 23px);
  font-weight: 900;
  text-align: center;
  margin-bottom: min(6.13vw, 98px);
}
.nav_txt span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
.nav_txt span:before,
.nav_txt span:after {
  content: "";
  width: 1.3em;
  height: 1.4em;
  background: url(../imgs/gourmet/click_deco.svg) center no-repeat;
  background-size: contain;
}

.nav_txt span:after {
  transform: rotateY(180deg);
}
.nav_list {
  flex-wrap: nowrap;
  gap: 30px 20px;
}

.nav_item {
  display: flex;
  align-items: center;
  height: 9.3vw;
  max-height: 60px;
}
.nav_item a {
  height: 100%;
  position: relative;
}
.nav_item a::before {
  content: "";
  width: 153px;
  height: 62px;
  margin: auto;
  background: url(../imgs/gourmet/check.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}
.nav_item img {
  opacity: 0.6;
  transition: all 0.3s;
}
.nav_list a:hover img {
  opacity: 1;
}
.nav_item:hover a::before {
  opacity: 1;
}

#gourmet .shop_cont .txtbk .menu_ttl {
  background-image: url(../imgs/gourmet/ic_menu.png);
}

#gourmet .morebtn {
  border-color: #f0336f;
}

.shop_cont .txtbk .morebtn {
  margin-top: 30px;
}

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

@media screen and (max-width: 768px) {
  .nav_list {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .nav_item {
    width: 50%;
    justify-content: center;
  }
  .nav_txt {
    margin-bottom: 20px;
  }
  .nav_item a::before {
    content: none;
  }
  .nav_item img {
    opacity: 1;
  }
}
