﻿@charset "UTF-8";
/**
 * Summary:
 *
 *  0. ELEMENT
 *      - 0.1. Body / Typography
 *      - 0.2. Type Elements
        - 0.3. Header
        - 0.4. Sidebar
        - 0.5. Container
        - 0.6. Pageheader
        - 0.7. Footer

/* base style
=====================================================================*/
html, body, div, span, a, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

    ul li,
    ol li {
        list-style: none;
    }

body {
    font-family: Arial;
    background: #FFF;
    min-width: 1300px;
    font-size: 15px;
    color: #222222;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    margin: 0;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

*::selection {
    background: #CFD3DE;
}

.lock {
    overflow: hidden;
    position: relative;
}

.login-txt .help-link.p-relative {
    display: inline-block;
    margin-left: 7px;
    top: -2px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
    font-family: Arial;
    letter-spacing: 0.1em;
    line-height: 1.8;
    outline: none;
    padding: 12px 11px;
    width: 360px;
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-appearance: none;
    transition: .3s;
}

input.flex {
    width: 100%;
}

input[type="submit"], input[type="button"] {
    -webkit-appearance: none;
    border-radius: 5px;
    padding: 0px;
    cursor: pointer;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(102, 175, 233, 0.6);
}

textarea {
    width: 600px;
    height: 200px;
}

input[type="text"].w60 {
    width: 60px;
}

input[type="text"].w80 {
    width: 80px;
}

input[type="text"].w120 {
    width: 120px;
}

input[type="text"].w140 {
    width: 140px;
}

input[type="text"].w180 {
    width: 180px;
}

input[type="text"].w200 {
    width: 200px;
}

input[type="text"].w260 {
    width: 260px;
}

input[type="text"].w300 {
    width: 300px;
}

input[type="text"].w320 {
    width: 320px;
}

input[type="text"].w700 {
    width: 700px;
}

input[type="text"].disable,
input[type="tel"].disable,
input[type="email"].disable,
textarea.disable,
.disable select {
    background: #f3f3f3;
    pointer-events: none;
    color: #7f7f7f;
}

textarea.flex {
    width: 100%;
}

textarea.h80 {
    height: 80px;
    padding: 7px 10px;
}

textarea.h100 {
    height: 100px;
    padding: 7px 10px;
}

textarea.h130 {
    height: 130px;
}

input::placeholder,
textarea::placeholder {
    color: #AEAEA5;
    line-height: 1.5;
}

input[type="checkbox"] {
    width: auto;
    margin: 0px;
    vertical-align: middle;
    cursor: pointer;
    top: -2px;
    position: relative;
}

input[type="radio"] {
    width: auto;
    margin: 0px;
    vertical-align: middle;
    cursor: pointer;
    top: -1px;
    position: relative;
}

label {
    cursor: pointer;
}

input::-ms-clear {
    visibility: hidden;
}

button::-moz-focus-inner {
    border: 0px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

table {
    border-collapse: collapse;
}

.sec {
    padding: 40px 0 60px;
    width: auto;
}

.sec-min {
    padding-bottom: 40px;
}

.sec-wide {
    padding-bottom: 100px;
}

.sec.border-btm {
    border-bottom: 1px solid #e3e3e3;
}

.wrap {
    width: 1260px;
    margin: 0 auto;
    position: relative;
}

    .wrap::after,
    .clearfix::after {
        content: "";
        display: block;
        clear: both;
    }

p {
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin: 0 0 10px 0;
}

    p:last-child {
        margin-bottom: 0;
    }

dl,
dt,
dd {
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin: 0;
    vertical-align: top;
}

.img-wrap img {
    display: block;
    margin: auto;
}

.txt-right {
    text-align: right;
}

.txt-under {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.sp_only {
    display: none !important;
}

@media screen and (max-width: 768px) {
    input,
    textarea {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    html, body {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    input,
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    textarea {
        padding: 7px 15px 6px;
        width: 100%;
    }

    textarea {
        display: block;
    }

    body {
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        letter-spacing: 0.05em;
    }

        body.lock {
            overflow: hidden;
        }

    .sec {
        padding: 45px 0 70px;
        background: #FFF;
    }

    .wrap {
        width: 100%;
        padding: 0 15px;
    }

    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: block !important;
    }
}

.p-t-40 {
    padding-top: 40px;
}

.float_l, .pc_float_l {
    float: left;
}

.float_r, .pc_float_r {
    float: right;
}

@media screen and (max-width:767px) {
    .pc_float_l, .pc_float_r {
        float: none;
    }
}

.p-t-140 {
    padding-top: 140px;
}

.flex-area {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-bottom {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.p-b-60 {
    padding-bottom: 60px;
}

.bg-gray {
    background-color: #f3f3f3;
}

.bg-pink {
    background-color: #ffeff3;
}

.c-red {
    color: #9e2b25;
}

.c-blue {
    color: #054d8b;
}

.c-red.attention {
    font-size: 14px;
    line-height: 1.6;
}

.m-r-10 {
    margin-right: 10px;
}

.m-r-15 {
    margin-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 0.12em;
    line-height: 1.6;
    font-weight: bold;
    position: relative;
}

.h2-01 {
    font-size: 18px;
    padding-left: 28px;
    margin-bottom: 30px;
    position: relative;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.6;
}

    .h2-01.ttl-big {
        font-size: 23px;
    }

    .h2-01::before {
        content: "";
        display: block;
        position: absolute;
        top: 14px;
        left: 0;
        width: 16px;
        height: 2px;
        background: #9e2b25;
    }

    .h2-01.ttl-big::before {
        top: 19px;
    }

.h2-02 {
    margin: 0;
    letter-spacing: 0.12em;
    line-height: 1.6;
    font-weight: bold;
    position: relative;
    background: #f3f3f3;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 25px;
}

.square-head {
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
}

    .square-head.min {
        font-size: 14px;
    }

    .square-head::before {
        content: "";
        display: inline-block;
        position: relative;
        width: 10px;
        height: 10px;
        background: #333;
        margin-right: 8px;
        border-radius: 2px;
        top: -1px;
    }

    .square-head.c-blue::before {
        background-color: #054d8b;
    }

html body .font-20 {
    font-size: 20px;
}

html body .font-22 {
    font-size: 22px;
}

a {
    text-decoration: none;
    color: #222222;
}

button {
    font-family: Arial;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    outline: none;
    letter-spacing: 0.12em;
}

.link {
    text-decoration: underline;
    transition: .3s;
}

.btn-wrap {
    position: relative;
}

.btn {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.12em;
    border-radius: 5px;
    width: 300px;
    height: 60px;
    padding: 15px 0 0;
    transition: .3s;
}

    .btn.small {
        width: 220px;
        height: 48px;
        padding-top: 11px;
        font-size: 14px;
    }

    .btn.w180 {
        width: 180px;
    }

    .btn.w160 {
        width: 160px;
    }

    .btn.w100 {
        width: 100px;
    }

.btn-red {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    text-align: center;
    background: #9e2b25;
    border: 1px solid #9e2b25;
    letter-spacing: 0.12em;
    color: #FFF;
    border-radius: 5px;
    width: 300px;
    height: 60px;
    padding: 15px 0 0;
    transition: .3s;
}

.btn-white {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}

.btn-gray {
    border: 1px solid #ddd;
    color: #333;
    background: #f5f5f5;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.1);
}

.btn-blue {
    border: 1px solid #054d8b;
    background: #054d8b;
    color: #FFF;
}

.btn-orange {
    background: #faad00;
    border-color: #faad00;
    color: #FFF;
}

.btn-ac-red {
    background: #9e2b25;
    border-color: #9e2b25;
    color: #FFF;
}

.btn-green {
    background: #638954;
    border-color: #638954;
    color: #FFF;
}

.btn-remand {
    color: #9e2b25;
    border: 1px solid #9e2b25;
    background: #ffeff3;
}

.btn.back {
    padding-top: 9px;
    width: 180px;
    background: #FFF;
    border: 1px solid #D9DDE6;
}

.btn.next {
    width: 180px;
}

.btn-arrow {
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    transition: .4s;
}

    .btn-arrow.normal {
        font-weight: normal;
    }

.btn span.back {
    display: inline-block;
    margin-right: 4px;
    position: relative;
    left: 0;
    transition: .4s left;
}

.btn span.next,
.btn-arrow span {
    display: inline-block;
    margin-left: 4px;
    position: relative;
    right: 0;
    transition: .3s right;
}

.input-button,
.input-button_letter {
    outline: none;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.12em;
    height: 40px;
    transition: 0.4s;
    background: #FFF;
    border: 1px solid #D9DDE6;
    width: 50px;
}

.input-button_letter {
    font-size: 13px;
    font-weight: normal;
    padding: 0 16px !important;
    min-width: 50px;
    width: auto;
}

    .input-button_letter.bg-gray {
        background: #f5f5f5;
    }

    .input-button_letter.bg-red {
        color: #FFF;
        background: #9e2b25;
        border-color: #9e2b25;
    }

    .input-button_letter.btn-submit {
        background: #9e2b25;
        color: #FFF;
        border: none;
    }

button.btn,
input.btn {
    padding: 0 !important;
}

.btn.disable {
    opacity: 0.7;
    background: #a1a1a1;
    border-color: #a1a1a1;
    color: #302e2e;
    pointer-events: none;
}

.btn.btn-search {
    width: 100px;
    margin: 2px 0px 0px 10px;
}

.btn.icon-home::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 22px;
    height: 25px;
    background-size: 17px;
    background-image: url(../images/common/home.png);
    background-repeat: no-repeat;
    top: -1px;
    vertical-align: top;
    background-position: center left;
    transition: .3s;
}

.btn.btn-update::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 23px;
    height: 28px;
    background-size: 17px;
    background-image: url(../images/common/icon_update.png);
    background-repeat: no-repeat;
    top: -1px;
    vertical-align: top;
    background-position: center left;
    transition: .3s;
}

.btn.btn-update_after::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 23px;
    height: 28px;
    background-size: 18px;
    background-image: url(../images/common/icon_update_wt.png);
    background-repeat: no-repeat;
    top: 0px;
    vertical-align: top;
    background-position: center left;
    margin-left: 5px;
    transition: .3s;
}

.btn.btn-mail::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 23px;
    height: 28px;
    background-size: 18px;
    background-image: url(../images/common/icon_mail.png);
    background-repeat: no-repeat;
    top: 0px;
    vertical-align: top;
    background-position: center left;
    margin-left: 5px;
    transition: .3s;
}

.btn.btn-update_after.disable::after,
.btn.btn-mail.disable::after {
    opacity: 0.6;
}

.btn.btn-arrow {
    font-weight: normal;
}

    .btn.btn-arrow:hover {
        color: #FFF;
    }

@media screen and (min-width:960px) {
    .link:hover {
        color: #9e2b25;
    }

    .c-red.link:hover {
        opacity: 0.7;
    }

    .btn:hover span.back {
        left: -3px;
    }

    .btn:hover span.next {
        right: -3px;
    }

    .btn-arrow:hover {
        color: #9e2b25;
    }

    .btn-red:hover {
        border-color: #d71338;
        background: #d71338;
    }

    .btn-white.hover-red:hover {
        background: #9e2b25;
        border: 1px solid #9e2b25;
        color: #FFF;
    }

    .btn-white.hover-gray:hover {
        background: #f3f3f3;
    }

    .btn-gray:hover {
        background: #e3e3e3;
    }

    .btn-blue:hover {
        border-color: #015EAE;
        background: #015EAE;
    }

    .btn-arrow:hover span {
        right: -3px;
    }

    .input-button:hover,
    .input-button_letter:hover {
        background: #f3f3f3;
    }

    .input-button_letter.bg-gray:hover {
        background: #e3e3e3;
    }

    .input-button_letter.bg-red:hover {
        border-color: #d71338;
        background: #d71338;
    }

    .btn-remand:hover {
        /*    background: #fee7ec;*/
        background: #9e2b25;
        color: #FFF;
    }

    .btn.icon-home:hover::before {
        background-image: url(../images/common/home_wt.png);
    }

    .btn.btn-update:hover::before {
        background-image: url(../images/common/icon_update_wt.png);
    }
}

/*-----------------------
Social bg Color
-------------------------*/

#copyright {
    font-size: 11px;
    color: #a1a1a1;
    text-align: center;
    letter-spacing: 0.12em;
    padding: 10px 0 15px;
}

#pagetop {
    position: absolute;
    right: 30px;
    bottom: 35px;
    cursor: pointer;
    transition: .4s;
    z-index: 10;
}

