/* ----- ヘッダー横並びメニュー用 ----- */
.header-main-menu {
    background-color: #080808;
}
.header-main-menu  a {
    color: #fff;
}
.header-main-menu a:hover {
    background-color: #4cb5f5;
    color: #fff;
}
.header-main-menu .nav-tabs .nav-link.active {
    background-color: #4cb5f5 !important;
    color: #fff !important;
}
.header-main-menu .dropdown-menu {
    background-color: #080808;
}
.header-main-menu .dropdown-item.active {
    background-color: #4cb5f5;
}


/*----------------------------------------------*/
/* ページ上部へ戻るボタン page-top              */
/*----------------------------------------------*/
#page-top {
    position: fixed;
    bottom: 10px;
    right: 1rem;
    z-index: 9999;
    width: 80px;
    height: 125px;
    line-height: 190px;
    text-align: center;
}
#page-top a::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/themes/Users/minoshin-hs-design/images/minomino.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: -1;
}
#page-top a {
    display: block;
    opacity:1;
    color: #fff;
    font-weight: bold;
}
#page-top a::before:hover{
     opacity:0.4;
}
#page-top a:hover {
    text-decoration: none;
    opacity:0.4;
}