@charset "utf-8";
/* PICK UP */
.g-pickup__banner{
  display: grid;
}
@media screen and (min-width: 768px){
  .g-pickup__banner{
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .g-pickup__banner{
    gap: 15px;
  }
}

/*  --- PRODUCT - オリジナル商品 ---  */
@media screen and (min-width: 768px){
  .g-product + .g-product{
    margin-top: var(--spc-100);
  }
}
@media screen and (max-width: 767px){
  .g-product + .g-product{
    margin-top: 100px;
  }
}
/* ボタン */
@media screen and (min-width: 768px){
  .g-productButton{
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px){
  .g-product{
    position: relative;
    padding-bottom: 80px;
  }
  .g-productButton{
    position: absolute;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
  }
}

/* 商品説明 */
@media screen and (min-width: 768px){
  .g-productExplanation{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: var(--spc-70);
  }
  .g-productExplanation__hd{
    font-size: var(--fz-28);
    margin-bottom: 18px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: 0.2em;
  }
  .g-productExplanation__text{
    font-size: var(--fz-17);
    line-height: 2.1;
  }
}
@media screen and (max-width: 767px){
  .g-productExplanation__body{
    margin: 30px 40px 35px;
  }
  .g-productExplanation__hd{
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 0.15em;
  }
  .g-productExplanation__text{
    font-size: 15px;
    letter-spacing: 0.15em;
  }
}

/* --- ランキング --- */
/* ランキングの数字 */
.g-productRkItem > li{
  counter-increment: original-counter;
}
.g-productRkItem a::before{
  content: "";
  top: 0;
  left: 0;
  border-bottom: 70px solid transparent;
  border-left: 70px solid var(--ranking-c-other);
  position: absolute;
  z-index: 10;
}
.g-productRkItem a::after{
  content: ''counter(original-counter);
  position: absolute;
  top: 12px;
  color: #fff;
  left: 14px;
  font-family: var(--ff-en);
  font-size: 20px;
  z-index: 11;
  line-height: 1;
  letter-spacing: 0em;
}
.g-productRkItem > li:nth-of-type(1) a::before{
  border-left: 70px solid var(--ranking-c-1st);
}
.g-productRkItem > li:nth-of-type(2) a::before{
  border-left: 70px solid var(--ranking-c-2nd);
}
.g-productRkItem > li:nth-of-type(3) a::before{
  border-left: 70px solid var(--ranking-c-3rd);
}

.g-productRkHd{
  font-family: var(--ff-en);
  letter-spacing: 0.2em;
}

.g-productRkItem a{
  display: block;
  position: relative;
}
.g-productRkItem__name{
  text-align: center;
  font-weight: 500;
  line-height: 1.7;
}
.g-productRkItem__price{
  text-align: center;
}
@media screen and (min-width: 768px){
  .g-productRk{
    background: var(--c-gray-400);
    padding-block: var(--spc-100);
    margin-top: calc(-1*var(--spc-50));
  }
  .g-productRk__inner{
    display: grid;
    grid-template-columns: 20% 1fr;
    align-items: center;
    gap: var(--spc-20);
  }
  .g-productRkHd{
    line-height: 1.2;
  }
  .g-productRkHd__name{
    color: var(--c-gray-500);
    font-size: clamp( 25px, 2.431vw, 35px);
    font-weight: bold;
  }
  .g-productRkHd__series,
  .g-productRkHd__ranking{
    font-size: var(--fz-20);
    color: #000;
  }
  .g-productRkItem--three{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--spc-25);
  }
  .g-productRkItem__name{
    margin-top: 10px;
    font-size: var(--fz-15);
  }
  .g-productRkItem__price{
    font-size: var(--fz-14);
  }
}
@media screen and (max-width: 767px){
  .g-productRkHd{
    margin-bottom: 10px;
  }
  .g-productRkHd__inner{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--c-gray-500);
    font-size: 16px;
    letter-spacing: 0.28em;
  }
  .g-productRkHd__series{
    text-transform: lowercase;
  }
  .g-productRkHd__ranking{
    font-size: 25px;
    text-align: center;
    line-height: 1.2;
  }

  .g-productRkItem--three{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    width: 100%;
  }
  .g-productRkItem--three li:first-child{
    grid-column: span 2;
  }
  .g-productRkItem__name{
    margin-top: 10px;
    font-size: 15px;
  }
  .g-productRkItem__price{
    font-size: 14px;
    margin-top: 2px;
  }
}