@media screen and (max-width:767px) {
    #pagetop {
        right: 16px;
        bottom: 20px;
    }
}

.pinterest-bgcolor {
    background-color: #c8232c;
    color: #fff;
}

/*-----------------------
Legends
-------------------------*/

/* header
=====================================================================*/
#header {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #9e2b25;
    padding: 10px 25px 10px 25px;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
    z-index: 10;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    position: relative;
}

.header-logo {
    margin-right: 20px;
}

    .header-logo img {
        width: 64px;
    }

#header .system-ttl {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.12em;
    line-height: 1.6;
}

.header-user-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    position: relative;
    padding-right: 35px;
}

    .header-user-icon::after {
        content: "";
        display: block;
        position: absolute;
        top: calc(50% - 5px);
        right: 16px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transform: rotate(135deg);
        transition: .3s;
    }

.user-icon-wrap {
    margin-right: 7px;
}

    .user-icon-wrap img {
        width: 34px;
    }

.header-user-menu {
    display: none;
    right: 0;
    position: absolute;
    width: 200px;
    padding: 12px 0 15px 10px;
    background: rgba(255,255,255,0.96);
    transition: .3s;
    top: 54px;
    border: 2px solid #EBEBEB;
}

    .header-user-menu.active {
        display: block;
    }

    .header-user-menu a {
        display: block;
        font-size: 14px;
        padding: 5px 0 4px 22px;
        position: relative;
        transition: .3s;
    }

        .header-user-menu a::before {
            content: "";
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            border-color: #9e2b25 transparent transparent transparent;
            left: 7px;
            top: calc(50% - 2px);
            pointer-events: none;
            transition: .3s;
            transform: rotate(-90deg);
        }

.header-user-icon:hover {
    opacity: 0.7;
}

.header-user-menu a:hover {
    color: #9e2b25;
    padding-left: 26px;
}

.admin-page .header-user-menu a::before {
    border-color: #054d8b transparent transparent transparent;
}

.admin-page .header-user-menu a:hover {
    color: #054d8b;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

/* パンくず
=====================================================================*/
#breadcrumb {
    font-size: 13px;
    padding: 15px 15px 15px 15px;
    width: 100%;
    display: flex;
    box-shadow: none;
    position: relative;
    top: -55px;
    margin-top: 55px;
    margin-bottom: -55px;
}

    #breadcrumb a {
        font-size: 14px;
        transition: color .4s;
        position: relative;
        padding-right: 12px;
        letter-spacing: 0.1em;
        margin-right: 12px;
        display: inline-block;
    }

        #breadcrumb a:first-child {
            padding-left: 24px;
        }

        #breadcrumb a::after {
            content: ">";
            position: absolute;
            display: block;
            top: 1px;
            right: -4px;
            width: auto;
            height: auto;
            background: none;
            color: #666;
            font-size: 12px;
        }

        #breadcrumb a:last-child::after {
            display: none;
        }

        #breadcrumb a:first-child::before {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            width: 20px;
            height: 20px;
            background-size: 16px;
            background-image: url(../images/common/home.png);
            background-repeat: no-repeat;
            top: 4px;
        }

    #breadcrumb span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        letter-spacing: 0.1em;
    }

@media screen and (min-width:960px) {
    #breadcrumb a:hover {
        color: #9e2b25;
    }
}

#breadcrumb.is-active {
    border-top: 2px solid #9e2b25;
    position: fixed;
    top: 0;
    margin-top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    padding: 0 15px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
    transition: top .3s;
}

.admin-page #breadcrumb.is-active {
    border-top-color: #054d8b;
}

#breadcrumb.is-active a {
    padding: 15px 15px 15px 4px;
}

    #breadcrumb.is-active a:first-child {
        padding-left: 23px;
    }

        #breadcrumb.is-active a:first-child::before {
            top: 19px;
        }

    #breadcrumb.is-active a::after {
        content: ">";
        right: -4px;
        top: 17px;
        width: auto;
        height: auto;
        background: none;
        color: #666;
        font-size: 12px;
    }

.anchorlink ul {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: flex-start;
}

.anchorlink li {
    margin: 0 15px 0px 0;
    position: relative;
}

    .anchorlink li:nth-child(5n) {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .anchorlink li:last-child {
        margin-bottom: 0;
    }

    .anchorlink li a {
        display: block;
        padding: 16px 16px 0 16px;
        width: 240px;
        text-align: left;
        text-decoration: none;
        transition: .3s;
        background: #fff;
        border: 1px solid #DDDDDD;
        height: 62px;
    }

        .anchorlink li a.check {
            text-align: center;
            background: #f5f5f5;
        }

        .anchorlink li a.disable,
        .admin-page .anchorlink li a.disable {
            pointer-events: none;
            background: #a1a1a1;
            border-color: #a1a1a1;
        }

        .anchorlink li a::after {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 5px);
            right: 16px;
            width: 6px;
            height: 6px;
            border-top: 2px solid #9e2b25;
            border-right: 2px solid #9e2b25;
            transform: rotate(45deg);
            transition: .3s;
        }

        .anchorlink li a.check::before {
            content: "";
            display: inline-block;
            position: relative;
            background-image: url(../images/common/check.png);
            background-repeat: no-repeat;
            background-position: 0px 0px;
            background-size: 100%;
            width: 18px;
            height: 18px;
            margin-right: 5px;
            top: 4px;
        }

        .anchorlink li a.check::after {
            display: none;
        }

        .anchorlink li a:hover {
            background: #9e2b25;
            color: #FFF;
            border-color: #9e2b25;
        }

            .anchorlink li a:hover::after {
                border-color: #fff;
            }

        .anchorlink li a.check:hover {
            background: #e3e3e3;
            color: initial;
            border-color: #dddddd;
        }

        .anchorlink li a.new-window::after,
        .anchorlink li a.pdf::after {
            border: none;
            transform: none;
        }

        .anchorlink li a.new-window::after {
            content: "";
            display: block;
            position: absolute;
            width: 16px;
            height: 16px;
            background-image: url(../images/common/icon_window_rd.png);
            background-size: 16px;
            background-repeat: no-repeat;
            top: calc(50% - 9px);
        }

.admin-page .anchorlink li a.new-window::after {
    background-image: url(../images/common/icon_window_wt.png);
}

.anchorlink li a.pdf::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    background-image: url(../images/common/icon_dl_red.png);
    background-size: 16px;
    margin-left: 6px;
    top: 2px;
    right: auto;
    background-repeat: no-repeat;
}

.anchorlink li a.pdf:hover::after {
    background-image: url(../images/common/icon_dl_wt.png);
}

.anchorlink li a.new-window:hover::after {
    background-image: url(../images/common/icon_window_wt.png);
}

.anchorlink li a.row2 {
    padding: 8px 16px 0 16px;
    line-height: 1.4;
}

.page-ttl {
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
}

.mypage-contents {
    position: relative;
}

.right-btn-area {
    top: -12px;
    position: relative;
    right: 0;
    text-align: right;
}

    .right-btn-area .data-operation-btn {
        position: relative;
        top: auto;
        display: block;
    }

.btn-col-wrap a {
    margin-right: 10px;
}

.table-wrap {
    position: relative;
}

.table-layout table {
    width: 100%;
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
}

.table-layout.w-auto table {
    width: auto;
}

.inner-table-layout.w-auto {
    width: auto;
}

.table-layout tr {
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
}

.table-layout th,
.table-layout td {
    font-size: 14px;
    border-right: 1px solid #e3e3e3;
    line-height: 1.5;
}

.table-layout th {
    position: relative;
    font-weight: bold;
    text-align: center;
    padding: 20px 10px;
    background: #f3f3f3;
    background-clip: padding-box;
    width: 200px;
    text-align: left;
}

