/*>>>>> パンくずリスト -------------------------------*/
/*elementorでパンくずリストを設置したウィジットの「高度な設定」でcssクラスにbreadを設定*/

.bread {
  margin-top: 0px;
  margin-bottom: 10px;
}

.bread ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bread ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bread li {
  display: inline-block;
  padding: 5px;
  color: #777777;
  font-size: 14px;
  text-decoration: none;
  float: left;
  width: auto;
}
.bread li a {
  text-decoration: underline;
}
.bread li a:hover {
  background-color: #eeeeee;
}
.bread li:after {
  content: "\003e";
  margin-left: 10px;
  margin-right: 10px;
  color: #777777;
}
.bread li:last-child:after {
  content: "";
}

.bread ol:after {
  content: "";
  display: block;
  clear: both;
}
.bread ul:after {
  content: "";
  display: block;
  clear: both;
}

/*<<<<< パンくずリスト -------------------------------*/
