@charset "UTF-8";


/*===================
メイン写真＋商品情報（VPHero）
====================*/
.VPHero {
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 10px;
  align-items: start;
}

.VPHero__photo {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.VPHero__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.VPHero__detail {
  grid-column: 2;
  grid-row: 2;
}

.VPHero__thumbstrip {
  grid-column: 2;
  grid-row: 3;
  max-width: 100%;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
}

.VPHero__thumbstrip img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.VPHero__thumbstrip img:hover {
  border-color: #3794fb;
}

@media (max-width: 767px) {
  .VPHero {
    display: flex;
    flex-direction: column;
  }

  .VPHero__title {
    order: 1;
  }

  .VPHero__photo {
    order: 2;
    width: 100%;
  }

  .VPHero__thumbstrip {
    order: 3;
  }

  .VPHero__detail {
    order: 4;
  }
}

/*===================
ソート用セレクトメニュー
====================*/
.SelectedTitle {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.SelectBox {
  position: relative;
}

.SelectBox select {
  position: absolute;
  zoom: 1.1;
  z-index: 2;
  opacity: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/*===================
商品説明文
====================*/
.ItemBullet .LI-Dis>li {
  margin-bottom: 8px
}

.ItemBullet img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* カート追加モーダル幅調整 */
.addCartRemodal {
  max-width: 1400px;
  width: 800px;
}

@media (max-width: 768px) {
  .addCartRemodal {
    width: 90%;
  }
}


/*===================
スペック比較テーブル
====================*/
.SpecScrollTbl table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-spacing: 0;
  border-top: solid 1px #CCC;
  border-right: solid 1px #CCC;
}

.SpecScrollTbl table thead,
.SpecScrollTbl table tbody {
  width: 100%;
  display: table;
}

.SpecScrollTbl table thead th {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  vertical-align: top;
  background-color: #eee;
  font-weight: normal;
  border-bottom: solid 1px #CCC;
  border-left: solid 1px #CCC;
  padding: 5px;
}

.SpecScrollTbl table tbody td {
  vertical-align: top;
  border-bottom: solid 1px #CCC;
  border-left: solid 1px #CCC;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  padding: 5px;
}

.SpecScrollTbl table thead th.Code,
.SpecScrollTbl table tbody td.Code {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
}

.SpecScrollTbl table thead th.ItemName,
.SpecScrollTbl table tbody td.ItemName {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
}

.SpecScrollTbl table::-webkit-scrollbar {
  height: 0.8em;
}

.SpecScrollTbl table::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.SpecScrollTbl table::-webkit-scrollbar-thumb {
  background-color: #008ffd;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .SpecScrollTbl table {
    border-right: none;
  }

  .SpecScrollTbl table thead th:first-child,
  .SpecScrollTbl table tbody td:first-child {
    border-left: none;
  }

  .SpecScrollTbl table thead,
  .SpecScrollTbl table tbody {
    width: max-content;
    display: table;
  }
}

/*===================
絞り込み
====================*/
.fileterSelection {
  border: solid 3px #fff;
}

.fileterSelection.selected {
  border-color: #fd554d;
}