#lodingOverlay {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.75);
}
#lodingBox {
    /* 上下左右中央に寄せる */
    top: 50%;
    position: fixed;
    transform: translate(-50%, -60%);
    left: 50%;
    /* ローディング画面のデザイン */
    border-radius: 4px;
    padding: 6px;
}
.lodingMessage {
    top: 50%;
    position: fixed;
    transform: translate(-50%, -200%);
    left: 50%;
    color: white;
    z-index: 1000;
    font-size: 14px;
}
@media screen and (min-width: 1024px) {
#lodingBox {
        /* 上下左右中央に寄せる */
        position: fixed;
        width: 132px;
        transform: translate(-50%, -90%);
}
.lodingMessage {
        /* 上下左右中央に寄せる */
        position: fixed;
        transform: translate(-50%, -200%);
        font-size: 30px;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.lodingMessage {
        font-size: 20px;
}
}
@media screen and (min-width: 1024px) {
.lodingMessage {
        font-size: 32px;
}
}

.confirm-box-for-app { /* Safari用 */
    position: sticky; /* 要素をスクロールに応じて固定 */
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    min-width: 300px;
    padding: 30px 50px;
}
/* for Microsoft Edge */
@supports (-ms-ime-align: auto) {
.confirm-box-for-app {
        position: fixed;
}
}
/* for Microsoft IE */
@media all and (-ms-high-contrast: none) {
.confirm-box-for-app {
        position: fixed;
}
}
/* for Firefox */
@-moz-document url-prefix() {
.confirm-box-for-app {
        position: fixed !important;
}
}
.confirm-box-for-app__copy {
    font-size: 2rem;
    font-weight: bold;
}
.confirm-box-for-app__desc {
    font-size: 1.2rem;
    margin-top: 10px;
}
.confirm-box-for-app__btnwrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.confirm-box-for-app button {
    font-size: 1.3rem;
    width: 150px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
}
.confirm-box-for-app button.confirm-btn {
    background-color: #a8a8a8;
}
.confirm-box-for-app button.confirm-btn:hover {
    opacity: 0.7;
}
.confirm-box-for-app-modal-overlay {
    position: fixed;
    z-index: 10000;
    top: 0%;
    left: 0;
    width: 100%;
    height: 300%;
    background: rgba(0, 0, 0, 0.5);
}

*,
::after,
::before {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
a:not([href]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):hover {
    color: inherit;
    text-decoration: none;
}
code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace;
    font-size: 1em;
}
pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}
figure {
    margin: 0 0 1rem;
}
img {
    vertical-align: middle;
    border-style: none;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
table {
    border-collapse: collapse;
}
caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
th {
    text-align: inherit;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
button {
    border-radius: 0;
}
button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    -webkit-appearance: listbox;
}
textarea {
    overflow: auto;
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
summary {
    display: list-item;
    cursor: pointer;
}
template {
    display: none;
}
[hidden] {
    display: none !important;
}

@charset "utf-8";

/* ======== ベース ======== */
html {
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka",
        sans-serif;
    font-size: 10px;
}
body {
    background: #e2e2e2;
    word-break: break-all;
}
/* firefoxのみウィンドウ幅に合わせてbodyを固定 */
@-moz-document url-prefix() {
body {
        min-width: 445px;
}
}
/* IEのみウィンドウ幅に合わせてbodyを固定 */
@media screen and (-ms-high-contrast: active),
    screen and (-ms-high-contrast: none) {
body {
        min-width: 445px;
}
}
@media screen and (min-width: 1024px) {
body {
        background: url(data:image/gif;base64,R0lGODlhaQABAIAAADc3NwAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNi4wLWMwMDIgNzkuMTY0NDYwLCAyMDIwLzA1LzEyLTE2OjA0OjE3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUUwOTFEQTVDNjU4MTFFQUI0QjQ5N0Q4QUJGOTFFMDMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUUwOTFEQTZDNjU4MTFFQUI0QjQ5N0Q4QUJGOTFFMDMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBRTA5MURBM0M2NTgxMUVBQjRCNDk3RDhBQkY5MUUwMyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBRTA5MURBNEM2NTgxMUVBQjRCNDk3RDhBQkY5MUUwMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAAAAAAALAAAAABpAAEAAAIIhI+py+0PoywAOw==), #e2e2e2;
        background-size: 85px;
        background-position: left 0;
        background-repeat: repeat-y;
}
}
a,
a:hover,
a:visited,
a:active {
    text-decoration: none;
}

/* ====== TOPへ戻るボタン ====== */
#page_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../img/arrow_upward.svg);
    background-color: #000000;
    border-radius: 50px;
    background-size: 44px;
    background-position: center center;
    background-repeat: no-repeat;
}
#page_top:hover {
    opacity: 0.8;
}

/* ====== ナビゲーションバー関連 ====== */
.blur {
    -webkit-animation: blurPanel 0.3s forwards;
    animation: blurPanel 0.3s forwards;
}
@-webkit-keyframes blurPanel {
0% {
        filter: blur(0px);
}
100% {
        filter: blur(6px);
}
}
@media screen and (min-width: 1024px) {
.blur {
        -webkit-animation: unBlurPanel 0.1s forwards;
        animation: unBlurPanel 0.1s forwards;
}
@-webkit-keyframes unBlurPanel {
0% {
            filter: blur(6px);
}
100% {
            filter: blur(0px);
}
}
}
#blackPanel {
    top: 0%;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
    transition: 0.3s ease;
}
#blackPanel.active {
    display: block;
}

/* ====== サブヘッダ(現場名、操作メニューの帯) ====== */
#subHeader {
    background-color: #5c5c5c;
    box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 1rem;
}
#subHeader h2 {
    width: 100%;
    margin-bottom: 0;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.4;
    overflow: hidden;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 0 1rem 1rem;
    border-bottom: 1px solid #4e4e4e;
    cursor: default;
}
#subHeader div.controller {
    text-align: center;
    color: #fff;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
#subHeader div.controller select {
    margin: 0;
    height: 36px;
    border: 0 none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.4rem;
    padding: 0 1.2rem;
}
#subHeader div.controller option {
    color: #000;
    font-size: 1.4rem;
}
#subHeader div.controller select.size {
    display: none;
}
#subHeader div.controller > div {
    margin: 10px auto;
}
#subHeader div.controller > div:last-child {
    margin: 0 0 1rem 0;
}
#subHeader div.controller select.device {
    width: 160px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#subHeader div.controller select.type {
    width: 160px;
}
#subHeader div.controller select.size,
#subHeader div.controller select.type {
    height: 36px;
    font-size: 1.4rem;
}
#subHeader
    div.controller
    select.size
    option
    #subHeader
    div.controller
    select.type
    option {
    font-size: 1.4rem;
}
#subHeader div.controller div.view_apply {
    width: 100%;
}
#subHeader div.controller input[type="submit"],
.photo_list_sp input[type="submit"] {
    width: 70%;
    height: 36px;
    border: 0 none;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 5px;
    border-radius: 5px;
    text-indent: 5px;
    background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    -webkit-appearance: none;
}
@media (hover: hover), (-ms-high-contrast: none) {
#subHeader div.controller input[type="submit"]:hover:not([disabled]),
    .photo_list_sp input[type="submit"]:hover:not([disabled]) {
        opacity: 0.7;
}
}
#subHeader div.controller > div:last-child {
    margin: 0 0 1rem 0;
}
#subHeader div.controller select.device {
    width: 160px;
}
#subHeader div.controller select.type {
    width: 160px;
}
#subHeader div.controller select.size,
#subHeader div.controller select.type {
    height: 36px;
    font-size: 1.4rem;
}
#subHeader
    div.controller
    select.size
    option
    #subHeader
    div.controller
    select.type
    option {
    font-size: 1.4rem;
}
#subHeader div.controller input[type="submit"],
.photo_list_sp input[type="submit"] {
    width: 70%;
    height: 36px;
    border: 0 none;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 5px;
    border-radius: 5px;
    text-indent: 5px;
    background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    -webkit-appearance: none;
}
@media (hover: hover), (-ms-high-contrast: none) {
#subHeader div.controller input[type="submit"]:hover:not([disabled]),
    .photo_list_sp input[type="submit"]:hover:not([disabled]) {
        opacity: 0.7;
}
}
_::-webkit-full-page-media,
_:future,
:root select {
    background-color: #000 !important; /* safariのみ */
}
_::-webkit-full-page-media,
_:future,
:root select.settingSelect {
    background-color: #fff !important; /* safariのみ */
}

/* ====== カメラ関連 ====== */
#cameraList {
    margin-bottom: 70px;
    padding-top: 2rem;
}
#cameraList > ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    flex-wrap: wrap;
}
#cameraList > ul > li {
    background-color: #5c5c5c;
    margin-bottom: 2rem;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}
#cameraList ul li div.list_header {
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#cameraList ul li div.list_header h3 {
    color: #fff;
    padding: 1rem;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
}
@media all and (-ms-high-contrast: none) {
    /* IEのみ */
#cameraList ul li div.list_header h3 {
        padding-top: 1.5rem;
}
}
#cameraList ul li div.list_header h3 span {
    display: block;
    text-indent: 0rem;
    font-size: 1.2rem;
}
#cameraList ul li div.list_header h3 span.live,
#cameraList ul li div.list_header h3 span.stop_live,
#cameraList ul li div.list_header h3 span.rec,
#cameraList ul li div.list_header h3 span.snap {
    display: inline-block;
    text-indent: 0;
    padding: 1px 3px;
    margin: 0 1rem 0 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
