@charset "utf-8";

.breadcrumb {
    padding: 14px 35px 12px;
    border-top: 1px solid #f1e9dc;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .02em;
    color: #888;
    gap: 10px;
    font-family: "Shippori Mincho", serif;
}

.breadcrumb ul li a {
    color: #101010;
}


.breadcrumb ul li:not(:last-child) a::after,
.breadcrumb ul li:not(:last-child) p::after {
    content: ' > ';
    display: inline-block;
    margin-left: 10px;
}

.location-link {
    display: flex;
    flex-wrap: wrap;
    background-color: #33411C;
    padding-bottom: 30px;
}

.location-link a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 76px;
    padding: 10px 2.5vw;
    font-size: 2.4rem;
    font-weight: 300;
    font-family: "Shippori Mincho", serif;
    letter-spacing: .1em;
    background-color: #CAD3C5;
    color: #fff;
    border-left: 1px solid #B3A47C;
}

.location-link a.current {
    color: #fff;
    background-color: #33411D;
}

.location-link--3 a {
    width: 33.33%;
}

.location-link--4 a {
    width: 25%;
}

.location-link--5 a {
    width: 20%;
}

.location-link a::before {
    content: '\f105';
    position: absolute;
    right: calc(2.5vw - 15px);
    top: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    color: #fff;
    transform: translateY(-50%);
    font-size: 1.8rem;
}

.location-link a.current::before {
    color: #B3A47C;
}

.caption {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
}

@media screen and (max-width: 1400px) {
    .location-link a {
        font-size: 1.76vw
    }
}

@media screen and (max-width: 768px) {
    .location-link a {
        padding: 10px 15px;
        font-size: 1.75vw;
        border-left: 0;
    }

    .location-link--4 a {
        width: 50%;
    }

    .location-link--5 a {
        width: 33.33%;
    }

    .location-link a::before {
        right: 10px;
    }
}

@media screen and (max-width: 639px) {
    .location-link a {
        width: 100% !important;
        height: 13.33vw;
        font-size: 4vw;
    }

    .location-link a::before {
        right: 6vw;
    }

    .caption {
        max-width: 100%;
    }

}