@charset 'UTF-8';
/* breadcrumb frame */
.frame_breadcrumb {
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    color: #333;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
}

.list_breadcrumb {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

/* breadcrumb body */
.list_breadcrumb .elm {
    height: 24px;
    padding: 0 8px;
    line-height: 24px;
    position: relative;
    background-color: #c7d1db;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.list_breadcrumb .elm:last-child {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.list_breadcrumb .elm:nth-child(even) {
    background-color: #dce7f2;
}

.list_breadcrumb .elm:last-child {
    background-color: #fff;
}

.list_breadcrumb .elm:not(:first-child) {
    padding-left: 22px;
}

.list_breadcrumb .elm:not(:first-child)::after,
.list_breadcrumb .elm:not(:first-child)::before {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent transparent #dce7f2;
}

.list_breadcrumb .elm:not(:first-child)::before {
    top: -2px;
    border-width: 14px;
    border-left-color: #fff;
}

.list_breadcrumb .elm:nth-child(even)::after {
    border-left-color: #c7d1db;
}

.list_breadcrumb .elm a {
    color: #0069c0;
}

/* for slide */
.slide_inner {
    width: auto;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
}