#cameraList ul li div.list_header h3 span.live span,
#cameraList ul li div.list_header h3 span.stop_live span,
#cameraList ul li div.list_header h3 span.rec span,
#cameraList ul li div.list_header h3 span.snap span {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: none;
}
#cameraList ul li div.list_header h3 span.live {
    border: 1px solid #00ff90;
    color: #00ff90;
    letter-spacing: 0px;
}
#cameraList ul li div.list_header h3 span.stop_live {
    border: 1px solid #f00;
    color: #f00;
    letter-spacing: 0px;
}
#cameraList ul li div.list_header h3 span.rec {
    border: 1px solid #f00;
    color: #f00;
    letter-spacing: 0px;
}
#cameraList ul li div.list_header h3 span.snap {
    border: 1px solid #3c81ff;
    color: #3c81ff;
    letter-spacing: 0px;
}
#cameraList ul li div.list_body div.photo {
    width: 100%;
    position: relative;
}
#cameraList ul li div.list_body div.photo img {
    width: 100%;
}

/* ====== タブレット横以上 ======*/
@media screen and (min-width: 1024px) {
.blur {
        -webkit-animation: unBlurPanel 0.1s forwards;
        animation: unBlurPanel 0.1s forwards;
}
@-webkit-keyframes unBlurPanel {
0% {
            filter: blur(6px);
}
100% {
            filter: blur(0px);
}
}
#Wrapper {
        width: 100%;
        height: 100%;
}
#blackPanel {
        display: none;
}
#blackPanel.active {
        display: none;
}
.main_container {
        width: 100%;
        display: flex;
        height: calc(100% - 60px);
}
#mainBlock {
        width: 100%;
        filter: blur(0px) !important;
}
#subHeader {
        position: relative;
        flex-wrap: wrap;
}
#subHeader h2 {
        display: inline-block;
        width: auto;
        text-align: left;
        margin-right: 3rem;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        border-bottom: inherit;
}
#subHeader div.controller {
        width: auto;
        vertical-align: bottom;
        margin: 0 0 0 1.5rem;
}
#subHeader h2 {
        display: inline-block;
        width: auto;
        text-align: left;
        margin-right: 3rem;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        border-bottom: inherit;
}
#subHeader div.controller {
        width: auto;
        vertical-align: bottom;
        margin: 0 0 0 1.5rem;
}
#subHeader div.controller > div {
        margin: 0 1.5rem 1rem 0;
}
#subHeader div.controller .datepicker {
        width: 160px;
}
#subHeader div.controller .datepicker input {
        width: 160px;
        height: 36px;
        font-size: 1.4rem;
        text-indent: 1rem;
        letter-spacing: 1px;
}
#subHeader div.controller .datepicker input::-moz-placeholder {
        font-size: 1.4rem;
        letter-spacing: 1px;
}
#subHeader div.controller .datepicker input:-ms-input-placeholder {
        font-size: 1.4rem;
        letter-spacing: 1px;
}
#subHeader div.controller .datepicker input::placeholder {
        font-size: 1.4rem;
        letter-spacing: 1px;
}
#subHeader div.controller label.size,
    #subHeader div.controller select.size {
        display: inline;
}
#subHeader div.controller select.size,
    #subHeader div.controller select.device {
        height: 36px;
        font-size: 1.4rem;
}
#subHeader
        div.controller
        select.size
        option
        #subHeader
        div.controller
        select.device
        option {
        font-size: 1.4rem;
}
#subHeader div.controller div.view_apply {
        width: auto;
}
#subHeader div.controller div.view_apply input[type="submit"] {
        height: 36px;
        width: 120px;
}
#cameraList {
        margin: 30px 0 35px 0;
        padding-top: 0;
}
#cameraList > ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
}
#cameraList > ul > li {
        margin-bottom: 3rem;
        margin-left: 3rem;
        margin-right: 3rem;
        height: 100%;
        width: 100%;
}
#cameraList > ul > li.small {
        width: 400px;
}
#cameraList > ul > li.medium {
        width: 800px;
}
    /* サブヘッダーの縦幅はとりあえず保留 */
#cameraList ul li div.list_header {
        min-height: 60px;
}
#cameraList ul li div.list_header h3 {
        padding-left: 2rem;
        font-size: 1.6rem;
        display: block;
        letter-spacing: 1px;
}
#cameraList ul li div.list_header h3 span {
        font-size: 1.5rem;
}
#cameraList ul li div.list_header h3 span.live span,
    #cameraList ul li div.list_header h3 span.stop_live span,
    #cameraList ul li div.list_header h3 span.rec span,
    #cameraList ul li div.list_header h3 span.snap span {
        display: inline;
        padding-left: 2px;
}
#cameraList ul li div.list_body {
        display: flex;
        flex-wrap: nowrap;
}
#cameraList ul li div.list_body div.photo {
        display: flex;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.6);
}
}

/* ====== スマホ画面縦用 ====== */
@media screen and (max-width: 480px) {
#subHeader div.controller {
        display: block;
}
#subHeader div.controller input[type="submit"] {
        width: 160px;
}
}

/* ====== タブレット横画面から ====== */
@media screen and (min-width: 1024px) {
#subHeader div.controller > div {
        -webkit-margin-before: 0 !important;
        -webkit-margin-after: 1rem !important;
        -webkit-margin-start: 0 !important;
        -webkit-margin-end: 1.5rem !important;
}
}

/* ====== タブレット縦画面まで ====== */
@media screen and (max-width: 1023px) {
    /* ヘッダー固定用 */
#subHeader {
        padding-top: 60px;
}
}

/* ======== メニューボックス（外） ======== */
header div.logout {
    display: none;
}
header div.logout .logout-icon {
    display: none;
}

/* ======== メニューボックス（中） ======== */
#header-menu-box {
    display: none;
}
.header-menu {
    display: grid;
    border-bottom: 1px dotted #fff;
    width: 150px;
    height: 40px;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: white;
    list-style: none;
    text-indent: 4rem;
    text-decoration: none;
    padding-top: 5%;
}
.header-menu#help-button {
    background-image: url(../img/help.svg);
    background-repeat: no-repeat;
    background-position: 7px center;
    background-size: 25px;
}
.header-menu#logout-button {
    border-bottom: 0 none;
    background-image: url(../img/logout.svg);
    background-repeat: no-repeat;
    background-position: 8px;
    background-size: 25px;
}
.header-menu:hover {
    background-color: #8d8d8d;
    color: white;
}

/* ======== ヘッダー ======== */
#Header {
    background-color: #000;
    display: flex;
    box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 13000;
    height: 50px;
}
#Header .container {
    width: 85px;
    min-width: 85px;
    display: flex;
    background-color: #000;
}
#Header .drawer {
    width: 40px;
    height: 100%;
    background-color: #000;
    margin: 0 0.6rem;
    display: flex;
    align-items: center;
}
#Header .menu-trigger {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: relative;
    width: 20px;
    height: 22px;
    display: block;
    margin: 0 auto;
}
#Header .menu-trigger:hover {
    cursor: pointer;
}
#Header .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
}
#Header .menu-trigger span:nth-of-type(1) {
    top: 0px;
    -webkit-animation: menu-bar01 0.5s forwards;
    animation: menu-bar01 0.5s forwards;
}
#Header .menu-trigger span:nth-of-type(2) {
    top: 10px;
    transition: all 0.25s 0.25s;
    opacity: 1;
}
#Header .menu-trigger span:nth-of-type(3) {
    bottom: 0px;
    -webkit-animation: menu-bar02 0.5s forwards;
    animation: menu-bar02 0.5s forwards;
}
#Header .menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 0.5s forwards;
    animation: active-menu-bar01 0.5s forwards;
}
#Header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
#Header .menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 0.5s forwards;
    animation: active-menu-bar03 0.5s forwards;
}
#Header h1 {
    display: block;
    height: 100%;
    width: 65px;
    background-size: 100%;
    background-image: url(../img/logo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 0;
    text-indent: 110%;
    overflow: hidden;
    white-space: nowrap;
}
#Header h2 {
    min-height: 50px;
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: normal;
    padding-left: 1rem;
    color: #fff;
    line-height: 1.2;
    overflow: hidden;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    text-indent: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ======== アニメーション ======== */
@-webkit-keyframes menu-bar01 {
0% {
        -webkit-transform: translateY(10px) rotate(45deg);
}
50% {
        -webkit-transform: translateY(10px) rotate(0);
}
100% {
        -webkit-transform: translateY(0) rotate(0);
}
}
@keyframes menu-bar01 {
0% {
        transform: translateY(10px) rotate(45deg);
}
50% {
        transform: translateY(10px) rotate(0);
}
100% {
        transform: translateY(0) rotate(0);
}
}
@-webkit-keyframes menu-bar02 {
0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
}
50% {
        -webkit-transform: translateY(-10px) rotate(0);
}
100% {
        -webkit-transform: translateY(0) rotate(0);
}
}
@keyframes menu-bar02 {
0% {
        transform: translateY(-10px) rotate(-45deg);
}
50% {
        transform: translateY(-10px) rotate(0);
}
100% {
        transform: translateY(0) rotate(0);
}
}
@-webkit-keyframes active-menu-bar01 {
0% {
        -webkit-transform: translateY(0) rotate(0);
}
50% {
        -webkit-transform: translateY(10px) rotate(0);
}
100% {
        -webkit-transform: translateY(10px) rotate(45deg);
}
}
@keyframes active-menu-bar01 {
0% {
        transform: translateY(0) rotate(0);
}
50% {
        transform: translateY(10px) rotate(0);
}
100% {
        transform: translateY(10px) rotate(45deg);
}
}
@-webkit-keyframes active-menu-bar03 {
0% {
        -webkit-transform: translateY(0) rotate(0);
}
50% {
        -webkit-transform: translateY(-10px) rotate(0);
}
100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
}
}
@keyframes active-menu-bar03 {
0% {
        transform: translateY(0) rotate(0);
}
50% {
        transform: translateY(-10px) rotate(0);
}
100% {
        transform: translateY(-10px) rotate(-45deg);
}
}

