.page-header {
    width: 90%;
    margin: 150px auto 75px;
}
.page_title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.page_title_text {
    width: clamp(20rem, 18.182rem + 9.09vw, 25rem);
}
.page_breadcrumb {
    display: flex;
    justify-content: flex-end;
    font-family: var(--enFont);
}
.page_breadcrumb-parent,
.page_breadcrumb-child {
    display: inline-block;
    font-size: 14px;
}
.page_breadcrumb-child {
    position: relative;
}
.page_breadcrumb-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lightGreen);
    border: 1px solid #000;
}
.navi_menu_logo{
    position: fixed;
    top: 75px;
}
@media (max-width:820px) {
    .navi_menu_logo {
        position: static;
    }
    .page_breadcrumb-parent,
    .page_breadcrumb-child {
        font-size: 12px;
    }
}
@media (max-width:599px) {
    .page_title {
        display: block;
    }
    .page_breadcrumb {
        margin: 0 0 20px auto;
    }
}
  