@charset "UTF-8";

/****導行列****/
.crumb {
    display: block;
    width: 100%;
    margin: 20px auto;
    color: #151912;
}

.crumb ol {
    display: block;
    width: 100%;
}

.crumb ol li {
    display: inline;
}

.crumb ol li a {
    font-size: 14px;
    line-height: 1;
    color: inherit;
}

.crumb ol li a::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 5px;
    height: 10px;
    background: url(../../images/common/icon_arrow_next.svg) center no-repeat;
    background-size: contain;
    margin: 0 10px 0 15px;
}

.crumb.c-banner__content__crumb,
.crumb.c-bannerText__content__crumb {
    width: 100%;
    max-width: none;
    padding: 0;
}

.crumb ol li:not(:first-child):last-child a::after {
    display: none;
}

/****針對圖片顯示階層處理樣式****/
.crumb__pic span {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .crumb {
        margin: 15px auto;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {

    /****導行列****/
    .crumb ol li a {
        font-size: 13px;
    }

    .crumb ol li a::after {
        margin: 0 5px 0 10px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}