@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

/* reset */

*, *::before, *::after {box-sizing: border-box;}
* {margin: 0;padding: 0}
a {text-decoration: none}
a img {border-style: none}
ul {list-style: none}
img {vertical-align: middle}
p, h1, h2, h3, h4, h5, h6 {overflow-wrap: break-word;}

input, button, textarea, select {
    font: inherit;
}
iframe {
    margin: 0;
    padding: 0;
}
strong {
    margin: 0;
    padding: 0;
    font-weight: bold;
}
small {
    font-size: 77%;
}
img, picture, video, canvas, svg {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  line-height: 1.0;
  vertical-align: bottom;
}
.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

/* end of reset */

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.0;
    color: var(--body-textcolor);
    background-color: var(--body-bgcolor);
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
/*    overflow-y: scroll;*/
    -webkit-font-smoothing: antialiased;
}
body.scroll-lock {
    position: fixed;
    left: 0;
    width: 100%;
}
html {
    font-size: 16px;
    word-wrap: break-word;
/*    scrollbar-gutter: stable;*/
}
html:has(dialog:modal) {
    overflow: hidden;
}
@media screen and (max-width: 600px) {
    html {
        font-size: 14px;
    }
}

a,
a:visited,
a:hover {
    color: #0087f0;
}
a:hover {
    color: #0067d0;
}

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

img.full {
    width: 100%;
    height: auto;
}

a.images {
    transition: all 300ms ease;
}
a.images:hover {
    opacity: 0.6;
}

hr {
    margin: 1em 0;
    border: 0;
    border-top: 1px solid #cfcfcf;
}

.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.red {
    color: #ff0000;
}

a img {
    margin: 0;
    padding: 0;
    border-style: none;
}

ul {
    list-style-type: none;
    margin-bottom: 1em;
}
ul.with-marker li {
    margin: 0;
    padding: 3px 0 3px 0;
}
ul.with-marker li:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid #222;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    margin: 0 6px 0 3px;
    position: relative;
    top: -1px;
}
ol {
    list-style-position: outside;
    margin: 0;
    margin-left: 25px;
    padding: 0;
}
ol li {
    margin: 0 0 1.5em 0;
    padding: 0 0 0 5px;
}

table {
    width: 100%;
    font-size: 100%;
    margin: 0 0 1em 0;
    padding: 0;
    border-collapse: collapse;
    border-top: solid 1px #acacac;
}
table tr {
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #acacac;
}
table th,
table td {
    margin: 0;
    padding: 10px;
    font-size: 100%;
    vertical-align: middle;
    text-align: left;
}
table th:last-child,
table td:last-child {
}
table th {
    font-weight: normal;
    font-size: 88%;
}
table thead th {
    font-weight: 500;
    font-size: 88%;
    background-color: #f5f7fa;
}

table.bordered th,
table.bordered td {
    border-left: solid 1px #acacac;
    border-right: solid 1px #acacac;
}
table.bordered th {
    font-weight: 500;
    font-size: 88%;
    background-color: #f5f7fa;
}

table.flat {
    border-style: none;
}
table.flat tr {
    border-style: none;
}
table.flat tr td {
    vertical-align: top;
}

.table-responsive {
    margin: 1em 0;
}
@media (max-width: 800px) {
    .table-responsive {
        overflow: auto;
        white-space: nowrap;
        width: 100%;
        margin-bottom: 1em;
    }
    .table-responsive table {
        table-layout: fixed;
        width: auto;
        min-width: 100%;
        border-collapse: collapse;
    }
    .table-responsive table tr td,
    .table-responsive table tr th {
        width: auto !important;
    }
}
.table-responsive-break {
    margin: 1em 0;
}
@media screen and (max-width:479px) {
    table.table-responsive-break {
        border-style: none;
        border-bottom-style: none;
        border-top: solid 2px #cfdfcf;
    }
    table.table-responsive-break tr {
        display: block;
        border-bottom: solid 2px #cfdfcf;
        padding-bottom: 0.5em;
        margin-bottom: 0.5em;
    }
    table.table-responsive-break tr:first-child th,
    table.table.table-responsive-break tr:first-child td {
        border-style: none;
    }
    table.table-responsive-break th,
    table.table-responsive-break td {
        display: list-item;
        border-style: none;
        list-style: none;
        margin: 5px 0;
        padding: 0;
        width: 100% !important;
        text-align: left;
    }
}

/* PC only or Mobile only */

.mobile-only,
.mobile-only-inline-block,
.mobile-only-inline {
    display: none !important;
}
.pc-only,
.pc-only-inline-block,
.pc-only-inline {
    display: none !important;
}

