/* ============================
   フォント：Cocoon本体のstyle.cssがbody / header / main / footer に
   個別にHiragino系フォントを指定しているため、!important で確実に固定する
============================ */
body,
header,
#main,
main,
footer,
#footer {
  font-family: "Noto Sans JP", sans-serif !important;
}
body {
  padding-top: 0;
}

.english {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.japanese {
  font-family: "Noto Sans JP", sans-serif !important;
}

.main {
  flex: 0 0 750px;
  width: 750px;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}

/* ============================
   ページネーション（Cocoon標準の四角ボタンを上書き）
   futureshopのfont/colorトーンに合わせたシンプルな数字表示
============================ */

.pagination-next {
  display: none; /* 「次のページ」ボタンは非表示（カンプに無いため） */
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  border: none;
  background: none;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #a29c8f;
  text-decoration: none;
  border-radius: 0;
  margin: 0;
}

.pagination .page-numbers.current {
  color: #363636;
  border-bottom: 1px solid #363636;
}

.pagination .page-numbers.dots {
  color: #c7c2b6;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  color: #363636;
  font-size: 14px;
}
.topFeature__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .page-numbers {
    width: 20px;
  }
}