/* ======== 【タブレット横以上】 ======== */
@media screen and (min-width: 1024px) {
    /* ======== ヘッダー ======== */
#Header {
        width: 100%;
        height: 50px;
}
#Header h1 {
        width: 90px;
        background-size: auto;
}
#Header h2 {
        padding-left: 0rem;
        font-size: 2rem;
}
#Header .drawer {
        display: none;
}

    /* ======== メニューボックス（外） ======== */
header div.logout {
        display: flex;
        align-items: center;
        margin: 0 0 0 auto;
}
header div.logout .logout-icon {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 150px;
        height: 29px;
        padding-right: 10px;
        color: white;
        font-size: large;
        cursor: pointer;
        transition: 0.3s ease;
        background-image: url(../img/user.svg);
        background-repeat: no-repeat;
        background-position: 70%;
}

    /* ======== メニューボックス（中） ======== */
#header-menu-box {
        background-color: #000;
        display: block;
        position: absolute;
        margin-bottom: 0;
        width: 150px;
        height: 80px;
        right: 0%;
        /* ローディング中のヘルプ・ログアウト操作を可能にする */
        z-index: 10001;
        text-align: left;
        cursor: pointer;
}
}

/* ========【タブレット横まで】======== */
@media screen and (max-width: 1023px) {
    /* ヘッダー固定用 */
#Header {
        width: 100%;
        position: fixed;
        z-index: 14000;
}
}

/* ======== IEのみ ======== */
@media all and (-ms-high-contrast: none) {
#help-button {
        display: block;
}
}

/* ======== ナビゲーションバー ======== */
#Navigation {
    width: 100%;
    position: relative;
    background-color: #373737;
    z-index: 1300;
    height: 100%;
}
#Navigation .container {
    display: none;
}
#Navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}
#Navigation ul li {
    width: calc(100% / 3);
    border-bottom: 1px solid #4e4e4e;
    border-right: 1px solid #4e4e4e;
    background-color: #373737;
}
#Navigation ul li a {
    display: block;
    width: 100%;
    height: 60px;
    text-align: center;
    background-position: center 11px;
    background-repeat: no-repeat;
    background-size: 28px;
    color: #fff;
    text-decoration: none;
    line-height: 7.6;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    cursor: pointer;
}
#Navigation ul li .sidebarRouter:hover,
#Navigation ul li .sidebarRouter.active {
    background-color: rgba(200, 200, 200, 0.2);
}
#Navigation ul li:nth-of-type(3n) {
    border-right: 0 none;
}
#Navigation ul li.home a {
    background-image: url(../img/home.svg);
}
#Navigation ul li.live a {
    background-image: url(../img/live.svg);
}
#Navigation ul li.clip a {
    background-image: url(../img/clip.svg);
}
#Navigation ul li.history a {
    background-image: url(../img/history.svg);
}
#Navigation ul li.settings a {
    background-image: url(../img/gear.svg);
}
#Navigation ul li.user a {
    background-image: url(../img/user.svg);
}
#Navigation ul li.help a {
    cursor: pointer;
    background-image: url(../img/help.svg);
}
#Navigation ul li.logout a {
    cursor: pointer;
    background-image: url(../img/logout.svg);
}

/* ======== IEのみ ======== */
@media screen and (-ms-high-contrast: active),
    screen and (-ms-high-contrast: none) {
#Navigation ul li {
        /* 100%だと1024px以下に画面をリサイズすると横3列にならず2列になる場合があるため調整 */
        width: calc(99.9% / 3);
}
}

/*【タブレット横以上】*/
@media screen and (min-width: 1024px) {
#Navigation {
        width: 85px;
        min-width: 85px;
        flex-basis: 85px;
        position: relative;
}
#Navigation .container {
        display: block !important;
}
#Navigation ul {
        display: block;
        position: relative;
        box-shadow: none;
}
#Navigation ul li {
        width: 100%;
        border-bottom: 1px solid #4e4e4e;
        border-right: 0 none;
}
#Navigation ul li a {
        display: block;
        height: 85px;
        background-position: center 21px;
        line-height: 8.5;
        font-size: 1.4rem;
}
#Navigation li.help {
        display: none;
}
#Navigation li.logout {
        display: none;
}
}

/* ======== 【タブレット縦まで】 ======== */
@media screen and (max-width: 1023px) {
#Navigation {
        /* ローディング中のメニュー操作を可能にする */
        z-index: 13000;
}
    /* ヘッダー固定用 メニューも固定 */
#Navigation ul {
        padding-top: 50px;
        position: fixed;
}
}

.confirm-box { /* Safari用 */
    position: sticky; /* 要素をスクロールに応じて固定 */
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    min-width: 300px;
    padding: 30px 50px;
}
/* for Safari */
_::-webkit-full-page-media,
_:future,
:root .confirm-box {
    position: fixed;
}
/* for Microsoft Edge */
@supports (-ms-ime-align: auto) {
.confirm-box {
        position: fixed;
}
}
/* for Microsoft IE */
@media all and (-ms-high-contrast: none) {
.confirm-box {
        position: fixed;
}
}
/* for Firefox */
@-moz-document url-prefix() {
.confirm-box {
        position: fixed !important;
}
@media screen and (min-width: 1024px) {
.confirm-box {
            position: sticky !important;
}
}
}
.confirm-box__copy {
    font-size: 2rem;
    font-weight: bold;
}
.confirm-box__desc {
    font-size: 1.2rem;
    margin-top: 10px;
}
.confirm-box__btnwrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.confirm-box button {
    font-size: 1.3rem;
    width: 150px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}
.confirm-box button:hover {
    opacity: 0.7;
}
.confirm-box button.forward-btn {
    background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
}
.confirm-box button.exit-btn {
    background-color: #a8a8a8;
}
.confirm-box-modal-overlay {
    position: fixed;
    z-index: 10000;
    top: 0%;
    left: 0;
    width: 100%;
    height: 300%;
    background: rgba(0, 0, 0, 0.5);
}
/* for Firefox */
@-moz-document url-prefix() {
    /* PC表示の認証エラーモーダル用*/
@media screen and (min-width: 1024px) {
.confirm-box-modal-overlay {
            position: absolute;
}
}
}

.delete-box {
    /* Safari用 */
    /* 要素をスクロールに応じて固定 */
    position: sticky;
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    min-width: 300px;
    padding: 30px 50px;
}
/* for Safari */
_::-webkit-full-page-media,
_:future,
:root .delete-box {
    position: fixed;
}
/* for Microsoft Edge */
@supports (-ms-ime-align: auto) {
.delete-box {
        position: fixed;
}
}
/* for Microsoft IE */
@media all and (-ms-high-contrast: none) {
.delete-box {
        position: fixed;
}
}
/* for Firefox */
@-moz-document url-prefix() {
@media screen and (max-width: 1024px) {
.delete-box {
            position: fixed;
}
}
}
.delete-box__copy {
    font-size: 2rem;
    font-weight: bold;
}
.delete-box__desc {
    font-size: 1.2rem;
    margin-top: 10px;
}
.delete-box__btnwrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.delete-box button {
    font-size: 1.3rem;
    width: 150px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cbcbcb;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}
.delete-box button.cancel-btn:hover {
    background-color: #cfdae7;
}
.delete-box button.delete-btn {
    background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-left: 10px;
}
.delete-box button.delete-btn:hover {
    opacity: 0.7;
}
.delete-box-modal-overlay {
    position: fixed;
    z-index: 1000;
    top: 0%;
    left: 0;
    width: 100%;
    height: 300%;
    background: rgba(0, 0, 0, 0.5);
}
/* ======== オーバーレイ ======== */
/* 確認モーダルのz-indexをMain.vueで小さくしないとナビゲーションバーが出ている状態で操作できてしまうため対策 */
/* @media screen and (max-width: 1024px) {
    .delete-box-modal-overlay {
        z-index: 100;
    }
} */

/* ======== safariのみ ======== */
#cameraList
    ul
    li.clearfix
    div.list_body
    div.photo_list
    ul.live_time_list:not(html) {
    -webkit-transform: translate3d(0, 0, 0);
}
/* ====== サムネイル関連 ====== */
.photo_list_sp {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 0rem 1rem 0.5rem;
    border-top: 1px solid #4e4e4e;
    padding-top: 0.5rem;
}
.photo_list_sp select {
    width: 160px;
    height: 36px;
    border: 0 none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.4rem;
    padding: 0 1.2rem;
    margin: 0.5rem 0;
}
.photo_list_sp select option {
    font-size: 1.4rem;
    color: #000;
}
/* .photo_list_sp label {
    font-size: 1.3rem;
    color: #fff;
    margin: 0 1rem 0 0;
    text-align: right;
    white-space: nowrap;
} */
.photo_list_sp input[type="submit"] {
    width: 75px;
    margin-left: 1rem;
    font-size: 1.5rem;
}
#cameraList ul li div.list_header h3.home_thumbnail_head_name {
    width: 65%;
}
/* カメラ直当たりアイコン */
#cameraList ul li div.list_header .setting {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
}
#cameraList ul li div.list_header .setting a {
    display: flex;
    background: linear-gradient(135deg, #2b2b2b 0%, #000 100%);
    height: 100%;
    width: 40px;
    line-height: 3.5;
    text-align: center;
}
#cameraList ul li div.list_header .setting img {
    margin: 0 auto;
    width: 20px;
    height: 100%;
}
#cameraList ul li div.list_body div.photo_list ul {
    display: none;
}

