﻿/*layout
----------------------------------------------------*/
.wrapper {
    width: 1280px;
    margin: 0 auto;
}
/* ヘッダー */
header {
    display: table;
    width: 100%;
    height: 30px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #2c7bff), color-stop(1.00, #021ecd));
    background: -webkit-linear-gradient(#2c7bff, #021ecd);
    background: -moz-linear-gradient(#2c7bff, #021ecd);
    background: -o-linear-gradient(#2c7bff, #021ecd);
    background: -ms-linear-gradient(#2c7bff, #021ecd);
    background: linear-gradient(#2c7bff, #021ecd);
    color: #fff;
}

    header > div,
    header > h1 {
        display: table-cell;
        padding: 0 10px 0 10px;
        vertical-align: middle;
    }

    header > h1 {
        width: 400px;
    }

    header > div {
        text-align: right;
    }
/* コンテンツ */
.container {
    width: 100%;
    overflow: hidden;
    min-width: 1160px;
}

.sidebar {
    float: left;
    width: 250px;
    margin: 10px 10px 10px 10px;
}

.content {
    margin-left: 210px;
    overflow: hidden;
    margin: 10px 0px 10px 0px;
    padding: 5px;
}

    .content > div,
    .content > form > div,
    .content > h2 {
        background-color: #fff;
        margin-bottom: 10px;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.16);
    }

    .content > h2 {
        color: #002793;
        font-size: 1.2em;
        border-bottom: 2px solid #002793;
        background: #fff;
        border-left: 7px double #002793;
    }

    .content > div > h3 {
        color: #002793;
        font-weight: bold;
    }

        .content > div > h3:before {
            content: "▼";
            margin: 0 5px;
        }

.content-inner {
    width: 600px;
    margin-right: auto;
    margin-left: auto;
    padding: 100px 0;
}

    .content-inner > h2 {
        font-size: 1.5em;
        text-decoration: underline;
        margin-bottom: 15px;
    }

    .content-inner > p {
        margin-bottom: 10px;
    }

        .content-inner > p > span:first-child {
            display: inline-block;
            width: 150px;
        }
/* 左メニュー伝言メモ */
aside {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16);
    border: 1px solid #e3e3e3;
    padding: 5px;
}

    aside > h3 {
        font-weight: bold;
        text-align: center;
        padding: 5px;
    }

.memo li {
    padding: 10px 5px;
}

    .memo li:not(:last-child) {
        border-bottom: 1px dashed #e3e3e3;
    }

    .memo li div:nth-child(1) {
        font-size: 0.9em;
        margin-bottom: 5px;
    }

    .memo li div:nth-child(2) {
        margin-bottom: 5px;
    }

.memo div {
    word-break: break-all;
}

.important {
    background-color: #fffacd;
}

    .important div:nth-child(3):before {
        content: "！";
        color: red;
        font-weight: bold;
    }
/* 時間、注意事項の表示 */
.request-datetime,
.annotation-right {
    float: right;
    line-height: 30px;
    font-size: 0.9em;
}

.annotation {
    color: red;
}

    .annotation:before {
        content: "※";
        color: red;
        font-weight: bold;
    }
/* フッター */
footer {
    clear: both;
    height: 50px;
    text-align: right;
    border-top: 1px solid #ccc;
}

    footer img {
        width: 120px;
        height: 40px;
        vertical-align: -0.6em;
    }

/*アコーディオンリスト
----------------------------------------------------*/
.accordion-list01 {
    box-shadow: 0 2px 4px rgba(0,0,0,0.16);
    border: 1px solid #ccc;
    margin-bottom: 5px;
    font-size: 0.9em;
}

    .accordion-list01,
    .accordion-list01 dd {
        background-color: #F5F5F5;
    }

        .accordion-list01 dt,
        .accordion-list01 a,
        .accordion-list01 a:link,
        .accordion-list01 a:visited,
        .accordion-list01 a:hover {
            cursor: pointer;
            position: relative;
            display: block;
            line-height: 35px;
            color: #333;
            border-top: 1px solid #e3e3e3;
            font-size: 1em;
            z-index: 1;
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .accordion-list01 > li:first-child a {
            margin-top: -1px;
        }

        .accordion-list01 dt:hover,
        .accordion-list01 a:hover,
        .accordion-list01 a.current {
            background-color: #87cefa;
        }

        .accordion-list01 dt {
            height: auto;
            line-height: 1.5;
            padding: 0.5em 10px 0.5em 30px;
        }

        .accordion-list01 > li:first-child dt {
            border: none;
        }

        .accordion-list01 dt:before {
            content: "";
            position: absolute;
            top: 50%;
            right: auto;
            left: 12px;
            display: block;
            width: 6px;
            height: 6px;
            border-right: 1px solid #0000EE;
            border-bottom: 1px solid #0000EE;
            -webkit-transform: translateY(-5px) rotate(45deg);
            -moz-transform: translateY(-5px) rotate(45deg);
            transform: translateY(-5px) rotate(45deg);
            -webkit-transform-origin: 50% 50%;
            -moz-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            -webkit-transition: all 0.2s 0s ease;
            -moz-transition: all 0.2s 0s ease;
            transition: all 0.2s 0s ease;
        }

        .accordion-list01 dt.accordion-open:before {
            -webkit-transform: translateY(-2px) rotate(225deg);
            -moz-transform: translateY(-2px) rotate(225deg);
            transform: translateY(-2px) rotate(225deg);
        }

        .accordion-list01 a,
        .accordion-list01 a:link,
        .accordion-list01 a:visited,
        .accordion-list01 a:hover {
            padding-right: 5px;
        }

            .accordion-list01 a:after {
                width: 50px;
                height: 50px;
                border-top: 5px solid #666;
                border-right: 5px solid #666;
                transform: rotate(45deg);
            }

        .accordion-list01 dd {
            overflow: hidden;
            height: 0;
            padding-left: 25px;
            background-color: #f5f5f5;
        }

        .accordion-list01 dt[class*="accordion"] + dd {
            -webkit-transition: all 0.2s 0s ease;
            -moz-transition: all 0.2s 0s ease;
            transition: all 0.2s 0s ease;
        }

        .accordion-list01 a:before {
            content: "";
            position: absolute;
            top: 50%;
            right: auto;
            left: 8px;
            display: block;
            width: 6px;
            height: 6px;
            border-left: 1px solid #0000EE;
            border-bottom: 1px solid #0000EE;
            -webkit-transform: translateY(-5px) rotate(45deg);
            -moz-transform: translateY(-5px) rotate(45deg);
            transform: translateY(-5px) rotate(45deg);
            -webkit-transform-origin: 50% 50%;
            -moz-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            -webkit-transition: all 0.2s 0s ease;
            -moz-transition: all 0.2s 0s ease;
            transition: all 0.2s 0s ease;
        }

        .accordion-list01 a {
            padding-left: 18px;
            color: #0000EE;
        }

/*テーブル
----------------------------------------------------*/
.tbl-base {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

    .tbl-base th {
        background-color: #eee;
        padding: 6px;
        text-align: center;
        vertical-align: top;
        color: #333;
        border: 1px solid #b9b9b9;
    }

    .tbl-base td {
        padding: 6px;
        background-color: #fff;
        border: 1px solid #b9b9b9;
    }

    .tbl-base tr:nth-child(odd) td {
        background-color: #e0ffff;
    }

    .tbl-base td:last-child {
        text-align: center;
        width: 140px;
    }

.last-cell-left td:last-child {
    text-align: left;
    width: auto;
}

.last-cell-auto td:last-child {
    width: auto;
}

/* 各画面毎のテーブルの設定 */
/* Messages */
#mess,
#event-notify-history {
    word-break: break-all;
}

    #mess > tbody > tr > td:nth-child(1) {
        width: 180px;
    }

    #mess > tbody > tr > td:nth-child(2) {
        width: 200px;
    }

    #mess > tbody > tr > td:nth-child(3) {
        width: 300px;
    }

    #mess > tbody > tr > td {
        vertical-align: middle;
    }

        #mess > tbody > tr > td > span {
            display: inline-block;
        }

