.mv {
  width: 500px;
  margin: 0 auto;
  margin-bottom: 70px;
}

.color_template {
  font-size: 0;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
}

.item_container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-around;
}

.item_buy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 110px;
}

.color-ball_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 60px;
}

.color-ball {
  width: 30px;
  /* 正方形のサイズ */
  height: 30px;
  background-color: #000;
  /* 背景色 */
  border: 0.5px solid #898989;
  /* 枠線 */
  display: inline-block;
  /* 横に並べるための設定 */
}

.item_text {
  /* text-decoration: underline; */
  font-size: 11px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}

.color_text {
  font-size: 11px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: bold;
  line-height: 14px;
}

.highlight {
  font-size: 8px;
  font-weight: 100;
  margin-bottom: 31px;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .sp_break {
    display: inline;
  }

  .pc_break {
    display: none;
  }

  .mv {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .color_template {
    padding: 30px 0px;
    font-size: 0;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    flex-wrap: wrap;
    margin-left: 30px;
  }

  .item_container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-around;
  }

  .item_buy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90px;
  }

  .color-ball_container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 60px;
  }

  .color-ball {
    width: 30px;
    /* 正方形のサイズ */
    height: 30px;
    background-color: #000;
    /* 背景色 */
    border: 0.5px solid #898989;
    /* 枠線 */
    display: inline-block;
    /* 横に並べるための設定 */
  }

  .item_text {
    /* text-decoration: underline; */
    font-size: 11px;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
  }

  .color_text {
    font-size: 11px;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: bold;
    line-height: 14px;
  }

  .highlight {
    font-size: 8px;
    font-weight: 100;
    margin-bottom: 31px;
  }