body {
    background-color: #fff;
}

.table th {
    text-align: center;
}

.table thead th {
    background-color: #eee;
}

.l-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

i.c-warning::before {
    color: #ffb84c;
}

.table tr {
    transition: all .3s ease;
}

.table tr:hover {
    background: #ececec !important;
}

.table-layout-fixed {
    table-layout: fixed;
}

.sticky-table,.sticky-table02 {
    border-collapse: separate;
    border-spacing: 0;
}

.sticky-table-item {
    /* 縦スクロール時に固定する */
    position: sticky;
    top: 0;
    /* tbody内のセルより手前に表示する */
    z-index: 1;
}

.sticky-table-item-left {
    position: sticky;
    left: 0;
    z-index: 2;
}

.sticky-table-item-top {
    top: 0;
}

.scroll-table {
    overflow: auto;
    white-space: nowrap;
}

.sticky-table-wrapper {
    max-height: calc(100vh - 150px);
}

.sticky-table tbody > tr td,
.sticky-table02 tbody > tr td {
    background-color: #fff;
}

.sticky-table02 tbody > .holidays td {
    background-color: #FEC6DA;
}
.sticky-table02 tbody > .saturday td {
    background-color: #C3D9FF;
}
.sticky-table02 tbody > .sunday td {
    background-color: #FDB5A1;
}
.sticky-table-total {
    position: sticky;
    left: 0;
    z-index: 2;
}

.sticky-table tbody > tr:hover td,
.sticky-table02 tbody > tr:hover td {
    background-color: #ececec !important;
}

.sticky-table tbody > tr td:first-child,
.sticky-table02 tbody > tr td:first-child {
    position: sticky;
    left: 0;
}
.sticky-table tbody > tr td:nth-child(2),
.sticky-table02 tbody > tr td:nth-child(2) {
    position: sticky;
    left: calc(60px * 1);
}
.sticky-table tbody > tr td:nth-child(3) {
    position: sticky;
    left: calc(60px * 2);
}
.sticky-table tbody > tr td:nth-child(4) {
    position: sticky;
    left: calc(60px * 3);
}
.sticky-table tbody > tr td:nth-child(5) {
    position: sticky;
    left: calc(60px * 3 + 280px);
}

.sticky-table-tr {
    height: 30px;
}

.sticky-table-tr01 td {
    font-size: 14px;
}

.sticky-table-tr02 > th {
    position: sticky;
    top: 30px;
}

.sticky-table-tr02 > th:nth-child(1) {
    min-width: 60px;
    left: 0;
}
.sticky-table-tr02 > th:nth-child(2) {
    min-width: 60px;
    left: calc(60px * 1);
}
.sticky-table-tr02 > th:nth-child(3) {
    min-width: 60px;
    left: calc(60px * 2);
}
.sticky-table-tr02 > th:nth-child(4) {
    min-width: 280px;
    left: calc(60px * 3);
}
.sticky-table-tr02 > th:nth-child(5) {
    min-width: 60px;
    left: calc(60px * 3 + 280px);
}


.sticky-table-tr03-02 > th {
    position: sticky;
    top: 30px;
}
.sticky-table-tr03 > th:nth-child(1) {
    min-width: 60px;
    left: 0;
}
.sticky-table-tr03 > th:nth-child(2) {
    min-width: 60px;
    left: calc(60px * 1);
}

/* CSS変数 */
:root {
    --black:#262626;
    --red:#DD2B07;
    --primary: #207AF7;
}

body {
    padding-top: 170px;
}

.c-header {
    background-color: var(--black);
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,.12);
}

.c-header a {
    color: #fff;
}

.c-header img {
    max-width: 100%;
    /* width: 100px; */
}

.c-header-nav-list-wrap {
    margin-top: auto;
}

.container-fluid > .card {
    border: none;
}

.c-part01-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-part01-title-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.c-part01-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-part01-buttons .btn-warning {
    width: 180px;
}

.c-part01-sub-content01 {
    font-weight: bold;
    font-size: 24px;
}