.nav-divider {
    padding: 10px 14px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.nav-left-sidebar .submenu {
    padding-left: 12px;
    padding-right: 12px;
    /* margin-top: 5px; */
    /* background: #24274a;*/
}

.nav-left-sidebar .submenu .nav .nav-item .nav-link {
    font-size: 14px;
    padding: 6px 12px;
    transition: 0.3s;
}

.table-layout th span.min {
    font-size: 13px;
    font-weight: normal;
}

.table-layout td {
    text-align: left;
    background: #FFF;
    padding: 12px 15px;
    position: relative;
    background-clip: padding-box;
}

    .table-layout td.border-right-dashed {
        border-right-style: dashed;
    }

.table-layout .border-bottom-dashed {
    border-bottom-style: dashed;
}

.table-layout td.wide {
    padding: 16px 15px;
}
/* -----------------------
Leftsidebar - Primary
------------------------- */

.table-layout td.txt-right {
    text-align: right;
}

.table-layout th.txt-left {
    text-align: left;
}

.table-layout .status-temp td,
.table-layout .bg-pink td {
    background: #ffeff3;
    background-clip: padding-box;
}

.table-layout .center {
    text-align: center;
}

.table-layout.pattern2 {
    border-left: none;
}

    .table-layout.pattern2 th {
        text-align: left;
        width: 250px;
        border-right: none;
        padding: 24px 20px;
    }

    .table-layout.pattern2 td {
        width: 1010px;
        border-right: none;
    }

.status-attention {
    margin-bottom: 40px;
    color: #9e2b25;
    padding: 20px;
    border: 2px solid #9e2b25;
    border-radius: 10px;
}

.table-layout th.h-narrow {
    padding: 10px;
}

.table-layout td.w-narrow {
    padding: 12px 0px 12px 12px;
}

.table-layout.scroll .w120 {
    min-width: 120px;
}

.table-layout.scroll .w130 {
    min-width: 130px;
}

.table-layout.scroll .w220 {
    min-width: 220px;
}

.reserve-item-area {
    width: 68px;
    height: 68px;
    position: relative;
    margin: auto;
}

.reserve-item-icon {
    width: 32px;
    height: 32px;
    color: #c5ccd2;
    line-height: 30px;
    border-radius: 5px;
    position: absolute;
    border: 1px solid #c5ccd2;
}

    .reserve-item-icon.icon-reserved {
        color: #FFF;
    }

    .reserve-item-icon.icon-room {
        top: 0;
        left: 0;
    }

    .reserve-item-icon.icon-reserved.icon-room {
        background: #054d8b;
        border-color: #054d8b;
    }

    .reserve-item-icon.icon-equip {
        top: 0;
        right: 0;
    }

    .reserve-item-icon.icon-reserved.icon-equip {
        background: #faad00;
        border-color: #faad00;
    }

    .reserve-item-icon.icon-bedroom {
        bottom: 0;
        left: 0;
    }

    .reserve-item-icon.icon-reserved.icon-bedroom {
        background: #eb3a0e;
        border-color: #eb3a0e;
    }

    .reserve-item-icon.icon-food {
        bottom: 0;
        right: 0;
    }

    .reserve-item-icon.icon-reserved.icon-food {
        background: #638954;
        border-color: #638954;
    }

.table-row-color tr td {
    transition: .3s;
}

.admin-page .table-row-color tr:nth-child(2n) td {
    background-color: #edf7ff;
}

/* 色検索 */
.reserve-popup.search-color-popup {
    width: 420px;
}

.color-box {
    display: flex;
    flex-wrap: wrap;
}

.color-label {
    width: 100px;
    height: 80px;
    margin: 0 10px 20px;
    cursor: pointer;
    border: 3px solid #ddd;
    transition: .3s;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 13px;
}

    .color-label.color-label-checked {
        border-color: #054d8b;
    }

    .color-label.color1,
    .color-selected.color1,
    .user-info-area.color1 {
        /*  background: #f5f900;*/
        background: #ffff00;
    }

    .color-label.color2 {
        background: #ffeff5;
    }

    .color-label.color3 {
        background: #ffe8b3;
    }

    .color-label.color4 {
        background: #d3ffdf;
    }

    .color-label.color5 {
        background: #c7f5ff;
    }

    .color-label:hover {
        border-color: #054c8a;
    }

.color-select-btn {
    background: #FFF;
    border: 1px solid #ddd;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

    .color-select-btn img {
        width: 28px;
    }

    .color-select-btn:hover {
        background: #f3f3f3;
    }

.color-selected-area {
    margin-left: 7px;
    height: 46px;
    background: #fff;
    padding: 0px 26px 0 10px;
    display: flex;
    align-items: center;
    min-width: 186px;
}

.color-selected {
    border: 2px solid #ddd;
    width: 80px;
    height: 30px;
    margin-right: 10px;
}

.color-selected-title {
    font-size: 14px;
}

.page-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #b1b1c0;
    content: "\f105";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 600;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #71728e;
}

/* =======================================================
■ T03
========================================================*/
.department-row {
    border: 1px solid #cccbcb;
    display: inline-flex;
    margin-right: 30px;
    margin-bottom: 35px;
}

    .department-row span:first-child {
        text-align: center;
        width: 100px;
    }

    .department-row span:last-child {
        border-right: none;
        min-width: 240px;
    }

    .department-row span {
        border-right: 1px solid #cccbcb;
        padding: 10px 20px;
        background: #FFF;
    }

.footer .footer-links a {
    color: #71748d;
    margin-left: 1.5rem;
    -webkit-transition: all .4s;
    transition: all .4s;
}

/* ==========================================================================
  1. Dashboard Index-sales
   ========================================================================== */

.select-date-wrap {
    position: relative;
    margin-bottom: 6px;
}

    .select-date-wrap .btn-col-wrap {
        position: absolute;
        right: 0;
        top: 0;
    }

.selectbox-wrap.w200 {
    width: 200px;
}

.selectbox-wrap.select-year {
    width: 88px;
}

/* ==========================================================================
  2. Dashboard Index-Finance
   ========================================================================== */

.dashboard-finance {
}

.selectbox-wrap.select-room {
    width: 260px;
}

.select-label {
    line-height: 1;
    font-size: 14px;
    padding: 0px 10px 0 8px;
}

.select-room-wrap p {
    margin: 0;
    line-height: 1;
    font-size: 14px;
    padding-right: 10px;
}

.calendar-action-wrap {
    margin-bottom: 15px;
    position: relative;
}

.calendar-action .input-area {
    display: inline-block;
    vertical-align: top;
}

.calendar-table table {
    width: 100%;
    border-top: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
}

.calendar-table tr {
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
}

.calendar-table th,
.calendar-table td {
    font-size: 14px;
    border-right: 1px solid #e3e3e3;
    line-height: 1.5;
    vertical-align: top;
    width: 14%;
}

.calendar-table th {
    font-weight: bold;
    text-align: center;
    background: #f3f3f3;
    padding: 10px;
    font-size: 13px;
}

    .calendar-table th.ttl {
        font-size: 14px;
    }

.calendar-table td {
    text-align: left;
    background: #FFF;
}

    .bg-sun,
    .calendar-table td.bg-sun,
    .table-layout td.bg-sun,
    .room-view-calendar .bg-sun td {
        background: #feeae9;
        background-clip: padding-box;
    }

    .bg-sat,
    .calendar-table td.bg-sat,
    .table-layout td.bg-sat,
    .room-view-calendar .bg-sat td {
        background: #eaf4fe;
        background-clip: padding-box;
    }

.cal-date {
    margin-bottom: 5px;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    z-index: 0;
    padding-top: 5px;
}

.cal-reserve-link .cal-date {
    padding-top: 0px;
}

.cal-reserve-link {
    display: block;
    text-decoration: underline;
    transition: .4s;
    height: 120px;
    padding: 5px;
    text-align: center;
}

.cal-reserve-total {
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    text-align: center;
}

.sec-message .status-attention {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 16px;
}

.influence-finder .icon-circle {
    height: 40px;
    width: 40px;
    display: inline-block;
    padding: 9px;
    line-height: 1.7;
}

@media screen and (min-width: 960px) {
    .cal-reserve-link:hover {
        color: #9e2b25;
    }
}

/* =======================================================
■ 304 研修室予約
========================================================*/
.bar-chart-table {
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
}

.row.table-header {
    background: #f3f3f3;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
}

    .row.table-header.p0 {
        padding: 0px;
        border-right: none;
    }

.col-header-roomtype {
    width: 259px;
    border-right: 1px solid #e3e3e3;
    padding: 10px;
}

.col-header-timetable {
    width: 1000px;
    justify-content: space-around;
}

.timetable-hour {
    border-right: 1px solid #e3e3e3;
    width: calc(100% / 13);
    display: flex;
    align-items: center;
    justify-content: center;
}

.row.table-data {
    position: relative;
    border-bottom: 1px solid #e3e3e3;
}

    .row.table-data .row-02 {
        position: absolute;
        top: 0px;
        left: 259px;
        width: 1000px;
        height: 100%;
        bottom: 0;
        margin: auto;
    }

.col-roomtype-detail {
    width: 259px;
    border-right: 1px solid #e3e3e3;
    padding: 10px 100px 15px 10px;
    position: relative;
}

    .col-roomtype-detail.admin-only {
        background: #f3f3f3;
    }

.room-name {
    line-height: 1.5;
    font-size: 14px;
}

.room-capacity {
    font-size: 13px;
    color: #9d9d9d;
}

.room-detail-popupbtn {
    font-size: 13px;
    background: #f3f3f3;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: .4s;
    padding: 1px 0px 1px 17px;
    cursor: pointer;
    margin: 7px 0 0;
    position: absolute;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.1);
    width: 78px;
    right: 17px;
    top: 5px;
    height: 25px;
}

.admin-only .room-detail-popupbtn {
    background: #fff;
}

.room-detail-popupbtn.active,
.room-default .room-detail-popupbtn.active {
    background: #e3e3e3;
}

.room-default .room-detail-popupbtn {
    background: #fff;
}

.room-detail-popupbtn::before, .room-detail-popupbtn::after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: 12px;
    width: 10px;
    height: 2px;
    background: #333;
    transition: .2s;
}

.room-detail-popupbtn::after {
    transform: rotate(90deg);
}

.room-detail-popupbtn.active::after {
    transform: rotate(0);
    opacity: 0;
}

.room-detail-popupbtn.bg-white {
    background: #fff;
    padding: 2px 0px 1px 17px;
    right: 12px;
    top: 15px;
    text-align: left;
    font-weight: normal;
    height: 25px;
    width: 34px;
}

.room-detail-popupbtn::before,
.room-detail-popupbtn::after {
    right: 12px;
}

.room-detail-popup {
    position: absolute;
    left: 163px;
    top: 55px;
    width: 360px;
    background: #FFF;
    z-index: 1;
    padding: 15px 15px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

    .room-detail-popup.type2 {
        top: 29px;
    }

    .room-detail-popup.active {
        opacity: 1;
        visibility: visible;
    }

.room-detail-ttl {
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
    padding: 3px 25px 6px 12px;
    border-left: 3px solid #9e2b25;
    border-bottom: 1px solid #e3e3e3;
    line-height: 1.5;
}

.close-btn {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    position: absolute;
    right: 6px;
    top: 7px;
    transition: .4s;
    cursor: pointer;
}

    .close-btn::before, .close-btn::after {
        content: "";
        display: block;
        position: absolute;
        top: 15px;
        right: 8px;
        width: 18px;
        height: 2px;
        transition: .3s;
        background: #343434;
    }

    .close-btn::before {
        transform: rotate(45deg);
    }

    .close-btn::after {
        transform: rotate(-45deg);
    }

.room-detail-table {
    width: 100%;
}

    .room-detail-table tr {
        margin-bottom: 5px;
        display: flex;
        border-bottom: none;
        flex-wrap: wrap;
    }

        .room-detail-table tr:last-child {
            margin-bottom: 0;
        }

    .room-detail-table th,
    .room-detail-table td {
        font-size: 12px;
    }

    .room-detail-table th {
        vertical-align: top;
        line-height: 1.4;
        background-color: #f5f5f5;
        width: 108px;
        font-weight: normal;
        text-align: center;
        padding: 5px 4px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.06em;
        border-right: none;
    }

    .room-detail-table td {
        padding: 0 8px 0;
        width: 220px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        border-right: none;
        font-weight: normal;
    }

.table-roomtype .room-detail-table td {
    text-align: left;
}

.table-layout .room-detail-table {
    border: none;
}

.room-detail-popup.type2 .room-detail-table td {
    padding: 0 0 0 8px;
}

.room-detail-table td img {
    padding: 10px 0px 10px 5px;
    width: 100%;
}

.col-time-schedule {
    width: 1000px;
    justify-content: space-around;
}

.grid-cell {
    border-right: 1px solid #e3e3e3;
    width: calc(100% / 26);
}

.bar-chart-cell {
    position: absolute;
    width: 300px;
    height: 25px;
    border-radius: 5px;
    left: 80px;
    top: -8px;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.1);
}

    .bar-chart-cell.bar-selected {
        background: #b3e1f7;
    }

    .bar-chart-cell .inner-ttl {
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        padding: 0px 0px 0px 15px;
        position: relative;
        top: -1px;
        white-space: nowrap;
    }

    .bar-chart-cell.bar-selecting {
        background: #f2b3b3;
    }

