.breadcrumb {
  padding-block: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ol li:first-child {
  display: none;
}
@media (min-width: 32rem) {
  .breadcrumb ol li:first-child {
    display: list-item;
  }
}
.breadcrumb ol li:not(:last-child) {
  position: relative;
  margin-right: 21px;
}
.breadcrumb ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2%;
  right: -19px;
  width: 15px;
  height: 15px;
  background-color: var(--color-orange);
  mask: url(../../assets/icons/svg/ic_chevron_right.svg) no-repeat;
  mask-size: contain;
}
.main-header .breadcrumb ol li:not(:last-child)::after {
  background-image: url(../icon/svg/ic_chevron-white.svg);
}
@media (min-width: 48rem) {
  .breadcrumb ol li:not(:last-child)::after {
    top: -5%;
  }
}
.breadcrumb ol a {
  display: block;
  font-size: 0.75rem;
}
@media (min-width: 48rem) {
  .breadcrumb ol a {
    line-height: 14px;
  }
}