@media screen and (max-width: 680px) {
    /* MOBILE ONLY */
    .mobile-only {
        display: block !important;
    }
    .mobile-only-inline-block {
        display: inline-block !important;
    }
    .mobile-only-inline {
        display: inline !important;
    }
}
@media screen and (min-width: 681px) {
    /* PC ONLY */
    .pc-only {
        display: block !important;
    }
    .pc-only-inline-block {
        display: inline-block !important;
    }
    .pc-only-inline {
        display: inline !important;
    }
}

/* POST */

h1 {
    font-size: 20px;
    font-weight: bold;
}
h2 {
    font-size: 20px;
    font-weight: bold;
}
h3 {
    font-size: 18px;
    font-weight: bold;
}
h4 {
    font-size: 100%;
    font-weight: bold;
}
h5 {
    font-size: 100%;
    font-weight: bold;
}

.link-category a,
.link-category a:visited,
.link-category a:hover {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #454545;
    text-align: center;
    margin-right: 15px;
}
.link-category a:hover {
    opacity: 0.7;
}
.entry-index .link-category a,
.entry-index .link-category a:visited,
.entry-index .link-category a:hover {
    margin-left: 0;
    margin-right: 5px;
}

/* IFRAME */

.iframe-wrapper {
    position: relative;
    margin-bottom: 10px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
@media (max-width: 639px) {
    .iframe-wrapper {
        padding-bottom: 120%;
    }
}
@media (min-width: 640px) {
    .iframe-wrapper {
        padding-bottom: 56.25%;
    }
    .iframe-sq {
        padding-bottom: 110%;
    }
}
.video-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.video-16-9 iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* BADGE */

.badge,
.badge:visited,
.badge:hover {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.0;
    padding: 5px 6px;
    background-color: #555;
    color: #fff;
    border-radius: 5px;
}
a.badge:hover {
    opacity: 0.8;
}
.badge-success,
.badge-success:visited,
.badge-success:hover {
    background-color: #06b152;
}
.badge-info,
.badge-info:visited,
.badge-info:hover {
    background-color: #3977b6;
}
.badge.badge-red,
.badge.badge-off {
    background-color: #dc3545;
    color: #fff;
}
.badge.badge-on {
    background-color: #fff;
    color: var(--primary-color);
}

/* BUTTON */

.icon-btn,
.icon-btn:visited,
.icon-btn:hover {
    display: inline-block;
    line-height: 1.0;
    padding: 6px 7px;
    background-color: #3977b6;
    border-radius: 3px;
    color: #fff;
}
.icon-btn:hover {
    opacity: 0.8;
}

.btn,
.btn:visited,
.btn:hover {
    display: inline-block;
    font-weight: 500;
    line-height: 1.2;
    margin: 3px;
    padding: 6px 10px;
    background-color: #565656;
    border-radius: 3px;
    color: #fff;
    white-space: nowrap;
    border-style: none;
    cursor: pointer;
}
.btn:hover {
    opacity: 0.8;
}

.btn-sm,
.btn-sm:visited,
.btn-sm:hover {
    font-size: 78%;
}

.btn.btn-primary,
.btn.btn-primary:visited,
.btn.btn-primary:hover,
.icon-btn.btn-primary,
.icon-btn.btn-primary:visited,
.icon-btn.btn-primary:hover {
    color: #fff;
    background-color: #005de3;
}
.btn.btn-info,
.btn.btn-info:visited,
.btn.btn-info:hover,
.icon-btn.btn-info,
.icon-btn.btn-info:visited,
.icon-btn.btn-info:hover {
    color: #fff;
    background-color: #3977b6;
}
.btn.btn-success,
.btn.btn-success:visited,
.btn.btn-success:hover,
.icon-btn.btn-success,
.icon-btn.btn-success:visited,
.icon-btn.btn-success:hover {
    color: #fff;
    background-color: #1BA466;
}
.btn.btn-outline-info,
.btn.btn-outline-info:visited,
.btn.btn-outline-info:hover,
.icon-btn.btn-outline-info,
.icon-btn.btn-outline-info:visited,
.icon-btn.btn-outline-info:hover {
    background-color: #fff;
    color: #0c5460;
    border: solid 1px #0c5460;
}
.btn.btn-danger,
.btn.btn-danger:visited,
.btn.btn-danger:hover,
.icon-btn.btn-danger,
.icon-btn.btn-danger:visited,
.icon-btn.btn-danger:hover {
    background-color: #dc3545;
    border: solid 1px #dc3545;
    color: #fff;
}
.btn.btn-outline-danger,
.btn.btn-outline-danger:visited,
.btn.btn-outline-danger:hover,
.icon-btn.btn-outline-danger,
.icon-btn.btn-outline-danger:visited,
.icon-btn.btn-outline-danger:hover {
    background-color: #fff;
    border: solid 1px red;
    color: red;
}

.btn[disabled],
.btn[disabled]:visited,
.btn[disabled]:hover {
    background-color: #999;
    color: #fff;
    border-style: none;
    opacity: 1.0;
}

.btn-toolbar .btn {
    margin-left: 2px;
    margin-right: 2px;
}

/* FORM */

.form {
    background-color: #fff;
    padding: 25px 20px 15px 20px;
}
.form h3 {
    background-color: #efefef;
    padding: 8px 15px;
    font-size: 100%;
    font-weight: 500;
    margin: 2.5em -20px 1.5em -20px;
}
/*
.form h3 {
    display: flex;
    align-items: center;
    font-size: 100%;
    margin: 2.5em 0 1em 0;
}
.form h3:first-child {
    margin-top: 0;
}
.form h3:before,
.form h3:after {
    content: "";
    height: 1px;
    background-color: #000;
}
.form h3:before {
    margin-right: 0.8rem;
    flex-grow: 1;
}
.form h3:after {
    margin-left: 0.8rem;
    flex-grow: 50;
}
*/
@media (max-width: 480px) {
    .form {
        padding: 15px 10px;
    }
}
.form-header {
    margin-bottom: 25px;
}
.field-note {
    font-size: 88%;
    border-left: solid 7px #e5e7ea;
    padding-left: 10px;
    margin: 1em 0;
}
h2.form-title {
    position: relative;
    font-size: 110%;
    font-weight: normal;
    padding: 15px 15px;
    background-color: var(--primary-color);
    border-radius: 5px 5px 0 0;
    color: #fff;
    margin-bottom: 0;
}
h2.form-title i {
    margin-right: 5px;
}
h2.form-title .preview-button {
    position: absolute;
    top: 17px;
    right: 15px;
    font-size: 11px;
    letter-spacing: 0;
    font-weight: 500;
    border-radius: 3px;
    padding: 7px;
    line-height: 1.0;
    background-color: #fff;
    color: var(--primary-color);
    cursor: pointer;
}
.form .form-group {
    max-width: 600px;
    margin-bottom: 1.8em;
}
.form .form-required {
    font-size: 11px;
    font-weight: bold;
    margin-left: 6px;
    background-color: #db4437;
    color: #fff;
    padding: 2px 5px;
    line-height: 1.0;
}
.form .form-group > label {
    display: block;
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 93%;
}
button:focus {
    outline: none;
}
input::placeholder {
    color: #ccc;
}
.form-dummy {
    display: block;
    font-size: 100%;
    width: 100%;
    max-width: 600px;
    border: 1px #c5c7ca solid;
    background-color: #fff;
    padding: 10px;
}
input[type=text],
input[type=number],
input[type=date],
input[type=password],
input[type=email] {
    font-size: 100%;
    width: 100%;
    max-width: 600px;
/*    border: 1px #d5d7da solid;*/
/*    background-color: #f5f7fa;*/
    border: 1px #c5c7ca solid;
    background-color: #fff;
    padding: 10px;
}
input[type=number] {
    max-width: 150px;
}
input[type=checkbox],
input[type=radio] {
    width: auto;
    vertical-align: middle;
}
input[type=date] {
    width: auto;
}
input[type=image]:hover {
    opacity: 0.8;
}
textarea {
    font-size: 100%;
    width: 100%;
    max-width: 600px;
    height: 100px;
    padding: 10px;
/*    border: 1px #d5d7da solid;*/
/*    background-color: #f5f7fa;*/
    border: 1px #c5c7ca solid;
    background-color: #fff;
    padding: 10px;
}
select {
    font-size: 100%;
    width: 100%;
    max-width: 600px;
    padding: 10px;
/*    border: 1px #d5d7da solid;*/
/*    background-color: #f5f7fa;*/
    border: 1px #c5c7ca solid;
    background-color: #fff;
}
.form-inline select,
select.inline {
    width: auto;
    display: inline-block;
    margin-right: 5px;
}
input:focus,
textarea:focus {
}
.form-readonly {
    max-width: 600px;
    background-color: #fff;
    border: 1px #d5d7da solid;
    padding: 10px;
}
.form-checkboxes {
    max-width: 600px;
/*    border: 1px #d5d7da solid;*/
/*    background-color: #f5f7fa;*/
    border: 1px #c5c7ca solid;
    background-color: #fff;
    padding: 10px;
}
.form-checkboxes-multiline {
    max-width: 600px;
/*    border: 1px #d5d7da solid;*/
/*    background-color: #f5f7fa;*/
    border: 1px #c5c7ca solid;
    background-color: #fff;
    padding: 10px;
}
.form-checkboxes-multiline .form-checkbox {
    margin-bottom: 10px;
}
.form-checkboxes-multiline .form-checkbox:last-child {
    margin-bottom: 0px;
}
.form-fileinput {
    max-width: 600px;
    background-color: #f5f7fa;
    border: 1px #d5d7da solid;
    padding: 10px;
}
.form-check-inline {
    display: inline-block;
}
.form-check-inline label {
    margin-left: 5px;
    margin-right: 15px;
}
.form-submit {
    margin: 2em 0 0 0;
    text-align: left;
}
input[type="submit"],
input[type="button"] {
    /* Reset iOS appearance */
    -webkit-appearance: button;
    border-radius: 0;
    border: none;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type=submit],
input[type=submit]:hover,
input[type=submit]:active,
.form-submit button,
.form-submit button:hover,
.form-submit button:active,
.form-submit .btn[type=submit],
.form-submit .btn[type=submit]:hover,
.form-submit .btn[type=submit]:active {
    display: inline-block;
    max-width: 300px;
    text-align: center;
    font-size: 100%;
    font-weight: 500;
    padding: 8px 12px;
    margin: 0;
    color: #fff;
    background-color: #005de3;
    border-style: none;
    border-radius: 3px;
    text-align: center;
    transition: all .3s;
    border-style: none;
    cursor: pointer;
}
.form-submit .btn[type=submit],
.form-submit .btn[type=submit]:hover,
.form-submit button:hover,
.form-submit .btn[type=submit]:active {
    display: block;
    margin: 0;
}
input[type=submit]:hover {
    opacity: 0.8;
}

.form input[type="text"][readonly],
.form input[type="text"][readonly]:hover,
.form input[type="text"][readonly]:focus,
.form input[type="number"][readonly],
.form input[type="number"][readonly]:hover,
.form input[type="number"][readonly]:focus,
.form input[type="email"][readonly],
.form input[type="email"][readonly]:hover,
.form input[type="email"][readonly]:focus,
.form input[type="password"][readonly],
.form input[type="password"][readonly]:hover,
.form input[type="password"][readonly]:focus {
    color: #000;
    background-color: #f3f3f3;
    opacity: 1.0;
    cursor: not-allowed;
}
.form input[type="text"][disabled],
.form input[type="text"][disabled]:hover,
.form input[type="text"][disabled]:focus,
.form input[type="number"][disabled],
.form input[type="number"][disabled]:hover,
.form input[type="number"][disabled]:focus,
.form input[type="email"][disabled],
.form input[type="email"][disabled]:hover,
.form input[type="email"][disabled]:focus,
.form input[type="password"][disabled],
.form input[type="password"][disabled]:hover,
.form input[type="password"][disabled]:focus {
    color: #666;
    background-color: #dadcdf;
    opacity: 1.0;
    cursor: not-allowed;
}
.form .btn[disabled],
.form .btn[disabled]:hover,
.form .btn[disabled]:focus,
.form input[type="submit"][disabled],
.form input[type="submit"][disabled]:hover,
.form input[type="submit"][disabled]:focus {
    background-color: #999 !important;
    opacity: 1.0 !important;
    cursor: not-allowed;
}
.form button[type="submit"][disabled],
.form button[type="submit"][disabled]:hover,
.form button[type="submit"][disabled]:focus {
    background-color: #999 !important;
    opacity: 1.0 !important;
    cursor: not-allowed;
}

.form-error-message {
    font-size: 85%;
    padding: 10px 15px;
    border-radius: 3px;
    margin: .1em 0 1em 0;
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.form-inline input {
    display: inline-block !important;
    width: auto !important;
    max-width: initial !important;
}

/* FORM ALERT */

.has-error input,
.has-error select,
.has-error .form-checkboxes,
.has-error textarea,
input.has-error,
select.has-error,
.form-checkboxes.has-error,
textarea.has-error {
    background-color: #faefef;
}

.alert {
    font-size: 100%;
    padding: 10px 15px;
    background-color: #f3f3f3;
    border: solid 1px #efefef;
    border-radius: 3px;
    margin: 1em 0;
}
.alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: solid 1px #f5c6cb;
}
.alert.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: solid 1px #c3e6cb;
}
.alert.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.help-inline {
    font-size: 93%;
    color: #676767;
}
.required-mark {
    display: inline-block;
    font-size: 10px;
    color: #ef5050;
    border: solid 1px #ef5050;
    padding: 1px 2px;
    margin: 1px 6px 1px 1px;
    border-radius: 3px;
}
.normal-mark {
    display: inline-block;
    font-size: 10px;
    color: #888;
    border: solid 1px #888;
    padding: 1px 2px;
    margin: 1px 6px 1px 1px;
    border-radius: 3px;
}

