/* パンくずリスト */
.c-breadcrumb {
  margin-block: 50px;
}

.c-breadcrumb__list {
  display: flex;
  column-gap: 15px;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.c-breadcrumb__item:where(:last-of-type) {
  color: var(--tcd-accent-color);
}

.c-breadcrumb__item-home {
  font-size: 1.5em;
  margin: -0.1em -0.2em -0.2em;
}

.c-breadcrumb .screen-reader-text { display:none; }

.c-breadcrumb__item-arrow {
  font-size: 1.5em;
  color: initial;
  margin: -0.2em;
  flex: 0 0 auto;
}

@media (any-hover: hover) {
  .c-breadcrumb__item :where(a):hover {
    color: var(--tcd-accent-color);
  }
}

@media not all and (max-width: 767px) {
  .c-breadcrumb__item>:where(span) {
    overflow: hidden; padding:1px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
  }

  .c-breadcrumb__item:last-of-type {
    flex: 1;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .c-breadcrumb {
    margin-block: 20px;
  }

  .c-breadcrumb__list {
    font-size: 12px;
    overflow: auto hidden;
    width: 100%;
    padding-inline: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .c-breadcrumb__list::-webkit-scrollbar {
    display: none;
  }

  .c-breadcrumb__item {
    min-inline-size: auto;
  }

}