/** Shopify CDN: Minification failed

Line 1337:3 Cannot use type selector "--1" directly after nesting selector "&"
Line 1338:3 Cannot use type selector "--2" directly after nesting selector "&"
Line 1339:3 Cannot use type selector "--3" directly after nesting selector "&"
Line 1340:3 Cannot use type selector "--other" directly after nesting selector "&"

**/
@font-face {
  font-family: "Mont";
  font-weight: 300;
  src: url("/cdn/shop/files/MontForAnker-Book.woff2?v=1736241329")
      format("woff2"),
    url("/cdn/shop/files/MontForAnker-Book.woff?v=1736241329")
      format("woff");
  font-display: swap;
}


.novelty-container {
  padding-top: 54px;

  @media (min-width: 1080px) {
    padding-top: 94px;
  }
}

.m-sp {
  display: block !important;

  @media (min-width: 1080px) {
    display: none !important;
  }
}

.m-pc {
  display: none !important;

  @media (min-width: 1080px) {
    display: block !important;
  }
}

/* ── KVセクション ── */
.novelty-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #e0f2fe 0%, #f0f9ff 40%, transparent 100%);
  padding: 40px 5%;

  @media (min-width: 1080px) {
  
    padding: 0px 5% 0px;
  }

  &::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 242, 254, 1) 0%, rgba(224, 242, 254, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  @media (max-width: 960px) {
    flex-direction: column;
    text-align: center;
  }
}

.novelty-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
  z-index: 1;

  @media (min-width: 1080px) {
    gap: 0;
    flex-direction: row;
  }
}

.novelty-hero__content {
  display: flex;
  flex-direction: column;

  width: 100%;
  gap: 14px;
  align-items: center;
order: 2;

  @media (min-width: 1080px) {
    align-items: start;
    gap: 24px;
    width: auto;
    order: 0;
  }
}

.novelty-hero__title {
  font-size:1.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: #444;

  @media (min-width: 1080px) {
    font-size: 2rem;
  }
}

.novelty-hero__desc {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  margin: 0;

  @media (min-width: 1080px) {
    font-size: 1rem;
  }
}

.novelty-hero__button {
  display: inline-block;
  background-color: #00a9d8;
  color: #fff;
  padding: 16px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.3s;
  margin-top: 7px;

  @media (min-width: 1080px) {
    margin-top: 10px;
  }

  &:hover {
    opacity: 0.85;
    color: white!important;
  }
}

.novelty-hero__visual {
  position: relative;
  width: 93%;
  height: 200px;

  @media (min-width: 1080px) {

    width: 55%;
    position: relative;
    height: 400px;
  }
}

.novelty-hero__product {
  position: absolute;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  opacity: 0;
  transform: translateY(30px);
  animation: noveltyHeroFadeIn 1.2s ease-out forwards;
}

.novelty-hero__product img {
  width: 100%;
  height: auto;
  display: block;
}

.novelty-hero__product--1 {
  width: 35%;
  bottom: 0;
  left: 0%;
  animation-delay: 0.2s;

  @media (min-width: 1080px) {
    width: 220px;
  bottom: 0;
  left: 10%; 
  }
}

.novelty-hero__product--2 {
  width: 22%;
  top: 0%;
  right: 42%;
  animation-delay: 0.5s;

  @media (min-width: 1080px) {
    width: 150px;
    top: 0%;
    right: 32%;
  }
}

.novelty-hero__product--3 {
  width: 52%;
  bottom: 5%;
  right: 0%;
  animation-delay: 0.8s;

  @media (min-width: 1080px) {
    width: 280px;
  bottom: 5%;
  right: 5%; 
  }
}

@keyframes noveltyHeroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
}

/* ── 特徴セクション ── */
.novelty-features {
  padding: 0px 15px;
  max-width: 1680px;
  margin: 0 auto;

  @media (min-width: 1080px) {
    padding: 0px 40px;
  }
}

.novelty-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;

  @media (min-width: 1080px) {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}

