@charset "utf-8";

/* 各商品セクション */
.item-section {
  padding-bottom: 64px;
}
/* スライダー */
.item-slider-block {
  max-width: 100%;
}
.slick-slider {
  max-width: 100%;
}
.slick-slide {
  aspect-ratio: 1/1;
}
.slick-slide img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.slick-prev, .slick-next {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  z-index: +1;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
.slick-prev:before {
    content: '<';
}
.slick-next:before {
    content: '>';
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: rgba(0, 0, 0, 1);
}
/* メインスライダー */
.main-slider .slick-list {
  border: 1px solid #ddd;
}
/* サムネイル */
.thumbnail {
  margin-top: 10px;
}
.thumbnail .slick-slide {
  border-right: 1px solid #ddd;
}
.thumbnail .slick-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* ---------------- 
商品説明
---------------- */
.item-desc {
  margin-top: 24px;
}
.item-title {
  font-size: 24px;
  line-height: 1.5;
}
.item-title--jp {
  font-size: 20px;
  line-height: 1.5;
}
.item-function {
  height: 64px;
  max-width: 100%;
  object-fit: contain;
  margin-top: 8px;
}
.item-function img {
  height: 100%;
  width: auto;
}
.item-number {
  color: #888;
  font-size: 12px;
  font-weight: 400;
}
.item-textarea {
  font-size: 14px;
  display: grid;
  row-gap: 24px;
}
.item-catch {
  font-weight: 700;
  margin-block: 16px;
  font-size: 18px;
}
.item-desc-list {
  list-style-type: '・';
  padding-left: 18px;
}
.item-spec {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
}
.item-spec dt {
  width: 30%;
}
.item-spec dd {
  width: 65%;
}
/* 品番/JAN/価格 */
.lineup-jan {
  margin-top: 28px;
  background: #eee;
}
.lineup-jan-ttl {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
.tbl-jan {
  margin-top: 16px;
  background: #fff;
}
.tbl-jan th {
  background-color: #333;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .item-section {
    padding-bottom: 160px;
  }
  .item-section-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
  }
  .item-slider-block {
    width: 48%;
  }
  .item-desc {
    width: 48%;
    margin-top: 0;
  }
  .item-title {
    font-size: 28px;
  }
  .item-title--jp {
    font-size: 22px;
  }
  .item-catch {
    font-size: 20px;
  }
  .lineup-jan {
    margin-top: 40px;
  }
  .item-spec dt {
    width: 20%;
  }
  .item-spec dd {
    width: 75%;
  }

}