@charset "UTF-8";
.series-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(0deg, #ec983d, #e26f1e);
}

.series-index {
  display: flex;
  max-width: 141.4rem;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  padding-inline: 0.8rem;
}

.series-title {
  width: 38.3rem;
}

.series-title h1 {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.series-title__img {
  width: 100%;
}

.series-lineup ul {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
  padding-top: 1.6rem;
}

.series-lineup li {
  width: 18rem;
  text-align: center;
  border-radius: 8px 8px 0 0;
  font-size: 1.6rem;
  position: relative;
  background: #ffdfb5;
  color: #0c0c0d;
  transition: all 0.3s;
}

.series-lineup li:not(.active) {
  background-color: #ffdfb5;
}

.series-lineup li:not(.active):hover {
  background-color: #ffefd6;
}

.series-lineup li a {
  display: block;
  width: 100%;
  position: relative;
  height: 5.6rem;
  color: var(--color_font_primary_mid);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.series-lineup li.active a {
  pointer-events: none;
}

.product__catch-img {
  box-shadow: none;
  border-top: none;
}

.series-lineup {
  max-width: 100%;
  margin-left: auto;
}

.series-lineup li.active {
  border-bottom: 0;
  border-color: transparent;
  background: #c5482a;
  color: #fff;
}

h1.product__catch-img {
  padding: 1em;
  border-top: transparent;
  background: #fff;
}

.pt_hero_image h1 {
  background: linear-gradient(90deg, #cd4829 10%, #ff6b08 50%, #e99d37 90%);
}

@media (max-width: 768px) {
  .series-wrap {
    width: 100%;
    padding-top: 0;
  }
  .series-index {
    flex-direction: column;
    padding-inline: 0.4rem;
  }
  .series-title {
    margin: 0 auto;
    width: 100%;
    max-width: 383px;
  }
  .series-lineup {
    width: 100%;
  }
  .series-lineup ul {
    max-width: 374px;
    flex-wrap: wrap;
    margin-inline: auto;
    justify-content: center;
    gap: 1.6rem 1.4rem;
    padding: 8px 0 16px;
  }
  .series-lineup li {
    width: 180px;
    border-radius: 8px;
  }
  .series-lineup li a {
    height: 56px;
    font-size: 16px;
  }
}
/*セール用タイムチェックスタイル*/
p.sale {
  position: absolute;
  top: -12px;
  right: -5px;
  color: #fff;
  border-radius: var(--radius_s);
  font-size: var(--size_txt_xs);
  padding: 3px 8px;
  background: linear-gradient(var(--color_sale), #ffb100);
  font-weight: bold;
  margin: 0;
}

/*--▼ 2023.07移行調整　ヘッダ固定
  -------------------------------------------------------------*/
.is-fixed {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 10;
}

/*--▲-------------------------------------------------------*/