
/* タブメニューのサイズアップ */

@media (min-width: 1000px) {
    .search-tab_front {
      font-size: 18px;
      padding-left: 38px;
      &::before {
        left: 6px;
      }
      &.tab-catcher-katashiki {
        top: calc(1rem);
      }
      &.tab-catcher-bunrui {
        top: calc(1rem + 68px);
      }
      &.tab-outside-sunpou {
        top: calc(1rem + 136px);
      }
      &.tab-outside-katashiki {
        top: calc(1rem + 204px);
      }
    }
}

.bl_box_syousai {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  border:1px dashed #ccc;
  display: none;
}

.btn-show-detail {
  display: inline-block;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-top: 10px;
  &::before {
    content: '▼';
    display: inline-block;
    margin-right: 8px;
  }
  &.active::before {
    transform: rotate(180deg);
  }
}

.check-group-bunrui {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: 1fr;
}

.checkbox-group {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  /* grid-template-columns: 1fr; */
  grid-template-columns: 1fr 1fr;
  gap:5px;
}

#tr_shiryou {
  scroll-margin-top: 90px;
}


/* 一覧表示 */
.tbl-product-list2 {
  tr.tr-product {
    .td-image {
      position: relative;
      .new {
        position: absolute;
        top: 0;
        right: 3px;
        font-size: 12px;
        display: block;
        color: red;
        font-weight: bold;
      }
    }
    .td-code {
      &:before {
        content: '型式/用途/仕上げ';
      }
      .shiage,
      .youto_inner {
        display: block;
      }
    }
    .link,
    .page,
    .catalog,
    .download {
      display: none;
      text-align: center;
    }
  }

  @media (min-width: 768px) {
    thead {
      .tbl-product-list2_gaikan {
        width: 124px;
      }
      .tbl-product-list2_katashiki {
        width: 180px;
      }
      .tbl-product-list2_sunpou {
        width: 160px;
      }
      .tbl-product-list2_kaju {
        width: 80px;
      }
      .tbl-product-list2_tani {
        width: 49px;
      }
      
      .tbl-product-list2_page {
        display: none;
      }
      .tbl-product-list2_catalog {
        display: none;
      }
      .tbl-product-list2_download {
        display: none;
      }
      
    }
    tr.tr-product {
      .td-code {
        text-align: left;
        padding: 0 .5em;
        line-height: 1.2;
      }
      .link {
        display: table-cell;
        .link-list {
          display: flex;
          flex-flow: column;
          align-items: center;
        }
      }
    }
  }


@media (min-width: 1016px) {
    thead {
      .tbl-product-list2_tani {
        width: 80px;
      }
      .tbl-product-list2_page {
        width: 80px;
        display: table-cell;
      }
      .tbl-product-list2_catalog {
        width: 80px;
        display: table-cell;
      }
      .tbl-product-list2_download {
        width: 120px;
        display: table-cell;
      }

      .tbl-product-list2_link {
        display: none;
      }
      
    }
    tr.tr-product {
      .page,
      .catalog,
      .download {
        display: table-cell;
      }
      .link {
        display: none;
      }
    }
  }
}


/* 製品詳細ページ頭出し用 */
#download {
  padding-top: 80px;
  margin-top: -80px;
}