@charset "utf-8";

.breadcrumb {
    padding: 20px 0;
    border-top: 1px solid #f1e9dc;
    border-bottom: 1px solid #f1e9dc;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .02em;
    color:#888;
}

.breadcrumb ul li a{
	color:#000;
}

.breadcrumb ul li:not(:last-child) a::after,
.breadcrumb ul li:not(:last-child) p::after {
    content: '  ';
    display: inline-block;
}

.location-link {
    display: flex;
    flex-wrap: wrap;
}

.location-link a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100px;
    padding: 10px 2.5vw;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: .1em;
    background-color: #fefcf7;
    border-left: 1px solid #f1e9dc;
    border-bottom: 1px solid #f1e9dc;
}

.location-link a.current {
    color: #fff;
    background-color: #868076;
}

.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;
    left: calc(2.5vw - 15px);
    top: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    color: #808081;
    transform: translateY(-50%);
}

.location-link a.current::before {
    color: #fff;
}
.caption{
	font-family: 'Noto Sans JP', sans-serif;
	font-size:10px;
}
@media screen and (max-width: 1400px) {
    .location-link a {
        font-size: 1.28vw;
    }
}

@media screen and (max-width: 768px) {
    .location-link a {
        padding: 10px 25px;
        font-size: 1.75vw;
    }
    .location-link--4 a {
        width: 50%;
    }
    .location-link--5 a {
        width: 33.33%;
    }
    .location-link a::before {
        left: 10px;
    }
}

@media screen and (max-width: 639px) {
    .location-link a {
        width: 100% !important;
        height: 13.33vw;
        font-size: 4vw;
    }
    .location-link a::before {
        left: 6vw;
    }
.caption{
	max-width: 100%;
}

}