.novelty-feature-card {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 100px;
  border-radius: 12px;
  overflow: hidden;

  &.type-gray {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  }

  &.type-cyan {
    background: linear-gradient(135deg, #f0fdff 0%, #dcfaff 100%);
    border-color: #cffafe;

    .novelty-feature-card__image {
      width: 50%;
    }
  }

  @media (min-width: 1080px) {
    min-height: 200px;
  }
}

.novelty-feature-card__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 35%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 35%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }

  @media (min-width: 1080px) {
    width: 70%;
  }
}

.novelty-feature-card__text {
  flex: 1;
  margin-left: 40%;
  padding: 20px 12px;
  display: grid;
  align-content: center;
  gap: 6px;
  text-align: left;
  box-sizing: border-box;
  z-index: 1;

  @media (min-width: 1080px) {
    flex: none;
    width: max-content;
    margin-left: auto;
    padding: 24px;
    text-align: center;
    gap: 10px;
  }
}

.novelty-feature-card__title {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin: 0;

  @media (min-width: 1080px) {
    font-size: 16px;
  }
}

.novelty-feature-card__desc {
  font-size: 11px;
  line-height: 1.5;
  color: #4b5563;
  margin: 0;
  text-align: left;

  small {
    font-size: 9px;
    vertical-align: super;
  }

  br {
    display: none;
  }

  @media (min-width: 1080px) {
    font-size: 13px;
    line-height: 1.65;
    text-align: center;

    br {
      display: inline;
    }
  }
}

.novelty-feature-card__note {
  font-size: 9px;
  color: #9ca3af;
  margin: auto 0 0;
  line-height: 1.6;

  @media (min-width: 1080px) {
    font-size: 10px;
  }
}

/* ── 名入れイメージカード ── */
.novelty-img-cards {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  gap: 12px;
  margin: 0 -24px;
  padding: 0 20px 4px;

  &::-webkit-scrollbar {
    display: none;
  }

  @media (min-width: 680px) {
    overflow-x: visible;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0;
    padding: 0;
  }
}

.novelty-img-card {
  scroll-snap-align: start;
  flex: 0 0 calc(100% - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #f5f7fa;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;

  @media (min-width: 680px) {
    flex: unset;
  }

  @media (min-width: 1080px) {
    flex-direction: row;
    padding: 25px;
  }
}

.novelty-img-card__img {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
}

.novelty-img-card__text {
  padding: 10px;
  flex: 1;
  display: grid;
  gap: 8px;
  align-content: start;
}

.novelty-img-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;

  @media (min-width: 680px) {
    font-size: 18px;
  }
}

.novelty-img-card__desc {
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  margin: 0;

  @media (min-width: 680px) {
    font-size: 14px;
  }
}

/* ── ポップアップトリガーボタン ── */
.novelty-info-triggers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px 15px 32px;
  max-width: 1680px;
  margin: 0 auto;

  @media (min-width: 1080px) {
    gap: 16px;
    padding: 24px 40px 48px;
  }
}

.novelty-info-trigger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px ;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: #1a1a1a;
  flex-direction: column;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  
  @media (min-width: 1080px) {
    flex-direction: row;
    padding: 16px 20px;
  }

  &:hover {
    border-color: #00a9e0;
    box-shadow: 0 2px 12px rgba(0, 169, 224, 0.1);

    .novelty-info-trigger-btn__plus {
      background: #00a9e0;
      border-color: #00a9e0;
      color: #fff;
    }
  }

  @media (min-width: 1080px) {
    font-size: 14px;
    padding: 18px 24px;
  }
}

.novelty-info-trigger-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #00a9e0;
}

.novelty-info-trigger-btn__label {
  flex: 1;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
@media (min-width: 1080px) {
  font-size: 16px;
  text-align: left;
}
}

.novelty-info-trigger-btn__plus {
  width: 30px;
  height: 30px;
  background: #e1f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00a9e0;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  transition: background 0.2s, border-color 0.2s;
  padding-bottom: 5px;
}

/* ── モーダル ── */
.novelty-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;

  &.is-open {
    visibility: visible;
    pointer-events: auto;

    .novelty-modal__overlay {
      opacity: 1;
    }

    .novelty-modal__panel {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
}

.novelty-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.novelty-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: min(1600px, calc(100vw - 32px));
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;

  @media (min-width: 1080px) {
    width: min(1600px, calc(100vw - 50px));
  }
}

