@charset "utf-8";

.breadcrumbs{
	/*margin-top:187px;*/
}
ul.breadcrumbs-one{
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs-one{
  background: #f5f5f5;/*背景色*/
  border: 1px solid #ddd;
  /*border-color: #f5f5f5 #e5e5e5 #ccc;*/
  border-radius: 2px;
  /*box-shadow: 0 0 2px rgba(0,0,0,.2);*/
  overflow: hidden;
  width: 100%;
}
 
.breadcrumbs-one li{
  float: left;
}
 
.breadcrumbs-one a{
  padding: .5em 1em .5em 2em;
  float: left;
  text-decoration: none;
  color: #333;/*過去頁テキスト色*/
  position: relative;
  /*text-shadow: 0 1px 0 rgba(255,255,255,.5);*/
  /*background-color: #f5f5f5;*/
  background-image: linear-gradient(to right, #f5f5f5, #f5f5f5);/*過去頁背景グラデ*/
}
 
.breadcrumbs-one li:first-child a{
  padding-left: 1em;
  border-radius: 2px 0 0 5px;
}
 
.breadcrumbs-one a:hover{
  background: #fff;/*マウスオーバー背景色*/
}
 
.breadcrumbs-one a::after,
.breadcrumbs-one a::before{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid;
  right: -1em;
}
 
.breadcrumbs-one a::after{
  z-index: 2;
  border-left-color: #f5f5f5;/*三角の色*/
}
 
.breadcrumbs-one a::before{
  border-left-color: #ddd;/*三角の線色*/
  right: -1.1em;
  z-index: 1;
}
 
.breadcrumbs-one a:hover::after{
  border-left-color: #fff;
}
 
.breadcrumbs-one .current,
.breadcrumbs-one .current:hover{
  /*font-weight: bold;*/
  color: #888;
  background: none;
  padding: .5em 1em .5em 2em;
}
 
.breadcrumbs-one .current::after,
.breadcrumbs-one .current::before{
  content: normal;
}