.bar-limited {
    background: #f3f3f3;
}

.name-input-window {
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    top: 200px;
    width: 360px;
    background: #FFF;
    z-index: 5;
    padding: 20px 15px 15px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.3);
    border-radius: 5px;
    transition: .3s ease;
    display: none;
}

    .name-input-window .input-area {
        margin-bottom: 20px;
    }

    .name-input-window input[type="text"] {
        width: 100%;
        transition: .3s;
        border: none;
        border-bottom: 1px solid #e3e3e3;
        border-radius: 5px 5px 0px 0px;
        background: #f5f5f5;
    }

        .name-input-window input[type="text"]:focus {
            border-color: #9e2b25;
            box-shadow: none;
        }

    .name-input-window .btn-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.head01 {
    margin-bottom: 12px;
}

.guide-area {
    position: absolute;
    right: 0;
    top: -30px;
    display: flex;
}

.guide-con {
    font-size: 12px;
    position: relative;
    margin-left: 18px;
}

    .guide-con::before {
        content: "";
        display: inline-block;
        position: relative;
        width: 12px;
        height: 12px;
        border-radius: 2px;
        margin-right: 4px;
        top: 2px;
    }

    .guide-con.new::before {
        background: #f2b3b3;
    }

    .guide-con.reserved::before {
        background: #b3e1f7;
    }

    .guide-con.admin::before {
        background: #f3f3f3;
        border: 1px solid #e3e3e3;
        width: 10px;
        height: 10px;
    }

@media screen and (min-width: 960px) {
    .room-detail-popupbtn:hover {
        background: #e3e3e3;
    }

    .close-btn:hover {
        background: #f5f5f5;
    }

    .input-button_letter.btn-submit:hover {
        background: #9e2b25;
        opacity: 0.7;
    }
}

.reserve-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 5;
    width: 500px;
    height: 312px;
    background: #fff;
    padding: 22px 26px 30px;
    border-top: 5px solid #9e2b25;
    border-radius: 5px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    z-index: 11;
}

.reserve-popup-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    min-height: 30px;
}

.reserve-popup-ttl {
    font-weight: bold;
    width: 126px;
    font-size: 14px;
    position: relative;
}

    .reserve-popup-ttl::before {
        content: "";
        display: inline-block;
        position: relative;
        width: 10px;
        height: 10px;
        background: #333;
        margin-right: 8px;
        border-radius: 2px;
        top: 0px;
    }

.reserve-popup-detail {
    line-height: 1.5;
    width: 320px;
}

    .reserve-popup-detail.training-time {
        display: flex;
        align-items: center;
    }

        .reserve-popup-detail.training-time .selectbox-wrap {
            width: 88px;
        }

.reserve-popup-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 25px;
    bottom: 22px;
}

    .reserve-popup-btn.center {
        justify-content: center;
    }

.reserve-popup-delete .link {
    font-size: 14px;
    color: #9e2b25;
    display: inline-block;
    transition: .3s;
}

.reserve-popup .btn {
    width: 128px;
    height: 44px;
    font-size: 13px;
    padding-top: 9px;
}

.reserve-popup-delete .link:hover {
    opacity: 0.7;
}

.black-layer {
    width: 100%;
    overflow: hidden;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10;
}

.reserve-popup.type-reference {
    padding-top: 12px;
    height: auto;
    max-height: 520px;
}

.type-reference .reserve-popup-row {
    margin-bottom: 0px;
    align-items: end;
    min-height: auto;
    padding: 8px 10px 8px 10px;
}

    .type-reference .reserve-popup-row:nth-child(odd) {
        background: #f3f3f3;
    }

    .type-reference .reserve-popup-row:last-child {
        margin-bottom: 0;
    }

.type-reference .reserve-popup-ttl {
    width: 160px;
    font-size: 13px;
    font-weight: normal;
    font-weight: bold;
}

    .type-reference .reserve-popup-ttl::before {
        display: none;
    }

.type-reference .reserve-popup-detail {
    font-size: 14px;
    padding-left: 10px;
}

.type-reference .reserve-popup-btn {
    position: relative;
    bottom: auto;
    border-top: 1px solid #e3e3e3;
    padding-top: 22px;
    margin-top: 21px;
}

.popup-information-ttl {
    font-weight: bold;
    margin-bottom: 18px;
    position: relative;
    padding: 5px 25px 6px 0px;
    border-bottom: 1px solid #e3e3e3;
    font-size: 15px;
}

.btn-danger.focus,
.btn-danger:focus {
    color: #fff;
    background-color: #da0419;
    border-color: #da0419;
    box-shadow: 0 0 0 1px rgb(218, 4, 25);
}

.table-layout.table-n02 th {
    background: none;
    width: 180px;
    vertical-align: top;
}

.reservation-list {
    margin: 5px 0;
}

    .reservation-list li {
        overflow: hidden;
        border-radius: 5px;
    }

        .reservation-list li a {
            padding: 12px 15px 12px 15px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            transition: .4s;
        }

.reservation-detail span {
    margin-right: 25px;
}

.modify-btn {
    background: #333;
    color: #FFF;
    padding: 3px 10px 4px;
    border-radius: 20px;
    font-size: 13px;
    transition: .4s;
}

@media screen and (min-width: 960px) {
    .reservation-list li a:hover {
        background: #f3f3f3;
    }

        .reservation-list li a:hover .modify-btn {
            background: #9e2b25;
        }
}

/*--- btn light --*/

.input-right-txt {
    display: inline-block;
    margin-left: 5px;
}

.input-left-txt {
    display: inline-block;
    margin-right: 3px;
}

.table-roomtype td {
    text-align: center;
}

.table-roomtype .txt-left {
    text-align: left;
    padding-left: 15px;
}

.table-roomtype .tag {
    display: inline-block;
    margin-left: 10px;
    font-weight: normal;
    font-size: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    padding: 4px 8px 5px;
    line-height: 1;
}

    .table-roomtype .tag.tag-training {
        background: #9e2b25;
        color: #fff;
        border-color: #9e2b25;
    }

/*--- btn outline secondary --*/

.btn-outline-secondary {
    color: #ff407b;
    background-color: transparent;
    border-color: #ff407b;
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #ff407b;
        border-color: #ff407b;
    }

.update-date {
    position: relative;
    margin-bottom: 8px;
}

    .update-date p {
        font-size: 14px;
    }

.input-area-wrap.checkbox-bg {
    padding: 15px 20px 18px;
    border-radius: 5px;
}

.file-area {
    border-top: 1px dashed #c2c2c2;
    padding-top: 15px;
    margin-top: 14px;
}

.food-input-check {
    margin-left: 15px;
}

/*--- btn outline danger --*/

.btn-outline-danger {
    color: #ef172c;
    background-color: transparent;
    border-color: #ef172c;
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #ef172c;
        border-color: #ef172c;
    }

.sec-reserve-infomation {
    padding: 40px 0 20px;
}

.reserve-information {
    border-radius: 5px;
    margin-bottom: 40px;
}

    .reserve-information.border {
        border: 1px solid #e3e3e3;
        padding: 18px 20px 20px;
    }

    .reserve-information .title {
        margin-bottom: 10px;
    }

    .reserve-information ul {
        background: #f3f3f3;
        padding: 13px 15px;
        border-radius: 5px;
    }

    .reserve-information li {
        font-size: 14px;
        margin-bottom: 3px;
    }

        .reserve-information li:last-child {
            margin-bottom: 0;
        }

input[type="text"].input-num {
    width: 80px;
    padding: 8px 10px;
}

    input[type="text"].input-num.w60 {
        width: 60px;
    }

.equipment-num {
    display: inline-block;
    margin-left: 22px;
    position: relative;
}

    .equipment-num::before {
        content: "";
        display: block;
        position: absolute;
        left: -9px;
        top: 2px;
        height: 16px;
        width: 1px;
        background: #222;
        transform: rotate(25deg);
    }

    .equipment-num.ml20 {
        margin-left: 20px;
    }

.table-layout td.equip-name {
    padding-right: 50px;
    width: 220px;
}

.equip-name .room-detail-popupbtn.small {
    top: 21px;
    right: 10px;
}

.equip-name .room-detail-popup.type2 {
    left: 220px;
    top: 21px;
}

.close-btn.hover-red {
    background: none;
}

    .close-btn.hover-red::before,
    .close-btn.hover-red::after {
        background: #aca5a5;
    }

.close-btn.type2::before,
.close-btn.type2::after {
    width: 16px;
}

.close-btn.type3::before,
.close-btn.type3::after {
    top: 17px;
    right: 12px;
}

.close-btn.type4 {
    top: 16px;
}

    .close-btn.type4::before,
    .close-btn.type4::after {
        width: 16px;
    }

.close-btn.hover-red:hover::before,
.close-btn.hover-red:hover::after {
    background: #9e2b25;
}

.input-button.arrow-small {
    width: 40px;
    height: 28px;
}

.input-area.arrow-left,
.input-area.arrow-right {
    position: absolute;
    bottom: 72px;
    z-index: 1;
}

.input-area.arrow-left {
    left: 0px;
}

.input-area.arrow-right {
    right: 0px;
}

.btn-brand-link {
    color: #ffc750 !important;
}

/* =======================================================
■ 宿泊詳細
========================================================*/
.room-reserve-wrap {
    margin: 22px auto 40px;
}

.room-reserve-area {
    margin-bottom: 30px;
}

    .room-reserve-area .square-head {
        font-size: 14px;
    }

.room-reserve-date {
    position: relative;
    background: #f3f3f3;
    padding: 15px 28px 12px;
    font-weight: bold;
}

.room-reserve-area .inner {
    padding: 27px 28px 20px;
    border: 5px solid #f3f3f3;
    border-top: none;
}

.room-reserve-date .tag {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    text-align: center;
    padding: 5px 12px 6px;
    line-height: 1;
    position: relative;
    top: -1px;
    font-weight: normal;
}

    .room-reserve-date .tag.tag-training {
        background: #9e2b25;
        border-color: #9e2b25;
        color: #fff;
    }

.room-type-colwrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.room-type-box {
    margin-right: 20px;
    width: 222px;
    min-height: 182px;
    border-radius: 5px;
}

    .room-type-box:nth-child(5n) {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .room-type-box:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }

.room-input-area {
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 8px;
    padding: 0 0 12px 10px;
    min-height: 103px;
}

.room-type-name {
    height: 32px;
    font-size: 14px;
    padding: 2px 0px 0 10px;
    margin-bottom: 14px;
    border-radius: 2px;
    border-left: 2px solid #222;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
}

.room-type-box.room-default {
    background: #ffeff3;
    padding: 12px 10px 6px 12px;
}

.room-detail-popup.type2 {
    left: 183px;
}