.c-part01-title {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-part01-title span {
    position: relative;
    display: flex;
    align-items: center;
}

.c-part01-title span::before {
    content: '';
    display: block;
    width: 10px;
    height: 40px;
    background-color: var(--red);
    margin-right: 10px;
}

.c-part02-wrap {
    display: flex;
    align-items: baseline;
    gap: 40px;
}

.c-part02-date {
    font-weight: bold;
    font-size: 24px;
}

.c-part02-prev-next {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sample .btn-danger:not(:hover) {
    background-color: var(--red);
    border-color: var(--red);
}
.sample .btn-primary:not(:hover) {
    background-color: var(--primary);
    border-color: var(--primary);
}
.sample .table {
    font-weight: bold;
}
.sample .table th {
    background-color: var(--black);
    color: #fff;
}
.sample .table .plus {
    color: var(--primary);
}
.sample .table .minus  {
    color: var(--red);
}
.custom .btn-danger:not(:hover) {
    background-color: var(--red);
    border-color: var(--red);
}
.custom .btn-primary:not(:hover) {
    background-color: var(--primary);
    border-color: var(--primary);
}
.custom .table {
    font-weight: bold;
}
.custom .table th {
    background-color: var(--black);
    color: #fff;
}
.custom .table .plus {
    color: var(--primary);
}
.custom .table .minus  {
    color: var(--red);
}

.c-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.c-buttons-wrap .btn {
    min-width: 100px;
}

.c-table01 tr > td:first-child{
    text-align: center;
}

/* デモ用 htmlから消すのが面倒だったため */
.sample .c-table02 tr > *:nth-child(3){
    display: none;
}
.table .holidays {
    background-color: #FEC6DA;
}
.table .saturday {
    background-color: #C3D9FF;
}
.table .sunday {
    background-color: #FDB5A1;
}

.c-table03 {
    max-width: 300px;
}
.c-table03 .table {
    margin-bottom: 10px;
}
.c-table03 td {
    text-align: center;
}
.c-table03-title {
    background-color: var(--black);
    color: #fff;
    text-align: center;
    padding: 0.2em;
    font-weight: bold;
}

.c-title01 {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.c-title01::before {
    content: '';
    display: block;
    width: 10px;
    height: 40px;
    background-color: var(--red);
    margin-right: 10px;
}

.c-table04 tbody > tr:nth-child(even) td{
    background-color: #F2F2F2;
}

.c-box01-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* c-box01ここから */
.c-box01-container .btn {
    font-size: 12px;
}

.c-box01 {
    display: flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 0.25rem;
}

.c-box01-title {
    background-color: var(--black);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    min-width: 100px;
    text-align: center;
    border-radius: 0.25rem;
}

.c-box01-number {
    text-align: center;
    font-weight: bold;
    padding: 4px 20px;
    min-width: 150px;
    font-size: 18px;
}


/* c-box01ここまで */

.btn-dark {
    background-color: var(--black);
    border-color: var(--black);
}

.btn-dark:hover {
    background-color: #1d2124;
    border-color: #1d2124;
}

.c-date-select {
    display: flex;
    align-items: center;
}

.c-date-select label{
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px;
}


.c-shop-select {
    /* -webkit-appearance: menulist-button;
    -moz-appearance: menulist-button;
    appearance: menulist-button;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    padding-right: .5rem; */
}

.c-shop-select .dropdown {
    background-color: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    color: #666;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Rajdhani;
    text-transform: uppercase;
    line-height: .4;
    position: relative;
    font-size: 16px;
    font-weight: 700;
}

.c-shop-select .dropdown .ddl-label {
    padding: 1rem;
}

.c-shop-select .dropdown .dropdown-arrow {
    padding: 1rem 1.25rem;
    border-left: 1px solid #d2d2d2;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    transition: .2s background-color;
}

.c-shop-select .dropdown select {
    -webkit-appearance: menulist-button;
    -moz-appearance: menulist-button;
    appearance: menulist-button;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    padding-right: .5rem;
}

.c-shop-select .dropdown option {
    padding: 9px;
}