.input-format {
    font-size: 11px;
    margin-top: 3px;
    color: #606060;
}


/* COLUMNS */

@media print, screen and (min-width : 880px) {
    .columns {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .columns-reverse {
        flex-direction: row-reverse;
    }
    .columns-valign-center {
        align-items: center;
    }
    .column {
        padding-right: 1.5%;
        padding-left: 1.5%;
    }

    /* Column */

    .column-1-2 {
        width: 50%;
        padding-left: 2%;
        padding-right: 2%;
    }
    .column-1-2.first,
    .columns-reverse .column-1-2.last {
        padding-left: 0;
        padding-right: 3%;
    }
    .column-1-2.last,
    .columns-reverse .column-1-2.first {
        padding-left: 3%;
        padding-right: 0%;
    }

    .column-1-3 {
        width: 33.33%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-1-3.first,
    .columns-reverse .column-1-3.last {
        padding-left: 0%;
        padding-right: 3%;
    }
    .column-1-3.last,
    .columns-reverse .column-1-3.first {
        padding-left: 3%;
        padding-right: 0%;
    }
    .column-2-3 {
        width: 66.66%;
    }
    .column-2-3.first,
    .columns-reverse .column-2-3.last {
        padding-left: 0%;
        padding-right: 0.75%;
    }
    .column-2-3.last,
    .columns-reverse .column-2-3.first {
        padding-left: 0.75%;
        padding-right: 0%;
    }
    .column-2-5 {
        width: 40%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-2-5.first,
    .columns-reverse .column-2-5.last {
        padding-left: 0%;
        padding-right: 3%;
    }
    .column-2-5.last,
    .columns-reverse .column-2-5.first {
        padding-left: 3%;
        padding-right: 0%;
    }
    .column-3-5 {
        width: 60%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-3-5.first,
    .columns-reverse .column-3-5.last {
        padding-left: 0;
        padding-right: 3%;
    }
    .column-3-5.last,
    .columns-reverse .column-3-5.first {
        padding-left: 3%;
        padding-right: 0;
    }

    .column-1-4 {
        width: 25%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-1-4.first {
        padding-left: 0%;
        padding-right: 3%;
    }
    .column-1-4.last,
    .columns-reverse .column-1-4.first {
        padding-left: 3%;
        padding-right: 0%;
    }
    .column-3-4 {
        width: 75%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column.column-3-4.last,
    .columns-reverse .column-3-4.first {
        padding-left: 0%;
        padding-right: 3%;
    }

    .column-1-5 {
        width: 20%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
}

/* EFFECTS */

.fx-fadein {
    animation-fill-mode: both;
    animation-duration: 1.5s;
    animation-name: fadeIn;
    animation-timing-function: ease-in;
    visibility: visible !important;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fx-fadein-left {
    animation-fill-mode: both;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-name: fadeInLeft;
    visibility: visible !important;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fx-fadein-right {
    animation-fill-mode: both;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-name: fadeInRight;
    visibility: visible !important;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.fx-fadein-up {
    animation-fill-mode: both;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-name: fadeInUp;
    visibility: visible !important;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fx-slidein-left {
    animation-name: slideInLeft;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInLeft {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0);
    }
}
.fx-slidein-right {
    animation-name: slideInRight;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInRight {
    0% {
        clip-path: inset(0 0 0 100%);
    }
    100% {
        clip-path: inset(0);
    }
}
.fx-slidein-up {
    animation-name: slideInUp;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInUp {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0);
    }
}
.fx-slidein-down {
    animation-name: slideInDown;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInDown {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0);
    }
}

.fx-scale-up {
    animation-name: scaleUp;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
    transform-origin: 50% 50%;
    visibility: visible !important;
}
@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0, 0);
    }
    100% {
        opacity: 1.0;
        transform: scale(1.0, 1.0);
    }
}

.fx-len-100ms { animation-duration: 0.1s; }
.fx-len-200ms { animation-duration: 0.2s; }
.fx-len-300ms { animation-duration: 0.3s; }
.fx-len-400ms { animation-duration: 0.4s; }
.fx-len-500ms { animation-duration: 0.5s; }
.fx-len-600ms { animation-duration: 0.6s; }
.fx-len-700ms { animation-duration: 0.7s; }
.fx-len-800ms { animation-duration: 0.8s; }
.fx-len-900ms { animation-duration: 0.9s; }
.fx-len-1000ms { animation-duration: 1.0s; }
.fx-len-1500ms { animation-duration: 1.5s; }
.fx-len-2000ms { animation-duration: 2.0s; }
.fx-len-2500ms { animation-duration: 2.5s; }
.fx-len-3000ms { animation-duration: 3.0s; }
.fx-len-3500ms { animation-duration: 3.5s; }
.fx-len-4000ms { animation-duration: 4.0s; }
.fx-len-4500ms { animation-duration: 4.5s; }
.fx-len-5000ms { animation-duration: 5.0s; }

.fx-delay-100ms { animation-delay: 0.1s; transition-delay: 0.1s; }
.fx-delay-200ms { animation-delay: 0.2s; transition-delay: 0.2s; }
.fx-delay-300ms { animation-delay: 0.3s; transition-delay: 0.3s; }
.fx-delay-400ms { animation-delay: 0.4s; transition-delay: 0.4s; }
.fx-delay-500ms { animation-delay: 0.5s; transition-delay: 0.5s; }
.fx-delay-600ms { animation-delay: 0.6s; transition-delay: 0.6s; }
.fx-delay-700ms { animation-delay: 0.7s; transition-delay: 0.7s; }
.fx-delay-800ms { animation-delay: 0.8s; transition-delay: 0.8s; }
.fx-delay-900ms { animation-delay: 0.9s; transition-delay: 0.9s; }
.fx-delay-1000ms { animation-delay: 1.0s; transition-delay: 1.0s; }
.fx-delay-1500ms { animation-delay: 1.5s; transition-delay: 1.5s; }
.fx-delay-2000ms { animation-delay: 2.0s; transition-delay: 2.0s; }
.fx-delay-2500ms { animation-delay: 2.5s; transition-delay: 2.5s; }
.fx-delay-3000ms { animation-delay: 3.0s; transition-delay: 3.0s; }

/* Container */

.full-box {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    text-align: center;
}

/* ============= GLOBAL MENU =========== */

/* Toggle Button */

#global-menu-check {
    display: none;
}

#global-menu-toggle {
    box-sizing: border-box;
    display: none;
    width: 32px;
    height: 32px;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
    cursor: pointer;
}
#global-menu-toggle > span {
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
}
#global-menu-toggle > span > span {
    display: block;
    height: 3px;
    background-color: var(--menu-toggle-color);
    position: absolute;
    width: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;   
}
#global-menu-toggle.invert-button > span > span {
    background: #fff;
}
#global-menu-toggle > span > span:nth-child(1) {
    top: 0px;
}
#global-menu-toggle > span > span:nth-child(2) {
    top: 10px;
}
#global-menu-toggle > span > span:nth-child(3) {
    top: 20px;
}

