.page-heading {
    display: block;
    /* overflow: hidden; */
    position: relative;
    margin-top: 1.69rem;
}

h1 {
    color: var(--color-text-navy);
    font-size: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.page-heading .container {
    padding: 0.5rem 0.4rem;
    background-color: var(--color-background-white);
    position: relative;
    /* max-width: 13rem; */
    max-width: 11rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-heading .container::before {
    content: '';
    display: block;
    width: 100vw;
    height: 2rem;
    background-color: var(--color-background-light-gray);
    position: absolute;
    top: -0.58rem;
    right: -0.3rem;
    z-index: -1;
}

.page-heading .container::after {
    content: '';
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0.58rem;
    left: -0.3rem;
    background-color: var(--color-background-light-navy);
    z-index: -2;
}

.feature {
    position: absolute;
    right: -0.7rem;
}

.feature img {
    width: 3.2rem;
    height: auto;
}

.page-heading .head {
    text-align: center;
    color: var(--color-text-black);
}

.page-heading .head::after {
    content: attr(data-txt);
    color: var(--color-text-light-navy);
    display: block;
    font-size: 0.2rem;
    font-family: "classico-urw", sans-serif;
    letter-spacing: 0.08em;
}

.breadcrumb {
    margin-top: 0.8rem;
    max-width: 11rem;
    margin: 0.8rem auto;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    line-height: 1;
}

.breadcrumb li:last-of-type::before {
    content: '';
    display: inline-block;
    width: 0.07rem;
    height: 0.07rem;
    margin: 0 10px;
    border-top: 2px solid #BFBFBF;
    border-right: 2px solid #BFBFBF;
    transform: rotate(45deg);
}

.breadcrumb li {
    font-size: 0.15rem;
    color: #565656;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #565656;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
    /* .container {
        margin: 0 auto;
        margin: 0 0.6rem;
    }

    .breadcrumb {
        margin: 0.8rem 0.6rem;
    } */
}

@media screen and (max-width: 768px) {
    .page-heading {
        margin-top: 0.7rem;
        margin-bottom: 0.8rem;
    }

    h1 {
        font-size: 0.2rem;
    }

    .page-heading::before {
        height: 0.96rem;
        top: -0.2rem;
    }

    .head::after {
        font-size: 0.12rem;
    }

    .page-heading .container {
        padding: 0.2rem 0.1rem;
        margin: 0.3rem;
    }

    .page-heading .container::before {
        left: inherit;
        right: -0.14rem;
        height: 8em;
        z-index: -1;
    }
    
    .page-heading .container::after {
        content: '';
        width: 100vw;
        height: 100%;
        display: block;
        position: absolute;
        top: 0.25rem;
        left: -0.14rem;
        z-index: -2;
    }
}

@media (hover: hover) {
    .breadcrumb a:hover {
      opacity: 0.7;
    }
}