/* ======== 検索欄と選択欄 ======== */
.search {
    width: 210px;
    height: 36px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 0 none;
    color: #fff;
    font-size: 1.4rem;
    text-indent: 0.5rem;
    letter-spacing: 1px;
}
.search::-moz-placeholder {
    color: #cccccc;
}
.search:-ms-input-placeholder {
    color: #cccccc;
}
.search::placeholder {
    color: #cccccc;
}

/* ======== 選択欄 ======== */
#subHeader div.controller select.search {
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.option-desc {
    display: none;
}

/* ======== 電圧監視 ======== */
.widgetGroup {
    display: inherit;
}
.widget {
    margin-right: 50px;
    display: flex;
}
.widget p {
    color: #fff;
    margin-left: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}
.widget a {
    margin-left: 10px;
}
.widget a .widget_img {
    background-image: url(../img/blank.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 12px;
    width: 12px;
    height: 12px;
}
.widget div.value {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
}
.widget .batt_level {
    width: 33px;
    height: 14px;
    background-image: url(../img/batt.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 25px;
    padding: 4px;
    margin-top: 2px;
    -moz-position: relative;
    -ms-position: relative;
    position: relative;
}
.widget .batt_level span {
    display: block;
    width: 1.4rem;
    height: 5px;
    background-color: #0f0;
}
.widget .batt_level_yellow {
    width: 33px;
    height: 14px;
    background-image: url(../img/batt.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 25px;
    padding: 4px;
    margin-top: 2px;
}
.widget .batt_level_yellow span {
    display: block;
    width: 7px;
    height: 5px;
    background-color: rgb(247, 243, 8);
}
.widget .batt_level_red {
    width: 33px;
    height: 14px;
    background-image: url(../img/batt.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 25px;
    margin-top: 1px;
    padding: 4px;
    margin-top: 2px;
}
.widget .batt_level_red span {
    display: block;
    width: 3px;
    height: 5px;
    background-color: rgb(255, 0, 0);
}
.widget:hover .widget_balloon {
    display: block;
}
#cameraList ul li div.list_header .widget .widgetGroup {
    width: 100px;
}

/* ======== 電圧監視ウィジットのIEのみ ======== */
@media screen and (-ms-high-contrast: active),
    screen and (-ms-high-contrast: none) {
p.widget_balloon {
        top: -65px;
}
p.widget_balloon.no_data_balloon {
        top: -45px;
        right: -50px;
}
#cameraList ul li div.list_header .widget {
        position: absolute;
        right: 0;
        top: 30%;
}
}
@media screen and (-ms-high-contrast: active),
    screen and (-ms-high-contrast: none) and (min-width: 1024px) {
p.widget_balloon {
        top: -60px;
}
p.widget_balloon.no_data_balloon {
        top: -45px;
        right: -70px;
}
#cameraList ul li div.list_header h3.headline.small {
        width: 220px;
}
}
/* 吹き出し本体 */
#cameraList ul li div.list_header .widget p.widget_balloon {
    color: #000000;
    font-size: 1.4rem;
}
.widget_balloon {
    display: none;
    position: absolute;
    padding: 5px;
    background-color: #fff;
    z-index: 10000;
    top: -52px;
    border: 1px solid #fff;
    width: 132px;
}
.widget_balloon.no_data_balloon {
    top: -32px;
    right: 1px;
}
.widget_balloon.widget_balloon.no_data_balloon:after {
    left: 68px;
}
.widget_balloon:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    bottom: -9px;
    border-top: 8px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

/* ======== 日時取得リスト内のローディング ======== */
.loadBox {
    display: none;
}
.loadImg {
    display: none;
}
.loadBodyBox {
    z-index: 101;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
}
.loadBodyImg {
    display: block;
    margin: auto auto;
}
.loadingCircle {
    width: 100px;
    height: auto;
}
.loadDiv {
    height: 46px;
}

/* ======== タブレット横以上 ======== */
@media screen and (min-width: 1024px) {
#subHeader div.controller input[type="text"].search {
        width: 270px;
        height: 36px;
        font-size: 1.4rem;
        background-repeat: no-repeat;
        background-position: 1rem center;
        text-indent: 4rem;
        background-image: url(../img/renz.svg);
        letter-spacing: 1px;
}
#subHeader div.controller input[type="text"].search::-moz-placeholder {
        font-size: 1.4rem;
        text-indent: 4rem;
        letter-spacing: 1px;
        color: #cccccc;
}
#subHeader div.controller input[type="text"].search:-ms-input-placeholder {
        font-size: 1.4rem;
        text-indent: 4rem;
        letter-spacing: 1px;
        color: #cccccc;
}
#subHeader div.controller input[type="text"].search::placeholder {
        font-size: 1.4rem;
        text-indent: 4rem;
        letter-spacing: 1px;
        color: #cccccc;
}
#subHeader div.controller select.search {
        width: 270px;
        height: 36px;
        font-size: 1.4rem;
        letter-spacing: 1px;
        text-align: left;
}
.photo_list_sp {
        display: none;
}
    /* ローディングアイコン */
.loadBox {
        z-index: 101;
        width: 100%;
        height: 100%;
        display: flex;
        background-color: rgba(0, 0, 0, 0.5);
}
.loadImg {
        display: block;
        margin: auto auto;
}
.loadBodyBox {
        display: none;
}
.loadBodyImg {
        display: none;
}
    /* #cameraList ul li div.list_header h3.home_thumbnail_head_name {
        margin-right: 70px;
    } */
    /* カメラ直当たりアイコン */
#cameraList ul li div.list_header .setting {
        display: block;
        height: 100%;
}
#cameraList ul li div.list_header .setting a {
        height: 100%;
        width: 60px;
        display: flex;
        align-items: center;
        text-align: center;
}
#cameraList ul li div.list_header .setting img {
        width: 35px;
        margin: 0 auto;
}
#cameraList ul li div.list_body div.photo_list {
        width: 180px;
        min-width: 180px;
        flex-basis: 180px;
        background-color: rgba(255, 255, 255, 0.1);
}
#cameraList ul li div.list_body div.photo_list ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: block;
        overflow-y: scroll;
}
#cameraList ul li div.list_body div.photo_list ul li {
        width: 100%;
}
#cameraList ul li div.list_body div.photo_list ul li a {
        display: inline-block;
        font-size: 1.5rem;
        text-indent: 3.4rem;
        text-decoration: none;
        color: #fff;
        position: relative;
        padding: 0.5rem 0;
        width: 100%;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#cameraList ul li div.list_body div.photo_list ul li a:before {
        display: inline-block;
        width: 17px;
        height: 15px;
        background-size: 15px;
        top: 10px;
        left: 9px;
        content: "";
        background-image: url(../img/camera.svg);
        background-repeat: no-repeat;
        position: absolute;
}
#cameraList ul li div.list_body div.photo_list ul li a.active {
        background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
}

    /* 電圧監視ウィジット */
.widget_balloon {
        top: -42px;
}
.widget_balloon.no_data_balloon {
        top: -28px;
}
.widget_balloon.widget_balloon.no_data_balloon:after {
        left: 45px;
}
#cameraList ul li.small div.list_header div.widget div.small {
        width: 33px;
        background-size: 27px;
        padding: 1px;
}
#cameraList ul li.small div.list_header div.widget div div.small {
        font-size: 1.5rem;
        height: 1.8rem;
}
#cameraList ul li.small div.list_header div.widget div .value.small {
        width: 50px;
}
#cameraList ul li.small div.list_header div.widget p.small {
        margin-left: 4px;
        font-size: 1.6rem;
}
#cameraList ul li.small div.list_header div.widget a.small {
        font-size: 1.4rem;
        margin-left: 10px;
}
#cameraList ul li.small div.list_header div.widget a img {
        background-size: 15px;
        width: 15px;
        height: 15px;
}
#cameraList ul li div.list_header .widget {
        display: flex;
        margin-right: 70px;
}
#cameraList ul li div.list_header .widget .widgetGroup {
        width: 145px;
}
#cameraList ul li div.list_header .widget.small .widgetGroup {
        width: 110px;
}
#cameraList ul li div.list_header .widget p {
        color: #fff;
        margin-left: 10px;
        font-size: 2rem;
        line-height: 1;
}
#cameraList ul li div.list_header .widget a {
        font-size: 1.7rem;
        margin-left: 10px;
        line-height: 1;
}
#cameraList ul li div.list_header .widget a .widget_img {
        background-image: url(../img/blank.svg);
        background-position: 0 0;
        background-size: 22px;
        width: 22px;
        height: 22px;
}
#cameraList ul li.small div.list_header div.widget .widget_img.small {
        background-size: 15px;
        width: 15px;
        height: 15px;
}
#cameraList ul li div.list_header .widget .batt_level {
        width: 45px;
        height: 25px;
        background-image: url(../img/batt.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 38px;
        padding: 4px;
        -moz-position: relative;
        -ms-position: relative;
        position: relative;
}
#cameraList ul li div.list_header .widget .batt_level span {
        width: 2.5rem;
        height: 12px;
        background-color: #0f0;
        position: absolute;
}
#cameraList ul li div.list_header .widget .batt_level.small span {
        width: 2.1rem;
}
#cameraList ul li div.list_header .widget .batt_level_yellow {
        width: 45px;
        height: 25px;
        background-image: url(../img/batt.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 38px;
        padding: 4px;
}
#cameraList ul li div.list_header .widget .batt_level_yellow span {
        display: block;
        width: 12px;
        height: 12px;
        background-color: rgb(247, 243, 8);
}
#cameraList ul li div.list_header .widget .batt_level_red {
        width: 45px;
        height: 25px;
        background-image: url(../img/batt.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 38px;
        padding: 4px;
}
#cameraList ul li div.list_header .widget .batt_level_red span {
        display: block;
        width: 5px;
        height: 12px;
        background-color: rgb(255, 0, 0);
}
#cameraList ul li div.list_header .widget div.value {
        color: #fff;
        font-size: 2rem;
        line-height: 1;
}
#cameraList ul li div.list_header .widget div.value a img {
        width: 15px;
}
}

