/* パンくずリストのスタイル */
.breadcrumb {
  margin: 1rem 0 2rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 0.5rem;
  color: #999;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #e67e22;
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: #e67e22;
  font-weight: 500;
}
