.breadcrumb {
  margin: 50px 0 0 0;
  padding: 0.5em;
  list-style: none;
  background: #555;
  overflow: hidden;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #828282;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #a8a8a8;
}

.breadcrumb li:first-child a:before {
  /*家アイコンに*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}



/*****************************************************************************/
/*** パソコン ***/
@media all and (max-width: 1000px) {
  /*非表示*/

  /*表示*/



/*** タブレット ***/
@media all and (max-width: 750px) {
/*非表示*/

/*表示*/



/*** スマートフォン ***/
@media all and (max-width: 670px) {
/*非表示*/

/*表示*/
.breadcrumb {
  margin: 0px 0 0 0;
  padding: 0.5em;
  list-style: none;
  background: #555;
  overflow: hidden;
}
