@charset "utf-8";
/* CSS Document */

/* ==========================
   NEW ARRIVAL & RANKING 共通スライダー
========================== */
.slider02,
.top_ranking {
  display: flex;
  gap: 20px;
}

/* ==========================
   RANKING 順位番号用カウンター
========================== */
.ranking-list {
  counter-reset: ranking;
}

.ranking-list li {
  position: relative;
  counter-increment: ranking;
  padding-top: 40px;
  list-style: none;
}

.ranking-list li::before {
  content: counter(ranking);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================
   スマホ対応
========================== */
@media screen and (max-width: 768px) {
  .slider02 li,
  .ranking-list li {
    padding-top: 25px;
  }
  .ranking-list li::before {
    width: 20px;
    height: 20px;
    font-size: 1rem;
    top: 5px;
    left: 5px;
  }
}

/* ==========================
   RANKING / NEW ARRIVAL 共通設定
========================== */

/* セクション全体 */
.top-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 見出し（既存デザインに合わせ調整可能） */
.title01 {
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 550;
}

/* iframeをレスポンシブ対応に */
.iframe-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
}

.iframe-wrap iframe {
  width: 100%;
  min-height: 600px; /* PCでの高さ */
  border: none;
  display: block;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .iframe-wrap iframe {
    min-height: 900px; /* スマホでは縦に長くする */
  }
  .title01 {
    font-size: 1.8rem;
  }
}