/* --- お悩みから探す --- */
.g-trouble__list{
  display: grid;
}
.g-trouble__list a{
  display: block;
  position: relative;
}
.g-trouble__list a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.g-trouble__text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  color: white;
  z-index: 2;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px){
  .g-trouble__list{
    grid-template-columns: repeat(5,1fr);
    gap: var(--spc-20);
  }
  .g-trouble__text{
    font-size: var(--fz-16);
  }
}
@media screen and (max-width: 767px){
  .g-trouble__list{
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
  }
  .g-trouble__text{
    font-size: 16px;
    width: 90%;
  }
}

/* --- EDITORS PICK --- */
.g-editors__list{
  display: grid;
}
.g-editors__name{
  font-weight: bold;
}
.g-editors__img img{
  border-radius: 50%;
}
.g-editors__text{
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px){
  .g-editors__list{
    grid-template-columns: repeat(3,1fr);
    gap: var(--spc-65);
  }
  .g-editors__list > li{
    position: relative;
  }
  .g-editors__list > li:not(:nth-child(3n))::before{
    content: "";
    display: inline-block;
    background: #ccc;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: calc((-1 * var(--spc-65)) / 2);
  }
  .g-editors__box{
    display: grid;
    align-items: end;
    grid-template-columns: 7fr 3fr;
    gap: 10px;
    margin-block: 15px 20px;
  }
  .g-editors__name{
    font-size: var(--fz-16);
  }
  .g-editors__text{
    font-size: var(--fz-15);
  }
}
@media screen and (max-width: 767px){
  .g-editors__list{
    gap: 50px;
  }
  .g-editors__box{
    display: grid;
    align-items: end;
    grid-template-columns: 75fr 25fr;
    gap: 10px;
    margin: 20px 20px 15px;
  }
  .g-editors__name{
    font-size: 16px;
  }
  .g-editors__text{
    font-size: 15px;
    margin-inline: 20px;
  }
}


/* --- カテゴリー --- */
.g-cate{
  background: var(--c-green-400);
}
.g-cateList{
  display: grid;
}
.g-cateList img{
  border-radius: 50%;
  margin-bottom: 10px;
}
.g-cateList__name{
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px){
  .g-cateList{
    grid-template-columns: repeat(6,1fr);
    gap: var(--spc-25);
  }
  .g-cateList__name{
    font-size: var(--fz-15);
  }
}
@media screen and (max-width: 767px){
  .g-cateList{
    grid-template-columns: repeat(3,1fr);
    gap: 20px 8px;
  }
  .g-cateList__name{
    font-size: 13px;
  }
}

/* --- 総合ランキング --- */
.g-rankingAll__item{
  display: grid;
}
.g-rankingAll__item .g-productRkItem__name{
  font-weight: bold;
}
.g-rankingAll__item li:nth-child(n+16) {
  display: none;
}
@media screen and (min-width: 768px){
  .g-rankingAll__item{
    grid-template-columns: repeat(5,1fr);
    gap: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .g-rankingAll__item{
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
  }
  .g-rankingAll__item li:first-child{
    grid-column: span 2;
  }
}

/* --- TOPICS --- */
.g-topicks{
  background: var(--c-gray-400);
}
.g-topicks__tag{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.g-topicks__tag a{
  display: inline-block;
  padding: 5px 8px;
  border-radius: 5px;
  background-color: #dddddd;
}
@media screen and (min-width: 768px){
  .g-topicks__list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--spc-30) var(--spc-35);
  }
  .g-topicks__text{
    margin-top: 10px;
    font-size: var(--fz-15);
  }

  .g-topicks__tag{
    width: 55%;
    margin-inline: auto;
  }
  .g-topicks__tag a{
    font-size: var(--fz-15);
  }
}
@media screen and (max-width: 767px){
  .g-topicks__list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
  }
  .g-topicks__text{
    margin-top: 10px;
    font-size: 15px;
  }

  .g-topicks__tag{
    margin-top: 30px;
  }
  .g-topicks__tag a{
    font-size: 15px;
  }
}


/* --- BRAND NEWS --- */
.g-brandNews__text{
  font-weight: bold;
}
@media screen and (min-width: 768px){
  .g-brandNews__list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: var(--spc-20);
  }
  .g-brandNews__text{
    margin-top: 10px;
    font-size: var(--fz-15);
  }
}
@media screen and (max-width: 767px){
  .g-brandNews__list li:nth-child(n+2){
    display: none;
  }
  .g-brandNews__text{
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
  }
}


/* ========================================
g-userVoice
======================================== */
/* ----- スライダーラッパー ----- */
.g-userVoice__slider {
    position: relative;
}