/* ======== スマホ縦まで ======== */
@media screen and (max-width: 480px) {
.photo_list_sp {
        display: block;
}
.list_body {
        text-align: center;
}
.photo_list_sp input[type="submit"] {
        margin: 0;
        width: 160px;
        margin-bottom: 5px;
}
}

/* ======== スマホ横からタブレット縦まで ======== */
@media screen and (min-width: 480px) and (max-width: 1024px) {
#subHeader div.controller .search {
        margin: 0 5px;
}
}

/* ======== スマホ縦まで ======== */
/* @media screen and (max-width: 385px) {
    #cameraList ul li div.list_header h3.headline {
        max-width: 140px;
    }
} */

/* ======== スマホ縦まで ======== */
@media screen and (max-width: 480px) {
.photo_list_sp select {
        display: inherit;
        margin: 5px auto;
}
}

/* ======== IEのみ ======== */
@media all and (-ms-high-contrast: none) {
*,
    ::after,
    ::before {
        position: relative;
}
.loadBox {
        display: block;
        position: absolute;
}
#cameraList ul li div.list_header h3.home_thumbnail_head_name {
        margin-right: 140px;
}
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: none) {
#cameraList ul li div.list_header h3.home_thumbnail_head_name {
        margin-right: 210px;
}
}
.photo_list_sp input[type="submit"]:hover:not([disabled]) {
    opacity: 0.7;
}

/* ======== サムネイルの動画再生アイコン ======== */
.overlay-movie-icon {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/play_large.svg);
    background-size: 20%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    z-index: 1;
}

/* ====== スマートフォン縦 ====== */
@media screen and (max-width: 480px) {
.sp-modal {
        position: fixed;
        top: 0;
        right: 0;
}
.video-cancel-button {
        display: inline-block;
        position: relative;
        margin: 3px 15px 0 0;
        padding: 0;
        width: 4px;
        height: 30px;
        background: #fff;
        transform: rotate(45deg);
}
.video-cancel-button::before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: -13px;
        width: 30px;
        height: 4px;
        margin-top: -2px;
        background: #fff;
}
.sp-videojs-content {
        width: 100%;
}
.sp-modal-window {
        width: 100%;
}
.sp-modal-content {
        padding: 100% 0px !important;
        background: #202020;
}
.videojs-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0%;
        left: 0%;
        z-index: 100;
}
.modal-window {
        width: 90vw;
        height: 80vh;
        min-width: 128px;
        min-height: 96px;
}
.modal-overlay {
        align-items: center;
        justify-content: center;
}
}

/* ====== スマートフォン縦以上 ====== */
@media screen and (min-width: 481px) {
.sp-modal {
        position: fixed;
        top: 0;
        right: 0;
}
.video-cancel-button {
        display: inline-block;
        position: relative;
        margin: 3px 15px 0 0;
        padding: 0;
        width: 4px;
        height: 30px;
        background: #fff;
        transform: rotate(45deg);
}
.video-cancel-button::before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: -13px;
        width: 30px;
        height: 4px;
        margin-top: -2px;
        background: #fff;
}
.sp-videojs-content {
        position: absolute;
        width: 80%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
}
.sp-modal-window {
        width: 100%;
}
.sp-modal-content {
        padding: 100% 0px !important;
        background: #202020;
}
.videojs-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0%;
        left: 0%;
        z-index: 100;
}
.modal-window {
        width: 90vw;
        height: 80vh;
        min-width: 128px;
        min-height: 96px;
}
.modal-overlay {
        align-items: center;
        justify-content: center;
}
}
/* ======  タブレット横以上 ====== */
@media screen and (min-width: 1024px) {
.videojs-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0%;
        left: 0%;
        z-index: 100;
}
.modal-window {
        width: 75vw;
        height: 75vh;
        min-width: 512px;
        min-height: 288px;
}
.modal-overlay {
        align-items: initial;
        justify-content: initial;
}
}
.modal.modal-overlay {
    display: flex;
    position: fixed;
    z-index: 100000;
    top: 0%;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
}
.modal-window-title {
    position: absolute;
    z-index: 10000;
    color: black;
    top: -94px;
    font-size: 25px;
    color: #fff;
    width: 85%;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 15px;
}
.modal-window-subtitle {
    position: absolute;
    z-index: 10000;
    color: black;
    top: -47px;
    font-size: 25px;
    color: #fff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    border-top: solid 2px gray;
}
.modal-window {
    border-width: 10rem 0.3rem 0.3rem 0.3rem;
    position: sticky;
    border-style: solid;
    border-color: #5c5c5c;
    border-radius: 4px;
}
.modal-content {
    padding: 10px 20p;
    width: 100%;
    height: 100%;
}
.modal-footer {
    background: #ccc;
    padding: 10px;
    text-align: right;
}

/* for Microsoft Edge */
@supports (-ms-ime-align: auto) {
.modal-window {
        position: fixed;
}
}

/* for Internet Explorer */
@media all and (-ms-high-contrast: none) {
.modal-window {
        position: fixed;
}
}
.modal-enter-active,
.modal-leave-active {
    transition: opacity 0.4s;
}
/* オーバーレイに包含されているモーダルウィンドウのトランジション */
.modal-enter-active .modal-window,
.modal-leave-active .modal-window {
    transition: opacity 0.4s, transform 0.4s;
}
/* ディレイを付けるとモーダルウィンドウが消えた後にオーバーレイが消える */
.modal-leave-active {
    transition: opacity 0.6s ease 0.4s;
}
.modal-enter,
.modal-leave-to {
    opacity: 0;
}
.modal-enter .modal-window,
.modal-leave-to .modal-window {
    opacity: 0;
    transform: translateY(-20px);
}
#closeButton {
    position: absolute;
    color: #fff;
    top: -115px !important;
    right: 10px !important;
    z-index: 1000;
    width: 45px !important;
    height: 45px !important;
    font-size: 45px !important;
    font-family: "marlett";
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
/* IEのみ */
@media all and (-ms-high-contrast: none) {
#closeButton {
        top: -105px !important;
}
}
_::-webkit-full-page-media,
_:future,
:root #closeButton {
    top: -105px !important;
}
#sp-closeButton {
    position: absolute;
    color: #fff;
    top: 1%;
    right: 0%;
    z-index: 1000;
    width: 60px;
    height: 60px;
    font-size: 60px;
    font-family: "marlett";
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
}
#loadMovieMessage {
    position: absolute;
    color: #fff;
    z-index: 1000;
    font-size: 30px;
    font-family: "marlett";
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.videojs-content {
    background-color: black;
}
.back-button,
.next-button {
    position: absolute;
    color: #ffffff;
    z-index: 10000;
    font-size: 80px;
    margin: 0 15px;
    cursor: pointer;
    animation-name: fade-out;
    animation-duration: 0.5s;
    -webkit-animation-name: fade-out;
    -webkit-animation-duration: 0.5s;
}
.back-button {
    left: 0;
    top: -45px;
    font-size: 3rem;
}
.next-button {
    right: 0;
    top: -45px;
    font-size: 3rem;
}
.back-button-parts {
    display: inline-block;
    transform: rotate(-90deg);
}
.next-button-parts {
    display: inline-block;
    transform: rotate(90deg);
}
.back-button-parts2 {
    left: 50%;
    display: inline-block;
    transform: rotate(90deg);
}
.next-button-parts2 {
    right: 50%;
    display: inline-block;
    transform: rotate(-90deg);
}
.back-button-parts2,
.next-button-parts2 {
    position: absolute;
    top: -20%;
}
@media screen and (max-width: 768px) {
#loadMovieMessage {
        position: absolute;
        z-index: 1000;
        font-size: 14px;
        font-family: "marlett";
        display: flex;
        align-items: center;
        justify-content: center;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
}
}
@media screen and (max-width: 1024px) {
.modal.modal-overlay {
        height: 100%;
}
}

/* for Safari */
_::-webkit-full-page-media,
_:future,
:root .modal-window {
    position: fixed;
}
/* ======== サブヘッダー ======== */
#subHeader h2 {
    margin-bottom: 0;
}

/* ======== 【タブレット横以上】 ======== */
@media screen and (min-width: 1024px) {
#subHeader h2 {
        padding: 0 0 0.7% 1.5rem;
}
}

/* ======== 動画操作系の各種ボタン ======== */
.archive-btn {
    display: none;
}
.archive-btn button.-delete:disabled {
    background: #e9dcdc;
}
.archive-btn button.-play:disabled,
.archive-btn button.-oneday-download:disabled {
    background: #c8d1e6;
}

/* ====== 各種ボタンをホバー時に透過 ====== */
@media (hover: hover), (-ms-high-contrast: none) {
.archive-btn div button:hover:not([disabled]) {
        opacity: 0.7;
}
}

