:root {
    --bs-body-font-family: 'Noto Sans JP', Open Sans, sans-serif;
    --bs-body-color: #483726;
    --bs-body-font-size: 01rem;
    --main-bg-color: #D4C0AC;
    --app-header-bg: #483726;
    --app-header-color: #FAF7EA;
    --app-sidebar-bg: #FAF7EA;
    --app-sidebar-component-color-rgb: 72, 55, 38;
    --app-sidebar-component-bg: #F28A8C;
    --app-sidebar-active-component-bg: #F28A8C;
    --placeholder-color: #BFBFBF;
    --panel-bg: #FAF7EA;
}
.btn-secondary {
    --bs-btn-bg: #4F4F4F;
}
.btn-warning {
    --bs-btn-bg: #E8A73C;
}
.btn-pink {
    --bs-btn-bg: #F28A8C;
}
.form-control::placeholder, .form-select::placeholder {
    color: var(--placeholder-color);
}
#admin-body {
    background-color: var(--main-bg-color);
}
.app-sidebar .menu .menu-item .menu-link {
    padding: 20px;
    font-weight: bold;
}
.app-sidebar .menu .menu-item .menu-link:hover, .app-sidebar .menu .menu-item .menu-link:focus {
    background-color: var(--app-sidebar-component-bg);
}
.app-sidebar .menu .menu-item .menu-submenu .menu-item .menu-link {
    color: rgba(72, 55, 38, 0.45);
}
.app-sidebar .menu .menu-item .menu-submenu .menu-item.active > .menu-link {
    color: rgba(72, 55, 38, 0.45);
}

.search-panel {
    background-color: var(--panel-bg);
    border-radius: 34px;
    padding: 10px;
}
.search-panel table {
    width: 100%;
}
.search-panel table th, .search-panel table td {
    padding: 8px;
}
.search-panel table th {
    font-weight: normal;
    text-align: right;
}
.search-panel table td .form-control {
    width: auto;
    display: inline-block;
}

.form-fs-8rem .form-control {
    font-size: 0.8rem;
}



.toggle {
     position: relative;
     display: inline-block;
     width: 50px;
     height: 21px;
     background-color: grey;
     border-radius: 30px;
     border: 2px solid gray;
 }
.toggle:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.5s;
}
.checkbox:checked + .toggle::after {
    left : 30px;
}
.checkbox:checked + .toggle {
    background-color: black;
}

.checkbox {
    display : none;
}
.mt3per {
    margin-top: 3%;
}
.btn-grey {
    background-color: grey;
    color: white;
}
.switchsuru {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 25px;
}
.switchsuru input {display:none;}
.slidersuru {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: grey;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}
.slidersuru:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slidersuru {
    background-color: black;
}
input:focus + .slidersuru {
    box-shadow: 0 0 1px;
}
input:checked + .slidersuru:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(55px);
}
.slidersuru:after
{
    content:'しない';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    font-size: 10px;
    font-family: Verdana, sans-serif;
}
input:checked + .slidersuru:after
{
    content:'する';
}
.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 25px;
}
.switch input {display:none;}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: grey;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: black;
}
input:focus + .slider {
    box-shadow: 0 0 1px;
}
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(55px);
}
.slider:after
{
    content:'不可';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    font-size: 10px;
    font-family: Verdana, sans-serif;
}
input:checked + .slider:after
{
    content:'可';
}
.button {
    background-color: #348fe2;
    border: none;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 16px;
}
.button-cancel {
    background-color: #e9ecef;
    border: none;
    color: black;
    font-weight: bold;
    text-decoration:none;
    padding: 10px 20px;
    border-radius: 16px;
}