@charset "UTF-8";
/**
* for type-2024 トップページ（futurerecommend2）関連 css
* sp/pc版混在
*/
/* 最新情報 */
.new-release h2 {
  color: var(--color-normal-text);
  padding: 1em 0 0.5em;
  border: 0;
  font-size: revert;
}
.new-release .fs-p-dateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.new-release .fs-p-dateList li {
  border: 0;
  padding: 0.6em 1em;
  margin: 0;
  border-bottom: 1px dashed var(--hg-color-primary);
}
.new-release .fs-p-dateList .fs-pt-list__item {
  margin-top: 0;
}
.new-release .fs-p-dateList .fs-pt-list__item .fs-pt-list__link {
  color: var(--hg-color-primary-dark);
}
.new-release .fs-p-dateList .fs-pt-list__item .fs-pt-list__link::before {
  content: "";
  background-image: url(../images/hg2024/icon_new_release.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: text-bottom;
}

/* 当店のおすすめ */
#shopRecommends {
  padding: 1em 0;
}
#shopRecommends #shopRecommendsTitle {
  color: var(--hg-color-primary);
  padding: 1em 0 0.5em;
}
#shopRecommends #shopRecommendsTitle::before {
  content: "";
  background-image: url(../images/hg2024/icon_recommend.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: text-bottom;
}
#shopRecommends .splide__track {
  margin-inline: 3em;
}
#shopRecommends .item-card a {
  border: 1px solid var(--hg-color-gray-pale);
  border-radius: 1em;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  margin: 0 0.5em 0.5em 0;
  padding: 1em;
  height: calc(100% - 0.7em);
  display: grid;
  grid-template-rows: 1fr 4em 2em;
}
#shopRecommends .item-thumbnail {
  padding: 0.5em;
  margin: auto;
}
#shopRecommends .item-thumbnail img {
  width: 100%;
  height: 100%;
}
#shopRecommends .item-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数 */
  overflow: clip;
  font-size: 90%;
}
#shopRecommends .item-price {
  font-size: 110%;
  color: var(--hg-color-accent);
  justify-self: flex-end;
}
/* /当店のおすすめ */
/* ランキング */
.top-ranking {
  counter-reset: ranking;
  padding: 2em 0;
}
.top-ranking .ranking-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0 0.2em;
}
.top-ranking .ranking-header .more-ranking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: var(--hg-color-text);
  padding-right: 2.5em;
}
.top-ranking .ranking-header .more-ranking::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.3em;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
  background-color: var(--hg-color-tertiary);
  -webkit-mask: url(../images/hg2024/icon_circle_arrow_right.svg) no-repeat center center;
  mask: url(../images/hg2024/icon_circle_arrow_right.svg) no-repeat center center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
.top-ranking h2::before {
  content: "";
  background-image: url(../images/hg2024/icon_ranking_cup.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: text-bottom;
}
.top-ranking hr {
  border: 0;
  display: block;
  width: 100%;
  height: 0.5em;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, var(--hg-color-accent) 3px, var(--hg-color-accent) 8px);
  margin-bottom: 1em;
}
.top-ranking ul {
  display: grid;
  grid-template-rows: repeat(10, 1fr);
  gap: 1em;
}
.top-ranking ul li {
  position: relative;
}
.top-ranking ul li::before {
  counter-increment: ranking;
  content: counter(ranking);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2em;
  height: 2em;
  background: #fafafa;
  text-align: center;
  line-height: 2;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.top-ranking ul li a {
  display: grid;
  grid-template-columns: 30% auto;
  grid-template-rows: repeat(2, auto);
}
.top-ranking ul li:nth-of-type(1)::before {
  background: #F4D138;
}
.top-ranking ul li:nth-of-type(2)::before {
  background: #DEDCD3;
}
.top-ranking ul li:nth-of-type(3)::before {
  background: #FFD69F;
}
.top-ranking .item-thumbnail {
  padding: 1em 1em 0 1em;
  margin: auto;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
.top-ranking .item-thumbnail img {
  width: 100%;
  height: 100%;
}
.top-ranking .item-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 制限したい行数 */
  overflow: clip;
  font-size: 90%;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-top: 1em;
}
.top-ranking .item-price {
  font-size: 110%;
  color: var(--hg-color-accent);
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  justify-self: flex-end;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
  .top-ranking ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
  }
  .top-ranking ul li a {
    display: grid;
    grid-template-rows: 1fr 5.5em 2em;
    grid-template-columns: repeat(1, 100%);
  }
  .top-ranking ul .item-thumbnail {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .top-ranking ul .item-name {
    padding: 0;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .top-ranking ul .item-price {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
}

/* /ランキング */
/* 新着商品 */
#newItems {
  padding: 1em 0;
}
#newItems #newItemsTitle {
  color: var(--hg-color-secondary);
  padding: 1em 0 0.5em;
}
#newItems .new-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0 0.2em;
}
#newItems .new-item-header .more-newitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: var(--hg-color-text);
  padding-right: 2.5em;
}
#newItems .new-item-header .more-newitem::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.3em;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
  background-color: var(--hg-color-secondary);
  -webkit-mask: url(../images/hg2024/icon_circle_arrow_right.svg) no-repeat center center;
  mask: url(../images/hg2024/icon_circle_arrow_right.svg) no-repeat center center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
#newItems .splide__track {
  margin-inline: 3em;
}
#newItems .item-card a {
  padding: 1em;
  height: calc(100% - 0.7em);
  display: grid;
  grid-template-rows: 1fr 4em 2em;
}
#newItems .item-thumbnail {
  padding: 0.5em;
  margin: auto;
}
#newItems .item-thumbnail img {
  width: 100%;
  height: 100%;
}
#newItems .item-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数 */
  overflow: clip;
  font-size: 90%;
}
#newItems .item-price {
  font-size: 110%;
  color: var(--hg-color-accent);
  justify-self: flex-end;
}
/* /新着商品 */
/* -------------- 共通 ----------------- */
.splide__pagination__page.is-active {
  background: var(--hg-color-primary);
}

.splide__pagination {
  position: relative;
  bottom: 0;
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: 0;
}