#global-menu-check:checked + .menu-label + nav {
    transition: all 1.5s;
}
#global-menu-check:checked + .menu-label::before {
    transform: rotate(90deg) !important;
}
#global-menu-check:checked + #global-menu-toggle > span > span {
    background: #999;
}
#global-menu-check:checked + #global-menu-toggle > span > span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}
#global-menu-check:checked + #global-menu-toggle > span > span:nth-child(2) {
    width: 0;
    opacity: 0;
}
#global-menu-check:checked + #global-menu-toggle > span > span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#global-menu-check:checked + #global-menu-toggle + nav {
    display: block;
    width: 280px;
    opacity: 1;
    height: 100vh;
}

/* Menu Content */

#menu-overlay {
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.67);
    z-index: 98;
}
#global-menu-check:checked + #global-menu-toggle + nav + #menu-overlay {
    display: block;
}

.global-menu nav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 280px;
    opacity: 1.0;
    background-color: var(--menu-bgcolor);
    transform-origin: top right;
    transition: all 300ms ease;
    z-index: 99;
    overflow-x: hidden;
    overflow-y: auto;
/*    background-image: url('../images/menu-bg.png');*/
/*    background-position: 50% 100%;*/
/*    background-repeat: no-repeat;*/
/*    background-size: 80% auto;*/
}