/* イベント一覧 */
#events-list > tbody > tr > td:nth-child(1) {
    width: 220px;
}

#events-list > tbody > tr > td:nth-child(5) {
    width: 110px;
}

/* イベント通知履歴 */
#event-notify-history > tbody > tr > td:nth-child(1) {
    width: 220px;
}

#event-notify-history > tbody > tr > td:nth-child(2) {
    width: 200px;
}

#event-notify-history > tbody > tr > td:nth-child(4) {
    width: 100px;
}

/* 積算値一覧 */
#integration > tbody > tr > td:first-child,
#integration-pls > tbody > tr > td:first-child {
    text-align: left;
}

#integration > tbody > tr > td:not(:first-child),
#integration-pls > tbody > tr > td:not(:first-child) {
    text-align: right;
}

#integration > tbody > tr > td:nth-child(2),
#integration > tbody > tr > td:nth-child(3),
#integration > tbody > tr > td:nth-child(4),
#integration-pls > tbody > tr > td:nth-child(2) {
    width: 220px;
}

#integration-pls {
    width: 540px;
}

#integration span {
    float: left;
    font-size: .95em;
    color: #888;
}

/* 設備履歴検索 */
#equip-messages > tbody > tr > td:nth-child(1),
#equip-messages > tbody > tr > td:nth-child(4) {
    width: 140px;
}

