/* ぱんくずリスト */

.c-breadcrumb {
  position: relative;
  background: var(--tertiary-color);
  @media all and (min-width: 1024px) {
    height: 180px;
  }
}

.c-breadcrumb__inner {
  margin: 0 auto 0;
  @media all and (min-width: 1024px) {
    max-width: 1460px;
    padding: 125px 60px 0;
  }
  @media not all and (min-width: 1024px) {
    padding: 80px 16px 20px;
  }
}

.c-breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.c-breadcrumb__item:last-of-type a span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-width: 600px;
  @media not all and (min-width: 1024px) {
    max-width: 120px;
  }
}

.c-breadcrumb__link {
  line-height: 1.2;
  @media not all and (min-width: 1024px) {
    font-size: 12px;
  }
  @media (any-hover: hover) {
    &[href]:hover {
      color: var(--secondary-color);
    }
  }
}

.c-breadcrumb__dot {
  display: inline-block;
  margin: 0 8px 0 6px;
}
