body {
    font-size: .875rem;
}

main {
    min-height: 92.7vh;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link.active {
    color: #007bff;
}

main {
    padding-top: 48px;
}

.bg-blueviolet {
    background-color: blueviolet;
}

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

/* BootStrap が svgアイコンを読み込もうとするのを上書きによって防ぐ */
.navbar-toggler-icon {
    background-image: none !important;
}

/*
#content {
    margin-top: 35px;
}
*/
.player-table-tr {
    cursor: pointer;
}

.player-table-tr:hover {
    background-color: violet;
}

#pointsChart {
    width: 80%;
    height: 80%;
}

#piesChart {
    float: left;
}


.border-radius-4 {
    border-radius: 4px;
}

.w-20 {
    width: 20%;
}

.custom-heading {
    position: relative;
    padding-left: 15px;
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.custom-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #1a237e;
}

/* BootStrap で チェックボックスクリック時に画像を読み込もうとするのを防ぐ */
.form-check-input:checked {
    background-image: url('../svg/checkmark.svg') !important;
}

.icon-color-blueviolet {
    color: blueviolet;
}

/* BootStrap 上書き */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* BootStrap 上書き */
.card-header {
    background-color: transparent;
    border-bottom: none;
    padding-top: 1.5rem;
}

/*背景色*/
.bg-color-gwhite {
    background-color: ghostwhite;
}

/*カーソル*/
.cursol-pointer {
    cursor: pointer;
}

/*ホバー*/
.hover-bc-cl-violet-important:hover {
    background-color: blueviolet !important;
}

@media (width <= 768px) {
    footer {
        min-height: 91px;
    }
}