/* 機器アナログ, デジタル, パルス */
#analogs-list > tbody > tr > td:nth-child(1),
#digitals-list > tbody > tr > td:nth-child(1),
#pulses-list > tbody > tr > td:nth-child(1) {
    width: 60px;
}

#digitals-list > tbody > tr > td:nth-child(2) {
    width: 200px;
}

/* メールアドレスグループ用スタイル */
.mail-list {
    padding: 0;
    margin: 0;
    width: 100%;
}

    .mail-list > li {
        display: block;
        margin-top: 5px;
        float: left;
        word-break: break-all;
        width: 50%;
    }

/* イベント通知履歴用、状態警報表示用スタイル（凡例関連等） */
.mail-read-legend,
.statuses-legend {
    text-align: right;
}

    .mail-read li,
    .statuses-legend li {
        margin-bottom: 5px;
    }

        .mail-read li:before,
        .mail-read-legend span:before,
        .statuses-legend span > span:before {
            content: "●";
            color: springgreen;
            font-weight: bold;
            vertical-align: middle;
        }

    .statuses-legend span > span:before {
        content: "■";
        font-size: 1.5em;
    }

    .mail-read .unread:before,
    .mail-read-legend .unread:before,
    #event-notify-history .unread {
        color: red;
    }

    .statuses-legend .legend-on:before {
        color: salmon;
    }

.statuses-legend {
    padding: 0 8px 0 8px;
}

/*Login */
.login-form > input {
    margin-bottom: 15px;
}

#inner {
    height: 930px;
    margin-top: 0;
    width: 1280px;
}

.login-bg {
    background: url(/img/login_bg.jpg) no-repeat left top;
    padding-top: 240px;
}

.logo {
    height: 40px;
    left: 900px;
    margin-top: 370px;
    margin-left: 900px;
    width: 120px;
}

.copyright {
    color: #08088A;
    font-size: 12px;
    margin: -25px;
    margin-right: 10px;
    padding: 0 30px 0 0;
    text-align: right;
}

.login-form {
    height: 150px;
    margin: 0 0 0 160px;
    width: 252px;
}

/*AreaMaps */
.map {
    text-align: center;
}

    .map > svg {
        overflow: hidden;
    }

.zmap {
    border: 1px solid #777777;
    height: 550px;
    position: relative;
}

    .zmap div {
        box-sizing: content-box;
    }

.bk-white {
    background-color: white !important;
}

.content > h3 {
    color: #222222;
}

.shisetsu-select {
    margin-top: 1em;
}

/*Flows */
iframe {
    height: 700px;
    max-width: 101%;
    width: 1000px;
}

/*NotFound, Error（高さ、文字を大きく、中央に指定） */
.message {
    height: 400px;
    margin-top: 60px;
    text-align: center;
    font-size: 30px;
}

/* Events 項目名を右寄せにする */
.event-list-table th {
    text-align: right;
}

/* コンボボックスの入っているtdの幅を指定する */
.event-list-table tr:nth-child(2) td,
.event-list-table tr:nth-child(3) td {
    width: 300px;
}