@media screen and (max-width: 800px) {
    #global-menu-toggle {
        display: block;
    }
    .global-menu nav {
        width: 0px;
        opacity: 0;
    }
}

/* Menu Content */

.global-menu nav {
    padding-top: 30px;
    overflow: auto;
}
.global-menu nav .menu {
    border-bottom: solid 1px rgba(255, 255, 255, 0.25);
    padding: 0;
    margin: 0;
}
.global-menu nav .menu li i {
    margin-right: 5px;
}
.global-menu nav .menu li > label,
.global-menu nav .menu li > a,
.global-menu nav .menu li > a:visited,
.global-menu nav .menu li > a:hover {
    position: relative;
    display: block;
    padding: 18px 20px;
    line-height: 1.0;
    color: #ddd;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    background-color: transparent;
    border-top: solid 1px rgba(255, 255, 255, 0.25);
}
.global-menu nav .menu li > a:hover {
    background-color: rgba(200, 200, 200, 0.2);
}
.global-menu nav .menu li .side-active + a::before,
.global-menu nav .menu li a.router-link-active::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 10px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.10);
    z-index: 1;
}
.global-menu nav .menu li .side-active + a,
.global-menu nav .menu li a.router-link-active {
    background-color: rgba(255, 255, 255, 0.10);
}
.global-menu nav .menu li li .side-active + a,
.global-menu nav .menu li li a.router-link-active {
    background-color: rgba(255, 255, 255, 0.10);
}
.global-menu nav .menu li > .menu-accordion-label.active,
.global-menu nav .menu li > a.active {
/*    background-color: rgba(255, 255, 255, 0.10);*/
/*    background-color: #005de3;*/
    background-color: #018cb4;
    color: #eee;
}

