.navi__top__container {
    margin-top: 60px;
    background-color: #fff;
    position: sticky;
    top: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.navi__top {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.navi__top::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 3px;
    background-color: #bdd8dd;
    z-index: 0;
}

.navi__top li a {
    color: #bdd8dd;
    border-bottom: 2px solid #bdd8dd;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 8px;
    z-index: 2;
    position: relative;
    text-decoration: none;
}

.navi__top li:first-of-type a {
    color: #0e7083;
    border-bottom: 2px solid #0e7083;
}

.navi__top li a:hover {
    color: #0e7083;
    border-bottom: 2px solid #0e7083;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 8px;
}


@media (max-width: 769px) {
    .navi__top {
        display: none;
    }
}