@charset "utf-8";

/*----------------------------
* コンテナ
----------------------------*/
.bread_container {
  max-width: 1400px;
  margin: 0 auto;
}

/*----------------------------
* パンくずリスト
----------------------------*/
.bread_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 16px 24px;
}
@media screen and (min-width:768px) {
  .bread_list {
    padding: 1.5rem 2rem;
  }
}

.bread_list-item {
  font-size: 1.2rem;
}

.bread_list-item:first-child::after {
  display: inline-block;
  color: #e1e1e1;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: 'Material Icons';
  letter-spacing: normal;
  content: "\e5e1";
}

.bread_link {
  color: #e1e1e1;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
}