/*Messages */
/*重要 */
.messages-important-color {
    color: red;
}
/*モーダル メモ */
.messages-modal-memo-size {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* 瞬時値表示 */
#valTbl {
    border-collapse: collapse;
    background: #f5f5f5;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.headVal {
    text-align: center;
    line-height: 10px;
    font-size: 11px;
}

.graph {
    height: 180px;
}

.footVal {
    text-align: center;
    line-height: 10px;
    font-size: 11px;
}

#valTbl td {
    height: 200px;
    width: 130px;
    padding: 10px;
    border: 1px solid #aaaaaa;
}

.instants-val-box {
    display: table-cell;
    width: 100px;
    border-top: 1px solid;
    padding-top: 5px;
}

    .instants-val-box li {
        padding-top: 5px;
    }

.instants-red {
    color: #DF0101;
}

.instants-yellow {
    color: #FFBF00;
}

.instants-blue {
    color: #2E2EFE;
}

/* 閾値編集の入力項目 Admin_Analogs_id_Threshold */
.input-threshold li {
    display: inline-block;
}

.input-threshold input[type="text"] {
    width: 80px;
    margin: 0 10px;
}

/* フロー図構成 */
.column-2 {
    width: 100%;
    display: table;
}

    .column-2 > div {
        display: table-cell;
        vertical-align: top;
    }

    .column-2 > .c-1, .column-2 > .c-2 {
        word-break: break-all;
    }

.fi-area {
    border: 1.5px solid #000;
    margin: 10px 0;
    background-color: #d3d3d3;
}

    .fi-area > div {
        padding: 10px;
    }

    .fi-area li {
        background-color: #fff;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        float: left;
        margin: 4px 4px;
        width: 120px;
        height: 100px;
        display: table;
    }

.fi-alert {
    background-color: #ff8c00 !important;
}

.fi-area li span {
    display: table-cell;
    vertical-align: middle;
}

.fi {
    display: inline-block;
}

.fi-area .c-1, .fi-area .c-2 {
    width: 50%;
}

.fi-table {
    width: 100%;
}

    .fi-table table, .fi-table td, .fi-table th {
        border: 1px solid #000;
    }

    .fi-table th, td {
        padding: 10px;
    }

    .fi-table td {
        text-align: right;
        background-color: #fff;
    }

    .fi-table thead tr {
        background: linear-gradient( #ffffff 0%, #000000 30%, #000000 100%);
        color: #fff;
    }

/* 編集メニューと編集エリア */
.edit {
    width: 100%;
    display: table;
    margin-top: 10px;
}

    .edit > div {
        display: table-cell;
        vertical-align: top;
    }

.edit-menu {
    font-weight: bold;
    font-size: 1.3em;
    padding-right: 10px;
    width: 230px;
}

    .edit-menu li {
        color: #666;
        border: 1px solid #333;
        text-align: center;
    }

        .edit-menu li:not(:first-child) {
            margin-top: -1px;
        }

        .edit-menu li.current {
            background-color: #FA8072;
        }

        .edit-menu li a {
            color: #666;
            display: block;
            padding: 30px 0;
        }

        .edit-menu li.current a {
            pointer-events: none;
        }

.edit-area {
    border: 1px solid #333;
    padding: 10px;
    word-break: break-all;
}

.legend-area {
    border-left: none;
    width: 300px;
}

    .legend-area ul li {
        font-size: x-small;
        margin-top: 5px;
    }
/* メールテンプレート凡例 */
.legend {
    border: 1px solid #333;
    padding: 10px;
}

    .legend > h3 {
        margin-bottom: 10px;
    }

/* メールテンプレート凡例関連（暫定） */
.modal-mail-edit {
    display: table-cell;
    width: 550px;
}

    .modal-mail-edit input[type="text"] {
        width: 98% !important;
    }

.modal-mail-legend {
    border: 1px solid #333;
    display: table-cell;
    width: 300px;
    padding: 10px;
}

/* 左右両端に寄せるボタンエリア */
.btn-area {
    margin: 10px 0 0 0;
}

    .btn-area button:last-child,
    .btn-area input[type="button"]:last-child,
    .btn-area input[type="submit"]:last-child,
    .btn-area .btn-base:last-child {
        float: right;
    }

    .btn-area button:first-child,
    .btn-area input[type="button"]:first-child,
    .btn-area input[type="submit"]:first-child,
    .btn-area .btn-base:first-child {
        float: left;
    }
/* 左右両端に寄せるリンクエリア */
.link-area {
    margin: 10px 0 0 0;
    height: 50px;
}

    .link-area a:last-child {
        float: right;
    }

    .link-area a:first-child {
        float: left;
    }

/*オーバーレイ
----------------------------------------------------*/
#overlay,
#overlay2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#overlay-close,
#overlay-close2,
#overlay-close:hover,
#overlay-close2:hover {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.4);
    opacity: 1;
    box-shadow: none;
}

