/* 通知フレーム */
.container-notify {
    position: absolute;
    top: 50px;
    bottom: 5px;
    right: 5px;
    width: 350px;

    overflow-y: scroll;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
}
/* 通知フレーム(SubWindow) */
body.body-subwindow .container-notify {
    top: 5px;
}

/* 通知フレームスクロールバー非表示 */
.container-notify::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display:none;
}
/* 通知フレーム(拡大) */
.container-notify.focus {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    z-index: 1042;
}

/* 通知 */
.container-notify .notify {
    position: relative;
    margin-bottom: 8px;
    min-height: 50px;
    z-index: 1041;

    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 5px solid transparent;
    border-radius: .25rem;

    border-color: #000000;
    background-color: #FFFFFF;
}
.container-notify .notify:last-child {
    margin-bottom: 0px;
}

/* 通知(拡大[対象]) */
.container-notify.focus .notify.focus {
    height: 100%;
    width: 100%;
    z-index: 1041;
    display: block;
    margin: 0px;
}

/* 通知(拡大[対象外]) */
.container-notify.focus .notify:not(.focus) {
    display: none;
}

/* 通知コントロール */
.container-notify .notify div.cntrol {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 50px;
    padding: 6px 2px 7px 3px;
    text-align: center;
}
.container-notify .notify div.cntrol div {
    position: relative;
    width: 100%;
    height: 100%;
}

.container-notify .notify button.cntrol {
    position: absolute;
    width: 100%;

    margin: 0px;
    padding: 0px;

    color: inherit;
    background-color: transparent;
    border: 0;
    outline: none;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    text-align: center;
    opacity: 0.35;
}
.container-notify .notify button.cntrol:hover,
.container-notify .notify button.cntrol:focus {
    opacity: 1;
}

.container-notify .notify button.cntrol.close {
    top: 0px;
    right: 0px;
}

.container-notify .notify button.cntrol.expand {
    bottom: 0px;
    right: 0px;
}

.container-notify.focus .notify.focus button i.expand {
    display: none;
}

.container-notify:not(.focus) .notify:not(.focus) button i.compress {
    display: none;
}

/* 通知メッセージ */
.container-notify .notify .message {
    padding: 5px 3px 5px 8px;
    margin-right: 25px;
    max-height: 100px;
    overflow-y: auto;
    word-break: break-all;
    font-size: 14px;
}
.container-notify.focus .notify.focus .message {
    max-height: 100%;
}

/* 通知エリア(ERROR) */
.container-notify .notify.notify-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* 通知エリア(WARNING) */
.container-notify .notify.notify-warn {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* 通知エリア(INFO) */
.container-notify .notify.notify-info {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

/* 通知エリア(GENERAL) */
.container-notify .notify.notify-gerl {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.hide {
    display: none;
}