.novelty-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 33px 10px;
  flex-shrink: 0;
}

.novelty-modal__title {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.novelty-modal__close {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.2s;
  flex-shrink: 0;

  &:hover {
    background: rgba(0, 0, 0, 0.1);
  }
}

.novelty-modal__body {
  flex: 1;
  overflow-y: auto;
  padding:20px 33px 30px; 
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
  display: grid;
  gap: 16px;
}

/* ── 納品フロー ── */
.novelty-flow__meta {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.novelty-flow__slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  gap: 12px;
  margin: 0 -24px;
  padding: 0 20px 4px;

  &::-webkit-scrollbar {
    display: none;
  }

  @media (min-width: 680px) {
    overflow-x: visible;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    justify-content: center;
    margin: 0;
    padding: 0 0 4px;
  }
}

.novelty-flow__item {
  position: relative;
  scroll-snap-align: start;
  flex: 0 0 calc(100% - 32px);
border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 35px 20px;
  display: grid;
  gap: 8px;
  align-content: start;

  @media (min-width: 680px) {
    flex: unset;
  }
}

.novelty-flow__num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #00a9e0;
  font-family: 'Mont', sans-serif;
  line-height: 1;
}

.novelty-flow__icon {
  width: 100px;
  height: 100px;
  background: rgba(0, 169, 224, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a9e0;
  justify-self: center;
  margin-bottom: 20px;

  img{
    width: 50px;
    height: 50px;
  }
}

.novelty-flow__title {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;

  @media (min-width: 1080px) {
    font-size: 18px;
  }
}

.novelty-flow__desc {
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  margin: 0;

  @media (min-width: 1080px) {
    font-size: 14px; 
  }
}

.novelty-flow__note {
  font-size: 10px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.novelty-flow__link {
  font-size: 12px;
  color: #00a9e0;
  text-decoration: none;
  font-weight: 500;

  &:hover {
    text-decoration: underline;
  }
}

/* ドットナビゲーション */
.novelty-flow__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;

  @media (min-width: 680px) {
    display: none;
  }
}

.novelty-flow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s, width 0.2s;
  border: none;
  padding: 0;
  cursor: pointer;

  &.is-active {
    background: #00a9e0;
    width: 18px;
    border-radius: 3px;
  }
}

/* sticky を有効化するため親の overflow を解除 */
.page-container:has(.novelty-ps),
.page-container:has(.novelty-ps) > * {
  overflow: visible !important;
}

.novelty-ps {
  padding: 40px 20px;
  max-width: 1680px;
  margin: 0 auto;

  @media (min-width: 1080px) {
    padding: 0px 40px 90px;
  }

  @media (max-width: 768px) {
    padding: 0;
  }
}

.novelty-ps__layout {
  display: block;
  padding-bottom: 50px;

  @media (min-width: 769px) {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 0;
  }
}

/* ── サイドバー ── */
.novelty-ps__sidebar {
  @media (max-width: 768px) {
    position: sticky;
    top: 56px;
    z-index: 20;
    background: #fff;
  }

  @media (min-width: 769px) {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }
}

/* SP strip（全て + 絞り込みトリガー） */
.novelty-ps__strip {
  display: none;

  @media (max-width: 768px) {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    &::-webkit-scrollbar {
      display: none;
    }
  }
}

.novelty-ps__strip-label {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 7px;
  margin-right: 2px;
}

/* PC filter body（SP では非表示） */
.novelty-ps__filter-body {
  @media (max-width: 768px) {
    display: none;
  }
}

.novelty-ps__sidebar-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
  color: #1a1a1a;

  @media (min-width: 1080px) {
    margin: 0 0 30px; 
  }
}

.novelty-ps__filter-group {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  &:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

.novelty-ps__filter-group-title {
  font-size: 11px;
  color: #888;
  margin: 0 0 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.novelty-ps__filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* フィルターボタン共通 */
.novelty-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: #1a1a1a;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;

  &:hover {
    border-color: #00a9e0;
    color: #00a9e0;
  }

  &.is-active {
    background: #00a9e0;
    border-color: #00a9e0;
    color: #fff;
  }
}

/* SP popup trigger */
.novelty-ps__popup-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  color: #1a1a1a;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;

  &.has-filter {
    background: #00a9e0;
    border-color: #00a9e0;
    color: #fff;
  }
}