/* ======== サムネイル関連 ======== */
/* IEのみ */
@media (-ms-high-contrast: none) {
input.multiSelectCheckBox[type="checkbox"] + label {
        position: absolute !important;
}
}
/* チェック前のボックスを作成（beforeで要素追加） */
input.multiSelectCheckBox[type="checkbox"] + label::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    background-color: white;
    top: 0;
    right: 0;
    z-index: 10;
    border: 2px solid grey;
}
/* チェック時に色の変更 */
input.multiSelectCheckBox[type="checkbox"]:checked + label::before {
    background-color: #5fbdb5;
}
/* チェック時に画像に背景色を付ける */
input.multiSelectCheckBox[type="checkbox"]:checked ~ .play {
    background-color: #24446a;
}
/* チェック時にチェックマークを表示 */
input.multiSelectCheckBox[type="checkbox"]:checked + label::after {
    content: "";
    display: block;
    width: 14px;
    height: 8px;
    box-sizing: border-box;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    position: absolute;
    top: 0.8em;
    right: 0.2em;
    z-index: 11;
    transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 480px) {
input.multiSelectCheckBox[type="checkbox"] + label::before {
        width: 18px;
        height: 18px;
}
input.multiSelectCheckBox[type="checkbox"]:checked + label::after {
        width: 10px;
        height: 6px;
        border-bottom: 2px solid #fff;
        border-left: 2px solid #fff;
        top: 0.6em;
        right: 0.2em;
}
}

/* ======== サムネイル動画再生部分 ======== */
.play {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/play_large.svg);
    background-size: 20%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

/* ======== 動画操作系のボタン関連 ======== */
.multiSelectCheckBox {
    display: none;
    -webkit-appearance: checkbox;
}
.img_for_modal:hover {
    cursor: pointer;
}
.movie-download-button {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    width: 11%;
    height: 23%;
    background: rgb(22, 76, 151);
    background: linear-gradient(
        45deg,
        rgba(22, 76, 151, 1) 2%,
        rgba(27, 137, 181, 1) 100%
    );
}
@media (hover: hover), (-ms-high-contrast: none) {
.movie-download-button:hover:not([disabled]) {
        opacity: 0.7;
}
}
.download-icon {
    position: absolute;
    z-index: 10;
    right: 18%;
    bottom: 18%;
    width: 60%;
    height: 60%;
    background-image: url(../img/download_icon.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.question-icon {
    display: none;
}

/* ======== 【タブレット縦以上】 ======== */
@media screen and (min-width: 1024px) {
#cameraList ul.list_movie li.clearfix div.list_header {
        min-height: 100px;
        position: sticky;
        display: block;
        top: 0px;
        z-index: 50;
        background-color: #5c5c5c;
}
    /* ヘルプアイコン */
.question-icon {
        cursor: pointer;
        background-image: url(../img/help.svg);
        background-position: center;
        background-size: 50%;
        background-repeat: no-repeat;
        width: 36px;
        display: block;
}
    /* ヘルプアイコン押下時の吹き出し */
.noticeMessage {
        display: none;
        position: absolute;
        top: 11px;
        right: 0;
        margin-right: 2%;
}
.noticeMessage p {
        background-color: #fff;
        width: 340px;
        padding: 3px;
        font-size: 11px;
        text-align: center;
        color: #000000;
}
    /* 三角アイコン */
.noticeMessage:after {
        content: "";
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        right: 0;
        margin-right: 3%;
        bottom: 5px;
        border-top: 8px solid #fff;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
}
    /* 吹き出しの表示 */
.question-icon:hover + .noticeMessage {
        display: block;
}
.archive-btn {
        display: flex;
        width: 96%;
        margin: 0 auto 1.5rem;
        justify-content: space-between;
}
.archive-btn > div {
        display: flex;
}
.archive-btn div button {
        cursor: pointer;
        margin: 0;
        background: none;
        border: none;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 5px 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        border-radius: 4px;
        font-size: 1.6rem;
        position: relative;
        letter-spacing: 1px;
        margin-right: 10px;
}
.archive-btn button.-play,
    .archive-btn button.-oneday-download {
        background: rgb(22, 76, 151); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(
            45deg,
            rgba(22, 76, 151, 1) 2%,
            rgba(27, 137, 181, 1) 100%
        ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
        color: #fff;
}
.archive-btn button.-play {
        width: 120px;
        padding: inherit;
        font-size: 15px;
}
.archive-btn button.-play:before {
        display: block;
        content: "";
        width: 24px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../img/play_large.svg);
        background-size: 20px;
        margin-right: 5px;
}
.archive-btn button.-oneday-download {
        width: 170px;
        padding: inherit;
        font-size: 15px;
}
.archive-btn button.-oneday-download:before {
        display: block;
        content: "";
        width: 24px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../img/download_icon.png);
        background-size: 20px;
        margin-right: 5px;
}
.archive-btn button.-select {
        width: 120px;
        padding: inherit;
        font-size: 15px;
        background-color: #cbcbcb;
        border: 1px solid #ccc;
}
.archive-btn button.-select:before {
        display: block;
        content: "";
        width: 24px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../img/done.svg);
        background-size: 24px;
        margin-right: 5px;
}
.archive-btn button.-allSelect {
        width: 120px;
        padding: inherit;
        font-size: 15px;
}
.archive-btn button.-allSelect:before {
        display: block;
        content: "";
        width: 24px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../img/done_all.svg);
        background-size: 24px;
        margin-right: 5px;
}
.archive-btn button.-cancel {
        width: 120px;
        padding: inherit;
        font-size: 15px;
}
.archive-btn button.-cancel:before {
        display: block;
        content: "";
        width: 24px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../img/clear.svg);
        background-size: 24px;
        margin-right: 5px;
}
.archive-btn button.-delete {
        width: 120px;
        padding: inherit;
        font-size: 15px;
        background: linear-gradient(135deg, #aa0000 0%, #ff0000 100%);
        text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
        color: #fff;
}
.archive-btn button.-delete:before {
        display: block;
        content: "";
        width: 24px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../img/delete-white.svg);
        background-size: 26px;
        margin-right: 5px;
}
}
@media screen and (min-width: 1024px) and (-ms-high-contrast: none) {
    /* IEのみ */
.noticeMessage {
        top: -34.5px;
}
.noticeMessage:after {
        bottom: -8px;
}
}

/* ======== datepicker ======== */
.datepicker {
    width: 160px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 0 none;
    display: inline-block;
    position: relative;
    text-align: left;
}
.datepicker Datepicker::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
    text-indent: 0.5rem;
    letter-spacing: 0;
}
.datepicker Datepicker:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
    text-indent: 0.5rem;
    letter-spacing: 0;
}
.datepicker Datepicker::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.3rem;
    text-indent: 0.5rem;
    letter-spacing: 0;
}
.datepicker input {
    width: 160px;
    height: 36px;
    color: #fff;
    font-size: 1.4rem;
    text-indent: 1rem;
    letter-spacing: 1px;
    background-color: transparent;
    border: 0 none;
    cursor: default;
    opacity: 0.5;
    background-image: url(../img/cal.svg);
    background-position: 95%;
    background-repeat: no-repeat;
    background-size: 15% 55%;
}
/* IEのみ対応 */
@media all and (-ms-high-contrast: none) {
.datepicker input {
        background-size: 19% 60%;
}
.vdp-datepicker .vdp-datepicker__calendar div {
        position: static;
}
}
/* firefoxのみ対応 */
.datepicker input::-moz-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.datepicker input:-ms-input-placeholder {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.datepicker input::placeholder {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.datepicker_dp {
    color: black;
}
.vdp-datepicker .vdp-datepicker__calendar {
    position: fixed;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.6);
    width: 450px;
    min-width: 450px;
    padding: 10px 10px;
    border-radius: 2%;
    z-index: 100000;
}
.vdp-datepicker .vdp-datepicker__calendar header span {
    font-size: 200% !important;
    font-weight: bold !important;
}
.vdp-datepicker .vdp-datepicker__calendar header .day__month_btn {
    width: 82%;
    margin-bottom: 3%;
}
.vdp-datepicker .vdp-datepicker__calendar header .prev {
    width: 9%;
}
.vdp-datepicker .vdp-datepicker__calendar header .prev:after {
    width: 20px;
    height: 20px;
    border: 5px solid;
    border-color: transparent transparent #565656 #565656;
    transform: rotate(45deg);
    top: 30%;
}
.vdp-datepicker .vdp-datepicker__calendar header .prev:hover {
    background: white;
}
.vdp-datepicker .vdp-datepicker__calendar header .next {
    width: 9%;
}
.vdp-datepicker .vdp-datepicker__calendar header .next:after {
    width: 20px;
    height: 20px;
    border: 5px solid;
    border-color: #565656 #565656 transparent transparent;
    transform: rotate(45deg);
    top: 30%;
    left: 5%;
}
.vdp-datepicker .vdp-datepicker__calendar header .next:hover {
    background: white;
}
.vdp-datepicker .vdp-datepicker__calendar .cell {
    font-size: 200% !important;
    border: solid 0.5px #e8e8e8; /*線*/
    height: 35px;
    line-height: inherit;
}
.vdp-datepicker .vdp-datepicker__calendar .day-header {
    background: #e8e8e8 !important;
}
/* ヘッダーの日曜日に適用 */
.vdp-datepicker .vdp-datepicker__calendar .day-header:first-child {
    color: red !important;
}
/* ヘッダーの土曜日に適用 */
.vdp-datepicker .vdp-datepicker__calendar .day-header:nth-child(7) {
    color: blue !important;
}
.vdp-datepicker .vdp-datepicker__calendar .disabled {
    color: black !important;
    background: #e8e8e8 !important;
}
.vdp-datepicker .vdp-datepicker__calendar .sat {
    color: blue !important;
}
.vdp-datepicker .vdp-datepicker__calendar .sun {
    color: red !important;
}
.vdp-datepicker .vdp-datepicker__calendar .disabled {
    color: #cccccc !important;
}
@media screen and (max-width: 480px) {
    /*【スマートフォンやタブレットが使用されているときに使用するCSS】*/
.vdp-datepicker .vdp-datepicker__calendar {
        width: 320px;
        min-width: 320px;
}
}

/* ======== 動画・静止画（子コンポーネント）に適用するスタイル ======== */
#cameraList div.history_list h4 {
    background-color: rgba(139, 139, 139, 0.6);
    color: #fff;
    text-indent: 1.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0.5rem 0;
    width: 96%;
    margin: 0 auto 0.6rem;
    letter-spacing: 2px;
    border-radius: 5px 0 0 0;
}
#cameraList div.history_list ul {
    list-style-type: none;
    margin: 10px auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 96%;
    margin: 0 auto;
    justify-content: space-between;
}
#cameraList div.history_list ul li {
    width: 49%;
    position: relative;
    margin-bottom: 0.6rem;
}
#cameraList div.history_list ul li .img_for_modal {
    display: block;
    width: 100%;
    height: 100%;
}
#cameraList div.history_list ul li .img_for_modal img {
    width: 100%;
}
#cameraList div.history_list ul li .img_for_modal span {
    z-index: 1;
    color: #fff;
    position: absolute;
    font-size: 3.5vw;
    letter-spacing: 1px;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-left: 4px;
    text-align: left;
}
#cameraList div.history_list ul li a {
    display: block;
    width: 100%;
    height: 100%;
}
#cameraList div.history_list ul li a img {
    width: 100%;
}
#cameraList div.history_list ul li a span {
    color: #fff;
    position: absolute;
    bottom: 1px;
    right: 3px;
    font-size: 4vw;
    letter-spacing: 1px;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-right: 4px;
    text-align: right;
}

