@charset "utf-8";

/*-----------------
カラーバリエーション
-----------------*/
.colorsArea {
  padding-top: 80px;
}
.colorsArea .titleContent {
  background-color: #FFCB00;
  position: relative;
  height: 112px;
}
.colorsArea .titleContent:after {
  content: "";
  border-style: solid;
  height: 0;
  position: absolute;
  width: 0;
  border-color: #FFCB00 transparent transparent transparent;
  border-width: 20px 10px 0 10px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.colorsArea .titleContent p {
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  width: max-content;
}
@media only screen and (max-width: 767px) {
  .colorsArea {
    padding-top: 40px;
  }
  .colorsArea .titleContent {
    height: 67px;
  }
  .colorsArea .titleContent p {
    font-size: 20px;
  }
}

/** ベース */
.secCommonColorList {
  padding: 40px 0 0 0;
}
.secCommonColorList a:hover {
  filter: brightness(1.1);
}
.commonColorListContent .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 40px;
}
.commonColorListContent .title span {
  background: #FECB04;
}
.commonColorListContent .text {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .commonColorListContent .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .commonColorListContent .text {
    font-size: 14px;
  }
}

/** ラインナップPC */
.commonColorListContent .colorList {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
  margin-top: 20px;
}
.commonColorListContent .colorList .colorItem {
  width: calc((100% / 3) - (40px / 3));
  margin-top: 20px;
}
.commonColorListContent .colorList .colorItem p {
  margin-bottom: 10px;
}
.commonColorListContent .colorList .colorItem img {
  width: 100%;
}
.commonColorListContent .colorList>.colorItem:nth-of-type(1), .commonColorListContent .colorList>.colorItem:nth-of-type(2), .commonColorListContent .colorList>.colorItem:nth-of-type(3) {
  margin-top: 0;
}
.commonColorListContent .colorList .colorItem:not(:nth-of-type(3n)) {
  margin-right: 20px;
}

/** ラインナップSP */
.open-button {
  width: 100%;
}
.flexColorList {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .commonColorListContent .colorList.visible-xs {
    display: flex !important;
  }
  .commonColorListContent .colorList .colorItem {
    width: calc((100% / 3) - (20px / 3));
  }
  .commonColorListContent .colorList .colorItem:not(:nth-of-type(3n)) {
    margin-right: 10px;
  }
}