@charset "UTF-8";
/*パンくずリスト*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  padding-left: 1rem; 
}

.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0.6em; /* 記号の左右の余白 */
	
  color: #F29300;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb li{
	color: #F29300;
	padding-top: 4px;
    padding-bottom: 4px;
}

.breadcrumb-adjust{
	padding-bottom:80px;
}