@charset "utf-8";

.breadcrumb{
    width: calc(100% + 200px);
    margin: 0 -100px;
    height: 55px;
    font: normal normal normal 12px/16px "Hiragino Kaku Gothic Std", "Noto Sans JP", sans-serif;
    background: #FFFFFF;
    position: relative;
    padding: 0 100px;
}
.breadcrumb_container{
    position: relative;
    height: 55px;
}
.breadcrumb_inner{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.breadcrumb_item{
    display: inline-block;
    margin: 0 10px;
    position: relative;
}
.breadcrumb_item:first-child{
    margin-left: 0px;
}
.breadcrumb_item::after{
    display: block;
    content: "";
    width: 6px;
    height: 7px;
    background-image: url(/cms/nurseed/img/header/icon_breadcrumb.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}
.breadcrumb_item:last-child:after{
    display: none;
}
.breadcrumb a{
    position: relative;
    color: #185890;
    text-decoration: underline;
}
.wrapper .breadcrumb{
    display: block;
}
footer .breadcrumb{
    display: none;
}
@media (max-width: 1200px) {
    .breadcrumb{
        /* height: 4.5vw; */
    }
    .wrapper .breadcrumb{
        width: calc(100% + 16.6vw);
        margin: 0 -8.3vw;
    }
}
@media (max-width: 750px) {
    .wrapper .breadcrumb{
        display: none;
    }
    footer .breadcrumb{
        display: block;
        width: calc(100% + 100px);
    }
    .breadcrumb{
        height: 85px;
    }
    .breadcrumb_container{
        /* height: 4.5vw; */
    }
    .breadcrumb_inner{
        padding: 0 10px;
    }
    .breadcrumb_item:first-child{
        margin-left: 10px;
    }
}
