/* パンくず全体 */
#breadcrumb {
  margin: 0 0 40px;
  font-size: 14px;
}

/* ol 初期化 */
#breadcrumb ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各項目 */
#breadcrumb li {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* 区切り記号 */
#breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #666;
}

/* リンク */
#breadcrumb a {
  color: #000;
  transition: .4s;
  text-decoration: none;
}

#breadcrumb a:hover {
  color: #005bac;
  text-decoration: underline;
}

/* 現在地（最後） */
#breadcrumb li:last-child a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 70%;
}


@media screen and (max-width: 768px) {
  #breadcrumb {
    font-size: 12px;
  }

  #breadcrumb li + li::before {
    margin: 0 4px;
  }
}
