/* 20241007追記 */
/* 製品ラインアップを4列で表示が崩れないように修正 */
.about .panel .product_group_wrapper > div:nth-of-type(1) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about .panel .product_group .product_list .product_block {
    width: 24%;
  }
}

/* 文字化け防止 */
ul.mention li:before {
  content: "\203B";
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}
ul.mention.en li:before {
  content: "\FF0A";
}

ol.mention li:before {
  display: inline-block;
  content: "\203B";
  width: 2.3em;
  margin-left: -2.3em;
}
ol.mention li:nth-of-type(1):before {
  content: "\203B\a0 1";
}
ol.mention li:nth-of-type(2):before {
  content: "\203B\a0 2";
}
ol.mention li:nth-of-type(3):before {
  content: "\203B\a0 3";
}
ol.mention li:nth-of-type(4):before {
  content: "\203B\a0 4";
}
ol.mention li:nth-of-type(5):before {
  content: "\203B\a0 5";
}