﻿@charset "UTF-8";

/* ランキングを強制的に3列にする設定 */
.p-ranking-content .p-ranking-content__products top-ranking-products {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px 2% !important;
  width: 100% !important;
}
.p-ranking-content .p-ranking-content__products top-ranking-products > * {
  flex: 0 0 32% !important;
  max-width: 32% !important;
  width: 32% !important;
  display: block !important;
}

/* スマホ用設定 */
@media screen and (max-width: 767px) {
  .p-ranking-content .p-ranking-content__products top-ranking-products > * {
    flex: 0 0 49% !important;
    max-width: 49% !important;
    width: 49% !important;
  }
}

/* ===================================
   PC表示のみ：商品ラインナップ 画像・余白調整
   =================================== */
@media (min-width: 1024px) {
  .m-productLineHome-col2-md3 {
    gap: 16px 24px;
    justify-content: center;
  }

  .m-productLineHome-col2-md3__item {
    width: calc(25% - 18px) !important;
  }

  .m-productLineHome-col2-md3__item .c-product {
    margin: 0;
  }

  .m-productLineHome-col2-md3__item .c-product-head {
    overflow: visible;
    margin-bottom: 8px;
  }

  .m-productLineHome-col2-md3__item .c-product-head__link {
    display: block;
    transform: scale(1.0);
    transform-origin: top center;
    margin-bottom: 0;
  }
}