/* ======== 【タブレット縦以上】 ======== */
@media screen and (min-width: 1024px) {
.clearfix_pc:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
}
.clearfix_pc {
        display: inline-block;
        min-height: 1%;
}
    /* Hides from IE-mac \*/
* html .clearfix_pc {
        height: 1%;
}
.clearfix_pc {
        display: block;
}
    /* 動画・静止画（子コンポーネント）に適用するスタイル */
#cameraList div.history_list ul {
        margin-bottom: 2rem;
        display: block;
}
#cameraList div.history_list ul li {
        width: 16%;
        margin-right: 0.8%;
        float: left;
}
#cameraList div.history_list ul li a span {
        font-size: 1.2vw;
}
#cameraList div.history_list ul li .img_for_modal span {
        font-size: 1.2vw;
}
#cameraList div.history_list ul li:nth-of-type(6n) {
        margin-right: 0;
}
.vdp-datepicker .vdp-datepicker__calendar {
        position: absolute;
}
.datepicker input {
        font-size: 1.6rem;
}
    /* firefoxのみ対応 */
.datepicker input::-moz-placeholder {
        color: #fff;
        opacity: 1;
        font-size: 1.6rem;
        letter-spacing: 1px;
}
.datepicker input:-ms-input-placeholder {
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 1px;
}
.datepicker input::placeholder {
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 1px;
}
}
/* ======== ipad用 サブヘッダー ======== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
#subHeader div.controller select {
        margin: 0;
}
}
/* ======== スマホ用 サブヘッダー ======== */
@media screen and (max-width: 530px) {
#subHeader div.controller {
        display: block;
}
}

/* ======== 設定リスト ======== */
.setting-ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    top: 0;
    left: 0;
    list-style: none;
}
@media (max-width: 750px) {
.setting-ul {
        display: inherit;
        padding: 0;
}
}
.setting-li {
    display: flex;
    justify-content: center;
    height: 50%;
    margin: 8vh 1.5vw;
}
.settingRouter {
    width: 100%;
    background: white;
    border-radius: 6px;
}
.setting-name {
    width: 100%;
    padding: 1rem;
    border-radius: 6px 6px 0 0;
    background-color: #5c5c5c;
    font-size: 25px;
    color: white;
}
.setting-detail {
    width: 100%;
    padding: 3rem;
    font-size: 15px;
    color: black;
}

/* ======== クリアボタン ======== */
.simple-table table tbody tr td.no-border-right {
    border-width: 1px 0 1px 1px;
}
.simple-table table tbody tr td.no-border-left {
    border-width: 1px 1px 1px 0;
    width: 100px;
}
.resetButton {
    margin-left: 10px;
    font-size: 1.3rem;
    width: 70px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cbcbcb;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 1024px) {
.resetButton {
        display: none;
}
td.no-border-left {
        display: none;
}
.simple-table table tbody tr td.no-border-right {
        border-width: thin;
}
}
@media (hover: hover), (-ms-high-contrast: none) {
.resetButton:hover:not([disabled]) {
        opacity: 0.7;
}
}

/* ======== テーブル ======== */
.simple-table.-col02 {
    width: 100%;
    margin: 8px 0 30px;
}
.simple-table.-col02 td {
    text-align: left;
}
.simple-table.-col02 td p {
    display: flex;
    justify-content: flex-start;
    min-height: 60px;
}
.simple-table.-col02 td p span {
    display: block;
    font-size: 1.3rem;
    margin-top: 4px;
    cursor: default;
}
.simple-table.-col02 td p.-required {
    justify-content: space-between;
}
.simple-table.-col02 td p.-required::after {
    display: flex;
    content: "必須";
    width: 40px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    background-color: #c23030;
}
.simple-table.-col02 td.no-border-right p {
    padding: 10px 30px 10px;
}
.simple-table.-col02 td p.input-wrap {
    padding: 10px 30px 10px;
}
.simple-table.-col02 td p.input-wrap.-column {
    flex-direction: column;
}
.simple-table.-col02 td:first-child {
    padding: 0;
    width: 220px;
    min-width: 220px;
}
.simple-table.-col02 .select-wrap {
    display: flex;
    padding: 10px 30px 10px;
    align-items: center;
}
.simple-table.-col02 .select-wrap .selectbox {
    flex: 0 1 auto;
    width: 100%;
    max-width: 1000px;
    position: relative;
}
.simple-table.-col02 .select-wrap.-column {
    align-items: flex-start;
    flex-direction: column;
}
.simple-table.-col02 input[type="text"],
input[type="password"],
select {
    width: 100%;
    height: 40px;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
}
/* セレクトの横幅 */
.simple-table.-col02 input[type="text"].-mini,
input[type="password"].-mini,
select.-mini {
    max-width: 100px;
}
.simple-table.-col02 input[type="text"].-middle,
input[type="password"].-middle,
select.-middle {
    max-width: 400px;
}
/* テーブル内のテーブル */
.simple-table.-col02.-mini {
    max-width: 600px;
    margin-bottom: 0;
}
.simple-table.-col02.-mini td p {
    min-height: 40px;
    padding: 10px;
}
.simple-table.-col02.-mini td input {
    height: 28px;
}
.simple-table.-col02.-mini td:first-child {
    width: 160px;
    padding: 0;
}

/* タブレット縦 */
@media screen and (max-width: 750px) {
.simple-table.-col02 {
        border: solid 1px #ccc;
}
.simple-table.-col02 td {
        text-align: left;
        width: 100%;
        display: block;
        border: none;
}
.simple-table.-col02 td p {
        min-height: 50px;
}
.simple-table.-col02 td.no-border-right p {
        padding: 10px 10px 10px;
}
.simple-table.-col02 td p.input-wrap {
        padding: 10px;
}
.simple-table.-col02 td:first-child,
    .simple-table.-col02.-mini td:first-child {
        width: 100%;
        display: block;
}
.simple-table.-col02 .select-wrap {
        padding: 10px;
}
    /* カメラURL */
td div p.cameraUrl.urlProtocol {
        padding: 10px;
}
td div p.input-wrap.cameraUrl.urlDomain {
        padding: 10px;
}
    /* クリアボタンのtd */
.simple-table.-col02 td.no-border-left {
        display: none;
}
}

/* ======== IEのみ対応 ======== */
@media all and (-ms-high-contrast: none) {
table {
        border-spacing: 0 !important;
        border-collapse: separate;
        border: solid 1px #ccc !important;
}
p {
        margin-top: auto;
        margin-bottom: auto;
}
.simple-table.-col02 td p.input-wrap.-column {
        display: inline-block;
}
.simple-table.-col02 td p.details-term-id,
    .simple-table.-col02 td p.details-timezone,
    .simple-table.-col02 td p.widget-term-id {
        min-height: 0px;
        height: 60px;
}
}
@media screen and (max-width: 750px) and (-ms-high-contrast: none) {
.simple-table.-col02 {
        border: none;
}
}

/* ======== 「変更を保存」ボタン ======== */
button.change-btn {
    margin-bottom: 0px;
}
@media (hover: hover), (-ms-high-contrast: none) {
.change-btn:hover:not([disabled]) {
        opacity: 0.7;
}
}

/* ======== 見出し ======== */
.simple-ttl {
    margin-bottom: 2rem;
}

/* ======== カメラURL ======== */
.simple-table.-col02 .cameraUrl {
    display: inline-block;
}
.simple-table.-col02 p.cameraUrl.urlProtocol {
    padding: 10px 10px 0 30px;
}
div p.input-wrap.cameraUrl.urlDomain {
    padding: 10px 0 0 10px;
    min-width: 320px;
}
@media screen and (max-width: 480px) {
.simple-table.-col02 .cameraUrl {
        display: block;
}
div p.input-wrap.cameraUrl.urlDomain {
        min-width: 0;
}
}
@media screen and (max-width: 750px) {
.simple-table.-col02 p.cameraUrl.urlProtocol {
        padding: 10px 10px 0 10px;
}
}

