/* =========================================================
   HQ Background: Style
   key: ren-breadcrum
   name: 全サイト共通モデル（ラウンジ蓮仕様）
   group: breadcrumb
   type: Style
   layer: breadcrumb
   value:
   selector:
   ========================================================= */

/* =========================================================
   Breadcrumb Style: Full Width Area / Inner Width by Common
   ========================================================= */

.c-breadcrumbArea {
  margin: 0;
  padding: 12px 0;

  /* 全幅帯 */
  width: 100%;
  background: linear-gradient(
    to bottom,
    #f4f2f8 0%,
    #ece9f3 100%
  );

  /* 角丸削除 */
  border-radius: 0;

  /* 上に影 */
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.06);
}

/* 中身幅はCommonに委任 */
.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  font-size: 13px;
  line-height: 1.7;
}

/* -------------------------
   Link
   ------------------------- */

.c-breadcrumb__link {
  color: #5a5670;
  text-decoration: none;
}

.c-breadcrumb__link:hover {
  opacity: 0.75;
}

/* -------------------------
   Current
   ------------------------- */

.c-breadcrumb__current {
  color: #2f2c3a;
  font-weight: 600;
}

/* -------------------------
   Separator
   ------------------------- */

.c-breadcrumb__sep {
  margin: 0 0.5em;
  color: #8a869b;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
  .c-breadcrumbArea {
    padding: 10px 0;
    margin: 0;
  }

  .c-breadcrumb {
    font-size: 12px;
  }
}
