@charset "utf-8";
/* CSS Document */

/* bootstrap menu custom color */
/* https:www.europa-artist.com */

/*

Bootstrap 5.3

 - Navbar: Line 13 ~ 202
 - List group (+badge) : Line 204 ~ 
 - Modal : Line

*/

/* ----------------------------------------------- Navbar ----------------------------------------------- */

.custom-bgcolor-nvb {
    background: #ae76e1;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ae76e1 0%, #7519d1 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ae76e1 0%, #7519d1 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ae76e1 0%, #7519d1 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.custom-navbar {
    font-weight: bold;
}

.custom-navbar .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.custom-navbar .navbar-brand:hover,
.custom-navbar .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9);
}

.custom-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1);
    padding-right: 15px;
    padding-left: 15px;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link:focus {
    color: rgba(41, 82, 232, 1);
    background: rgba(247, 244, 254, 1);
}

.custom-navbar .navbar-nav .nav-link.disabled {
    color: #FFFFFF;
}

.custom-navbar .navbar-nav .show>.nav-link,
.custom-navbar .navbar-nav .active>.nav-link,
.custom-navbar .navbar-nav .nav-link.show,
.custom-navbar .navbar-nav .nav-link.active {
    color: rgba(41, 82, 232, 1);
    background: rgba(247, 244, 254, 1);
}

.custom-navbar .navbar-toggler {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.custom-navbar .navbar-toggler-icon {
    color: #FFFFFF;
}

.custom-navbar .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.custom-navbar .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.custom-navbar .navbar-text a:hover,
.custom-navbar .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9);
}

.custom-navbar .nav-item:hover {
    background: rgba(247, 244, 254, 1);
}

/* ----------------------------------------------- /Navbar ----------------------------------------------- */


/* Media Query Breakpoints: 576px - 768px - 992px - 1200px - 1400px */

/* ------------------------------ ◆ bootstrap media query (single) ◆ ---------------------------- */

/* 1200px～ */
@media (1200px <=width) {
    .custom-navbar .navbar-nav .nav-link {
        padding-right: 15px;
        padding-left: 15px;
        border-radius: 20px;
    }

    .custom-navbar .nav-item:hover {
        border-radius: 20px;
    }

    #ea-logo {
        border-radius: 35px;
        width: 340px;
        height: 70px;
    }
}

/* ------------------------------ ◆ bootstrap media query (multi-2) ◆ ---------------------------- */

/* ～768px */
@media (width < 768px) {
    #navbar-collapse ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0px 0px;

        /* CSS Nesting */

        /*　Staff Blog */
        li:first-child {
            grid-area: 1 / 1 / 2 / 3;
        }

        /* Concert */
        li:nth-child(2) {
            grid-area: 2 / 1 / 3 / 2;
        }

        /* Artist */
        li:nth-child(3) {
            grid-area: 2 / 2 / 3 / 3;
        }

        /* Lesson */
        li:nth-child(4) {
            grid-area: 3 / 1 / 4 / 2;
        }

        /* Score Shop */
        li:nth-child(5) {
            grid-area: 3 / 2 / 4 / 3;
        }

        /* Messages Archives */
        li:nth-child(6) {
            grid-area: 4 / 1 / 5 / 2;
        }

        /* Contact */
        li:last-child {
            grid-area: 4 / 2 / 5 / 3;
        }
    }
}


/* 768～1200px */
@media (768px <=width < 1200px) {
    #navbar-collapse ul {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0px 0px;

        /* CSS Nesting */

        /*　Staff Blog */
        li:first-child {
            grid-area: 1 / 1 / 2 / 4;
        }

        /* Concert */
        li:nth-child(2) {
            grid-area: 2 / 1 / 3 / 2;
        }

        /* Artist */
        li:nth-child(3) {
            grid-area: 2 / 2 / 3 / 3;
        }

        /* Lesson */
        li:nth-child(4) {
            grid-area: 2 / 3 / 3 / 4;
        }

        /* Score Shop */
        li:nth-child(5) {
            grid-area: 3 / 1 / 4 / 2;
        }

        /* Messages Archives */
        li:nth-child(6) {
            grid-area: 3 / 2 / 4 / 3;
        }

        /* Contact */
        li:last-child {
            grid-area: 3 / 3 / 4 / 4;
        }
    }
}

/* ------------------------------ ◆ bootstrap media query (multi-3) ◆ ---------------------------- */

/* ------------------------------ ◆ bootstrap media query (multi-4) ◆ ---------------------------- */

/* ～1200px */
@media (width < 1200px) {
    .custom-navbar .navbar-nav .nav-link {
        padding-left: 10px;
    }

    #navbar-collapse ul {
        display: grid;
    }

    #navbar-collapse li {
        border-bottom: 1px #d9cbfb dashed;
    }

    #ea-logo {
        border-radius: 17px;
        width: 170px;
        height: 35px;
    }
}