/* Splideデフォルトの矢印スタイルを打ち消す（共通） */
.g-userVoice .splide__arrow {
    background: transparent;
    border-radius: 0;
    opacity: 1;
    width: auto;
    height: auto;
    top: auto;
    transform: none;
}


@media screen and (min-width: 768px){
  .g-userVoice__arrow{
    content: "";
    cursor: pointer;
    display: block;
    width: 25px !important;
    height: 25px !important;
    position: absolute;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    top: 50% !important;
    z-index: 10;
  }
  .splide__arrow--prev{
    left: -4%;
    transform: translateY(-50%) rotate(-135deg) !important;
  }
  .splide__arrow--next{
    right: -4%;
    transform: translateY(-50%) rotate(45deg) !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px){
  .g-userVoice .g-inner--s--pc{
    width: 85%;
  }
}

.g-userVoice .splide__arrow svg {
  display: none;
}

/* ----- カード ----- */
.g-userVoice__item {
    height: auto;
}

.g-userVoice__card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.g-userVoice__imageWrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 22px;
}

.g-userVoice__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.g-userVoice__cardTitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.5;
}

.g-userVoice__product {
    font-size: 14px;
    margin: 0 0 6px;
    line-height: 1.5;
}

.g-userVoice__rating {
    color: #C78D2F;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin: 0 0 9px;
}

.g-userVoice__description {
    font-size: var(--fz-15);
    line-height: 1.8;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.15em;
}

/* ========================================
   SP
======================================== */
@media screen and (max-width: 767px) {
    .g-userVoice__slider {
        padding: 0;
    }


    /* SPカード：白背景にする */
    .g-userVoice__card {
        background-color: #fff;
        padding: 0 0 20px;
    }

    .g-userVoice__imageWrap {
        aspect-ratio: 1 / 1;
        margin-bottom: 16px;
    }

    .g-userVoice__cardTitle {
        font-size: 16px;
    }

    .g-userVoice__description {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }
}


/* --- お知らせ --- */
.g-brandNotice__list > li::after{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.4px solid #1b1b1b;
  border-right: 1.4px solid #1b1b1b;
  transform: rotate(45deg);
}
.g-brandNotice__list a{
  display: block;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px){
  .g-brandNotice{
    background: var(--c-gray-400);
    padding: var(--spc-100);
  }
  .g-brandNotice .g-headingContainer{
    margin-bottom: 0;
  }
  .g-brandNotice__inner{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spc-30);
    align-items: center;
  }

  .g-brandNotice__list{
    display: grid;
    gap: 22px;
  }
  .g-brandNotice__list > li{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
  }
  .g-brandNotice__list time{
    font-size: var(--fz-13);
    padding-right: var(--spc-20);
  }
  .g-brandNotice__list h3{
    flex: 1;
  }
  .g-brandNotice__list > li::after{
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px){
  .g-brandNotice{
    background: var(--c-gray-400);
    padding-block: 100px;
  }

  .g-brandNotice__list{
    display: grid;
    gap: 22px;
  }
  .g-brandNotice__list > li{
    position: relative;
  }
  .g-brandNotice__list time{
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
  }
  .g-brandNotice__list a{
    font-size: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid #000;
    padding-right: 10px;
  }
  .g-brandNotice__list > li::after{
    position: absolute;
    right: 0;
    bottom: 21px;
  }
}

/* --- WITH hinna --- */
.g-hinna__list{
  display: grid;
}
@media screen and (min-width: 768px){
  .g-hinna__list{
    grid-template-columns: repeat(7,1fr);
    gap: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .g-hinna__list{
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
  }
}

/* --- g-aboutUs --- */
.g-aboutUs{
  position: relative;
  background: url(../images/common/hinnaaboutus_backgroundimage.jpg) no-repeat center center / cover;
}
.g-aboutUs::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.g-aboutUs__inner{
  position: relative;
  z-index: 2;
}
.g-aboutUs :is(.g-heading__en, .g-heading__ja){
  color: #fff;
}
.g-aboutUs__text{
  text-align: center;
  color: var(--c-white);
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px){
  .g-aboutUs__text{
    font-size: var(--fz-15);
    line-height: 1.8;
  }
  .g-aboutUs__text p + p{
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px){
  .g-aboutUs__text{
    font-size: 15px;
    line-height: 1.8;
  }
  .g-aboutUs__text p + p{
    margin-top: 20px;
  }
}

/* 調整用 */
.fs-c-breadcrumb > .fs-c-breadcrumb__list--subgroup:nth-child(n+2){
  display: none;
}