#overlay-inner,
#overlay-inner2 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 500px;
    margin: auto;
    height: 80%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    padding-top: 60px;
}

    #overlay-inner section,
    #overlay-inner2 section {
        overflow: hidden;
        overflow-y: auto;
        padding: 20px;
        height: 100%;
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }

    /* overlay見出し */
    #overlay-inner h2,
    #overlay-inner2 h2 {
        padding-left: 0;
        margin-bottom: 20px;
        font-weight: bold;
        position: absolute;
        top: 20px;
    }

    /* overlayボタン */
    #overlay-inner button,
    #overlay-inner2 button,
    #overlay-inner input[type="button"],
    #overlay-inner2 input[type="button"],
    #overlay-inner input[type="submit"],
    #overlay-inner2 input[type="submit"],
    #overlay-inner a.btn-base,
    #overlay-inner2 a.btn-base {
        position: absolute;
        display: inline-block;
        line-height: 1em;
    }

.btn-overlay {
    bottom: 15px;
    left: 20px;
}

.btn-overlay-right {
    bottom: 15px;
    right: 20px;
}

.btn-overlay-relative {
    position: relative !important;
}

#close,
#close2 {
    top: 10px;
    right: 20px;
}

/* overlayフォーム */
#overlay-inner input[type="text"],
#overlay-inner2 input[type="text"],
#overlay-inner input[type="password"],
#overlay-inner2 input[type="password"] {
    width: 100%;
    padding: 0 10px;
}

#overlay-inner-menu h3 {
    border-top: 1px solid #ccc;
    margin-bottom: 5px;
    padding-top: 10px;
}

#overlay-inner-menu > ul > li > ul > li {
    margin: 0 10px 10px 10px;
}

#overlay-inner-menu a {
    margin-left: 10px;
}

#send-type1 > div {
    margin-bottom: 10px;
}

    #send-type1 > div > span {
        margin-right: 10px;
    }

/* dlのテーブル */
.dl-table dt {
    float: left;
    height: 45px;
    line-height: 45px;
    font-weight: bold;
}

.dl-table dd {
    display: block;
    margin: 0 0 0 25%;
    line-height: 45px;
    min-height: 45px;
}

    .dl-table dd label:first-child {
        font-weight: bold;
    }

    .dl-table dd .checkbox-list :checked ~ label:after {
        top: 20px;
    }

.dl-table-mr20 dd {
    margin: 0 0 0 20%;
}

.dl-table-mr15 dd {
    margin: 0 0 0 15%;
}

.dl-table-small {
    font-size: 0.9em;
}

/* 検索条件のテーブル TODO:名前変えよう… */
.search-form-table {
    /*  margin-bottom: 5px;*/
}

    .search-form-table th {
        padding: 0 10px 0 0;
        text-align: right;
        white-space: nowrap;
        vertical-align: middle;
    }

    .search-form-table td {
        padding: 5px;
    }

    .search-form-table div {
        padding: 0 10px 10px 0;
    }
/* イベント通知履歴（基本情報）用スタイル */
.mail-text {
    width: 100%;
}

    .mail-text tr:not(:last-child) {
        border-bottom: 1px dashed #333;
    }

    .mail-text th {
        font-weight: bold;
    }

    .mail-text td {
        padding: 15px 5px;
    }