.menu-item {
    position: relative;
}
.menu-accordion-toggle {
    display: none;
}
.menu-item .menu-accordion-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.menu-accordion-label {
    position: relative;
    display: block;
    font-weight: bold;
    cursor: pointer;
    padding-left: 100px;
    z-index: 3;
    padding-right: 40px;
}
.menu-accordion-label::before,
.menu-accordion-label::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 20px;
    width: 2px;
    height: 0.75em;
    background-color: #acacac;
    transition: all 0.3s;
    z-index: 5;
}
.menu-accordion-label::after {
    transform: rotate(90deg);
}
.menu-item .menu-accordion-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
}
.menu-item .menu-accordion-content .menu li a,
.menu-item .menu-accordion-content .menu li a:visited,
.menu-item .menu-accordion-content .menu li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    padding-left: 44px;
    border-top-style: none;
    border-bottom-style: none;
}
.menu-item .menu-accordion-content .menu li a:hover {
    background-color: rgba(255, 255, 255, 0.10);
}
.menu-accordion-toggle:checked + .menu-accordion-label + .menu-accordion-content {
    transition: all 1.5s;
    max-height: 500px;
}
.menu-accordion-toggle:checked + .menu-accordion-label {
/*    background-color: rgba(200, 200, 200, 0.05);*/
}
.menu-accordion-toggle:checked + .menu-accordion-label::before {
    transform: rotate(90deg) !important;
}

