@charset "UTF-8";

/* ============================================
   トップページ共通
   ============================================ */
html:has(#fs_Top) {
  overflow-x: hidden;
}

#fs_Top {
  overflow-x: hidden;
}

#fs_Top .fs-l-main {
  margin-top: 100px;
}

@media (max-width: 900px) {
  #fs_Top .fs-l-pageMain {
    margin-top: 60px;
  }
}

/* ========================================
   ヒーロースライダー
   ======================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0 0;
}

.hero-slider__container {
  overflow: visible;
}

.hero-slider__slide {
  position: relative;
  transition: opacity 0.3s ease;
}

.hero-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.71);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-slider__slide.swiper-slide-active::after {
  opacity: 0;
}

.hero-slider__link {
  display: block;
}

.hero-slider__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-slider__pagination {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 20px;
  padding-left: calc((100% - 800px) / 2);
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 0;
  background: #d5d5d5;
  opacity: 1;
  transition: background 0.3s ease;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  background: #333;
}

@media (min-width: 1024px) {
  .hero-slider .swiper-slide {
    width: 800px;
  }
}

/* ========================================
   イントロセクション
   ======================================== */
.top-intro {
  text-align: center;
  margin: 0;
}

.top-intro__heading {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.top-intro__text {
  font-size: 14px;
  line-height: 2;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   商品カテゴリーセクション
   ======================================== */
.top-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  max-width: 800px;
  margin: auto;
}

.top-products__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.top-products__item:hover {
  opacity: 0.7;
}

.top-products__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  margin-bottom: 12px;
}

.fs-l-pageMain .top-products__image {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 6 / 7;
}

.top-products__name {
  font-size: 14px;
  background: url(../img/icon_arrow.svg) no-repeat right;
  padding-right: 20px;
}

.top-products__arrow {
  font-size: 12px;
  color: #999;
}

/* ========================================
   Pickupセクション
   ======================================== */
.top-pickup__bg {
  position: relative;
  padding: 60px 0;
}

.top-pickup__bg::before {
  content: "";
  position: absolute;
  inset: 0 -100vw 0 15%;
  background: url(../img/recent_product-04.jpg) no-repeat;
  pointer-events: none;
  z-index: -1;
  display: block;
}

.top-pickup__grid {
  display: flex;
  justify-content: space-between;
  max-width: 820px;
  margin: auto;
}

.top-pickup__item {
  width: 247px;
}

.top-pickup__card {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
  transition: opacity 0.2s ease;
}

.top-pickup__card:hover {
  opacity: 0.8;
}

.top-pickup__card-image {
  display: block;
  width: 100%;
  height: auto;
}

.top-pickup__card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.top-pickup__card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.84px;
}

.top-pickup__card-sub {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.84px;
}

.top-pickup__text {
  font-size: 14px;
  line-height: 1.5;
}

/* ========================================
   Supportセクション
   ======================================== */

.top-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 33px;
}

.top-support__card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.top-support__card:hover {
  opacity: 0.8;
}

.top-support__card-image {
  display: block;
  width: 100%;
  height: auto;
}

.top-support__card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 27px;
}

.top-support__card-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.9px;
}

.top-support__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ========================================
   Rankingセクション
   ======================================== */

.top-ranking__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.top-ranking__tabs {
  display: flex;
  width: 820px;
}

.top-ranking__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 47px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.top-ranking__tab:hover {
  background: #f5f5f5;
}

.top-ranking__tab--active {
  font-weight: 500;
  color: #fff;
  background: #696969;
  border-bottom-color: #696969;
}

.top-ranking__tab--active:hover {
  background: #696969;
}

.top-ranking__panel {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.top-ranking__panel--hidden {
  display: none;
}

.top-ranking__grid {
  display: flex;
  gap: 70px;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
  list-style: none;
  padding: 0;
}

.top-ranking__grid::-webkit-scrollbar {
  display: none;
}

.top-ranking__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 190px;
  width: 190px;
}