.room-default .room-detail-popup.type2 {
    left: 163px;
}

.room-type-box:nth-child(5n) .room-detail-popup.type2 {
    left: auto;
    right: 0;
}

.room-default .room-reserve-date {
    background: #ffeff3;
}

input[type="text"].room-input-num {
    width: 80px;
    height: 40px;
    text-align: right;
}

.room-input-area .input-row {
    margin-bottom: 10px;
}

    .room-input-area .input-row:last-child {
        margin-bottom: 0;
    }

.room-sum-txt {
    border-top: 1px dashed #e3e3e3;
    font-weight: bold;
    padding-top: 9px;
    margin-top: 14px;
    text-align: right;
    font-size: 14px;
}

.room-input-area span {
    font-size: 14px;
}

.room-toggle-btn:hover {
    background: #ffeff3
}

.room-detail-popupbtn.small {
    width: 34px;
    right: 0;
    top: 1px;
    height: 22px;
    margin: 0;
}

.room-default .room-detail-popupbtn::before,
.room-default .room-detail-popupbtn::after {
    top: 11px;
}

.bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::before {
    left: 0;
    border-right-color: rgb(230, 230, 242);
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7fd;
    border-bottom: 1px solid #efeff6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.inner-table-layout th {
    font-weight: normal;
    padding: 12px 10px;
}

.equipment-note p {
    padding: 10px 15px;
    background: #f6f6f6;
    margin: 8px 0 3px;
    border-radius: 5px;
}

.time-tag {
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 11px;
    padding: 1px 6px 0;
    text-align: center;
    font-size: 12px;
    height: 22px;
    border-radius: 2px;
    border: 1px solid #ddd;
}

.bg-area {
    padding: 5px 5px 5px;
}

.border-top-dashed {
    border-top: 1px dashed #c3c3c3;
    padding-top: 12px;
    margin-top: 16px;
}

    .border-top-dashed.group-div-area {
        padding-top: 17px;
    }

.file-drop-area {
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    width: 600px;
    margin: 5px 0 10px;
    cursor: pointer;
    background: #f6f6f6;
    transition: .3s;
}

    .file-drop-area:hover {
        background: #ffeff3;
    }

    .file-drop-area.bg-white {
        background: #FFF;
    }

        .file-drop-area.bg-white:hover {
            background: #f6f6f6;
        }

    .file-drop-area.h130 {
        height: 130px;
        padding-top: 36px;
    }

.file-drop-info {
    font-size: 15px;
    margin-bottom: 6px;
}

    .file-drop-info span {
        display: block;
        font-size: 13px;
        font-weight: normal;
    }

.file-drop-detail {
    font-size: 13px;
}

.th-attention {
    font-weight: normal;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    margin-top: 6px;
}

.user-info-area {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 12px 20px 14px;
    margin-bottom: 40px;
    border-top-color: #9e2b25;
}

    .user-info-area .info-ttl {
        color: #868686;
        font-size: 13px;
        display: inline-block;
        margin-right: 12px;
        position: relative;
        top: -1px;
    }

    .user-info-area p {
        width: 150px;
    }

.tour-check {
    padding-left: 30px;
    position: relative;
    left: -30px;
    top: -1px;
}

.tour-check-toggle {
    display: none;
}

    .tour-check-toggle.active {
        display: block;
    }

.table-layout .tour-row th {
    vertical-align: top;
}

.table-layout .tour-row td {
    padding-top: 18px;
    padding-bottom: 18px;
}

.file-uploaded {
    width: 600px;
    margin-bottom: 14px;
    padding: 2px 2px 0px;
}

    .file-uploaded li {
        font-size: 14px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }

    .file-uploaded a {
        display: inline-block;
        position: relative;
        text-decoration: underline;
        margin-right: 2px;
        max-width: 569px;
        height: 24px;
        transition: .3s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .file-uploaded .file-up-date {
        width: 100px;
        display: inline-block;
    }

    .file-uploaded .file-name {
        display: inline-block;
    }

    .file-uploaded .close-btn {
        top: -2px;
        width: 24px;
        height: 24px;
        right: -1px;
        position: relative;
    }

        .file-uploaded .close-btn::before,
        .file-uploaded .close-btn::after {
            top: 11px;
            right: 5px;
            width: 14px;
            height: 2px;
            background: #aaa;
        }

.allergy-note-area {
    padding: 14px 2px 14px;
    border-radius: 2px;
    border-top: 1px dashed #c3c3c3;
    margin-top: 13px;
}

    .allergy-note-area .input-area-wrap {
        margin-bottom: 17px;
    }

        .allergy-note-area .input-area-wrap:last-child {
            margin-bottom: 0;
        }

.file-drop-area-wrap {
    display: flex;
}

    .file-drop-area-wrap .btn-wrap {
        padding-top: 5px;
        margin-left: 18px;
        position: inherit;
    }

.btn.btn-excel::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 22px;
    height: 20px;
    background: url(../images/common/icon_excel.png);
    background-size: 22px;
    margin-right: 6px;
    top: 3px;
    background-repeat: no-repeat;
}

/* 変更履歴エリア */
.log-wrap {
    margin: 60px auto 0px;
}

.log-area {
    padding: 20px 30px 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    height: 340px;
    overflow-y: scroll;
}

.file-uploaded a:hover {
    color: #9e2b25;
}

.log-area table {
    width: 100%;
    border-radius: 10px;
}

.log-area tr {
    width: 100%;
    padding: 8px 12px 7px;
    border-radius: 5px;
}

.log-area thead tr {
    border-bottom: 1px solid #e3e3e3;
}

.log-area tr:nth-child(2n) {
    background: #edf7ff;
}

.log-area th {
    padding: 8px 12px 7px;
    font-size: 14px;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
}

.log-area td {
    padding-right: 15px;
    padding: 8px 12px 7px;
    font-size: 14px;
    border-right: 1px solid #e3e3e3;
}

    .log-area th:last-child,
    .log-area td:last-child {
        border-right: none;
    }
/* END */

.status-fixed {
    position: absolute;
    right: calc(50% - 632px);
    top: 7px;
    z-index: 1;
    width: auto;
    height: 40px;
    padding: 6px 25px 0px;
    background: rgba(255,219,228,0.7);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,219,228,0.7);
}

    .status-fixed.status1 {
        background: #e5e5e5;
        border: 1px solid #e5e5e5;
        color: #222;
    }

    .status-fixed.status2 {
        background: rgba(255,219,228,0.7);
        border: 1px solid rgba(255,219,228,0.7);
    }

    .status-fixed.status3 {
        background: rgba(255,219,228,0.7);
        border: 1px solid rgba(255,219,228,0.7);
    }

    .status-fixed.status4 {
        background: #9e2b25;
        border: 1px solid #9e2b25;
        color: #FFF;
    }

    .status-fixed.status5 {
        background: #9e2b25;
        border: 1px solid #9e2b25;
        color: #FFF;
    }

        .status-fixed.status4 .c-red,
        .status-fixed.status5 .c-red {
            color: #FFF;
            font-weight: bold;
        }

    .status-fixed.status6 {
        background: #e5e5e5;
        border: 1px solid #e5e5e5;
        color: #979797;
    }

        .status-fixed.status6 .c-red {
            color: #222;
        }

.status-step-area {
    width: 690px;
    margin: 15px auto 0;
    display: flex;
    justify-content: flex-end;
}

/* "Back to List”の幅（重なり）調整 */
.btn-wrap.col2 .btn {
    /* margin: 0 10px 0 0px; */
    vertical-align: top;
}

    .btn-wrap.col2 .btn:last-child {
        margin-right: 0;
    }

.btn-wrap.col2.status-step-area .btn {
    margin-right: 14px;
}

    .btn-wrap.col2.status-step-area .btn:last-child {
        margin-right: 0;
    }

.color-select-btnwrap {
    position: absolute;
    top: 0;
    right: 0;
}

    .color-select-btnwrap .color-select-btn {
        width: auto;
        padding: 0px 20px 0 18px;
        height: 46px;
    }

        .color-select-btnwrap .color-select-btn img {
            width: 22px;
        }

.color-label-ttl {
    font-size: 15px;
    display: inline-block;
    margin-left: 8px;
}

/* 研修担当者入力欄 */
.reserve-option-list {
    display: flex;
    margin-bottom: 10px;
}

    .reserve-option-list li {
        margin-right: 15px;
    }

.reserve-option-name {
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 13px;
}

.reserve-option-input {
    display: flex;
}

    .reserve-option-input input[type="text"] {
        padding: 10px 11px 10px;
    }

    .reserve-option-input .input-ttl {
        width: 664px;
    }
/* END */

.table-layout th.bg-admin {
    background-color: #FFF2E6;
}

.input-area-attention {
    padding: 0px 15px;
    position: relative;
    line-height: 1.6;
}

/* -----------------------
2.10  Typography
-------------------------*/

/* -----------------------
2.11  Listgroup
-------------------------*/

.group-div-area {
    position: relative;
}

    .group-div-area .btn-wrap {
        position: absolute;
        top: 17px;
        right: 0;
    }

.selectbox-wrap.search-select {
    width: 1020px;
    margin-top: 10px;
}

.badge-primary[href]:focus,
.badge-primary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #4656e9;
}

.badge-brand {
    background-color: #ffb739;
    color: #2e2f39;
}

    .badge-brand[href]:focus,
    .badge-brand[href]:hover {
        color: #2e2f39;
        background-color: #efb63e;
        text-decoration: none;
    }

.status-list {
    display: flex;
    flex-wrap: wrap;
}

    .status-list li {
        margin-bottom: 8px;
        border-bottom: 1px solid #e3e3e3;
        flex-wrap: wrap;
        width: 45%;
        margin-right: 40px;
    }

    .status-list span:first-child {
        margin-right: 16px;
        display: inline-block;
        position: relative;
        background: #fff;
        padding: 5px 10px;
        width: 120px;
        text-align: center;
    }

    .status-list span:last-child {
        display: inline-block;
        padding: 5px 0px;
    }

.spinner-primary {
    border-top-color: #5969ff;
    border-left-color: #5969ff;
}

.data-operation-btn {
    position: absolute;
    top: -2px;
    right: 0;
    display: flex;
}

    .data-operation-btn .btn {
        margin-right: 12px;
    }

        .data-operation-btn .btn:last-child {
            margin-right: 0;
        }

.btn.btn-dl::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    background: url(../images/common/icon_dl_gr.png);
    background-size: 16px;
    margin-right: 6px;
    top: 2px;
    background-repeat: no-repeat;
}

.btn.btn-dl-after::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
    background: url(../images/common/icon_dl_wt.png);
    background-size: 20px;
    margin-left: 6px;
    margin-top: -2px;
    top: 4px;
    background-repeat: no-repeat;
}

.btn.btn-up::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    background: url(../images/common/icon_up_red.png);
    background-size: 16px;
    margin-right: 6px;
    top: 2px;
}

.check-area {
    padding: 23px 15px 20px;
}

    .check-area .min {
        margin-top: 2px;
        font-size: 13px;
    }

.btn.btn-dl:hover,
.btn.btn-up:hover {
    background: #f3f3f3;
}

