/* =============================================================
   パンくず（全ページ共通）
   旧 .info-breadcrumb / .voice-breadcrumb / .reason-breadcrumb を統合
   ============================================================= */
.breadcrumb {
  background: #ffffff;
  padding-block: 16px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb__link {
  color: #111111;
}

/* セパレーター（&gt; テキストを非表示にして breadcrumb-arrow.svg を表示）*/
.breadcrumb__separator {
  display: inline-block;
  width: 5px;
  height: 9px;
  background: url("../../img/common/breadcrumb-arrow.svg") center / contain no-repeat;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.breadcrumb__item--current {
  color: #6b7280;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding-block: 12px;
    font-size: 12px;
  }
}