.top-ranking__product {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 190px;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.top-ranking__product:hover {
  opacity: 0.7;
}

.top-ranking__product-image-wrap {
  width: 190px;
  height: 190px;
}

.fs-l-pageMain .top-ranking__product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-ranking__product-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.top-ranking__product-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.top-ranking__product-price {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  text-align: right;
}

.top-ranking__more-btn {
  justify-content: space-between;
  padding: 0 10px 0 24px;
  transition: background 0.2s ease;
}

.top-ranking__more-btn:hover {
  background: #f5f5f5;
}

.top-ranking__more-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--color-text);
  border-right: 1.5px solid var(--color-text);
  transform: rotate(45deg);
}

/* ===================================
   Shopping Guide セクション
   =================================== */
.top-guide {
  background-color: var(--color-bg-gray);
  padding: 70px 0;
}

.top-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  gap: 50px 30px;
  justify-content: center;
  padding: 0 10px;
}

.top-guide__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-guide__icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.top-guide__icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-guide__card-title {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.9px;
  line-height: 1.8;
  margin-top: 17px;
  margin-bottom: 9px;
}

.top-guide__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}

.top-guide__card-item::before {
  content: "・";
}

.top-guide__card-contents {
  margin-bottom: 10px;
}

.top-guide__card-desc {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

.top-guide__dl {
  margin: 0 0 5px;
}

.top-guide__dl-term {
  font-weight: 400;
}

.top-guide__dl-desc {
  margin: 0;
  padding-left: 10px;
}

.top-guide__card-link {
  width: 120px;
  padding-left: 6px;
  padding-right: 4px;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.5;
  align-self: end;
}

/* ===================================
   CTA（メルマガ・レビュー）セクション
   =================================== */
.top-cta {
  background-color: #7f7f7f;
  padding: 40px 20px;
  margin: 0;
}

.top-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 20px;
  justify-content: center;
}

.top-cta__card {
  min-height: 220px;
}

.top-cta__card--newsletter {
  background-color: #f5f5f5;
}

.top-cta__card--review {
  background-image: url("../img/cta_review-bg.png");
  background-size: cover;
  background-position: center;
}

.top-cta__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px 25px;
  height: 100%;
}

.top-cta__desc {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  line-height: 1.77;
  margin-top: 12px;
}

.newsletter-form {
  display: contents;
}

.top-cta__input {
  display: block;
  width: 100%;
  height: 30px;
  border: 1px solid #acacac;
  background: #fff;
  margin: 10px 0 0;
  padding: 0 13px;
  font-family: var(--font-base);
  font-size: 12px;
  color: var(--color-text);
}

.top-cta__input::placeholder {
  color: #bababa;
}

.top-cta__link {
  width: 175px;
  padding-left: 4px;
  padding-right: 4px;
  font-family: var(--font-heading), var(--font-base);
  margin-top: 10px;
}

button.link-arrow {
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #c8c8c8;
}

.top-cta__review-body {
  text-align: center;
  margin-top: 15px;
}

.top-cta__review-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.top-cta__review-point {
  margin: 0;
  line-height: 1;
}

.top-cta__review-num {
  font-family: var(--font-accent);
  font-size: 49px;
  color: #838383;
}

.top-cta__review-pt {
  font-family: var(--font-accent);
  font-size: 38px;
  color: #838383;
}

.top-cta__review-present {
  font-weight: 400;
  font-size: 16px;
  margin-left: 4px;
}

/* ===================================
   News セクション
   =================================== */

.top-news__list {
  max-width: 750px;
  margin: 0 auto;
}

.top-news__item {
  display: flex;
  align-items: center;
  padding: 15px 35px 15px 5px;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: var(--color-text);
  position: relative;
}

.top-news__date {
  font-family: var(--font-accent);
  font-size: 16px;
  color: #7e7e7e;
  line-height: normal;
  white-space: nowrap;
  width: 110px;
  flex-shrink: 0;
}

.top-news__title {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 1.7;
}

.top-news__item::after {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  position: absolute;
  right: 17px;
  background: url(../img/icon_arrow.svg) no-repeat center;
}

/* ===================================
   Sports & Events セクション
   =================================== */

.top-sports__desc {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 26px;
}

