table {
  width: 100%;
  table-layout: fixed;
}

table td {
  /*word-break: break-all;*/
  overflow-wrap : break-word;
}

.footer {
    border-top: solid 1px #9FA0A0;
    text-align: right;
    margin-top: 20px;
}

.img_block {
  height: 200px;
  text-align: center;
}

.item_img {
  width: auto;
  max-height: 200px;
}

@media screen and (max-width:767.98px) {
  .item_img {
    max-height: 80px;
  }
}


.item_block {
  border-bottom: dotted 1px;
  padding: 15px;
}
.item_list .item_block:last-child {
  border-bottom: none;
}

.pc { display: none !important; }
.sp { display: block !important; }

@media screen and (min-width:768px) {
  .item_list .item_block:nth-child(2n+1) {
    border-right: dotted 1px;
  }

  .item_list .item_block:nth-child(2n+1):nth-last-child(2) {
    border-bottom: none;
  }
}

.item_spec {
  padding: 15px;
}

.btn_right {
  float: right;
}

.catalog_banner {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.search {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search::before {
  background-image: url("/img/icon/icon-loupe.svg");
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.sub-heading {
  font-size: 1.2rem;
}

/* 続きを読む */
.readmore{
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  padding: 10px;
  border: 1px solid #CCC;
}

.readmore-content{
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 0;
}
.readmore-content::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
}

/* 続きを読むボタン */
.readmore-label{
  background-color: #eb8080;
  border-radius: 10px;
  color: #FFF;
  cursor: pointer;
  display: table;
  padding: 0 10px;
  margin: 0 auto;
}

.readmore-label:before{
  content: 'スペック';
}

.readmore-check{
  display: none;
}

/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
  /* position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0); */
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  display: none;
}

.readmore-check:checked ~ .readmore-label:before{
  content: '閉じる';
}

/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
  height: auto;
}

/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
  display: none;
}

.itemname-box {
  height: calc(.8rem * 1.5 * 2);
  overflow: hidden;
  position: relative;
}

.itemname-box.is-hidden::after {
  content: "…";
  font-size: .8rem;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}

.search-result-message {
  margin: 12px 0;
  padding: 10px 12px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 14px;
  text-align: center;
}