.header__bread_list {
  background: var(--color_ui_light);
  text-align: center;
}
@media screen and (min-width: 769px ) {
  .header__bread_list {
    font-size: var(--size_txt_xs);
  }
}
@media screen and (max-width: 768px ) {
  .header__bread_list {
    font-size: var(--size_caption);
  }
}
.header__bread_list ol {
  display: flex;
  align-items: center;
  list-style: none;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  word-break: keep-all;
  white-space: nowrap;
  max-width: var(--width_max_pc_l);
  padding: 0.2em 1.6em;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-right: none;
  border-left: none;
}
.header__bread_list ol li {
  padding: 0;
  margin: 0;
}
.header__bread_list ol li.home {
  margin: 0;
  display: block;
  width: 2em;
}
.header__bread_list ol li.home a {
  font-size: 0;
}
.header__bread_list ol li.home a::before {
  content: "";
  background: url("/~/media/img/common/global_nav/icon_home_blue.svg") no-repeat center center;
  width: 2em;
  height: 2em;
  background-size: 1em 1em;
  display: block;
}
@media screen and (min-width: 769px ) {
  .header__bread_list ol li.home a::before {
    font-size: var(--size_txt_xs);
  }
}
@media screen and (max-width: 768px ) {
  .header__bread_list ol li.home a::before {
    font-size: var(--size_caption);
  }
}
.header__bread_list ol li:not(li.home) {
  margin: 0 0 0 0.5rem;
}
.header__bread_list ol li:not(li.home)::before {
  content: "";
  display: inline-block;
  height: 0.4rem;
  width: 0.4rem;
  border-right: solid 1px var(--color_font_sub);
  border-bottom: solid 1px var(--color_font_sub);
  transform: rotate(-45deg) translateY(-0.25em);
  margin: 0.75rem 0.5em 0 0;
}
.header__bread_list ol li:last-child a {
  color: var(--color_font_mid);
  cursor: default;
}
.header__bread_list ol li:not(:last-child) a:hover {
  color: var(--color_font_mid);
  background: #fff;
  box-shadow: var(--shadow_light);
}
.header__bread_list ol li a {
  display: inline-block;
  position: relative;
  padding: 0.5em;
  margin: 0;
  text-decoration: none;
  line-height: 1em;
  border-radius: 100vw;
  color: var(--color_link);
  transition-property: color, background-color, box-shadow;
  transition-duration: 0.3s;
}