.top-sports__content {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

/* カテゴリー見出し */
.top-sports__category-heading {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-bottom: 27px;
}

.top-sports__category-heading--small {
  margin-bottom: 25px;
}

.top-sports__category-en {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: #b2b2b2;
}

.top-sports__category-heading--small .top-sports__category-en {
  font-size: 27px;
}

.top-sports__category-ja {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.65px;
}

/* メイングリッド（Sports） */
.top-sports__grid--main {
  display: flex;
  gap: 30px;
}

.top-sports__card--large {
  flex: 490 1 0%;
  min-width: 0;
  aspect-ratio: 490 / 350;
}

.top-sports__grid-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 300 1 0%;
  min-width: 0;
}

/* カード共通 */
.top-sports__card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.top-sports__card:hover {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.top-sports__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-sports__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.top-sports__card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

/* カード内テキスト */
.top-sports__card-en {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.14px;
}

.top-sports__card-en--large {
  font-size: 59px;
  letter-spacing: 1.77px;
}

.top-sports__card-ja {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 1.4px;
}

.top-sports__card-ja--large {
  font-size: 17px;
  letter-spacing: 1.7px;
}

/* カードサイズ */
.top-sports__card--small {
  width: 100%;
  aspect-ratio: 300 / 160;
}

.top-sports__card--wide {
  width: 100%;
  aspect-ratio: 395 / 140;
}

.top-sports__card--wide .top-sports__card-overlay {
  background: rgba(0, 0, 0, 0.38);
}

/* 下段レイアウト */
.top-sports__row {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.top-sports__category--half {
  flex: 1 1 0%;
  min-width: 0;
}

/* ===================================
   CTAカード 3カラムセクション
   =================================== */

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 20px;
  justify-content: center;
}

.promo-cards__card {
  width: 100%;
  /* height: 100%; */
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
}

.promo-cards__card--sns {
  background-color: #f5f5f5;
  gap: 9px;
}

.promo-cards__card--newsletter {
  background-color: #f5f5f5;
}

.promo-cards__card--review {
  background-image: url("../img/cta_review-bg.png");
  background-size: cover;
  background-position: center;
}

.promo-cards__desc {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  line-height: 1.77;
  margin: 12px 0 0;
}

.promo-cards__desc--sns {
  margin-top: 0;
}

.promo-cards__input {
  display: block;
  width: 100%;
  height: 30px;
  border: 1px solid #acacac !important;
  background: #fff;
  margin-top: 14px;
  padding: 0 13px;
  font-family: var(--font-base);
  font-size: 12px;
  color: var(--color-text);
  box-shadow: none !important;
}

.promo-cards__input::placeholder {
  color: #bababa;
}

.promo-cards__link {
  width: 175px;
  padding-left: 4px;
  padding-right: 4px;
  font-family: var(--font-heading), var(--font-base);
  margin-top: 10px;
}

.promo-cards__sns-icons {
  display: flex;
  gap: 7px;
  align-items: center;
}

.promo-cards__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  background: #fff;
  border-radius: 50%;
  text-decoration: none;
}

.promo-cards__sns-icon-image {
  display: block;
  object-fit: contain;
}

.promo-cards__review-body {
  text-align: center;
  margin-top: 15px;
}

.promo-cards__review-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.promo-cards__review-point {
  margin: 0;
  line-height: 1;
}

.promo-cards__review-num {
  font-family: var(--font-accent);
  font-size: 49px;
  color: #838383;
}

.promo-cards__review-pt {
  font-family: var(--font-accent);
  font-size: 38px;
  color: #838383;
}

.promo-cards__review-present {
  font-weight: 400;
  font-size: 16px;
  margin-left: 4px;
}

/* ===================================
   特徴アイコン 5列
   =================================== */

@media (min-width: 901px) {
  .features {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-top: 20px;
  }
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 206px;
  height: 170px;
  padding: 20px 38px;
  background: #fff;
  text-decoration: none;
  color: var(--color-text);
  gap: 9px;
}

.features__icon {
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features__icon-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.features__name {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading), var(--font-base);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.28px;
  white-space: nowrap;
}

.features__name {
  white-space: nowrap;
  background: url(../img/icon_arrow.svg) no-repeat right;
  padding-right: 20px;
}

/* ===================================
   お支払い・配送情報セクション
   =================================== */
