@charset "UTF-8";
/*
  /asset/css/object/module/m-breadcrumb.css
  パンくずモジュール用CSS
*/
.m-breadcrumb {
  width: 100%;
  background-color: var(--white);
  position: relative;
  z-index: 10;
}
.m-breadcrumb-list {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0 10px;
  @media screen and (max-width: 1200px) {
    max-width: 1024px;
  }
  @media screen and (max-width: 840px) {
    width: 100%;
    padding: 12px 12px 10px;
  }
  @media screen and (max-width: 600px) {
    padding: 12px 12px 7px;
  }
}
.m-breadcrumb-item {
  font-size: 10px;
  margin: 0 30px 0 0;
  display: inline-block;
  position: relative;
  @media screen and (max-width: 600px) {
    margin: 1px 30px 2px 0;
  }
  &::after {
    position: absolute;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--gray-05);
    border-right: 1px solid var(--gray-05);
    top: 0;
    right: -15px;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
  }
  &:last-child {
    color: var(--rsaikenkanri-primary);
    font-weight: 700;
    @media screen and (max-width: 600px) {
      margin: 1px 0 2px 0;
    }
    &:after {
      display: none;
    }
  }
}
.m-breadcrumb-item__link {
  font-weight: 500;
  color: var(--black);
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
