@charset "utf-8";

/* ==================== t-fv ファーストビュー(codely-FP) ==================== */

.t-fv {
  position: relative;
}

.t-fv__track {
  overflow: hidden;
}

.t-fv__slide {
  position: relative;
}

.t-fv__link {
  display: block;
  text-decoration: none;
}

.t-fv__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.t-fv__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 矢印 */
.t-fv__splide .splide__arrow {
  background: var(--c-dark-700-op50);
  border-radius: 0;
  width: 40px;
  height: 40px;
  top: calc(50% - 10px);
  opacity: 1;
  transition: background 0.2s;
}

.t-fv__splide .splide__arrow svg {
  fill: var(--c-white);
  width: 20px;
  height: 20px;
}

.t-fv__splide .splide__arrow--prev {
  left: 0px;
}

.t-fv__splide .splide__arrow--next {
  right: 0px;
}

/* hover */
@media (hover: hover) {
  .t-fv__link:hover .t-fv__figure img {
    transform: scale(1.04);
  }
  .t-fv__splide .splide__arrow:hover {
    background: var(--c-dark-700);
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .t-fv__splide .splide__arrow {
    width: 36px;
    height: 36px;
  }
}



/* ==================== t-rankingSection ランキング(codely-FP) ==================== */

/* 横スクロールコンテナ */
.t-rankingScroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.t-rankingScroll::-webkit-scrollbar {
  display: none;
}

/* 列並びコンテナ */
.t-rankingColumns {
  display: flex;
}

/* カテゴリー列 */
.t-rankingCol {
  flex-shrink: 0;
  position: relative;
  margin-right: var(--rankingCol-margin);
  width: var(--rankingCol-with);
}

/* カテゴリー名ヘッダー */
.t-rankingCol__header {
  text-align: center;
  border-radius: 100px;
  font-weight: 400;
  background: var(--c-white);
  white-space: nowrap;
}

/* PC */
@media screen and (min-width: 768px) {
  .t-rankingCol {
    --rankingCol-with: clamp( 150px, 18vw, 204px);
    --rankingCol-margin: var(--spc-40);
  }
  .t-rankingCol__header {
    font-size: var(--fz-14);
    padding-block: 5px;
    margin-bottom: var(--spc-30);
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .t-rankingCol {
    --rankingCol-with: 120px;
    --rankingCol-margin: var(--spc-40);
  }
  .t-rankingCol__header {
    font-size: 13px;
    padding-block: 3px;
    margin-bottom: 20px;
    letter-spacing: 0.18em;
  }
  .t-rankingScroll{
    padding-left: var(--sp-scroll-padding-left);
  }
}

/* ==================== t-newSection 新入荷アイテム(codely-FP) ==================== */

/* ==================== t-bannerSection バナー(codely-FP) ==================== */

.t-banner__link {
  display: block;
  overflow: hidden;
}

.t-banner__link img {
  transition: transform 0.4s ease;
}

/* hover */
@media (hover: hover) {
  .t-banner__link:hover {
    opacity: 1;
  }
  .t-banner__link:hover img {
    transform: scale(1.02);
  }
}

/* ==================== t-voiceSection お客様の声(codely-FP) ==================== */
.t-voiceSection .g-btnContainer {
  margin-top: 40px;
}
.t-voiceSection:not(:has(.review-container)){
  display: none;
}
/* SP */
@media screen and (max-width: 767px) {
  .t-voiceSection .g-btnContainer {
    margin-top: 30px;
  }
}