.btn.btn-dl.btn-gray:hover {
    background: #e3e3e3;
}

.switch-button.switch-button-xs label:before {
    line-height: 21px;
}

.btn-right {
    position: absolute;
    top: -60px;
    right: 0;
}

.table-layout input[type="text"],
.table-layout input[type="password"] {
    padding: 8px 10px;
}

.txt-unit {
    display: inline-block;
    margin-left: 16px;
    position: relative;
}

    .txt-unit::before {
        content: "";
        display: block;
        position: absolute;
        left: -9px;
        top: 2px;
        height: 16px;
        width: 1px;
        background: #222;
        transform: rotate(25deg);
    }

/* ==========================================================================
  3. Charts
  ========================================================================== */

/*-----------------------
3.1 Chartist.js
-------------------------*/

.ct-line.ct-threshold-above,
.ct-point.ct-threshold-above,
.ct-bar.ct-threshold-above {
    stroke: #f05b4f;
}

.download-btn-area {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 60px;
    padding: 25px 117px 25px;
}

    .download-btn-area .btn {
        width: 240px;
        height: 100px;
        margin: 0 8px 0;
        display: flex;
        justify-content: center;
        padding: 36px 0 0 0;
        align-items: baseline;
    }

        .download-btn-area .btn:hover {
            opacity: 0.8;
        }

        .download-btn-area .btn.btn-dl-after::after {
            width: 22px;
            height: 18px;
            background-size: 16px;
        }

    .download-btn-area .btn-border-blue {
        color: #054d8b;
        background: #fff;
        border-width: 2px;
        font-weight: bold;
    }

        .download-btn-area .btn-border-blue.btn-dl-after::after {
            background-image: url(../images/common/icon_dl_blue.png);
        }

.table td,
.table th {
    padding: 10px;
    vertical-align: middle;
    border-top: 1px solid #e6e6f2;
    font-weight: normal;
}

.admin-page #header {
    border-top-color: #054d8b;
}

.admin-page .btn-red {
    background: #054d8b;
    border-color: #054d8b;
}

    .admin-page .btn-red.disable {
        background: #a1a1a1;
        border-color: #a1a1a1;
    }

    .admin-page .btn-red:hover {
        background: #015EAE;
        border-color: #015EAE;
    }

.admin-page .h2-01::before {
    background: #222;
}

.admin-page .anchorlink li a {
    border-color: #054d8b;
    background: #054d8b;
    color: #FFF;
}

    .admin-page .anchorlink li a::after {
        border-color: #fff;
    }

    .admin-page .anchorlink li a:hover {
        border-color: #015EAE;
        background: #015EAE;
    }

.admin-page .user-info-area {
    border-top-color: #054d8b;
}

.admin-page .btn-white.hover-red:hover {
    background: #054d8b;
    border: 1px solid #054d8b;
}

.admin-page .reserve-popup {
    border-top-color: #054d8b;
}

.admin-page .room-detail-ttl {
    border-left-color: #054d8b;
}

.sec-search-area {
    border-radius: 2px;
    padding: 30px 30px 40px;
    margin-bottom: 20px;
}

.search-ttl {
    margin-bottom: 10px;
}

.search-togglebtn {
    color: #054d8b;
    text-align: center;
    font-weight: bold;
    position: relative;
    margin: 20px 0 0;
    transition: .3s;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

    .search-togglebtn::after {
        content: "";
        display: inline-block;
        position: relative;
        top: -3px;
        right: -8px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #054d8b;
        border-right: 2px solid #054d8b;
        transform: rotate(135deg);
        transition: .3s;
    }

    .search-togglebtn:hover {
        opacity: 0.8;
    }

.search-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

    .search-row.flex-end {
        justify-content: space-between;
        align-items: flex-end;
    }

    .search-row.wide {
        margin: 18px 0 28px;
    }

.search-row-left {
    width: 190px;
    font-weight: bold;
    color: #054d8b;
}

.search-row-right {
    width: 1000px;
}

.search-detail-area {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 10px;
    display: none;
}

    .search-detail-area.active {
        display: block;
    }

.checkbox-list li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

    .checkbox-list li input[type="checkbox"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        transition: .4s;
        -webkit-appearance: none;
        background: #FFF;
        border-radius: 0px;
    }

        .checkbox-list li input[type="checkbox"] + label {
            font-weight: bold;
            color: #054d8b;
            z-index: 1;
            position: relative;
            transition: .4s;
            display: block;
            padding: 2px 12px 3px;
            font-size: 13px;
            background: #fff;
            text-align: center;
            border-radius: 2px;
        }

        .checkbox-list li input[type="checkbox"]:checked + label {
            color: #FFF;
            background: #054d8b;
        }

.btn-reset:hover {
    border-color: #054d8b;
}

.search-column {
    display: flex;
    align-items: center;
    margin-right: 24px;
}

    .search-column:last-child {
        margin-right: 0;
    }

.search-column-left {
    font-weight: bold;
    color: #054d8b;
    font-size: 14px;
    margin-right: 12px;
}

.search-column-right {
    display: flex;
    align-items: center;
}

    .search-column-right .input-area {
        display: flex;
        align-items: center;
    }

    .search-column-right input[type="text"] {
        padding: 10px 10px;
    }

.search-user .search-column-right input[type="text"] {
    padding: 8px 10px;
}

.txt-tilde {
    display: inline-block;
    position: relative;
    margin-right: 5px;
}

    .txt-tilde.lft {
        left: -16px;
        margin: 0;
    }

.input-area-tp1 {
    top: 1px;
    position: relative;
}

#external-events .fc-event {
    margin: 10px 0;
    cursor: pointer;
}

#external-events p {
    margin: 1.5em 0;
    font-size: 11px;
    color: #666;
}

.room-class-wrap {
    display: inline-block;
    position: relative;
}

.room-class-ttl {
    background: #f3f3f3;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 5px;
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    position: relative;
}

.room-class-colwrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.room-class-col {
    text-align: center;
}

    .room-class-col.col1 {
        width: 100%;
    }

    .room-class-col:first-child {
        border-left: 1px solid #ddd;
    }

.room-row {
    color: #222;
    min-width: 90px;
    height: 34px;
    padding: 4px 20px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    overflow: hidden;
}

.room-class-name {
    padding: 4px 20px 5px;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    font-size: 14px;
}

.room-bed-sum {
    font-size: 13px;
    display: block;
    font-weight: normal;
    line-height: 1.2;
}

.room-row.room-other-color {
    background: #ededed;
    color: #8f8b8b;
    pointer-events: none;
}

.room-row.room-selected-color {
    background: #9e2b25;
    color: #FFF;
}

.room-row.room-release-color {
    color: #9e2b25;
    font-weight: bold;
}

.room-row.room-selecting-color {
    background: #fff254;
}

.room-row:hover {
    background: #fff254;
}

.room-row.room-selected-color:hover {
    background: #d71338;
}

.room-row.room-selecting-color:hover {
    opacity: 0.6;
}

.room-row.room-blank-color {
    pointer-events: none;
}

.accommodation-area {
    border: 1px solid #ddd;
    padding: 16px 20px 18px;
    position: relative;
    margin: 80px auto 60px;
    border-radius: 0px 5px 5px 5px;
}

.acc-mainttl {
    background: #9e2b25;
    min-width: 150px;
    position: absolute;
    top: -40px;
    left: -1px;
    color: #FFF;
    height: 40px;
    padding: 6px 18px 0 18px;
    border-radius: 5px 5px 0px 0px;
    font-size: 14px;
    text-align: center;
}

.admin-page .acc-mainttl {
    background: #054d8b;
    text-align: left;
    min-width: 200px;
}

.acc-mainttl .input-area {
    bottom: 8px;
}

    .acc-mainttl .input-area.arrow-left {
        left: auto;
        right: -50px;
    }

    .acc-mainttl .input-area.arrow-right {
        right: -97px;
    }

.acc-row {
    display: flex;
}

.acc-table {
    position: relative;
}

.acc-table-head {
    text-align: center;
}

    .acc-table-head .acc-row-th {
        font-weight: bold;
        background: #f3f3f3;
        font-size: 13px;
        height: 27px;
        line-height: 27px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 4px;
        border-radius: 2px;
    }

.acc-table.another .acc-row-th {
    background: #f3f3f3;
    color: #bbb;
    font-weight: normal;
}

.acc-row-td {
    margin-right: 10px;
    padding: 0 2px;
    font-size: 14px;
}

.acc-table.another .acc-row-td {
    color: #bbb;
}

.all-acc-list {
    display: none;
}

.acc-col-room {
    width: 222px;
}

.acc-col-sum {
    width: 280px;
}

.acc-col-count {
    text-align: right;
    width: 100px;
}

.acc-col-date {
    width: 180px;
}

.acc-col-count.acc-row-td {
    padding-right: 14px;
}

.acc-note {
    background: #f3f3f3;
    border-radius: 5px;
    padding: 10px 15px;
    margin: 20px auto 10px;
}

.acc-note-ttl {
    font-size: 14px;
    margin-bottom: 2px;
}

.acc-note-contents {
    font-size: 14px;
    line-height: 1.6;
}

.acc-admin-comment {
    background: #ffeff3;
    border-radius: 5px;
    padding: 12px 15px 15px;
    font-size: 14px;
}

    .acc-admin-comment p {
        margin-top: 8px;
    }

.room-change-header {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.room-class-wrap .btn-wrap {
    position: absolute;
    right: 0;
    top: -65px;
}

.room-change-ttl {
    padding-right: 10px;
    font-size: 14px;
}

.room-change-btnwrap {
    position: relative;
}

    .room-change-btnwrap a {
        display: inline-block;
        padding: 0 15px 0 15px;
        position: relative;
        text-decoration: underline;
        transition: .3s;
    }

        .room-change-btnwrap a::before {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            width: 1px;
            height: 18px;
            background: #C7C5C2;
            top: 5px;
        }

    .room-change-btnwrap::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        width: 1px;
        height: 18px;
        background: #C7C5C2;
        top: 5px;
    }

    .room-change-btnwrap .room-change-btn {
        font-weight: bold;
        padding-right: 30px;
        z-index: 1;
    }

.room-change-btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #9e2b25 transparent transparent transparent;
    right: 15px;
    top: calc(50% - 3px);
    pointer-events: none;
    transform: rotate(-90deg);
}

.dd-dragel > .dd-item .dd-handle {
    margin-top: 0;
}

.room-change-btnwrap a:hover {
    opacity: 0.7;
}

.acc-countbox {
    position: fixed;
    top: 140px;
    right: -240px;
    background: #FFF;
    width: 240px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
    padding: 0px 0px 10px;
    border-radius: 5px 0px 0px 5px;
    overflow: hidden;
    transition: right .3s;
}

    .acc-countbox.is-active {
        right: 0px;
    }

.count-room-ttl {
    background: #9e2b25;
    padding: 7px 12px 7px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #FFF;
}

.admin-page .count-room-ttl {
    background: #054d8b;
}

.acc-countbox.type2 .count-room-ttl {
    margin-bottom: 0;
}

