/* ========================================
商品一覧ページ
======================================== */

body.body-product-list{
  background:#fff !important;
}

/* 全体幅 */
body.body-product-list .wrapper--product-list{
  max-width:1500px;
  margin:0 auto;
}

/* 商品一覧エリア */
body.body-product-list .main--product-list{
  padding-top:20px;
}

/* 商品グリッド */
body.body-product-list .p-product-block ul.__product{
  gap:14px !important;
}

/* 商品カード */
body.body-product-list .p-product-block ul.__product > li.__item{
  overflow:hidden;
  padding:10px 10px 16px !important;
  border:1px solid #ececec !important;
  border-radius:10px !important;
  background:#fff !important;
  transition:.25s;
}

body.body-product-list .p-product-block ul.__product > li.__item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(0,0,0,.07);
}

/* 商品画像 */
body.body-product-list .p-product-block ul.__product > li.__item .__photo{
  overflow:hidden;
  background:#f7f7f7;
}

body.body-product-list .p-product-block ul.__product > li.__item .__photo img{
  width:100% !important;
  aspect-ratio:1 / 1;
  object-fit:cover;
  transition:.3s;
}

body.body-product-list .p-product-block ul.__product > li.__item:hover .__photo img{
  transform:scale(1.03);
}

/* 商品名 */
body.body-product-list .p-product-block ul.__product > li.__item h2.__title{
  min-height:3.4em;
  margin:10px 0 0 !important;
  font-size:13px !important;
  font-weight:500;
  line-height:1.7;
}

/* 価格・説明 */
body.body-product-list .p-product-block ul.__product > li.__item .__description{
  margin-top:7px;
  font-size:13px;
  line-height:1.7;
}

/* スマホ */
@media screen and (max-width:767px){

  body.body-product-list .main--product-list{
    padding:12px 10px 0;
  }

  body.body-product-list .p-product-block ul.__product{
    gap:8px !important;
  }

  body.body-product-list .p-product-block ul.__product > li.__item{
    padding:6px 6px 11px !important;
    border-radius:8px !important;
  }

  body.body-product-list .p-product-block ul.__product > li.__item h2.__title{
    min-height:3.2em;
    font-size:12px !important;
    line-height:1.6;
  }

  body.body-product-list .p-product-block ul.__product > li.__item .__description{
    font-size:12px;
  }
}

/* ========================================
商品一覧ページ 上部コンテンツ
======================================== */

.jt-product-top{
  margin:0 0 35px;
}

.jt-product-top__intro{
  margin-bottom:22px;
  padding:34px 30px;
  border-radius:14px;
  background:#f7f5f1;
  text-align:center;
}

.jt-product-top__intro p{
  margin:0 0 8px;
  color:#c7a04b;
  font-size:10px;
  letter-spacing:.24em;
}

.jt-product-top__intro h1{
  margin:0 0 10px;
  color:#222;
  font-size:27px;
  font-weight:500;
  letter-spacing:.05em;
}

.jt-product-top__intro span{
  color:#777;
  font-size:12px;
  line-height:1.8;
}

/* 新商品・ランキング */

.jt-product-feature{
  overflow:hidden;
  border:1px solid #e8e8e8;
  border-radius:12px;
  background:#fff;
}

.jt-product-feature__row{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:18px;
  padding:20px;
}

.jt-product-feature__row + .jt-product-feature__row{
  border-top:1px solid #ececec;
}

.jt-product-feature__heading{
  padding:12px 10px;
}

.jt-product-feature__heading p{
  margin:0;
  color:#c7a04b;
  font-size:10px;
  letter-spacing:.16em;
}

.jt-product-feature__heading h2{
  margin:7px 0 16px;
  font-size:19px;
  font-weight:600;
}

.jt-product-feature__heading a{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:#173d77;
  color:#fff;
  font-size:10px;
}

.jt-product-feature__items{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

/* 複製した商品カード */

.jt-feature-product{
  position:relative;
  min-width:0;
  list-style:none;
}

.jt-feature-product > a{
  display:block;
}

.jt-feature-product .__photo{
  overflow:hidden;
  background:#f7f7f7;
}

.jt-feature-product .__photo img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
}

.jt-feature-product h2.__title{
  min-height:3.2em;
  margin:8px 0 0 !important;
  font-size:11px !important;
  font-weight:500;
  line-height:1.6;
}

.jt-feature-product .__description{
  margin-top:4px;
  font-size:11px;
}

.jt-ranking-number{
  position:absolute;
  z-index:2;
  top:6px;
  left:6px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#173d77;
  color:#fff;
  text-align:center;
  line-height:24px;
  font-size:10px;
}

/* 人気カテゴリー */

.jt-popular-category{
  margin-top:30px;
}

.jt-popular-category h2{
  margin-bottom:16px;
  font-size:21px;
  font-weight:600;
}

.jt-popular-category__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}

.jt-popular-category__grid a{
  padding:19px 10px;
  border:1px solid #e8e4dd;
  border-radius:10px;
  background:#f8f6f2;
  text-align:center;
  transition:.25s;
}

.jt-popular-category__grid a:hover{
  transform:translateY(-2px);
  border-color:#c7a04b;
}

.jt-popular-category__grid span{
  display:block;
  color:#c7a04b;
  font-size:8px;
  letter-spacing:.12em;
}

.jt-popular-category__grid strong{
  display:block;
  margin-top:5px;
  color:#222;
  font-size:12px;
}

/* SP */

@media screen and (max-width:767px){

  .jt-product-top{
    margin:0 0 25px;
  }

  .jt-product-top__intro{
    padding:25px 15px;
    border-radius:10px;
  }

  .jt-product-top__intro h1{
    font-size:20px;
    line-height:1.6;
  }

  .jt-product-top__intro span{
    font-size:11px;
  }

  .jt-product-feature__row{
    display:block;
    padding:15px;
  }

  .jt-product-feature__heading{
    padding:0 0 14px;
  }

  .jt-product-feature__items{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .jt-popular-category__grid{
    grid-template-columns:repeat(2,1fr);
    gap:8px;
  }

  .jt-popular-category__grid a{
    padding:15px 8px;
  }
}
/* ========================================
商品一覧ページ：不要部分を非表示
======================================== */

/* おすすめ商品 */
.__block--recommend{
  display:none !important;
}

/* BRAND・REGULAR */
.cat-img{
  display:none !important;
}

/* CONTENTS */
.__block-pro-link{
  display:none !important;
}

/* 営業日カレンダー */
.__block-calendar{
  display:none !important;
}

/* Paid */
.__block-paid{
  display:none !important;
}
.__block-pro-link,
.link-content{
    display:none !important;
}
.c-heading-main{
    display:none !important;
}
.__block-pro-link h2.c-heading-main,
.__block-pro-link h2.c-heading-main::before{
    display:none !important;
}
@media screen and (max-width:767px){

  .aside{
    display:none !important;
  }

  .main--product-list{
    width:100% !important;
  }

  .wrapper--product-list{
    display:block !important;
  }

}
@media screen and (max-width:767px){

  .requestformunder{
    display:none !important;
  }

}
@media screen and (max-width:767px){

  .footer{
    margin-top:20px !important;
  }

}