/* ── SP popup ── */
.novelty-ps__popup {
  display: none;

  @media (max-width: 768px) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s 0.35s;

    &.is-open {
      visibility: visible;
      pointer-events: auto;
      transition-delay: 0s;

      .novelty-ps__popup-overlay {
        opacity: 1;
      }

      .novelty-ps__popup-sheet {
        transform: translateY(0);
      }
    }
  }
}

.novelty-ps__popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.novelty-ps__popup-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.novelty-ps__popup-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.15);
  margin: 12px auto 0;
  flex-shrink: 0;
}

.novelty-ps__popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.novelty-ps__popup-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.novelty-ps__popup-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  cursor: pointer;
  color: #1a1a1a;
  flex-shrink: 0;
}

.novelty-ps__popup-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.novelty-ps__popup-footer {
  padding: 14px 20px max(14px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.novelty-ps__popup-apply {
  display: block;
  width: 100%;
  padding: 13px;
  background: #00a9e0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;

  &:hover {
    opacity: 0.85;
  }
}

/* ── メインコンテンツ ── */
.novelty-ps__main {
  min-width: 0;

  @media (max-width: 768px) {
    padding: 16px 20px 0;
  }
}

.novelty-ps__meta {
  font-size: 12px;
  color: #888;
  margin: 0 0 14px;
}

.novelty-ps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;

  @media (min-width: 768px) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
}

.novelty-ps__no-results {
  padding: 40px 0;
  text-align: center;
  color: #888;
  font-size: 14px;
  display: none;
}

/* ── 下部セクション共通 ── */
.novelty-section__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;

@media (min-width: 1080px) {
  padding: 0 40px;
}
}

.novelty-section__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;

  @media (min-width: 1080px) {
    margin-bottom: 28px;
  }
}

.novelty-section__heading {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;

  @media (min-width: 1080px) {
    font-size: 24px;

  }
}

.novelty-section-flow {
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  @media (min-width: 1080px) {
    padding: 64px 0;
  }
.novelty-flow__icon{
  width: 100px;
  height: 100px;
}

.novelty-flow__item{
  align-items: center;
  text-align: center;
}

.novelty-flow__slider{
  gap: 16px;
}


}

.novelty-section-images {
  padding: 0px 0 80px;

  @media (min-width: 1080px) {
    padding: 0 0 100px;
  }

  .novelty-img-cards--section {
    flex-direction: column;
    overflow-x: visible;
    gap: 16px;
    padding: 0 20px;

    @media (min-width: 680px) {
      flex-direction: row;
      flex-wrap: wrap;
      padding: 0;
      margin-top: 15px;
    }

    .novelty-img-card {
      flex: unset;
      width: 100%;

      @media (min-width: 680px) {
        width: calc(100% - 8px);
      }
    }
  }
}

/* ── ランキング ── */
.novelty-ranking {
  padding: 20px 0 50px;
  width: 100%;

  @media (min-width: 1080px) {
    padding: 20px 0 80px;
  }

.product-card-default{
  border: none;
  padding: 20px;
}


}

.novelty-ranking__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;

  @media (min-width: 1080px) {
    padding: 0 40px;
  }
}

.novelty-ranking__title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 24px;
  color: #1a1a1a;

  @media (max-width: 768px) {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.novelty-ranking__list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  margin: 0 -24px;
  padding: 0 20px 4px;

  &::-webkit-scrollbar {
    display: none;
  }

  @media (min-width: 680px) {
    overflow-x: visible;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    margin: 0;
    padding: 0 0 4px;
  }
}

.novelty-ranking__item {
  position: relative;
  flex: 0 0 calc(20% - 13px);
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;

  @media (max-width: 679px) {
    flex: 0 0 calc((100vw - 50px) / 2);
    min-width: unset;
  }
}

.novelty-ranking__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: 'Mont', 'Noto Sans JP', sans-serif;
  line-height: 1;

  &--1 { background: #c9a227; }
  &--2 { background: #9e9e9e; }
  &--3 { background: #a0673a; }
  &--other { background: #bdbdbd; }
}
