@charset "UTF-8";

/* ==========================================================================
   breadcrumb.css
   ========================================================================== */

.o-m__breadcrumb {
  width: 100%;
  background-color: #FFF;
}

.o-m__breadcrumb-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  @media screen and (max-width: 768px) {
    padding: 12px 0 12px 10px;
  }
}

.o-m__breadcrumb-list_link {
  font-weight: 700;
  color: var(--rmeisai-primary);
  font-size: 10px;
  margin-right: 30px;
  display: inline-block;
  position: relative;
  &: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);
    transition: all ease 0.3s;
  }
}

.o-m__breadcrumb-list_link:last-child:after {
  display: none;
}

.o-m__breadcrumb-list_link a {
  font-weight: 500;
  color: var(--black);
}
