@charset "UTF-8";
/* 絞り込み ボタン
========================================================= */
.filter {
  display: flex;
  justify-content: right;
}
.filter-btn {
  border: 1px solid #CBCBCB;
  border-radius: 7px;
  color: #999;
  font-size: 15px;
  letter-spacing: 0.75px;
  padding: 8px 12px;
}
.filter-btn img {
  width: 16px;
  margin-right: 8px;
}

/* 商品一覧
========================================================= */
/* モデル名 */
.modelHead {
  color: var(--surf-green);
  margin-bottom: 56px;
}
.modelHead h3 {
  display: inline;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* 商品リスト */
.itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 120px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .itemList {
    gap: 60px;
  }
}
.itemList li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.itemList-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 5px;
  position: absolute;
  top: 0;
  right: 0;
}
.itemList-label {
  background-color: #ffffff;
  border: 1px solid #BBBBBB;
  border-radius: 5px;
  font-size: 14px;
  padding: 6px;
  padding-bottom: 2px;
}
.itemList-img {
  max-width: 110px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .itemList-img {
    max-width: 168px;
    margin-bottom: 24px;
  }
}
.itemList h3 {
  border-bottom: 1px solid #333;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding-bottom: 1px;
}
@media screen and (min-width: 768px) {
  .itemList h3 {
    font-size: 17px;
  }
}
.itemList-price {
  border-bottom: 1px solid #333;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  padding-bottom: 1px;
}
.itemList-price span {
  font-size: 17px;
  padding-right: 2px;
  padding-left: 2px;
}
.itemList-colorChip {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.itemList-colorChip li {
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
}
.itemList-colorChip li.active {
  box-shadow: 0 0 0 2px #BBBBBB;
}
.itemList-colorChip img {
  cursor: pointer;
  height: auto;
  width: 20px;
}

/* スケルトンスクリーン
========================================================= */
.skeleton > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 120px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .skeleton > ul {
    gap: 60px;
  }
}
.skeleton > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 110px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .skeleton > ul > li {
    max-width: 168px;
  }
}
.skeleton > ul > li div {
  background-color: #dddddd;
  animation: gradAnim 1.5s linear infinite alternate;
  width: 100%;
}
.skeleton > ul > li div:first-child {
  position: relative;
  padding-bottom: 276%;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .skeleton > ul > li div:first-child {
    margin-bottom: 24px;
  }
}
.skeleton > ul > li div:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.skeleton > ul > li div:nth-child(2) {
  height: 16px;
  margin-bottom: 22px;
}
.skeleton > ul > li div:nth-child(3) {
  height: 16px;
  margin-bottom: 22px;
}
.skeleton > ul > li ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.skeleton > ul > li ul li {
  background-color: #dddddd;
  animation: gradAnim 1.5s linear infinite alternate;
  border-radius: 5px;
  width: 20px;
  height: 20px;
}

@keyframes gradAnim {
  0% {
    background-color: #dddddd;
  }
  100% {
    background-color: #eeeeee;
  }
}