@charset "utf-8";
/* 設定カラー ヘッダ　623D95　 ボタン　9A74CF */

header {
    position: relative;
    left: 0;
    top: 0;
    width: 1920px;
    height: 38px;
    font-size: 16px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0 10px;
    box-sizing: border-box;
}
header .title {
    margin: 0 30px 0 15px;
}

header .menu_btns {
    display: flex;
    align-items: center;
    margin-left: 60px;
    font-size: 0.875rem;
}
header .btn_chat_close {
    width: 140px;
    margin-right: 40px;
}
header .btn_window_close,
header .btn_telephone,
header .btn_monitor {
    min-width: 120px;
    margin-left: auto;
}
header .btn_monitor a {
    display: block;
    width: 100px;
    padding: 5px 16px;
    text-align: center;
    border-radius: 4px;
}
header .btn_telephone a {
    display: block;
    width: 100px;
    padding: 5px 16px;
    text-align: center;
    border-radius: 4px;
}
header .btn_telephone_hl a {
    display: block;
    width: 130px;
    padding: 5px 16px;
    text-align: center;
    border-radius: 4px;
    background-color: #f99c08;
    margin-right: 20px;
}
header .btn_chat_close a {
    display: block;
    width: 100%;
    padding: 5px 16px;
    text-align: center;
    border-radius: 4px;
}
header .btn_window_close a {
    display: block;
    width: 100px;
    padding: 5px 16px;
    text-align: center;
    border-radius: 4px;
}
.copyurl-box {
    display: flex;
    align-items: center;
    line-height: 1;
}
.copyurl-box button {
    margin-right: 10px;
}
/* iframe */
.if-window {
    width: 600px;
    height: 990px;
}
.if-monitor-window {
    width: 430px;
    height: 470px;
}
.front-window {
    width: 600px;
    height: 30px;
}


/* ---------------------------------------------------------- */
/* ハンバーガーメニュー */
/* ---------------------------------------------------------- */
#nav-drawer {
    position: relative;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}
/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    display: block;
    content: "";
    cursor: pointer;
    background: #efefef;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    width: 90%;
    max-width: 330px;
    height: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    padding: 10px;
    background-color: #f2f2f2;
    color: #000;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;
    opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-content .staff-databox {
    width: 80%;
    border-radius: 8px;
    margin: 20px auto;
    padding: 20px 0;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #000 !important;
}
#nav-content .staff-databox .myrole {
    font-size: 0.75rem;
}

#nav-content ul li:first-child {
    border-top: 1px dotted #ccc;
}
#nav-content > p {
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
    background-color: #2d9cdb;
    color: #fff;
}

#nav-content ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 8px;
}

#nav-content ul li {
    list-style-type: disc;
    list-style-position: inside;
    line-height: 1.5;
    padding: 6px 4px 6px 1rem;
    border-bottom: 1px dotted #103ea0;
    color: #000;
}
#nav-content ul li a {
    color: #000099;
}
#nav-content ul .menu-group {
    padding-left: 4px;
    line-height: 2;
    list-style-type: none;
}
#nav-content ul .separator {
    line-height: 2;
    list-style-type: none;
    border-bottom: none;
}


.proj_ver {
    display: block !important;
    width: 90% !important;
    margin: 0 auto;
    font-size: 0.5rem;
    color: #666;
    text-align: right !important;
    border-bottom: none !important;
}