/* タブっぽいやつ */
.tab-content-statuses > div > div {
    width: 241px;
    border: 8px solid;
    text-align: center;
    border-color: #aaaaaa #444444 #444444 #aaaaaa;
    height: 86px;
    padding: 5px;
    font-weight: bold;
    font-size: 1.05em;
    display: inline-block;
    margin-top: -4px;
}

    .tab-content-statuses > div > div p {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        width: 220px;
        height: 58px;
    }

.tab-content-statuses div:not(:first-child) {
    color: #888;
    padding: 8px;
}

.tab-content-statuses > div > p {
    color: black;
}

.tab-content-statuses #tab2 > div,
.tab-content-statuses #legend2 .off {
    background-color: springgreen;
    color: #333;
    margin-right: -6px;
}

    .tab-content-statuses #tab1 > div.alert-on,
    .tab-content-statuses #tab2 > div.status-on,
    .tab-content-statuses #legend1 .on,
    .tab-content-statuses #legend2 .on {
        background-color: salmon;
        color: #333;
    }

#legend1 div,
#legend2 div {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

#tab-change-btn-area > .current,
#tab-change-btn-area-reportdata > .current {
    pointer-events: none;
    background-color: #87cefa;
}

.tab-content-monitoringdata th,
.tab-content-reportdata th {
    width: 46px;
}

#monitoringdata,
#reportdata-day,
#reportdata-month,
#reportdata-year {
    padding: 10px 0 0 10px;
}

#reportdata-year {
    padding-bottom: 10px;
}

ul.li-4blocks,
ul.li-7blocks {
    display: flex;
    flex-wrap: wrap;
    margin-left: 50px;
}

ul.li-4blocks {
    margin-left: -10px;
    margin-bottom: -10px;
}

    ul.li-4blocks > li {
        width: 25%;
        list-style: none;
        border: 1px solid white;
        box-sizing: border-box;
        /*  margin-bottom: 10px;*/
        margin-left: 10px;
        margin-bottom: 10px;
    }

ul.li-7blocks > li {
    width: 14%;
    list-style: none;
    border: 1px solid white;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.outer-frame {
    border: solid 1px;
}

#delete-data-download-day td,
#delete-data-download-month td,
#delete-data-download-year td,
#output-data-area2 td {
    width: 100%;
}

.data-area {
    padding: 10px;
}

    .data-area ul {
        margin-left: -10px;
        margin-bottom: -10px;
    }

    .data-area li {
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .data-area li {
        width: 210px;
        display: inline-block;
    }

/* 帳票出力 */
.radio-list [type="checkbox"],
.radio-list [type="radio"] {
    position: fixed;
    top: -100%;
    left: -100%;
    z-index: -9999;
}

.radio-list > li {
    display: inline-block;
    margin: 0 10px 0 0;
    float: left;
}

.radio-list label {
    display: inline-block;
    min-height: 0;
    height: 2em;
    line-height: 2em;
    padding: 0 0.4em;
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 60px;
    text-align: center;
}

    .radio-list label:hover {
        cursor: pointer;
        background: #999;
    }

.radio-list .today + label {
    border-color: #fcc;
    background: #fcc;
}

.radio-list :checked + label {
    color: #fff;
    border-color: #666;
    background: #666;
}

.btn-report {
    width: 180px;
    height: 50px;
    margin-right: 20px;
}

.day-choose-area {
    width: 500px;
    height: 230px;
}

    .day-choose-area > li {
        margin-bottom: 10px;
    }

/* メールアドレス */
.mail-addr-list {
    border: none;
    padding: 0;
}

.scroll-content {
    border: 1px solid #666;
    height: 200px;
    overflow: auto;
    padding: 10px;
    width: 100%;
}

.scroll-content-line > ul > li:nth-child(even) {
    margin-left: 20px;
    padding-bottom: 5px;
}

.scroll-content-line h3 {
    border-bottom: 1px solid #666;
    margin-bottom: 5px;
    font-size: 1.2em;
}

    .scroll-content-line h3:not(:first-child) {
        margin-bottom: 5px;
    }

.scroll-content-line > ul > li:nth-child(odd) {
    margin-left: 10px;
    font-weight: bold;
}
/* メールアドレスのタグ */
#mail-tag > ul > li,
#event-notify-group > ul > li {
    display: inline-block;
}

    #mail-tag > ul > li > span {
        display: block;
        height: 30px;
        line-height: 30px;
        margin-right: 5px;
        margin-bottom: 5px;
        padding: 0 0 0 7px;
        color: #666;
        border-radius: 3px;
        background: #f5f5f5;
        font-size: 1.6rem;
    }

        #mail-tag > ul > li > span > a,
        #event-notify-group > ul > li > span > a {
            padding: 0 7px 0 2px;
        }

            #mail-tag > ul > li > span > a:hover,
            #event-notify-group > ul > li > span > a:hover {
                cursor: pointer;
            }

