@charset "utf-8";
/* CSS Document */
.breadcrumb{
    width: 100%;
}

/*パンくずリスト*/
.breadcrumb__list{
    display:-ms-flexbox; 
    display:flex; 
/*    -ms-flex-wrap:wrap; 
    flex-wrap:wrap; */
    padding-bottom:.75rem; 
	font-size:14px;
	max-width: 1200px;
	overflow: auto;
	white-space: nowrap;
	width: 100%;
	margin: auto;
}

/*:notは否定つまり最後の子要素以外に適用*/
.breadcrumb__item:not(:last-child) {
	position: relative;
		margin-right: 30px;
}
.breadcrumb__item:first-child{
	position: relative;
		margin-right: 30px;
}
@media screen and (max-width: 576px) {
	.breadcrumb__list{
			font-size:12px;
	}
  }
.breadcrumb__item:not(:last-child)::before {
  content: "\03e"!important;
	position: absolute;
	height: 20px;
	width: 14px;
	top:-2px;
	right: -25px;
/*	overflow-x: scroll;*/
}
.breadcrumb__list a:hover{
    text-decoration:underline;
}

