.breadcrumb {
  width: 100%;
  max-width: var(--max_width);
  padding: 10px 0;
  margin: 0 auto;
}

.breadcrumb li {
  position: relative;
  display: inline;
  list-style: none;
}

.breadcrumb li:not(:last-of-type) {
  margin-right: 18px;
}

/*
.breadcrumb li:not(:last-of-type)::after {
position: absolute;
right: -12px;
content: '>';
color: #c4c4c4;
}
*/

.breadcrumb li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid var(--blue1);
  border-width: 1px 1px 0 0;
  position: absolute;
  bottom: 3.8px;
  right: -10px;
  transform: rotate(45deg);
}

.breadcrumb li a {
  color: gray;
  font-size: 12px;
}

.breadcrumb li:first-child a {
  position: relative;
  margin-left: 20px;
}

.breadcrumb li:last-child a {
  pointer-events: none;
}

.breadcrumb li:first-child a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  background: url(icon_home.svg) no-repeat;
  height: 12px;
  width: 12px;
}

div.bread_w .breadcrumb li:first-child a:before {
  background: url(home_w.svg) no-repeat;
}

.breadcrumb li a:hover {
  color: var(--blue1);
}

div.bread_w .breadcrumb li:not(:last-of-type)::after {
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
}

div.bread_w .breadcrumb li a {
  color: #fff;
  font-size: 12px;
}

div.bread_w .breadcrumb li a:hover {
  color: var(--gray2);
}

/*PC1280*/
@media only screen and (max-width: 1280px) {
  .breadcrumb {
    width: var(--sp_width);
  }
}

/*PC1000*/
@media only screen and (max-width: 1000px) {
}

/*SP*/
@media only screen and (max-width: 800px) {
}
