/*------------------------------------
パンくずリスト用CSS
------------------------------------*/
.breadcrumb {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 1140px;
  margin: 15px auto 0;
  min-width: 0;
  overflow: hidden;
}
.breadcrumb div {
  font-size: 0.8rem;
  margin-left: 5px;
  color: #555;
  padding-left: 15px;
  line-height: 1.3;
  position: relative;
  white-space: nowrap;
  flex: 0 0 auto;
}
.breadcrumb div a {
  color: inherit;
  display: block;
  white-space: nowrap;
}
.breadcrumb div:last-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb div::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #555;
}
.breadcrumb div.home {
  font-size: 0.8rem;
  margin: 0;
  padding-top: 0;
  padding-left: 0;
  color: #555;
  line-height: 1.3;
  min-width: 45px;
  flex: 0 0 auto;
}
.breadcrumb div.home i {
  margin-right: 5px;
  font-size: 0.8rem;
}
.breadcrumb div.home::before {
  display: none;
}

@media only screen and (max-width: 1080px) {
  .breadcrumb {
    width: 90%;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    width: 90%;
  }
  .breadcrumb div {
    font-size: 0.7rem;
  }
  .breadcrumb div.home {
    font-size: 0.7rem;
  }
}