/* MODAL DIALOG */

dialog {
    padding: 0;
    border: 0;
    border-radius: 5px;
/*    box-shadow: 0 0 1em #acacac;*/
    margin: auto;
    width: 90%;
    max-width: 420px;
}
dialog::backdrop {
/*    background-color: rgba(255, 255, 255, 0.7);*/
    background-color: rgba(0, 0, 0, 0.5);
}
dialog[open] {
    animation: dialog-slide-up 0.4s ease-out;
}
@keyframes dialog-slide-up {
    0% {
        opacity: 0;
        transform: translate(0, 15px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}
dialog .modal-close {
    position: absolute;
    top: 0.2em;
    right: 5px;
    padding: 0.3em 5px;
    line-height: 0.6;
    background-color: transparent;
    border: 0;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
}
dialog .modal-header,
dialog .modal-body {
    padding: 15px;
}
dialog .modal-header {
    margin: 0;
    padding: 9px 70px 9px 10px;
    font-size: 100%;
    color: #fff;
    text-align: left;
    background-color: var(--primary-color);
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid var(--primary-color);
}
dialog .modal-body {
    padding-top: 26px;
    padding-bottom: 26px;
}
dialog .modal-footer {
    padding: 10px 15px;
    background-color: var(--body-bgcolor);
}
dialog .modal-footer menu {
    text-align: center;
}


/* ADDITION */

.mobile-logo {
    display: none;
}
.global-menu h1 {
    margin: 0;
    padding: 30px 12px;
}
.global-menu h1 img {
    max-width: 100%;
    height: auto;
}
.global-menu .sub-title {
    border: solid 1px #fff;
    padding: 6px;
    margin: 10px 20px 20px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 800px) {
    .mobile-logo {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 280px;
        padding: 13px;
        text-align: center;
        z-index: 99;
    }
    .mobile-logo img {
        height: 34px;
        width: auto;
    }
    .global-menu h1 {
        display: none;
    }
    .global-menu nav {
        padding-top: 58px;
    }
}
@media screen and (min-width: 801px) {
    .global-menu h1 {
        padding: 3px 12px 25px 12px;
    }
    #main-container {
        margin: 0;
        padding: 0;
        margin-left: 280px;
    }
    #main-container.login {
        margin-left: 0;
    }
}

/* ============== MAIN =============== */

.main-section {
    margin: 20px;
}

/* Breadcrumbs */

.breadcrumbs {
    background-color: rgba(0,0,0,.03);
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #e5e5e5 #ccc;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumbs li {
    float: left;
    font-size: 11px;
    line-height: 1.0;
}
.breadcrumbs a {
    padding: .9em 1em .9em 2em;
    float: left;
    text-decoration: none;
    color: #444;
    position: relative;
    background-color: #dfdfdf;
}
.breadcrumbs li:first-child a {
    padding-left: 1em;
    border-radius: 5px 0 0 5px;
}
.breadcrumbs a:hover {
    background: #fff;
}
.breadcrumbs a::after,
.breadcrumbs a::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1em solid;
    right: -1em;
}
.breadcrumbs a::after {
    z-index: 2;
    border-left-color: #dfdfdf;
}
.breadcrumbs a::before {
    border-left-color: #aaa;
    right: -1.1em;
    z-index: 1;
}
.breadcrumbs a:hover::after {
    border-left-color: #fff;
}
.breadcrumbs .current {
    padding: .9em 1em .9em 2em;
    float: left;
    text-decoration: none;
    color: #444;
    font-weight: bold;
    position: relative;
}
.breadcrumbs .current:hover {
    font-weight: bold;
    background: none;
}
.breadcrumbs .current::after,
.breadcrumbs .current::before {
    content: normal;
}