.shipping {
  background-color: #f5f5f5;
  padding: 70px 0;
}

.shipping__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  gap: 60px;
}

/* --- 左カラム: お支払い方法 --- */
.shipping__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.shipping__item + .shipping__item {
  margin-top: 20px;
}

/* --- 右カラム: 送料・配送 --- */
.shipping__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- 共通タイトル --- */
.shipping__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  margin: 0 0 14px;
}

/* --- 共通テキスト --- */
.shipping__text-label {
  font-size: 14px;
}

.shipping__text {
  font-size: 12px;
}

.shipping__text-paragraph {
  margin: 0 0 13px;
}

.shipping__text-paragraph:last-child {
  margin-bottom: 0;
}

/* --- 配送ブロック --- */
.shipping__block {
  display: flex;
  flex-direction: column;
}

/* クレジットカードロゴ */
.shipping__card-logos {
  margin-top: 12px;
}

.shipping__card-logos img {
  max-width: 100%;
  height: auto;
}

/* 銀行振込情報 */
.shipping__bank-info {
  margin-top: 10px;
}

.shipping__bank-info-title {
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-bottom: none;
}

.shipping__bank-table {
  display: flex;
  border: 1px solid var(--color-border);
}

.shipping__bank-col {
  flex: 1;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.7;
}

.shipping__bank-col + .shipping__bank-col {
  border-left: 1px solid var(--color-border);
}

.shipping__bank-col-heading {
  margin: 0 0 4px;
}

.shipping__bank-col-text {
  margin: 0;
}

/* 決済ロゴ + テキスト横並び */
.shipping__payment-logo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 10px;
}

.shipping__payment-logo {
  flex-shrink: 0;
}

/* --- 時間帯アイコン --- */
.shipping__time-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}

.shipping__time-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.shipping__time-img {
  width: 70px;
  height: 70px;
}

.shipping__time-label {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.24px;
  line-height: 1.81;
  text-align: center;
}

/* --- 地図エリア --- */
.shipping__map-area {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: space-between;
}

.shipping__map {
  padding-top: 10px;
  flex-shrink: 0;
}

.shipping__map-image {
  width: 214px;
  height: 211px;
}

.shipping__map-legend {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shipping__legend-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shipping__legend-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping__legend-color {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.shipping__legend-color--dark {
  background-color: #7c7979;
}

.shipping__legend-color--light {
  background-color: #bebebe;
}

.shipping__legend-title {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 1.81;
}

.shipping__legend-text {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin: 0;
}

.shipping__legend-note {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin: 0;
}

/* ===================================
   Staff Snap セクション
   =================================== */

.top-staff-snap__grid {
  display: flex;
  justify-content: space-between;
  width: 820px;
  margin: 0 auto;
}

.top-staff-snap__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.top-staff-snap__img {
  width: 180px;
  height: 230px;
  overflow: hidden;
}

.top-staff-snap__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-staff-snap__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  width: 170px;
  margin: 0;
}

.top-staff-snap__more {
  position: relative;
  margin: 50px auto 0;
  transition: opacity 0.3s;
}

.top-staff-snap__more:hover {
  opacity: 0.7;
}

.top-staff-snap__more-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.top-staff-snap__more-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 14px;
}

/* ===================================
   Recently Viewed セクション
   =================================== */

.top-recent__grid {
  display: grid;
  grid-template-columns: repeat(5, 150px);
  justify-content: center;
  gap: 31px 20px;
}

.top-recent__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text);
}