/* ======== urlドメインの崩れを修正 ======== */
@media screen and (min-width: 750px) and (max-width: 820px) {
div p.input-wrap.cameraUrl.urlDomain {
        padding-left: 30px;
}
}
@media screen and (min-width: 750px) {
div p.input-wrap.cameraUrl.urlDomain {
        margin-right: 30px;
}
}

/* スマホ横画面のみ対応 */
@media screen and (max-width: 420px) {
.simple-table table {
        table-layout: fixed;
}
}

/* ======== l-main ======== */
.l-main {
    flex: 0 1 auto;
    overflow: hidden;
    position: relative;
    margin: 2rem 3rem 3rem 3rem;
    padding: 2rem 3rem 3rem 3rem;
    background-color: white;
}

/* ======== 録画開始・停止ボタン ======== */
.simple-table .-stop,
.simple-table .-play {
    display: flex;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 1.4rem;
    padding: 0 12px;
    margin-bottom: 10px;
    color: #fff;
    cursor: pointer;
    width: 120px;
}
.simple-table .-stop:hover,
.simple-table .-play:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}
@media (hover: hover), (-ms-high-contrast: none) {
table p span.-stop:hover:not([disabled]),
    table p span.-play:hover:not([disabled]) {
        transition: 0.3s ease;
        opacity: 0.7;
}
}
.simple-table .-stop {
    background-color: #525252;
}
.simple-table .-stop:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background-color: #787878;
    margin-right: 8px;
    border: solid 4px #fff;
}
.simple-table .-play {
    background-color: #c23030;
}
.simple-table .-play:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #c23030;
    margin-right: 4px;
    border: solid 4px #fff;
}

/* ======== 録画中・停止中文言 ======== */
.recording,
.suspending {
    font-weight: bold;
}
.recording {
    color: #c23030;
}
.simple-table .term-id {
    padding: 0 10px 10px 10px;
}
.simple-table .term-name {
    padding: 5px 10px 0px 10px;
}

/* ======== テーブル内の変更ボタン ======== */
a.td-change-btn:hover {
    color: white;
}

/* ======== カメラ一覧テーブル ======== */
.simple-table table {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.35;
    border: none;
    /* overflow: hidden; */
    border: none;
    background-color: #fff;
}
.simple-table th,
.simple-table td {
    border: solid 1px #ccc;
}
.simple-table th p,
.simple-table td p {
    display: grid;
    justify-content: center;
    padding: 20px 10px;
    margin-bottom: inherit;
    align-items: center;
}
.simple-table th,
.simple-table td:first-child {
    background-color: #5c5c5c;
    color: #fff;
    font-weight: normal;
}
.simple-table td a {
    display: flex;
    width: 60px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: #fff;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
}
.simple-table td a:hover {
    opacity: 0.7;
    transition: 0.3s ease;
    color: white;
}
@media (hover: hover), (-ms-high-contrast: none) {
.simple-table td a:hover:not([disabled]) {
        opacity: 0.7;
        color: #fff;
}
}
.simple-table {
    width: 100%;
}
.simple-table::-webkit-scrollbar {
    width: 8px;
}
.simple-table::-webkit-scrollbar-track {
    background: #fff;
}
.simple-table::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px #fff;
}
.simple-table.-col02 td p.input-wrap.-column {
    align-items: normal;
}
@media screen and (min-width: 880px) {
.simple-table .term-id,
    .simple-table .term-name {
        padding: 0 0 5px 10px;
        justify-content: left;
}
.simple-table td.term-name p {
        padding: 0 10px 0 10px;
        justify-content: left;
}
}
@media screen and (min-width: 1024px) {
.simple-table .term-name {
        padding: 0;
}
}

/* ======== タブレット用のカメラ一覧 ======== */
.display-sequence-tb {
    display: none;
}
.simple-table .-play-tb,
.simple-table .-stop-tb {
    padding-right: 0px;
    padding-left: 0px;
    width: 100px;
}
.simple-table-tb th p {
    padding: 20px 9px;
}
.simple-table-tb.sp-large table {
    min-width: initial;
}

/* ======== スマホ用のカメラ一覧 ======== */
.display-sequence-mb {
    display: none;
}
.simple-table-mb td p {
    padding: 10px 0 10px 0;
}
.simple-table-mb td:nth-child(3) p {
    justify-content: center;
}
.simple-table-mb.sp-large table {
    min-width: initial;
}
.simple-table-mb td a,
.simple-table .-play-mb,
.simple-table .-stop-mb {
    width: 144px;
}
/* ======== スマホ縦画面まで ======== */
@media screen and (max-width: 480px) {
.simple-table-mb td a,
    .simple-table .-play-mb,
    .simple-table .-stop-mb {
        width: 120px;
}
}

/* ======== 設定のタイトル、説明 ======== */
.simple-ttl {
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 2;
}
.desc-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    align-items: center;
}
.simple-desc {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0;
}

/* ======== パンくず ======== */
.breadcrumb {
    display: inline-flex;
    font-size: 2rem;
    margin-top: 3rem;
    margin-left: 3rem;
}
.breadcrumb a::after {
    content: "";
    width: 24px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/arrow-right.svg);
    background-size: 14px;
    padding: 0 20px 3px 20px;
}
.breadcrumb .setting-message + p {
    margin-right: 30px;
}
@media all and (-ms-high-contrast: none) {
.breadcrumb a::after {
        margin-left: 5px;
        padding-top: 2px;
        background-size: 65%;
        background-image: url(../img/arrow-right_IE.svg);
}
.simple-table.-col02 table {
        table-layout: fixed;
        word-break: break-all;
        word-wrap: break-word;
}
}
.breadcrumb-mb {
    display: inline-flex;
    font-size: 2rem;
    margin-top: 2rem;
    margin-left: 3rem;
}
.breadcrumb-mb a::before {
    content: "";
    width: 24px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/arrow-left.svg);
    background-size: 18px;
    padding: 0 20px 0 20px;
}
.setting-message {
    white-space: nowrap;
}

/* ======== IEのみ ======== */
@media all and (-ms-high-contrast: none) {
.desc-wrapper {
        flex-direction: inherit;
}
table {
        border: none;
        border-spacing: 0 !important;
        border-collapse: collapse;
}
.simple-table th,
    .simple-table td {
        position: static;
        border: solid 1px #ccc;
}
.simple-table th p,
    .simple-table td p {
        display: inline-block;
}
.simple-table td.term-name {
        text-align: left;
}
.change-btn {
        transition: none !important;
}
}

/* ======== タブレット横画面から対応 ======== */
@media (min-width: 1024px) {
#mainBlock {
        width: 100%;
}
.change-btn:hover {
        opacity: 0.7;
}
}

/* ======== Iphone5/SEの縦画面に対応 ======== */
@media screen and (max-width: 320px) {
.l-main {
        padding: 1.5rem;
        margin: 1.5rem;
}
.breadcrumb-mb {
        margin-left: 1.5rem;
}
}

/* ======== カメラ詳細設定と電圧監視設定のための変更・操作ボタン ======== */
.change-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 60px;
    border-radius: 4px;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(135deg, #288df7 0%, #30f1f0 100%);
    font-size: 1.8rem;
    cursor: pointer;
    border: 0;
    margin-bottom: 20px;
}
.change-btn:hover {
    transition: 0.3s ease;
}

.helpPageTop.l-main {
    margin: inherit;
    padding: 6rem 3rem 3rem 3rem;
    background-color: #e2e2e2;
    box-shadow: none;
}
.helpPage.l-main {
    margin: inherit;
    padding: 6rem 3rem 3rem 3rem;
}
.helpPage * {
    font-size: 13px;
}
.helpPage .article {
    margin-bottom: 100px;
}
.helpPage table {
    width: 100%;
    margin-bottom: 60px;
}
.helpPage table th {
    text-align: left;
    width: 30%;
}
@media all and (-ms-high-contrast: none) {
    /* IEのみ */
.helpPage table th {
        position: static;
}
}
.helpPage table,
td,
th {
    border: 1px solid #666;
    border-collapse: collapse;
    padding: 4px;
}
.helpPage th {
    background-color: #ebebeb;
}
.helpPage h1 {
    font-size: 16px;
    margin-bottom: 50px;
}
.helpPage h2 {
    font-size: 16px;
    margin-bottom: 40px;
    border-bottom: 2px solid #aaa;
}
.helpPage h3 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    border-bottom: 1px dashed #aaa;
}
.helpPage .smalltitle {
    font-weight: bold;
    margin-bottom: 0.5em;
}
.helpPage ul {
    margin-left: 24px;
}
.helpPage p {
    margin-bottom: 24px;
}
.helpPage p img {
    border: 2px solid #888;
    max-width: 100%;
}
.helpPage a {
    text-decoration: none;
    color: black;
}
.helpPage a:hover {
    color: #3aa4b1;
}
/* ====== タブレット横以上 ======*/
@media screen and (min-width: 1024px) {
.helpPage * {
        font-size: 14px;
}
.helpPage h1 {
        font-size: 24px;
}
.helpPage h2 {
        font-size: 18px;
}
.helpPage h3 {
        font-size: 18px;
}
.helpPage.l-main {
        margin: 3rem 3rem 3rem 3rem;
        padding: 3rem 3rem 3rem 3rem;
}
.helpPage table th {
        width: 25%;
}
}


/*# sourceMappingURL=app~4695c423.css.map?9abd771e*/