.count-area {
    font-size: 20px;
    padding: 2px 0 0 12px;
}

.dd-hover > .dd-handle {
    background: #5969ff !important;
}

.acc-countbox.type2 .count-area {
    font-size: 19px;
    padding: 0 0 8px 12px;
    line-height: 1.5;
}

.count-room-note {
    font-size: 14px;
    padding: 0 0 0 12px;
}

.count-num-area {
    background: #f3f3f3;
    padding: 5px 10px;
    margin-bottom: 4px;
    font-size: 14px;
}

.room-class-multitable {
    display: flex;
}

.room-class-multitable-outer .room-class-col:last-child .room-class-name {
    border-right: none;
}

.room-class-multitable-outer .room-class-col:last-child .room-row {
    border-right: none;
}

.room-class-multitable-outer .room-class-ttl {
    border-right: none;
}

.room-class-multitable-outer:last-child {
    border-right: 1px solid #ddd;
}

.acc-guide-area {
    position: relative;
    display: flex;
    margin-top: 12px;
}

.acc-guide {
    font-size: 12px;
    position: relative;
    margin-left: 13px;
}

    .acc-guide::before {
        content: "";
        display: inline-block;
        position: relative;
        width: 12px;
        height: 12px;
        border-radius: 2px;
        margin-right: 4px;
        top: 2px;
    }

    .acc-guide.new::before {
        background: #9e2b25;
    }

    .acc-guide.reserved::before {
        background: #fff254;
    }

.comment-text:hover .comment-footer .action-icons,
.comment-text.active .comment-footer .action-icons {
    visibility: visible;
}

.acc-mainttl.type2 {
    color: #FFF;
    border: 1px solid #9e2b25;
    border-bottom: none;
}

.accommodation-area .btn-block {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.sec-bg-pink {
    position: relative;
    background: #ffeff3;
    padding: 20px 30px 25px;
    border-radius: 5px;
}

    .sec-bg-pink.sec-narrow {
        padding: 12px 18px 15px;
    }

.sec-attention {
    padding: 15px 20px;
    border-radius: 5px;
}

.btn.btn-zoom {
    width: 200px;
    cursor: pointer;
}

    .btn.btn-zoom::after {
        content: "";
        display: inline-block;
        position: relative;
        width: 23px;
        height: 22px;
        background-size: 18px;
        background-image: url(../images/common/icon_zoom.png);
        background-repeat: no-repeat;
        top: 0px;
        vertical-align: top;
        background-position: center left;
        margin-left: 5px;
    }

.help-link {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}

    .help-link a {
        display: block;
        transition: .3s;
        text-decoration: underline;
    }

    .help-link img {
        width: 18px;
        bottom: 3px;
        position: relative;
        margin-right: 2px;
        display: inline-block;
    }

    .help-link.icon-detail img {
        width: 36px;
        margin-left: 3px;
    }

    .help-link a:hover {
        opacity: 0.7;
    }

.btn-block .btn-dl {
    position: absolute;
    right: 25px;
}

.help-link.p-relative {
    position: relative;
    top: auto;
    right: auto;
    transition: .3s;
}

.tour-row .help-link {
    left: -28px;
    top: 1px;
}

.help-link.p-relative:hover {
    opacity: 0.7;
}

.aside-header .navbar-toggle .icon {
    font-size: 24px;
    color: #71738d;
}

.aside-nav .nav li .icon {
    font-size: 13px;
    vertical-align: middle;
    text-align: center;
    min-width: 19px;
    margin-right: 6px;
    color: #71748d;
}

.acc-status-table {
    margin-bottom: 60px;
}

.acc-status-areawrap {
    margin-bottom: 40px;
}

.acc-status-area {
    margin-bottom: 6px;
}

.acc-status-row {
    display: flex;
    margin-bottom: 6px;
    align-items: center;
}

.acc-status-col {
    padding: 6px 10px;
}

.acc-status-date {
    position: relative;
    padding-bottom: 10px;
    font-weight: bold;
    margin-bottom: 14px;
    border-bottom: 1px solid #222;
}

.acc-status-roomtype {
    width: 200px;
}

.acc-status-num {
    width: 300px;
}

.acc-status-count {
    text-align: right;
    width: 100px;
}

.acc-status-check {
    width: 120px;
    text-align: center;
}

.acc-status-btn {
    width: 176px;
    margin-left: 8px;
}

    .acc-status-btn .btn {
        width: 160px;
        height: 40px;
        padding-top: 7px;
        font-size: 13px;
    }

.acc-status-date .update-date {
    margin-bottom: 0;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    top: 4px;
    position: absolute;
    left: 190px;
}

.status-unfinished .acc-status-roomtype,
.status-unfinished .acc-status-num,
.status-unfinished .acc-status-count,
.status-unfinished .acc-status-check {
    background: #ffeff3;
}

.status-unfinished .acc-status-count,
.status-unfinished .acc-status-check {
    color: #9e2b25;
    font-weight: bold;
}

.back-to-top {
    background-color: #9e2b25;
    color: #fff;
    font-size: 10px;
    line-height: 1.3;
    position: fixed;
    bottom: 15px;
    right: 15px;
    text-decoration: none;
    z-index: 9999999;
    display: none;
    width: 58px;
    height: 58px;
    font-weight: bold;
    padding-top: 26px;
    transition: background .3s;
}

.admin-page .back-to-top {
    background-color: #054d8b;
}

.back-to-top::before {
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    right: 0;
    left: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(-45deg);
    transition: .3s;
}

.back-to-top:hover {
    background: #d71338;
}

.admin-page .back-to-top:hover {
    background: #015EAE;
}

.update-date.bold {
    font-weight: bold;
}

.update-date-icon {
    display: inline-block;
    margin-right: 4px;
}

    .update-date-icon img {
        width: 17px;
        vertical-align: middle;
        position: relative;
        top: -1px;
    }

.email-list-item--unread {
    background-color: #ffffff;
}

    .email-list-item--unread .from,
    .email-list-item--unread .msg {
        color: #3d405c;
        font-weight: 800;
        -webkit-font-smoothing: initial;
    }

    .email-list-item--unread .msg {
        color: #3d405c;
    }

.room-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1260px;
    background: #FFF;
    z-index: 20;
    height: 600px;
    overflow: scroll;
    padding: 30px 30px;
}

.roomtype1 .room-row {
    max-width: 98px;
    min-width: 98px;
    padding: 4px 4px;
}

.roomtype2 .room-row {
    width: 180px;
    padding: 4px 4px;
}

.room-class-multitable.type2 .room-row {
    width: 160px;
}

.room-popup .room-row {
    cursor: auto;
}

    .room-popup .room-row:hover {
        background: none;
    }

    .room-popup .room-row.room-selected-color {
        color: #9e2b25;
        background: #FFF;
    }

.room-change-header .input-area.arrow-left {
    bottom: 0;
    left: calc(50% - 124px);
}

.room-change-header .input-area.arrow-right {
    bottom: 0;
    right: calc(50% - 124px);
}

.room-header-date {
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: bold;
}

.room-preview .room-row {
    cursor: auto;
}

    .room-preview .room-row.room-selected-color {
        color: #9e2b25;
        background: #FFF;
    }

    .room-preview .room-row:hover {
        background: none;
    }

.email-head-subject .title > a .icon {
    color: silver;
    font-size: 14px;
    margin-right: 6px;
    vertical-align: middle;
    line-height: 31px;
    position: relative;
    top: -1px;
}

.email-head-subject .icons {
    font-size: 14px;
    float: right;
}

.year-calendar-block {
    margin-bottom: 40px;
}

.year-calendar {
    display: flex;
    flex-wrap: wrap;
}

    .year-calendar li {
        text-align: center;
        margin: 0 15px 15px 0;
    }

        .year-calendar li:nth-child(6n) {
            margin-right: 0;
        }

    .year-calendar a {
        display: block;
        position: relative;
        width: 197px;
        height: 40px;
        border: 2px solid #ddd;
        border-radius: 5px;
        padding-top: 4px;
        transition: .3s;
        color: #222;
    }

        .year-calendar a::after {
            content: "";
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 5px 0 5px;
            border-color: #222 transparent transparent transparent;
            right: 15px;
            top: calc(50% - 4px);
            pointer-events: none;
            transform: rotate(-90deg);
            transition: .3s;
        }

        .year-calendar a:hover {
            color: #9e2b25;
            border-color: #9e2b25;
        }

.admin-page .year-calendar a:hover {
    color: #054d8b;
    border-color: #054d8b;
}

.year-calendar a:hover::after {
    border-color: #9e2b25 transparent transparent transparent;
}

.admin-page .year-calendar a:hover::after {
    border-color: #054d8b transparent transparent transparent;
}

.email-attachments ul > li .icon {
    vertical-align: middle;
    color: #737373;
    margin-right: 2px;
}

.email-attachments ul > li span {
    font-weight: 400;
}

/*-------------------
7.3 Email Compose
----------------------*/

.email-head-title {
    padding: 25px 25px;
    border-bottom: 1px solid #e6e6f2;
    display: block;
    font-weight: 400;
    color: #3d405c;
    font-size: 1.769rem;
}

    .email-head-title .icon {
        color: #696969;
        margin-right: 12px;
        vertical-align: middle;
        line-height: 31px;
        position: relative;
        top: -1px;
        float: left;
        font-size: 1.538rem;
    }

.email-compose-fields {
    background-color: #fff;
    border-bottom: 1px solid #e6e6f2;
    padding: 30px 30px 20px;
}

.form-group.row {
    margin-bottom: 0;
    padding: 12px 0;
}

    .form-group.row label {
        white-space: nowrap;
    }

.admin-page .anchorlink.role-master li a {
    background: #FFF;
    border: 2px solid #ddd;
    transition: .3s;
    color: #222;
    padding-top: 15px;
}

    .admin-page .anchorlink.role-master li a::after {
        border-color: #222;
    }

    .admin-page .anchorlink.role-master li a:hover {
        border-color: #222;
        color: #fff;
        background: #222;
    }

        .admin-page .anchorlink.role-master li a:hover::after {
            border-color: #FFF;
        }

/* =======================================================
■ F607 備品マスタ
========================================================*/
.equip-master-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.equip-master-box {
    position: relative;
    width: calc(50% - 10px);
    background: #f3f3f3;
    padding: 20px 22px 25px;
    margin-bottom: 20px;
}

.equip-master-itemcol2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.equip-master-item {
    display: block;
    width: 48%;
    margin-bottom: 10px;
}

    .equip-master-item.max {
        width: 100%;
    }

    .equip-master-item::after {
        content: "";
        display: block;
        clear: both;
    }

.equip-item-ttl {
    float: left;
    width: 125px;
    font-weight: bold;
    color: #054d8b;
    line-height: 42px;
}

.equip-master-box .input-area {
    float: right;
    width: calc(100% - 125px);
    height: 100%;
}

.equip-master-box input[type="text"],
.equip-master-box textarea {
    padding: 7px 10px;
}

