.page-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.page-hero__inner {
    display: flex;
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 80px));
    height: 220px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
}

.page-hero__english {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .65em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroFade .6s .15s forwards;
}

.page-hero__title {
    margin: 0;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .08em;

    opacity: 0;
    transform: translateY(20px);

    animation: heroFade .7s .3s forwards;
}

.page-hero__lead {
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.9;

    opacity: 0;
    transform: translateY(15px);

    animation: heroFade .7s .45s forwards;
}

.page-hero::before {
    content: "";
    position: absolute;

    left: 0;
    bottom: 32px;

    width: 420px;
    height: 2px;

    background: #477b93;

    z-index: 5;

    animation: leftLine .9s forwards;
}

.page-hero::after {
    content: "";
    position: absolute;

    right: 0;
    top: 48px;

    width: 0;
    height: 2px;

    background: #477b93;

    z-index: 5;

    animation: rightLine .9s forwards;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
}

@keyframes leftLine {
    to {
        width: 340px;
    }
}

@keyframes rightLine {
    to {
        width: 340px;
    }
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   パンくず
========================================================= */

.breadcrumb {
    border-bottom: 1px solid #e5eaec;
    background: #fff;
}

.breadcrumb__inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.breadcrumb__list {
    display: flex;
    min-height: 62px;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 13px;
    list-style: none;
    font-size: 13px;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    color: #727b80;
}

.breadcrumb__item + .breadcrumb__item::before {
    margin-right: 13px;
    content: "/";
    color: #aab2b6;
}

.breadcrumb__item a {
    color: #173f5b;
    text-decoration: none;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
}



@media (max-width:768px){
    .page-hero::after{
        top: 27px;
    }
    .page-hero::before{
        bottom: 20px;
    }
}