/* イベント通知グループ */
#event-notify-group {
    border: 2px solid #666;
    padding: 5px 5px 0 5px;
    width: 650px;
    margin-left: auto;
}

    #event-notify-group > ul > li {
        width: 100%;
        text-align: left;
    }

        #event-notify-group > ul > li > div {
            line-height: 25px;
            padding: 0 0 0 7px;
            color: #000;
            border-radius: 3px;
            background: #d3d3d3;
            font-size: 1.6rem;
            display: flex;
            /*  justify-content: center;*/
            align-items: center;
        }

        #event-notify-group > ul > li:not(:last-child) {
            margin-bottom: 5px;
        }

        #event-notify-group > ul > li > div > div {
            display: inline-block;
            margin-right: 10px;
        }

            #event-notify-group > ul > li > div > div:last-child {
                margin-left: auto;
            }

    #event-notify-group a {
        cursor: pointer;
        margin-left: 10px;
    }

.overlay-mailgroup,
.overlay-equip,
.overlay-equip-search {
    width: 500px !important;
    height: 300px !important;
}

.overlay-di {
    width: 800px !important;
    height: 500px !important;
}

#mail-group-area li,
#categories-area li,
#categories-area-search li {
    display: inline-block;
}

    #mail-group-area li:not(:nth-child(1)):before,
    #categories-area li:not(:nth-child(1)):before,
    #categories-area-search li:not(:nth-child(1)):before {
        content: " 、";
    }


/* 各textareaのサイズ指定 */
#mail-body,
#insert-letter-body,
#edit-letter-body {
    height: 300px;
    width: 360px;
}

#message {
    height: 200px;
    width: 350px;
}

#note,
#notes {
    height: 150px;
    width: 345px;
}

/* パンくず */
.breadcrumb {
    font-size: 0.8em;
    margin-left: 15px;
}

    .breadcrumb a {
        color: #0000EE;
        text-decoration: underline;
    }

    .breadcrumb > li {
        display: inline-block;
    }

    .breadcrumb li:last-child a {
        cursor: default;
        pointer-events: none;
        color: #888;
        text-decoration: none;
    }

    .breadcrumb li:nth-child(n+2):before {
        content: ">";
        color: #888;
        font-size: 1.1em;
    }

.user-select-checkbox {
    position: relative;
}

    .user-select-checkbox input[type="checkbox"] {
        opacity: 0;
        position: absolute;
        margin: 5px 0 0 3px;
        z-index: 9;
    }

    .user-select-checkbox label:before {
        width: 18px;
        height: 18px;
    }

    .user-select-checkbox label:before {
        content: '';
        margin-right: 10px;
        display: inline-block;
        vertical-align: text-top;
        background: white;
        border: 1px solid #bbb;
        border-radius: 2px;
        box-sizing: border-box;
        z-index: 2;
    }

    .user-select-checkbox input[type="checkbox"]:checked + label:after {
        content: '';
        position: absolute;
        left: 6px;
        top: 3px;
        width: 6px;
        height: 11px;
        border: solid #000;
        border-width: 0 3px 3px 0;
        transform: inherit;
        z-index: 3;
        transform: rotateZ(45deg);
    }

    .user-select-checkbox input[type="checkbox"]:checked + label:before {
        border-color: #03A9F4;
        background: #03A9F4;
    }

    .user-select-checkbox input[type="checkbox"]:checked + label:after {
        border-color: #fff;
    }

    .user-select-checkbox input[type="checkbox"]:disabled + label:before {
        color: #b8b8b8;
        cursor: auto;
        box-shadow: none;
        background: #ddd;
    }