/* Dropdown */

.dropdown-item {
    position: relative;
    top: 0px;
    left: 0px;
    overflow: visible;
}
.dropdown-toggle {
    display: none;
}
.dropdown-item label {
}
.dropdown-item .content {
    position: absolute;
    top: 30px;
    right: 0px;
    width: 100%;
    min-width: 150px;
    height: 0px;
    text-align: center;
    opacity: 0;
    transition: all 500ms ease;
    overflow: hidden;
}
.dropdown-item .dropdown-list {
    background-color: var(--primary-color);
    margin: 0;
    padding: 5px 0;
    border-radius: 5px;
}
.dropdown-item .dropdown-list li {
    margin: 0;
    padding: 0;
}
.dropdown-item .content:before {
    content: "\F5E3";
    font-family: "bootstrap-icons";
    position: relative;
    top: 0px;
    color: var(--primary-color);
    line-height: 1.0;
    display: block;
    text-align: center;
    margin-bottom: -8px;
}
.dropdown-item .content a,
.dropdown-item .content a:visited,
.dropdown-item .content a:hover {
    display: block;
    font-size: 14px;
    padding: 8px 15px;
    color: #fff;
    text-align: left;
}
.dropdown-item .content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.dropdown-item .content a i {
    margin-right: 3px;
}
.dropdown-item .dropdown-toggle:checked + label + .content {
    opacity: 1.0;
    height: auto;
}

/* Header */

.header-meta {
    position: relative;
    background-color: #fff;
    padding: 10px;
    text-align: right;
    z-index: 90;
}
.login-account {
    padding: 5px;
    display: inline-block;
    border-radius: 40px;
    background-color: #efefef;
    line-height: 1.0;
}
.login-account > label {
    cursor: pointer;
}
.login-account > label > i {
    font-size: 23px;
}
.login-account .login-email {
    display: inline-block;
    position: relative;
    top: -2px;
    margin-left: 5px;
    padding-right: 5px;
    font-size: 13px;
    font-weight: 500;
}
.login-account .login-email::after {
    position: relative;
    top: 1px;
    content: "\F231";
    font-family: "bootstrap-icons";
    display: inline-block;
    font-size: 11px;
    padding: 2px 2px 4px 5px;
}
.login-account.dropdown-item .dropdown-toggle:checked + label .login-email::after {
    content: "\F229";
}
@media screen and (max-width: 800px) {
    .login-account .login-email {
        display: none;
    }
    .login-account.dropdown-item .content:before {
        text-align: right;
    }
}

/* page: PAGE */

.page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}
.message-container {
    max-width: 640px;
    margin: 40px auto;
    padding: 0 15px;
}

.section {
    margin: 60px auto;
}
.mini-section {
    margin: 30px auto;
}
.section-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.section-720 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-640 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.section-580 {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* page: ERROR */

.error-container {
    max-width: 640px;
    margin: 40px auto;
    padding: 0 15px;
}
.error-container .form {
    padding: 30px;
}
.error-container h2 {
    font-weight: 500;
    background-color: #000;
    color: #fff;
    padding: 10px;
    margin-bottom: 0;
}

.error-container .section {
    margin: 25px 0;
}
.error-container .section p {
    text-align: center;
}
.error-container .more-link,
.error-container .more-link:visited,
.error-container .more-link:hover {
    font-size: 14px;
    font-family: sans-serif;
    font-weight: bold;
    line-height: 1.0;
    padding: 10px 16px;
    margin: 1em auto 1em auto;
    color: #fff;
    background-color: #565656;
    border-radius: 30px;
    text-align: center;
    transition: all .3s;
}
.error-container .more-link:hover {
    opacity: 0.6;
}

/* Bootstrap Icons */

i.bi {
    margin-right: 8px;
}

.input-additional-link a,
.input-additional-link a:visited,
.input-additional-link a:hover {
    font-weight: 500;
    font-size: 83%;
    margin-top: 4px;
}

/* Loading Spin */

.loading-spin {
    display: block;
    border: 5px solid #dddddd;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 50px auto;
    animation: loadingSpin 2s linear infinite;
}
@keyframes loadingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Box */

.bordered-box {
    border: solid 1px #acacac;
    padding: 15px;
}

.page-actions {
    text-align: right;
    margin-bottom: 1em;
}
.page-actions .btn {
    text-align: center;
    margin-left: 5px;
    margin-right: 0;
}

/* page: STATUS */

.status-completed {
    background-color: #d3f6db;
}
.status-warning,
.status-unread {
    background-color: #fff3cd;
}
.status-canceled,
.status-locked,
.status-hidden,
.status-disabled {
    background-color: #efefef;
}

/* PRINT */

@media print {
    .global-menu,
    .header-meta,
    .breadcrumbs,
    #global-menu-toggle {
        display: none;
    }
}

