/* 印刷用CSS */

body {
	-webkit-print-color-adjust: exact;
  width: 100%;
}

.sp{
  display: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500&display=swap');

h1{
  font-weight: 500;
  font-size:24px;
}

h2{
  font-weight: 400;
  font-size:20px;
}

* + h2{
  margin-top: 16px;
}

h3{
  font-weight: 400;
  font-size:18px;
}

html,
body {
  position: relative;
  height: 100%;
  color: #202020;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  background-color: #fafafa;
}

a{
  text-decoration: none;
  color:rgb(5,5,5);
}

/* 印刷時表示しない */

header,
#mainvisual,
.follow-button,
.follow-button + p,
#chatnote,
.PresentSwiper.swiper-container,
#lead h2,
#lead img,
.PickupSwiper.swiper-container,
#search,
.product-caegory,
#tab,
#obotai-chatbot-container,
.obotai-chatbot-controller,
.bot-popover,
.wc-bot-icon,
.wc-bot-text{
  display: none !important;
}

/* フッター */

footer{
  background-color: rgb(68,68,68);
  padding:16px 0 40px 0;
}

footer img{
  display: block;
  width: 24px;
  height:24px;
  margin:0 auto;
}

/* 商品リスト */

#list{
  margin:0 auto;
  width:90%;
  max-width: 1200px;
}

#list h2{
  background-color: #F7EE4D;
  text-align:center;
  font-size:20px;
  line-height: 3;
  letter-spacing: 4px;
}

#list h3{
  background-color: rgb(153,153,153);
  color:rgb(250,250,250);
  text-align:center;
  line-height: 2;
  letter-spacing: 4px;
}

.item-list{
  padding: 16px 0;
  display: grid;
  break-inside:auto;
  grid-template-columns: repeat(3, 1fr);
  grid-gap:4px;
}

.item-list:after{
  content:'';
  display: block;
  width: calc(100% / 3 - 8px);
  height: 1px;
}

.item-list .item{
  display: flex;
  justify-content: space-between;
  background-color: rgb(255,255,255);
  width: calc(100% - 4px);
  padding: 16px;
}

.item-list .item .left{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.2;
  font-size: 12px;
}

.item-list .item .left img.mkpb{
  width: 30%;
  height: auto;
  margin:4px 0;
}

.item-list .item .left img.coupon{
  width: 100%;
  max-width: 100px;
  height:auto;
}

.item-list .item .right{
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-list .item .right img.product{
  width:100%;
  height:auto;
}

.item-list .item .right .cart-category{
  display: flex;
  justify-content: space-around;
  width:100%;
  padding: 16px 0 0 0;
}

.item-list .item .right .cart-category .cart{
  background-color: #F7EE4D;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:4px;
  width: calc(50% - 8px);
  height:40px;
  margin:0 4px;
}

.item-list .item .right .cart-category .cart img:first-child{
  width:15%;
  height:auto;
}

.item-list .item .right .cart-category .cart img:last-child{
  width:50%;
  height:auto;
}

.item-list .item .right .cart-category img.category{
  width:auto;
  height:40px;
}

.hr{
  break-after: page !important;
  height: 1px;
  width: 100%;
  grid-column:1 / 4;
}