.top-recent__image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.top-recent__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.top-recent__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.top-recent__price {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

/* ===================================
   タブレット対応: 固定幅要素のfluid化（1200px以下）
   =================================== */
@media (max-width: 1200px) {
  /* --- Ranking --- */
  .top-ranking__tabs {
    width: 100%;
  }

  .top-ranking__grid {
    gap: 30px;
  }

  /* --- Pickup --- */
  .top-pickup__grid {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .top-pickup__item {
    width: calc(33.333% - 14px);
    min-width: 200px;
  }

  /* --- Staff Snap --- */
  .top-staff-snap__grid {
    width: 100%;
    gap: 15px;
  }

  .top-staff-snap__img {
    width: 100%;
    height: auto;
    aspect-ratio: 180 / 230;
  }

  .top-staff-snap__text {
    width: 100%;
  }

  /* --- Recently Viewed --- */
  .top-recent__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }

  .top-recent__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

/* ===================================
   モバイルレスポンシブ: 並び順変更（900px以下）
   =================================== */

@media (max-width: 900px) {
  /* --- レイアウトフラット化 ---
       display:contents で入れ子構造を解除し、
       .fs-l-page を単一の flex コンテナにする */
  #fs_Top .fs-l-page {
    display: flex;
    flex-direction: column;
  }

  #fs_Top .fs-l-main,
  #fs_Top .fs-l-pageMain,
  #fs_Top .sec-promo,
  #fs_Top .sec-promo__inner,
  #fs_Top .sec-promo .promo-cards {
    display: contents;
  }

  /* --- 並び順指定 --- */
  #fs_Top .header {
    order: 1;
  }

  #fs_Top .header__notice {
    order: 1;
  }

  #fs_Top .hero-slider {
    order: 2;
  }

  #fs_Top .top-intro {
    order: 3;
  }

  #fs_Top .top-recent__sp-order4 {
    order: 4;
  }

  #fs_Top .fs-l-pageSub {
    order: 5;
    display: block;
    width: 100%;
    max-width: 100%;
  }

  #fs_Top .top-support {
    order: 6;
  }

  #fs_Top .top-pickup {
    order: 7;
  }

  #fs_Top .top-ranking {
    order: 8;
  }

  #fs_Top .top-staff-snap {
    order: 9;
  }

  #fs_Top #top-case-studies {
    order: 10;
  }

  #fs_Top .top-recent {
    order: 11;
  }

  #fs_Top .top-guide {
    order: 12;
  }

  #fs_Top .top-guide--sp {
    order: 12;
  }

  #fs_Top .top-cta {
    order: 13;
  }

  #fs_Top .top-news {
    order: 14;
  }

  #fs_Top .features {
    order: 15;
  }

  #fs_Top .contact {
    order: 16;
  }

  #fs_Top .sec-promo .promo-cards__card--sns {
    order: 17;
  }

  #fs_Top .site-footer {
    order: 18;
  }

  /* sec-promo内のvisually-hidden見出しも非表示 */
  .sec-promo > .visually-hidden {
    display: none;
  }

  /* --- ヒーロースライダー SP --- */
  .hero-slider {
    padding: 0;
  }

  .hero-slider__slide::after {
    display: none;
  }

  .hero-slider__image {
    object-fit: cover;
  }

  .hero-slider__pagination {
    padding-left: 15px;
    margin-top: 13px;
  }

  .hero-slider__pagination .swiper-pagination-bullet {
    width: 42px;
    height: 2px;
  }

  /* --- スタッフスナップ SP --- */
  .top-staff-snap__grid {
    width: 100%;
  }

  .top-staff-snap__img {
    width: 100%;
    height: auto;
    aspect-ratio: 180 / 230;
  }

  .top-staff-snap__text {
    width: 100%;
  }

  /* --- 閲覧履歴 SP --- */
  .top-recent__grid {
    display: flex;
    grid-template-columns: none;
  }

  /* --- トップセクション共通 SP --- */
  .section {
    margin: 60px 0 0;
  }

  #fs_Top .fs-l-main {
    margin-top: 0;
  }

  /* --- イントロ SP --- */

  .top-intro__heading {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .top-intro__text {
    font-size: 14px;
    line-height: 1.8;
  }

  /* --- Ranking SP --- */

  .top-ranking__content {
    gap: 20px;
  }

  .top-ranking__tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px;
  }

  .top-ranking__tabs::-webkit-scrollbar {
    display: none;
  }

  .top-ranking__tab {
    min-width: 100px;
    width: auto;
    flex-shrink: 0;
    height: 40px;
    font-size: 12px;
    padding: 0 12px;
  }

  .top-ranking__panel {
    padding: 0;
  }

  .top-ranking__grid {
    gap: 15px;
  }

  .top-ranking__item {
    min-width: 150px;
    width: 150px;
    gap: 15px;
  }

  .top-ranking__product {
    width: 150px;
    gap: 10px;
  }

  .top-ranking__product-image-wrap {
    width: 150px;
    height: 150px;
  }

  .top-ranking__product-name {
    font-size: 14px;
  }

  .top-ranking__product-price {
    font-size: 12px;
  }

  /* --- Sports & Events SP (pc-only削除でなく非表示のまま) --- */

  /* --- Promo Cards SP --- */
  #fs_Top .sec-promo .promo-cards__card {
    margin: 40px 20px 0;
    width: calc(100vw - 40px);
  }

  .sec-promo .promo-cards {
    display: block;
  }

  .sec-promo .promo-cards__card {
    height: auto;
    padding: 25px 15px;
    margin: 0;
    width: 100%;
  }

  .sec-promo .promo-cards__card--newsletter,
  .sec-promo .promo-cards__card--review {
    display: none;
  }

  /* --- Staff Snap SP 追加 --- */
  .top-staff-snap .btn-wrap {
    padding: 0 15px;
  }

  /* --- Recently Viewed SP 追加 --- */

  #fs_Top .features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 60px 20px 0;
  }

  .features__item {
    width: calc((100% - 10px) / 2);
    padding: 10px;
    background: #f4f5f7;
    height: auto;
  }

  .features__item--support {
    width: 100%;
  }

  .features__icon {
    width: 80px;
    height: 60px;
  }

  .features__name {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .top-support__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* メインカード（初めてのお客様）: 3列ぶち抜き */
  .top-support__card--main {
    grid-column: 1 / -1;
  }

  .top-support__card--main .top-support__card-body {
    padding: 15px 20px;
    gap: 5px;
  }

  .top-support__card--main .top-support__card-title {
    font-size: 16px;
  }

  .top-support__card--main .top-support__card-text {
    font-size: 12px;
  }

  /* サブカード（残り3つ）: 画像非表示、アイコン表示 */
  .top-support__card--sub .top-support__card-image {
    display: none;
  }

  .top-support__card--sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background: #f5f5f5;
    gap: 5px;
  }

  .top-support__card-icon {
    margin-bottom: 5px;
  }

  .top-support__card--sub .top-support__card-body {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 0;
  }

  .top-support__card--sub .top-support__card-title {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  /* SP並び順: よくある質問 → ご注文方法 → 会員登録 */
  .top-support__card--order {
    order: 1;
  }

  .top-support__card--qa {
    order: 2;
  }

  .top-support__card--registration {
    order: 3;
  }

  /* --- Pickup SP --- */

  .top-pickup__bg {
    padding: 30px 0;
    overflow: hidden;
  }

  .top-pickup__grid {
    flex-direction: column;
  }

  .top-pickup__item {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: center;
  }

  .top-pickup__card {
    margin-bottom: 0;
  }

  .top-pickup__text {
    font-size: 12px;
  }

  .top-pickup__card-title {
    display: none;
  }

  .top-pickup__card-sub {
    font-size: 16px;
  }

  /* --- Shopping Guide --- */

  .top-guide {
    background-color: unset;
    padding: unset;
  }

  .top-guide--sp {
    padding: 40px 15px;
  }

  .top-guide-sp__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .top-guide-sp__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 30px 10px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-text);
    background-image: url(../img/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    color: var(--color-text) !important;
  }

  .top-guide-sp__card-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }

  .top-guide-sp__card-arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #999;
    border-right: 1.5px solid #999;
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  /* --- CTA SP --- */
  .top-cta {
    padding: 30px 15px;
  }

  .top-cta__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .top-cta__card {
    min-height: auto;
  }

  .top-cta__card-inner {
    padding: 20px 15px;
  }

  /* --- News SP --- */

  .top-news__date {
    font-size: 14px;
  }

  .top-news__title {
    font-size: 14px;
  }
}

/* =============================================
   top-recent__grid: SPスタイル（メニュー内 常時適用）
   ※ @media(max-width:900px) の top-recent SP と同内容
   ============================================= */
#sp-fixed-footer-menu .top-recent__grid {
  display: flex;
  grid-template-columns: none;
}
