@charset "UTF-8";

/*========================================
パンくずリスト
========================================*/

.bread{
  max-width: calc(1100px + 2vw);
  width: 100%;
  margin: 0 auto 120px auto;
  padding: 0 calc(2vw + 20px);
}
@media (max-width: 900px) {
  .bread{
    margin-bottom: 96px;
  }
}
@media (max-width: 600px) {
  .bread{
    margin-bottom: 32px;
    max-width: calc(1100px + 1vw);
    padding: 0 calc(2vw + 10px);
  }
}

.bread__list{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .bread__list{
    flex-wrap: wrap;
  }
}

.bread__item{
  margin-right: 40px;
}
@media (max-width: 900px) {
  .bread__item{
    margin-bottom: 10px;
    margin-right: 32px;
  }
}

.bread__item:last-child{
  margin-right: 0;
}

.bread__link{
  background-color: #fff;
  padding: .8rem 1.6rem;
  position: relative;
  font-size: 1.4rem;
  color: #5C5C5C;
  text-decoration: underline;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .bread__link{
    line-height: 1;
    padding: .4rem .8rem;
    font-size: 1.2rem;
  }

}

.bread__link::before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 20px solid #ffffff;
  border-left: 0;
  position: absolute;
  left: -20px;
  top: 0;
}
@media (max-width: 600px) {
  .bread__link::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 16px solid #ffffff;
    border-left: 0;
    position: absolute;
    left: -16px;
    top: 0;
  }
}

.bread__link::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #ffffff;
  border-right: 0;
  position: absolute;
  right: -20px;
  top: 0;
}
@media (max-width: 600px) {
  .bread__link::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 16px solid #ffffff;
    border-right: 0;
    position: absolute;
    right: -16px;
    top: 0;
  }
}

.bread__link-text{
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .bread__link-text{
    line-height: 1;
    font-size: 1.2rem;
  }
}