/* ========== menuTab ========== */
.menuTab {
  background-color: #fff;
  background-image: url('../img/page_bg.jpg');
  background-blend-mode: multiply;
  background-size: 100%;
  background-repeat: repeat;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}
.s .menuTab {
  background-size: 200%;
}

.menuTab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.s .menuTab-list {
  justify-content: start;
  gap: 30px;
  padding-inline: 20px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menuTab-item {
  flex-shrink: 0;
  height: 60px;
  font-size: calc(18 * var(--scale-rem));
  font-weight: bold;
  line-height: 1.5555556;
  text-align: center;
}
.menuTab-item._active {
  border-bottom: 3px solid #841b2a;
}

.menuTab-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #000;
  text-decoration: none;
}
.menuTab-item._active a {
  color: #841b2a;
}
