html {
    min-width: var(--html-min-width);
}

#loading {
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
}

/*****ログイン画面*****/
#login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#login-main,
#login-misspass,
#login-sendmailok,
#login-changepass,
#login-timeout {
    width: 600px;
    padding: 30px 100px;
    border-radius: 14px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.login__top {
    text-align: center;
    margin-bottom: 60px;
}

.login__logo {
    width: 140px;
    margin-bottom: 10px;
}

.login__info span {
    display: block;
}

.login__info span:first-child {
    font-size: 1.8rem;
}

:is(.login__user, .login__password) {
    position: relative;
}

.login__input {
    padding: 10px 30px;
    margin-top: 15px;
    font-size: 1.6rem;
    width: 100%;
}

.login__input-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(30%, -50%);
    width: 20px;
}

.login__bottom {
    text-align: center;
    margin-block: 40px auto;
}

.login__btn {
    font-size: 2rem;
    padding: 7.5px;
    width: 120px;
}

.login__link {
    margin-block: 20px;
}

#login-misspass .login__link {
    margin-top: 100px;
}

#login-sendmailok .login__link {
    margin-top: 250px;
}

.login__link a {
    color: #0d6efd;
}

:is(#login-misspass, #login-sendmailok, #login-changepass) .login__logo {
    width: 80px;
}

#login-misspass .login__info span:last-child {
    margin-top: 20px;
    padding-inline: 30px;
}

:is(#login-misspass, #login-changepass) .login__input {
    padding: 10px;
}

#login-sendmailok .login__info span:last-child {
    margin: 50px auto;
    padding-inline: 10px;
}

#login-changepass .login__input {
    padding-inline: 20px;
}
#login-changepass .login__link {
    margin-top: 100px;
}

/********************/

/*****ヘッダー画面*****/

.header__wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 2;
    min-width: var(--header-min-width);

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 4px 2px;
    height: var(--admin-header-height);
}

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

.header__title-link {
    display: block;
    font-weight: 500;
    font-size: 2rem;
    color: inherit;
}

:is(.logout__icon, .user__icon) {
    width: 20px;
    margin-left: 35px;
    cursor: pointer;
}

.header__user {
    display: flex;
    align-items: center;
}

.header__user :is(.user__icon, .header__user-text) {
    cursor: default;
}

.header__user-text {
    margin-left: 4px;
}

.header__navigation {
    --nav-height: 32px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    height: var(--nav-height);
}

.navigation-title .navigation__item {
    font-size: 1.8rem;
    width: 100% !important;
}

.navigation__items {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.header__navigation .navigation__item {
    display: flex;
    justify-content: center;
    color: #fff;
    padding: 4px 16px;
    width: 100px;
    border-left: 1px solid #5c5353;

}

.header__navigation .navigation__item:hover {
    background-color: #fff;
    color: var(--font-color);
}

.navigation__master-memu {
    display: flex;
    margin-bottom: 0;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.navigation__master-memu .master-menu__item {
    position: absolute;
    top: calc(var(--nav-height) + 0.45px);
    left: -1px;
    padding-block: 6px;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
}

.navigation__master-memu .master-menu__item-link {
    color: #fff;
}

.navigation__master-memu.master-menu__item--active .master-menu__item {
    display: block !important;
}

.navigation__master-memu:hover .navigation__master-memu li {
    display: flex !important;
}

/********************/

/*****TopMenusー画面*****/
.top-menus,
.order-history {
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin: 12px;
    padding: 30px 20px;
}

.top-menus hr {
    height: 3px;
    margin-left: 25px;
    margin-right: 25px;
}

.top-menus__title {
    font-size: 2rem;
    margin-bottom: 50px;
}

.top-menus__content .content-top {
    margin: 0 45px 120px;
    font-size: 1.8rem;
}

.top-menus__content .content-top__item:nth-child(1) {
    margin-bottom: 50px;
}

.top-menus__content .content-top__item:nth-child(2),
.top-menus__content hr {
    margin-left: -20px;
    margin-right: -20px;
}

.order-history,
.top-menus {
    margin-top: calc(var(--admin-header-height) + 50px);
}

.content-bottom__header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2px 4px;
    border-radius: 6px;
}

.content-bottom__items {
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.content-bottom__items {
    padding: 8px;
}

.top-menus__content .content-bottom:last-child {
    margin-top: 50px;
}

/*****注文履歴の画面*****/

.order-history__title {
    margin-bottom: 45px;
}

.order-history__label,
.order-history__items {
    margin-left: 50px;
}

.order-history__label {
    font-weight: 600;
    margin-bottom: 20px;
}

.order-history__items {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.order-history__between {
    margin-inline: 20px;
}

.order-history__from,
.order-history__to {
    display: flex;
}

.order-history__date,
.order-history__time {
    display: flex;
    position: relative;
}

/* .order-history__time {
    margin-left: 10px;
} */

.order-history__calendar-img,
.order-history__clock-img {
    position: absolute;
    width: 20px;
    right: 6px;
    top: 6px;
    cursor: pointer;
}

.order-history__input {
    font-size: 1.6rem;
}

.order-history__input.form-control[readonly] {
    background-color: #fff;
}

.order-history__download {
    white-space: nowrap;
}

.order-history__download-img {
    width: 45px;
    margin-left: 35px;
    cursor: pointer;
}

.order-history__download-text {
    cursor: pointer;
    word-break: keep-all;
    position: relative;
}

.order-history__download-text::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 10px;
    left: -7px;
    bottom: 1px;
}

/********************/

