/*------------------------------------------

パンくず

------------------------------------------*/
.mv-box {
    background-image: url(../images/common/mv-bg.jpg);
    background-size: cover;
    padding: 100px 0;
}

.page-tit {
    font-size: 3.2rem;
    font-weight: bold;
    color: #e98503;
}

@media screen and (min-width: 985px) {
}

/*Smartphone*/
@media screen and (max-width: 984px) {
}/*END*/


/*------------------------------------------

パンくず

------------------------------------------*/
.bread-box {
    background-color: #f8f8f8;
    padding: 15px 0;
    font-size: 14px;
}

.bread-box ul li {
    display: flex;
    align-items: center;
    color: #333;
}

.bread-box ul li a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s;
}

.bread-box ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.bread-box ul li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    margin: 0 12px;
    position: relative;
    top: -1px;
}

.bread-box ul li:last-child span {
    color: #888;
    font-weight: 600;
    cursor: default;
}

@media screen and (min-width: 985px) {
    .bread-box ul {
        flex-wrap: wrap;
        gap: 5px 0;
    }
}

/*Smartphone*/
@media screen and (max-width: 984px) {
    .bread-box ul {
        flex-wrap: wrap;
        gap: 5px 0;
    }
}/*END*/