.equip-master-name {
    margin-bottom: 18px;
}

    .equip-master-name input[type="text"] {
        background: none;
        border: none;
        border-bottom: 2px solid #054d8b;
        border-radius: 0;
        padding: 2px 0 2px;
        font-size: 18px;
        font-weight: bold;
    }

.equip-master-item .file-drop-area {
    width: 32%;
    padding: 10px;
    margin: 0px;
    margin-right: 2%;
}

    .equip-master-item .file-drop-area:last-child {
        margin-right: 0;
    }

.equip-master-box .btn-wrap {
    border-top: 1px solid #ddd;
    padding-top: 22px;
    margin-top: 22px;
}

.chat-item {
    font-size: .875rem;
    line-height: 1.3125rem;
}

/* =======================================================
■ マスタ系（宿泊室）
========================================================*/
.file-drop-area.file-master {
    width: 150px;
    padding: 23px 0 0;
    height: 80px;
}

.border-left-ttl {
    border-left: 2px solid #9e2b25;
    padding-left: 8px;
    line-height: 1.4;
}

    .border-left-ttl.edit-role {
        border-left-color: #054d8b;
    }

.chat-item > .media-body {
    margin-left: 0.75rem;
    border-radius: 0.5rem;
    padding: 6px 1px;
    background: transparent;
}

/* =======================================================
■ F609 ヘルプマスタ編集
========================================================*/
.help-edit-area {
    position: relative;
    width: 900px;
    margin: auto;
    padding: 25px 30px 30px;
}

    .help-edit-area textarea {
        height: 300px;
    }

.reserve-popup.help-popup {
    width: 600px;
    height: 360px;
}

.help-popup-ttl {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #9e2b25;
    margin-bottom: 18px;
    padding: 0px 0 2px;
}

.admin-page .help-popup-ttl {
    border-bottom-color: #054d8b;
}

.help-popup-contents {
    height: 248px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.reserve-popup.mail-popup {
    width: 1060px;
    height: 550px;
}

.help-popup-contents.mailttl {
    height: 56px;
}

.help-popup-contents.mailcontents {
    height: 370px;
}

.chat-form {
    position: relative;
}

.chat-module .chat-module-bottom textarea {
    max-height: 9rem;
}

.chat-form textarea {
    padding-right: 3.375rem;
}

.chat-form-buttons {
    position: absolute;
    top: 6px;
    right: 0.25rem;
    display: flex;
    align-items: center;
}

.table-layout.pattern3 td {
    padding: 12px 10px;
}

.chat-form-buttons .custom-file-naked {
    width: 1.5rem;
    margin-left: 0.375rem;
    top: 5px;
}

.custom-file-naked {
    cursor: pointer;
    width: auto;
    height: auto;
}

.form-btn-boxwrap {
    border-radius: 5px;
    padding: 32px 0px;
}

.form-btn-box {
    margin: 0 13px;
}

.form-btn {
    position: relative;
    display: block;
    border: 1px solid #9e2b25;
    border-radius: 5px;
    width: 380px;
    margin: auto;
    padding: 22px 10px 26px;
    transition: .3s;
    background: #fff;
}

    .form-btn::after {
        content: "";
        display: block;
        position: absolute;
        top: calc(50% - 7px);
        right: 20px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #9e2b25;
        border-right: 2px solid #9e2b25;
        transform: rotate(45deg);
        transition: .3s;
    }

.form-btn-txt {
    font-size: 16px;
    line-height: 1;
    transition: .3s;
}

.form-btn-icon {
    margin-bottom: 6px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .form-btn-icon img {
        width: 36px;
    }

    .form-btn-icon.icon-mail img {
        width: 30px;
    }

.form-btn:hover {
    background: transparent;
}

    .form-btn:hover::after {
        right: 15px;
    }

.align-items-center {
    align-items: center !important;
}

.chat-team-sidebar .nav {
    margin-top: 1.5rem;
}

.sec-after-arrow {
    position: relative;
    margin-bottom: 64px;
}

    .sec-after-arrow::after {
        content: "";
        display: block;
        position: absolute;
        bottom: -50px;
        right: 0;
        left: 0;
        margin: auto;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 30px 50px 0 50px;
        border-color: #ececec transparent transparent transparent;
    }

.deadline-mark {
    margin: -15px auto 30px;
}

    .deadline-mark span {
        position: relative;
        background: #fff;
        color: #9e2b25;
        display: inline-block;
        padding: 5px 14px 6px 12px;
        font-size: 14px;
        border-radius: 2px;
        font-weight: bold;
    }

        .deadline-mark span::before {
            content: "";
            display: inline-block;
            position: relative;
            width: 25px;
            height: 24px;
            background-size: 18px;
            background-image: url(../images/common/icon_timer_rd.png);
            background-repeat: no-repeat;
            vertical-align: top;
            background-position: center left;
        }

.participant-name {
    font-weight: bold;
    font-size: 16px;
}

.chat-team-sidebar .tab-pane {
    overflow-y: none;
    -ms-overflow-style: none;
    height: 100%;
}

.chat-team-sidebar .list .list-group-item {
    width: 100%;
}

.sidebar form.dropzone {
    padding: 0 1.5rem;
}

.survey-dl-date {
    display: block;
    margin-top: 8px;
    line-height: 1;
}

.sidebar .dz-message {
    background: #F7F9FA;
    padding: 1rem;
}

.dz-message {
    text-align: center;
    padding: 1.5rem;
    display: block;
    font-size: .875rem;
    font-weight: 500;
    opacity: 1;
    cursor: pointer;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px dashed #E9EEF2;
    transition: all .35s ease;
    color: rgba(108, 117, 125, 0.5);
}

.survey-block {
    margin-bottom: 20px;
    padding: 17px 22px 26px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.06);
}

.survey-question-ttl::before {
    background: #9e2b25;
    display: none;
}

.survey-question-num {
    font-weight: bold;
    color: #9e2b25;
    display: inline-block;
    margin-right: 7px;
}

.input-right-label label {
    padding-left: 5px;
}

.send-message {
    background: #054d8b;
    color: #fff;
    text-align: center;
    padding: 5px 0 6px;
    transition: .3s;
}

.list-group-activity span {
    margin-right: 0.25rem;
}

/* =======================================================
■ 312 研修室空き状況
========================================================*/
.calendar-view .cal-reserve-link {
    text-align: left;
    text-decoration: none;
    height: 144px;
    position: relative;
    padding-left: 8px;
}

.calendar-view .cal-date {
    text-decoration: underline;
}

.cal-reserve-list li {
    margin-bottom: 2px;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.cal-reserve-other {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.2em;
    position: absolute;
    left: 8px;
    bottom: 5px;
}

.calendar-view .cal-reserve-link:hover {
    background: #fff254;
    color: inherit;
}

.avatar.bg-primary {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======================================================
■ F508 利用明細
========================================================*/
.subtotal-row {
    text-align: right;
    padding: 12px 16px;
    font-weight: bold;
    border: 1px solid #e3e3e3;
    border-top: none;
    position: relative;
}

    .subtotal-row.total-row {
        border: none;
        border-top: 1px solid #e3e3e3;
        padding: 12px 16px;
    }

.value-width {
    min-width: 90px;
    margin-left: 5px;
    display: inline-block;
}

#map-2 {
    height: 400px;
}

/* =======================================================
■ 201 料金シミュレーター
========================================================*/
.table-layout.table-simulator td {
    padding: 8px 10px;
}

.btn.btn-add {
    width: 100px;
    position: absolute;
    top: 8px;
    left: 11px;
    height: 34px;
    padding: 3px 10px 0px 0;
    font-weight: normal;
    cursor: pointer;
}

    .btn.btn-add::before,
    .btn.btn-add::after {
        content: "";
        display: block;
        position: absolute;
        right: 14px;
        top: 14px;
        width: 10px;
        height: 2px;
        background-color: #fff;
        background-color: #222;
    }

    .btn.btn-add::after {
        transform: rotate(90deg);
    }

.table-layout td.close-btn-left {
    padding-left: 40px;
}

.close-btn-left .close-btn {
    right: auto;
    left: 2px;
    top: 14px;
}

.nav-left-sidebar .navbar a {
    color: #fff;
    font-size: 18px;
}

/* =======================================================
■ 507 終了予約管理
========================================================*/
.sec-search-area.sec-pattern2 {
    padding: 30px 30px 33px;
}

.btn-border-wrap {
    border-top: 1px solid #ddd;
    position: relative;
    margin: 25px 0 0;
    padding-top: 25px;
}

.result-number {
    margin-bottom: 5px;
}

.selectbox-status {
    width: 312px;
}

.search-column-right.status-bg {
    padding: 10px 30px 12px 16px;
    background-color: #FFF;
    border-radius: 2px;
}

.nav-left-sidebar .navbar-toggler {
    background-color: #fff;
}

.aside-header .navbar-toggle {
    display: block;
}

.w50 {
    width: 50px;
}

.w80 {
    width: 80px;
}

.w90 {
    width: 90px;
}

.w100 {
    width: 100px;
}

.w120 {
    width: 120px;
}

.w130 {
    width: 130px;
}

.w140 {
    width: 140px;
}

.w150 {
    width: 150px;
}

.w160 {
    width: 160px;
}

.w170 {
    width: 170px;
}

.w180 {
    width: 180px;
}

.w190 {
    width: 190px;
}

.w200 {
    width: 200px;
}

.w220 {
    width: 220px;
}

.w230 {
    width: 230px;
}

.w250 {
    width: 250px;
}

.w280 {
    width: 280px;
}

.w300 {
    width: 300px;
}

.w360 {
    width: 360px;
}

.w420 {
    width: 420px;
}

.w600 {
    width: 600px;
}

/* HR */

hr.style1 {
    border-top: 1px solid #8c8b8b;
}

.status-btn-left {
    position: absolute;
    top: 0;
    left: calc(50% - 305px);
}

.status-btn-right {
    position: absolute;
    top: 0;
    right: calc(50% - 344px);
}

hr.style4 {
    border-top: 1px dotted #8c8b8b;
}

hr.style5 {
    background-color: #fff;
    border-top: 2px dashed #8c8b8b;
}

.fs13 {
    font-size: 13px;
}

    .fs13.lh15 {
        line-height: 1.5;
    }

.fs14 {
    font-size: 14px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt45 {
    margin-top: 45px;
}

.mt50 {
    margin-top: 50px;
}

.mt70 {
    margin-top: 70px;
}

.mr8 {
    margin-right: 8px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px !important;
}

.mb0 {
    margin-bottom: 0px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45 {
    margin-bottom: 45px;
}

.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.background-color-white {
    background-color: #fff;
}

.icon-button {
    width: 21px;
    height: 21px;
}

.btn-icon {
    width: 46px !important;
}

.gray {
    color: gray !important;
}

.blue {
    color: blue !important;
}

.dailyGraphModal {
    line-height: 80%;
    height: 20px !important;
}

#scheduleTableArea table {
    border-collapse: collapse !important;
}

#scheduleTableArea th {
    position: sticky;
    top: 0;
    z-index: 105;
    background: #fff;
    border: 2px solid #c3c3c3 !important;
}

#scheduleTableArea td {
    border: 1px solid #c3c3c3 !important;
}