.Section.main-section {
  background-color: #FFFFFF;
  padding-bottom: 40px;
}

.Product__labelList {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
}

.discontinued-container {
  border: solid 1px #CCCCCC;
  background-color: #F8F8F8;
  color: #333333B8;
  font-size: 12px;
  font-weight: 500;
  font-family: YuMincho;
  padding: 0 5px;
  letter-spacing: 0;
  white-space: nowrap;
}

.MenuListBackground {
  position: relative;
  padding: 50px 0;
}

.MenuListBackground::before {
  content: "";
  background-color: #F8F8F8;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}

.Section__menu_list_nav.Tabbed {
  position: static;
}

.main-section {
  margin: 1rem 0;
}

.ProductGrid -hero {
  background-color: #FFFFFF;
}

.ProductGrid__item {
  background-color: #FFFFFF;
}

.-lineTop {
  margin-top: 80px;
}

.mainTabList {
  display: flex;
  margin: auto;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.Tabbed__nav {
  padding-left: 24px;
  margin-bottom: -50px;
}

.Section__menu_list_nav.Tabbed .TabList {
  margin: 20px 0 -50px 0;
}

.mainTabList__item {
  font-family: 'yumincho';
  flex: 1;
  text-align: center;
}

.mainTabList__item.current-cat .TabList__link:after {
  opacity: 1;
}

.mainTabList__item .TabList__link:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 2px;
  background-color: #999;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mainTabList__item .TabList__link:hover:after {
  opacity: 1;
}

.ProductGrid__list {
  margin: 0;
  margin-right: -1px;
}

.mainTabList__link::after {
  left:0;
}

.mainTabList__item:not(.main-current-cat) .mainTabList__link {
  color: #CCCCCC;
}

.mainTabList__link {
  outline: 0;
  position: relative;
  z-index: 0;
  display: block;
  padding: 0.5rem;
  color: currentColor;
  text-decoration: none;
  white-space: nowrap;
  outline-offset: -0.7rem;
}

.mainTabList__link::after {
  opacity: 1;
}

.mainTabList__item .mainTabList__link {
  position: relative;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}

.mainTabList__item.main-current-cat .mainTabList__link:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #333333;
  opacity: 1;
}

.mainTabList__item .mainTabList__link:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #999;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .ProductGrid__list {
    margin: 15px -1px 0 0;
  }

  .ProductGrid.-hero {
    border-top: none;
  }
}

@media screen and (max-width: 480px) {
  .ProductGrid__list {
    margin: 15px -2px 0 0;
  }

  .Section__menu_list_nav.Tabbed .TabList li a {
    font-size: 16px;
  }

  .ProductGrid.-hero {
    border-top: none;
    padding-top: 0;
  }

  .mainTabList__link {
    font-size: 18px;
  }
}

