* {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Lucida Grande", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
        "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    word-break: break-all;
    word-wrap: break-word;
    position: relative;
    color: #333;
}
@keyframes loading {
    to {
    }
    from {
        transform: rotate(360deg);
        transform-origin: 50% 50%;
    }
}
.loading {
    position: relative;
    opacity: 0.4;
    zoom: 1;
}
.loading:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    border: 5px solid rgba(44, 103, 142, 0.8);
    border-right: 5px solid transparent;
    border-radius: 50%;
    animation: loading 1s linear infinite;
    z-index: 1000;
}
.locked {
    position: relative;
}
.locked:before {
    content: "";
    display: block;
    background: transparent;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    left: 0;
    top: 0;
}
.freeze {
    overflow: hidden;
    width: 100%;
}
.ui-button {
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: solid 1px;
    min-width: 6em;
    padding: 0.1em 0.6em;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity 0.2s ease-in;
}
.ui-button.active {
    zoom: 1;
    opacity: 0.6;
    cursor: default;
}
.ui-button[disabled],
.ui-button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.ui-button .icon-head {
    margin-right: 6px;
}
.ui-button .icon-tail {
    margin-left: 6px;
}
.ui-button-cancel {
    background: #fcfcfc;
    border-color: #ccc;
    color: #666;
}
.ui-button-danger {
    background: #993737;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2);
}
.ui-button-default {
    background: #fcfcfc;
    border-color: #ccc;
    color: #666;
}
.ui-button-forward {
    background: #2b6991;
    color: #fff;
    cursor: pointer;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2);
    border-color: #c4c4c4;
    box-shadow: inset -1px -1px 3px rgba(0, 41, 54, 0.4);
}
.ui-button-reset {
    background: #fff;
    color: inherit;
    cursor: pointer;
}
.ui-carousel {
    overflow: hidden;
    display: flex;
}
.ui-carousel .slide-prev,
.ui-carousel .slide-next {
    position: absolute;
    top: 0;
    font-size: 2em;
    padding: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
.ui-carousel .slide-prev {
    left: 0;
}
.ui-carousel .slide-next {
    right: 0;
}
.ui-carousel .icon-chevron_circle_left,
.ui-carousel .icon-chevron_circle_right {
    -webkit-filter: drop-shadow(1px 1px 3px #333);
    filter: drop-shadow(1px 1px 3px #333);
    stroke: #333;
    stroke-width: 10px;
    stroke-opacity: 0.6;
}
.ui-carousel .icon-chevron_circle_left path,
.ui-carousel .icon-chevron_circle_right path {
    fill: #fff;
    fill-opacity: 0.9;
}
.ui-carousel .slide-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 1 1 auto;
}
em,
i {
    font-family: "Lucida Grande", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
        Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
del {
    text-decoration: line-through;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
p {
    margin: 0 0 0.8em;
}
p:last-child {
    margin: 0;
}
sub {
    font-size: 0.78em;
    line-height: 1em;
    vertical-align: sub;
}
sup {
    font-size: 0.78em;
    line-height: 1em;
    vertical-align: super;
}
.ui-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.ui-deflist {
    display: block;
    padding: 6px;
}
.ui-deflist dt {
    font-weight: bold;
    border-bottom: dotted 1px #999;
}
.ui-deflist dd {
    margin: 0 0 6px 0;
}
.ui-field .field-title {
    font-weight: bold;
}
.ui-field .fields {
    display: flex;
}
.ui-field .description {
    font-size: 0.85em;
    padding: 0.5em 0.2em;
}
.ui-field .field-required {
    font-size: 0.8em;
    font-weight: normal;
    color: #d51d39;
    line-height: 1;
}
.ui-field .fields .ui-input-text:only-child {
    flex: 1 1 1em;
}
.ui-field.field-hidden {
    display: none !important;
}
.ui-field-button .ui-button {
    flex: 1 1 auto;
}
.ui-fieldset {
    padding: 0;
}
.ui-fieldset .set-title {
    background: #fff;
    margin-left: 12px;
}
.ui-fieldset-actions {
    text-align: center;
    padding: 12px 0 0 0;
}
.ui-fieldset-actions .ui-button + .ui-button {
    margin-left: 24px;
}
.ui-fieldset-stacked > .ui-field {
    display: block;
    flex: 1 0 100%;
    padding: 0;
    margin-bottom: 12px;
}
.ui-fieldset-stacked > .ui-field > .field-title {
    margin: 0 0 6px 0;
    padding: 0;
    border: none;
    text-align: left;
}
.ui-fieldset-stacked > .ui-field > .field-input {
    padding: 0;
}
.ui-fieldset-stacked .ui-field + .ui-field {
    margin-top: 12px;
}
.ui-fieldset-stacked > .ui-field .ui-input:only-child {
    flex: 1 1 1em;
    max-width: 100%;
}
.ui-fieldset-vertical > .ui-field > .field-title {
    display: flex;
    align-items: center;
}
.ui-fieldset-vertical > .ui-field > .field-title > .field-required {
    margin-left: 6px;
}
.ui-fieldset-vertical .ui-field + .ui-field {
    margin-top: 12px;
}
.ui-form-search .ui-field-submit-search .field-title {
    margin: 0;
}
.ui-form-search .ui-field-submit-search .field-title:before {
    display: none;
}
.ui-form-submit .message-flash {
    margin: 0 0 12px 0;
}
.ui-form-submit .message-flash:empty {
    display: none;
}
.grid-head {
    display: none;
}
.grid-body:empty {
    display: none;
}
.grid-row {
    width: 100%;
}
.grid-body .grid-row + .grid-row {
    margin-top: 12px;
}
.grid-body .grid-row:last-child {
    border-bottom: none;
}
.even > .grid-row {
    background: #f3f3f3;
}
.grid-cell {
    padding: 0.2em;
}
.grid-head .grid-cell {
    justify-content: center;
}
.grid-cell-empty {
    padding: 6px;
}
.ui-grid .grid-cell-label {
    font-weight: bold;
    border-bottom: dotted 1px #ddd;
    text-align: left;
}
.ui-grid .grid-cell-label br {
    display: none;
}
.icon {
    width: 1em;
    height: 1em;
}
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"] {
    -webkit-appearance: none;
    border: solid 1px #d9d9d9;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 2px 4px;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
    font: inherit;
    margin: 0;
}
input[type="file"] {
    font: inherit;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
input[type="number"]:focus {
    border-color: #999999;
    box-shadow: 0 0 5px #999999;
    outline: none;
}
input[disabled] {
    background-color: #dddddd;
}
input {
    letter-spacing: 0.08em;
}
input[type="radio"],
input[type="checkbox"] {
    vertical-align: middle;
    width: auto;
    margin-right: 4px;
}
fieldset {
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    padding: 0.6em 0.8em 1.2em 0.8em;
}
legend {
    margin: 0;
    padding: 0 0.5em;
}
.error-field {
    background: #fee;
}
.ui-input-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ui-input-checkbox .check-input {
    order: -1;
}
div#ui-datepicker-div {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    padding: 15px 15px 0;
    display: none;
}
#ui-datepicker-div {
    z-index: 10000 !important;
}
#ui-datepicker-div:before {
    border: 6px solid rgba(0, 0, 0, 0);
    border-bottom-color: #fff;
    content: "";
    height: 1px;
    position: absolute;
    top: -12px;
    width: 1px;
}
#ui-datepicker-div:after {
    border: 7px solid rgba(0, 0, 0, 0);
    border-bottom-color: #dadada;
    content: "";
    height: 1px;
    left: 14px;
    position: absolute;
    top: -15px;
    width: 1px;
    z-index: -1;
}
.ui-datepicker-header {
    background: rgba(0, 0, 0, 0);
    height: 1.5em;
    position: relative;
    z-index: 0;
}
table.ui-datepicker-calendar td {
    text-align: center;
}
table.ui-datepicker-calendar td.ui-datepicker-current-day {
    background: #ffff77;
}
.ui-datepicker-header .ui-datepicker-title {
    position: relative;
    text-align: center;
    top: -1.4em;
    z-index: -1;
}
.ui-datepicker-header a.ui-corner-all {
    color: #2b6991;
    cursor: pointer;
    font-size: 0.9em;
    vertical-align: bottom;
    display: inline-block;
}
.ui-datepicker-header a.ui-corner-all:hover {
    color: #ec9700;
}
a.ui-datepicker-next {
    position: absolute;
    right: 0;
    top: 2px;
}
.ui-input-fixed {
    padding: 5px 0 0 0;
}
.ui-input-radio .ui-label {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.ui-input-select {
    background: #fdfbfb;
    border: 1px solid #ccc;
    font-size: inherit;
    padding: 2px;
    width: auto;
    height: 2.2em;
    letter-spacing: 0.08em;
    vertical-align: middle;
    margin-right: 4px;
}
.ui-input-select:hover {
    background: #f2f2f2;
    border-color: #999;
}
.ui-input-select-multiple {
    min-height: 10em;
}
.ui-input-textarea {
    -webkit-appearance: none;
    border: solid 1px #d9d9d9;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 4px;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
    font: inherit;
    line-height: inherit;
    width: 100%;
    letter-spacing: 0.08em;
}
.ui-input-textarea:focus {
    border-color: #999999;
    box-shadow: 0 0 5px #999999;
    outline: none;
}
.ui-input-textarea[disabled] {
    background-color: #dddddd;
}
.ui-label {
    display: flex;
    align-items: center;
    margin: 0;
}
ul,
ol {
    margin-left: 1.1em;
    list-style-position: outside;
    padding: 0;
}
ul {
    list-style: disc;
}
ul li {
    margin-left: 1.4em;
}
ol {
    list-style: decimal;
}
ol li {
    margin-left: 2.32em;
    text-indent: -0.34em;
}
.ui-message {
    padding: 0.6em;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    border-radius: 3px;
    color: #666;
    padding: 0.5em 1em;
    margin-bottom: 0;
}
.ui-message-error {
    border-color: #a81e4c;
    background-color: #faeef2;
    color: #aa1345;
}
.ui-message-info {
    border: 1px solid #7d966d;
    background-color: #f4ffed;
    color: #2a5d29;
}
.ui-message-status {
    border-color: #a6cad6;
    background-color: #f3f7f9;
    color: #248aad;
}
.ui-message-warning {
    border-color: #f2cd7b;
    background-color: #fff3da;
    color: #d29000;
}
.ui-pager {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}
.ui-pager .pager {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
}
.ui-pager .pager-item {
    display: block;
    list-style-type: none;
    margin: 0;
    flex: 0 0 auto;
    min-width: 2em;
}
.ui-pager .pager-first,
.ui-pager .pager-prev,
.ui-pager .pager-next,
.ui-pager .pager-last {
    min-width: 5em;
}
.ui-pager .pager-item + .pager-item {
    margin-left: 6px;
}
.ui-pager .ui-link {
    display: block;
    text-decoration: none;
    padding: 4px 6px;
}
.ui-pager .pager-current {
    font-weight: bold;
}
.ui-pager .pager-current,
.ui-pager .pager-page {
    display: none;
}
.ui-popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 1em;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8em;
}
.ui-popup.open {
    display: flex;
}
.ui-popup .popup-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    max-height: 100%;
    max-width: 100%;
    min-width: 40%;
}
.ui-popup .popup-title {
    margin: 0.2em;
    flex: 1 1 auto;
    font-size: 1.2em;
}
.ui-popup .popup-content {
    position: relative;
    padding: 8px;
    overflow: auto;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    max-height: 100%;
}
.ui-popup iframe {
    position: absolute;
    border: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 8px;
}
.ui-popup .popup-content-frame {
    width: 90vw;
    height: 80vh;
    border: none;
}
.ui-popup .message {
    margin-bottom: 12px;
}
.ui-popup .popup-header,
.ui-popup .popup-footer {
    flex: 0 0 auto;
}
.ui-popup .popup-header {
    display: flex;
    align-items: center;
    background: #263238;
    color: #fff;
    padding: 0.2em 0.6em;
}
.ui-popup .popup-footer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-top: dotted 1px #999;
    padding: 0.8em 0.4em;
}
.ui-popup .popup-footer .ui-button {
    margin: 0 6px;
    width: auto;
}
.ui-popup .popup-footer:empty {
    display: none;
}
.ui-popup .popup-close {
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.4em;
    line-height: 1;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0;
    white-space: normal;
}
tr {
    border-bottom: solid 1px #e9e9e9;
    background: #fcfcfc;
}
thead tr {
    background: #ddd;
}
tr:nth-child(even) {
    background: #f3f3f3;
}
th,
td {
    padding: 4px 6px;
    vertical-align: middle;
}
th,
thead td {
    vertical-align: middle;
    text-align: center;
}
.bordered-table th,
.bordered-table td {
    border: 1px solid #d3d3d3;
    vertical-align: middle;
    color: inherit;
}
.bordered-table th,
.bordered-table thead td {
    background: rgb(224, 224, 224);
    vertical-align: middle;
    text-align: center;
}
.bordered-table tr {
    border-bottom: none;
    background: transparent;
}
.bordered-table tr:nth-child(even) {
    background: #f9f9f9;
}
.row-clickable tbody tr {
    cursor: pointer;
}
.row-clickable tbody tr:hover {
    background: #dae6f0;
}
.ui-tabs .block {
    display: none;
}
.ui-tabs .block.active {
    display: inherit;
}
.ui-tabs .block-title {
    display: none;
}
.ui-tabs .tab-menu {
    display: flex;
    margin: 12px 0;
    padding: 0;
    list-style: none;
}
.ui-tabs .tab-menu li {
    margin: 0;
    padding: 0 6px 0 0;
}
.ui-tabs .tab-menu a {
    display: block;
    border-bottom: solid 3px #ddd;
    padding: 4px 12px;
    min-width: 8em;
    text-align: center;
}
.ui-tabs .tab-menu a:hover,
.ui-tabs .tab-menu .active {
    border-color: #30788f;
}
.ui-teaser {
    display: flex;
    flex-direction: row-reverse;
}
.ui-teaser .summary {
    flex: 1 1 auto;
}
.ui-teaser .catch {
    flex: 0 0 100px;
    height: 100px;
}
.ui-teaser .catch:empty {
    display: none;
}
.datepicker--cells {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.datepicker--cell {
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 32px;
    z-index: 1;
}
.datepicker--cell.-focus- {
    background: #f0f0f0;
}
.datepicker--cell.-current- {
    color: #4eb5e6;
}
.datepicker--cell.-current-.-focus- {
    color: #4a4a4a;
}
.datepicker--cell.-current-.-in-range- {
    color: #4eb5e6;
}
.datepicker--cell.-in-range- {
    background: rgba(92, 196, 239, 0.1);
    color: #4a4a4a;
    border-radius: 0;
}
.datepicker--cell.-in-range-.-focus- {
    background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell.-disabled- {
    cursor: default;
    color: #aeaeae;
}
.datepicker--cell.-disabled-.-focus- {
    color: #aeaeae;
}
.datepicker--cell.-disabled-.-in-range- {
    color: #a1a1a1;
}
.datepicker--cell.-disabled-.-current-.-focus- {
    color: #aeaeae;
}
.datepicker--cell.-range-from- {
    border: 1px solid rgba(92, 196, 239, 0.5);
    background-color: rgba(92, 196, 239, 0.1);
    border-radius: 4px 0 0 4px;
}
.datepicker--cell.-range-to- {
    border: 1px solid rgba(92, 196, 239, 0.5);
    background-color: rgba(92, 196, 239, 0.1);
    border-radius: 0 4px 4px 0;
}
.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
    color: #fff;
    background: #5cc4ef;
}
.datepicker--cell.-range-from-.-range-to- {
    border-radius: 4px;
}
.datepicker--cell.-selected- {
    border: none;
}
.datepicker--cell.-selected-.-focus- {
    background: #45bced;
}
.datepicker--cell:empty {
    cursor: default;
}
.datepicker--days-names {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 8px 0 3px;
}
.datepicker--day-name {
    color: #ff9a19;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
}
.-only-timepicker- .datepicker--content,
.datepicker--body,
.datepicker-inline .datepicker--pointer {
    display: none;
}
.datepicker--cell-day {
    width: 14.28571%;
}
.datepicker--cells-months {
    height: 170px;
}
.datepicker--cell-month {
    width: 33.33%;
    height: 25%;
}
.datepicker--cells-years,
.datepicker--years {
    height: 170px;
}
.datepicker--cell-year {
    width: 25%;
    height: 33.33%;
}
.datepickers-container {
    position: absolute;
    left: 0;
    top: 0;
}
@media print {
    .datepickers-container {
        display: none;
    }
}
.datepicker {
    background: #fff;
    border: 1px solid #dbdbdb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-sizing: content-box;
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    width: 250px;
    position: absolute;
    left: -100000px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
    transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s,
        -webkit-transform 0.3s ease;
    z-index: 100;
}
.datepicker.-from-top- {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.datepicker.-from-right- {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}
.datepicker.-from-bottom- {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}
.datepicker.-from-left- {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}
.datepicker.active {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
    transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s,
        -webkit-transform 0.3s ease;
}
.datepicker-inline .datepicker {
    border-color: #d7d7d7;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
.datepicker--content {
    box-sizing: content-box;
    padding: 4px;
}
.datepicker--pointer {
    position: absolute;
    background: #fff;
    border-top: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    width: 10px;
    height: 10px;
    z-index: -1;
}
.datepicker--nav-action:hover,
.datepicker--nav-title:hover {
    background: #f0f0f0;
}
.-top-center- .datepicker--pointer,
.-top-left- .datepicker--pointer,
.-top-right- .datepicker--pointer {
    top: calc(100% - 4px);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.-right-bottom- .datepicker--pointer,
.-right-center- .datepicker--pointer,
.-right-top- .datepicker--pointer {
    right: calc(100% - 4px);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.-bottom-center- .datepicker--pointer,
.-bottom-left- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
    bottom: calc(100% - 4px);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
.-left-bottom- .datepicker--pointer,
.-left-center- .datepicker--pointer,
.-left-top- .datepicker--pointer {
    left: calc(100% - 4px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.-bottom-left- .datepicker--pointer,
.-top-left- .datepicker--pointer {
    left: 10px;
}
.-bottom-right- .datepicker--pointer,
.-top-right- .datepicker--pointer {
    right: 10px;
}
.-bottom-center- .datepicker--pointer,
.-top-center- .datepicker--pointer {
    left: calc(50% - 10px / 2);
}
.-left-top- .datepicker--pointer,
.-right-top- .datepicker--pointer {
    top: 10px;
}
.-left-bottom- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
    bottom: 10px;
}
.-left-center- .datepicker--pointer,
.-right-center- .datepicker--pointer {
    top: calc(50% - 10px / 2);
}
.datepicker--body.active {
    display: block;
}
.datepicker--nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    min-height: 32px;
    padding: 4px;
}
.-only-timepicker- .datepicker--nav {
    display: none;
}
.datepicker--nav-action,
.datepicker--nav-title {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.datepicker--nav-action {
    width: 32px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.datepicker--nav-action.-disabled- {
    visibility: hidden;
}
.datepicker--nav-action svg {
    width: 32px;
    height: 32px;
}
.datepicker--nav-action path {
    fill: none;
    stroke: #9c9c9c;
    stroke-width: 2px;
}
.datepicker--nav-title {
    border-radius: 4px;
    padding: 0 8px;
}
.datepicker--buttons,
.datepicker--time {
    border-top: 1px solid #efefef;
    padding: 4px;
}
.datepicker--nav-title i {
    font-style: normal;
    color: #9c9c9c;
    margin-left: 5px;
}
.datepicker--nav-title.-disabled- {
    cursor: default;
    background: 0 0;
}
.datepicker--buttons {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.datepicker--button {
    color: #4eb5e6;
    cursor: pointer;
    border-radius: 4px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
}
.datepicker--button:hover {
    color: #4a4a4a;
    background: #f0f0f0;
}
.datepicker--time {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.datepicker--time.-am-pm- .datepicker--time-sliders {
    -webkit-flex: 0 1 138px;
    -ms-flex: 0 1 138px;
    flex: 0 1 138px;
    max-width: 138px;
}
.-only-timepicker- .datepicker--time {
    border-top: none;
}
.datepicker--time-sliders {
    -webkit-flex: 0 1 153px;
    -ms-flex: 0 1 153px;
    flex: 0 1 153px;
    margin-right: 10px;
    max-width: 153px;
}
.datepicker--time-label {
    display: none;
    font-size: 12px;
}
.datepicker--time-current {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
    text-align: center;
    margin: 0 0 0 10px;
}
.datepicker--time-current-colon {
    margin: 0 2px 3px;
    line-height: 1;
}
.datepicker--time-current-hours,
.datepicker--time-current-minutes {
    line-height: 1;
    font-size: 19px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    position: relative;
    z-index: 1;
}
.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
    content: "";
    background: #f0f0f0;
    border-radius: 4px;
    position: absolute;
    left: -2px;
    top: -3px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0;
}
.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
    opacity: 1;
}
.datepicker--time-current-ampm {
    text-transform: uppercase;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    color: #9c9c9c;
    margin-left: 6px;
    font-size: 11px;
    margin-bottom: 1px;
}
.datepicker--time-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    height: 17px;
    background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px
        no-repeat;
}
.datepicker--time-row:first-child {
    margin-bottom: 4px;
}
.datepicker--time-row input[type="range"] {
    background: 0 0;
    cursor: pointer;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
}
.datepicker--time-row input[type="range"]::-ms-tooltip {
    display: none;
}
.datepicker--time-row input[type="range"]:hover::-webkit-slider-thumb {
    border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:hover::-moz-range-thumb {
    border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:hover::-ms-thumb {
    border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:focus {
    outline: 0;
}
.datepicker--time-row input[type="range"]:focus::-webkit-slider-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef;
}
.datepicker--time-row input[type="range"]:focus::-moz-range-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef;
}
.datepicker--time-row input[type="range"]:focus::-ms-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef;
}
.datepicker--time-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: -6px;
}
.datepicker--time-row input[type="range"]::-moz-range-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.datepicker--time-row input[type="range"]::-ms-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.datepicker--time-row input[type="range"]::-webkit-slider-runnable-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: transparent;
    background: 0 0;
}
.datepicker--time-row input[type="range"]::-moz-range-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: transparent;
    background: 0 0;
}
.datepicker--time-row input[type="range"]::-ms-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: transparent;
    background: 0 0;
}
.datepicker--time-row input[type="range"]::-ms-fill-lower {
    background: 0 0;
}
.datepicker--time-row input[type="range"]::-ms-fill-upper {
    background: 0 0;
}
.datepicker--time-row span {
    padding: 0 12px;
}
.datepicker--time-icon {
    color: #9c9c9c;
    border: 1px solid;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    margin: 0 5px -1px 0;
    width: 1em;
    height: 1em;
}
.datepicker--time-icon:after,
.datepicker--time-icon:before {
    content: "";
    background: currentColor;
    position: absolute;
}
.datepicker--time-icon:after {
    height: 0.4em;
    width: 1px;
    left: calc(50% - 1px);
    top: calc(50% + 1px);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.datepicker--time-icon:before {
    width: 0.4em;
    height: 1px;
    top: calc(50% + 1px);
    left: calc(50% - 1px);
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
    color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, 0.1);
    color: #ccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none;
}
.ui-input-color {
    display: flex;
    align-items: center;
}
.ui-input-color .color-selected {
    width: 3em;
    height: 1.6em;
    border: solid 1px #ddd;
    margin-right: 1em;
}
.ui-link {
    color: #1f5466;
    text-decoration: none;
}
.ui-link:hover {
    color: #ec9700;
    text-decoration: underline;
}
.ui-link-none {
    color: inherit !important;
    text-decoration: none !important;
    cursor: text !important;
}
.ui-link-none:hover {
    color: inherit !important;
    text-decoration: none !important;
    cursor: text !important;
}
.ui-menu,
.ui-menu .menu-item {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ui-popup-colors .popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ui-popup-colors .color-unit {
    display: flex;
}
.ui-popup-colors .color-item {
    width: 1.8em;
    height: 1.8em;
    margin: 1px;
    border: solid 1px #fff;
    cursor: pointer;
}
.ui-popup-colors .color-util {
    display: flex;
    justify-content: space-between;
    padding-top: 6px;
}
.ui-popup-colors .color-item-none {
    border: solid 1px #ddd;
    width: auto;
    padding: 0 6px;
    text-align: center;
    flex: 1 1 auto;
}
.ui-popup-colors .color-solid {
    display: flex;
}
.ui-popup-colors .color-code {
    display: flex;
    align-items: center;
    padding-left: 24px;
}
.ui-popup-colors .color-code-prefix {
    padding: 0 6px;
}
.ui-popup-colors .color-code [name="color"] {
    width: 6em;
}
.ui-popup-colors .color-item.selected {
    border-color: #273238;
}
.ui-banners {
    display: flex;
    flex-wrap: wrap;
}
.ui-content-alias {
    display: flex;
    align-items: center;
    border: solid 1px #ddd;
    padding: 12px;
}
.ui-content-alias .ui-link {
    display: flex;
    align-items: center;
}
.ui-content-alias .icon-alias {
    margin-right: 6px;
}
.ui-content-alias-file .alias-info {
    margin-left: 12px;
    font-size: 0.8em;
}
.ui-content-alias-file .alias-info:after {
    content: "]";
}
.ui-content-alias-file .alias-info:before {
    content: "[";
}
.ui-content-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    font-size: 0.9em;
}
.ui-content-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex: 0 0 auto;
}
.ui-content-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    content: ">";
    margin: 0 12px;
}
.ui-content-breadcrumb .breadcrumb-item-current {
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 1 1 auto;
    display: inline;
}
.ui-content-siblings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.ui-content-siblings .page-prev,
.ui-content-siblings .page-next {
    flex: 1 1 50%;
    max-width: 50%;
}
.ui-content-siblings .page-list {
    flex: 0 0 auto;
    padding: 0 12px;
}
.ui-content-siblings .ui-link {
    display: flex;
    align-items: center;
}
.ui-content-siblings .navi-icon {
    font-size: 1.5em;
    flex: 0 0 auto;
}
.ui-content-siblings .navi-title {
    padding: 0 6px;
    flex: 1 1 auto;
    overflow: hidden;
    width: 1em;
}
.ui-content-siblings .page-list .navi-title {
    width: auto;
}
.ui-content-siblings .page-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-content-siblings .page-label {
    font-size: 0.8em;
}
.ui-content-siblings .page-next .ui-link {
    flex-direction: row-reverse;
}
.ui-content-siblings .page-next .navi-title {
    text-align: right;
}
.ui-content-teaser .teaser-catch {
    height: 180px;
}
.ui-content-teaser .teaser-catch:empty {
    display: none;
}
.ui-content-teasers .ui-content-teaser + .ui-content-teaser {
    margin-top: 36px;
}
.ui-link-mode-admin {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    color: #fff !important;
    text-decoration: none !important;
    background: #000;
    border: solid 1px #777;
    border-radius: 50%;
    box-shadow: 2px 2px 2px #222;
    opacity: 0.7;
}
.ui-link-mode-admin:hover {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 1;
}
.ui-link-mode-admin .icon-admin {
    transition: transform 300ms ease-in;
}
.ui-link-mode-admin:hover .icon-admin {
    transform: scale(1.5);
}
.ui-block-side {
    flex: 1 1 auto;
}
.ui-block-side .block-title {
    background: #edf1cc;
    background: linear-gradient(to bottom, #edf1cc 0%, #dfe8a7 100%);
    color: #444;
    font-size: 1.2em;
    margin: 0;
    padding: 0.2em 0.5em;
    font-weight: bold;
}
.ui-block-side .block-body {
    padding: 15px 10px;
}
.ui-block-side .title-suffix {
    font-size: 0.9em;
}
.ui-content-editor-view h2 {
    background-color: #347cb9;
    color: #fff;
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 1;
    margin: 20px 0 0.5em;
    padding: 0.5em 0.8em;
}
.ui-content-editor-view h3 {
    background: #f0f9ff;
    border: 1px solid #98bdd6;
    color: #327bae;
    font-size: 1.25em;
    line-height: 1.3;
    margin: 1.5em 0 0.8em;
    padding: 0.25em 0.5em;
}
.ui-content-editor-view h4 {
    background: #ebefca;
    background: -moz-linear-gradient(top, #ebefca 0%, #d9e498 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ebefca),
        color-stop(100%, #d9e498)
    );
    background: -webkit-linear-gradient(top, #ebefca 0%, #d9e498 100%);
    background: -o-linear-gradient(top, #ebefca 0%, #d9e498 100%);
    background: -ms-linear-gradient(top, #ebefca 0%, #d9e498 100%);
    background: linear-gradient(to bottom, #ebefca 0%, #d9e498 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebefca',endColorstr='#d9e498',GradientType=0 );
    border: 1px solid #8bb337;
    box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #fff inset;
    border-left-width: 7px;
    color: #394c10;
    font-size: 1.15em;
    padding: 0.15em 0.5em;
}
.ui-content-editor-view h5 {
    border-left: 4px solid #7ac7ff;
    font-size: 116%;
    margin-bottom: 12px;
    padding-left: 8px;
}
.ui-content-editor-view ul {
    margin: 0 0 0.8em 1.1em;
}
.ui-content-editor-view ol li {
    margin: 0 0 0.8em 2.1em;
}
.ui-content-editor-view ul li {
    list-style: none;
    margin-left: 1.8em;
    padding: 0;
    position: relative;
}
.ui-content-editor-view ul li:before {
    background: url("../../../file/cms/design/list-icon-l.png") left center
        no-repeat;
    background-size: 10px;
    background-image: url("../../../file/cms/design/list-icon.png") \9;
    content: "";
    display: inline-block;
    height: 10px;
    left: -1.3em;
    margin: 0 5px 0 0;
    position: absolute;
    top: 0.4em;
    width: 10px;
}
.ui-content-editor-view hr {
    border-top: 2px dotted #ebebeb;
    clear: both;
    margin: 2em 5em;
}
.ui-content-editor-view table {
    border: 1px solid #ccc;
    margin: 0.8em 0;
}
.ui-content-editor-view td,
.ui-content-editor-view th {
    border: 1px solid #ccc;
    padding: 0.4em 0.6em;
}
.ui-content-editor-view thead td,
.ui-content-editor-view th {
    background: #ddf1ff;
    color: #444;
    font-weight: bold;
    text-align: center;
}
.ui-content-editor-view table tr.even,
.ui-content-editor-view table tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.ui-content-editor-view table td > ul,
.ui-content-editor-view table td > ol {
    margin: 0.5em 0 0.5em 1.1em;
}
.ui-content-editor-view > h2:first-child,
.ui-content-editor-view > h3:first-child,
.ui-content-editor-view > h4:first-child,
.ui-content-editor-view > h5:first-child,
.ui-content-editor-view > h6:first-child,
.ui-content-editor-view > table:first-child {
    margin-top: 0;
}
.ui-content-editor-view img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
}
.ui-link-more {
    display: flex;
    align-items: center;
    background: #e6f5ff;
    border: 1px solid #85b9de;
    font-size: 0.85em;
    margin: 5px 5px 0 0;
    padding: 0.5em 1em;
}
.ui-link-more .menu-icon {
    margin-right: 0.4em;
}
.ui-list-topics {
    display: block;
    list-style: none;
    margin: 0;
    width: 100%;
}
.ui-list-topics .list-item {
    display: flex;
    flex-wrap: wrap;
    padding: 6px;
    margin: 0;
}
.ui-list-topics .list-item + .list-item {
    border-top: 1px dotted #ccc;
}
.ui-list-topics .topic-link {
    margin-top: 6px;
    flex: 1 1 100%;
}
.ui-list-topics .ui-link:hover {
    text-decoration: none;
    color: #327bae;
}
.ui-list-topics .topic-date {
    flex: 0 0 10em;
}
.ui-list-topics .topic-category {
    background: #9e9e9e;
    border-radius: 3px;
    color: #fff;
    font-size: 0.85em;
    letter-spacing: 0.02em;
    margin: 0 10px 0 0;
    padding: 0.15em 0.25em;
    text-align: center;
    width: 6em;
    flex: 0 0 auto;
}
.ui-list-topics .topic-category-press {
    background: #4c98d2;
    background: linear-gradient(to bottom, #4c98d2 0%, #347cb9 100%);
}
.ui-list-topics .topic-category-topic {
    background: #c1484a;
    background: linear-gradient(to bottom, #c1484a 0%, #b94547 100%);
}
.ui-list-topics .topic-category-public {
    background: #2ca986;
}
.ui-list-topics .topic-category-contract {
    background: #690;
    visibility: hidden;
}
.ui-menu-tree-main .ui-menu {
    padding: 0;
    margin: 0;
}
.ui-menu-tree-main .menu-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.ui-menu-tree-main .ui-link {
    text-decoration: none;
}
@media (max-width: 750px) {
    .ui-menu-tree-main .ui-menu {
        display: none;
    }
    .ui-menu-tree-main .menu-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .ui-menu-tree-main .ui-link {
        padding: 12px;
        width: 100%;
        display: block;
        color: #fff;
        font-size: 1.2em;
        line-height: 1.3;
        font-weight: bold;
    }
}
.ui-title-block {
    background: #f1f1f1;
    background: linear-gradient(to bottom, #f1f1f1 0%, #e1e1e1 100%);
    border: 1px solid #dadada;
    color: #333;
    font-size: 1.2em;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
    padding: 0.4em 1em 0.35em;
    width: 100%;
}
.ui-title-block .ui-image {
    height: 14px;
    width: 14px;
    margin-right: 0.4em;
}
.ui-title-section {
    background: #f1f1f1;
    background: linear-gradient(to bottom, #f1f1f1 0%, #e1e1e1 100%);
    border: 1px solid #dadada;
    color: #333;
    font-size: 1.2em;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
    padding: 0.4em 1em 0.35em;
}
.ui-title-section:before {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: -0.2em;
    position: relative;
    top: 0.05em;
    border: solid 4px #3880bd;
}
.ui-title-sitemap {
    background-color: #347cb9;
    color: #fff;
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 1;
    margin: 20px 0 0.5em;
    padding: 0.5em 0.8em;
}
.block:empty {
    display: none;
}
.block-about .status-message {
    margin-bottom: 24px;
}
.block-errors {
    padding: 24px;
}
.block-admin-handle {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 100;
}
.block-menu-main {
    display: none;
}
.block-menu-sub .ui-menu-tree {
    display: flex;
}
.block-menu-sub .menu-item {
    flex: 1 1 1em;
}
.block-menu-sub .menu-item + .menu-item {
    border-left: solid 1px;
}
.block-menu-sub .ui-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.block-menu-sub .ui-menu-tree .ui-menu-tree {
    display: none;
}
.block-site-title .title-main {
    font-size: 2em;
}
.block-archive-press .topic-category {
    display: none;
}
.block-archive-public .topic-category {
    display: none;
}
.block-camera {
    text-align: center;
    min-height: 480px;
}
.block-camera img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.block-camera .camera-updated {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0.8em 0;
}
.block-camera .camera-reload {
    display: none;
    align-items: center;
    -webkit-appearance: none;
    background: #fcfcfc;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: inset -1px -1px 1px rgb(0 0 0 / 9%);
    color: #666;
    cursor: pointer;
    font-size: 0.9em;
    line-height: 1.6;
    min-width: 100px;
    padding: 0.2em 0.6em;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background: #4c98d2;
    background: linear-gradient(to bottom, #4c98d2 0%, #347cb9 100%);
    padding: 0.6em 1.8em;
    margin: auto;
    color: #fff;
    font-weight: bold;
    border-radius: 2em;
}
.block-camera .camera-interval {
    font-size: 0.9em;
    font-weight: normal;
}
.block-camera .camera-icon-updated,
.block-camera .camera-icon-reload {
    margin-right: 0.4em;
    flex: 0 0 auto;
}
.block-camera.loaded .camera-updated,
.block-camera.loaded .camera-reload {
    display: flex;
}
.block-camera .camera-icon-reload {
    font-size: 0.9em;
}
.block-english-announce .content-series {
    padding: 12px 0;
    border-bottom: dotted 1px #222;
}
.block-english-announce .series-title {
    font-weight: bold;
    padding: 6px 12px;
    background: #367fbb;
    color: #fff;
}
.block-english-announce .series-menu {
    padding-left: 36px;
}
.block-english-announce .ui-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.block-english-announce .ui-menu .ui-menu {
    display: none;
}
.block-english-announce .menu-item {
    flex: 1 1 40%;
    margin: 12px 0;
}
.block-english-sitemap .ui-menu-tree,
.block-english-sitemap .ui-menu-flat {
    margin-left: 36px;
}
.block-footer-address .p-author-info__title {
    font-size: 1em;
    margin: 0;
}
.block-footer-address .p-auther-info__address {
    display: flex;
    justify-content: flex-start;
    font-size: 0.9em;
}
.block-footer-copy {
    display: flex;
    justify-content: center;
    font-size: 0.8em;
    padding: 10px 0;
}
.block-footer-top {
    position: fixed;
    right: 12px;
    bottom: 12px;
}
.block-footer-top .scroll-link:link {
    display: flex;
    align-items: center;
    background: #4c98d2;
    background: linear-gradient(to bottom, #4c98d2 0%, #347cb9 100%);
    border-radius: 2em;
    padding: 0.6em 1em;
    z-index: 100;
    color: #fff;
    text-decoration: none;
}
.block-footer-top .scroll-icon {
    margin-right: 0.4em;
}
.block-front .ui-message-status {
    margin-top: 5px;
}
.block-front .block-front-topics,
.block-front .block-front-contracts {
    margin-bottom: 20px;
}
.block-front-contracts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 20px;
}
.block-front-topics {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 20px;
}
.block-front-visual {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    border: solid 1px #add6ee;
}
.block-front-visual .ui-cover-catch {
    flex: 0 0 50%;
    height: 34vw;
    max-width: 50%;
    position: relative;
    border: solid 1px #add6ee;
}
.block-front-visual .port-title {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.4em;
    margin: 0;
    text-shadow: 0 0 10px #333, 1px 1px 3px #333;
    padding: 0.6em 1em;
    text-align: right;
    word-break: break-word;
}
.block-header-drawer {
    background: #f8f8f8;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #fff inset;
    border-radius: 3px;
    cursor: pointer;
    padding: 3px 8px;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.2;
}
.block-header-drawer .drawer-icon {
    font-size: 1.6em;
    color: #666;
}
.block-header-drawer .drawer-label {
    white-space: nowrap;
}
.block-header-title {
    display: flex;
    flex-direction: column;
}
.block-header-title .p-site-lead {
    position: absolute;
    top: 0;
    padding: 6px 10px;
    color: #666;
    font-size: 0.85em;
    line-height: 1.1;
}
.block-header-title #link-to-home {
    display: flex;
    text-decoration: none;
    align-items: center;
}
.block-header-title .p-site-name {
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: 1.3em;
    margin: 0 0 0 5px;
}
.block-header-title .ui-image {
    font-size: 0.5em;
    line-height: 1.2;
    width: 45px;
    height: 45px;
}
.block-header-title .p-site-name .p-site-name--sub {
    font-size: 0.5em;
    line-height: 1.2;
}
.block-header-title .p-site-name .p-site-name--main {
    margin-top: 2px;
    line-height: 1.2;
}
.block-header-tools {
    display: none;
    min-width: 60px;
}
.block-header-tools .ui-link {
    text-transform: uppercase;
}
@media (max-width: 750px) {
    .block-header-tools .menu-item {
        padding: 6px;
    }
    .block-header-tools .ui-link {
        padding: 6px;
        display: flex;
        align-items: center;
        background: #444;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }
    .block-header-tools .menu-icon {
        color: #c1484a;
        font-size: 1.6em;
    }
}
.block-menu-local {
    border: 1px solid #98bdd6;
    border-bottom: none;
    margin-bottom: 24px;
}
.block-menu-local .menu-item-depth-1 > .menu-item-self {
    background: #ddeef6;
    background: linear-gradient(to bottom, #ddeef6 0%, #b2d8ee 100%);
    padding: 6px 6px 6px 28px;
}
.block-menu-local .menu-item-depth-1 > .menu-item-self .ui-link {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
}
.block-menu-local .menu-item-depth-1 > .menu-item-self .ui-link:before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border: solid 3px #347cb9;
    border-radius: 50%;
    left: -22px;
    top: 2px;
}
.block-menu-local .menu-item-depth-2 > .menu-item-self {
    background: #eff7fc;
    border-top: 1px solid #fbfdff;
    padding: 6px 6px 6px 4px;
}
.block-menu-local .menu-item-depth-2 > .menu-item-self .ui-link {
    position: relative;
    margin-left: 24px;
}
.block-menu-local .menu-item-depth-2 > .menu-item-self .ui-link:before {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    left: -1.3em;
    margin: 0 5px 0 0;
    position: absolute;
    top: 0.4em;
    width: 10px;
    background: #367fbb;
    border-radius: 50%;
}
.block-menu-local .menu-item-depth-2 > .menu-item-self .ui-link:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0.08em;
    left: -1.5em;
    border: solid 10px transparent;
    border-left-color: #fff;
    transform: scale(0.4, 0.3);
    transform-origin: center center;
}
.block-menu-local .menu-item-depth-2 > .ui-menu {
    border-top: 1px solid #b1d8ef;
    border-bottom: 1px solid #b1d8ef;
    padding-bottom: 6px;
}
.block-menu-local .menu-item-depth-3 .menu-item-self {
    padding: 2px 6px 2px 28px;
}
.block-menu-local .menu-item-depth-3 .ui-link {
    position: relative;
}
.block-menu-local .menu-item-depth-3 .ui-link:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border: solid 5px transparent;
    border-left-color: #b3d9ee;
    position: absolute;
    left: -1em;
    top: 0.4em;
}
.block-menu-navi {
    border-bottom: none;
    font-size: 0.9em;
    padding: 8px 0 5px;
}
.block-menu-navi .ui-menu {
    display: flex;
    margin-left: 1.1em;
}
.block-menu-navi .menu-item {
    display: flex;
    margin: 0 15px 0 0;
}
.block-menu-navi .menu-icon {
    font-size: 0.8em;
    margin-right: 0.4em;
}
.block-menu-navi .ui-link:hover {
    color: #327bae;
    text-decoration: none;
}
.block-page-breadcrumb {
    font-size: 0.85em;
}
.block-page-children {
    border: 1px solid #b1d8ef;
    margin-top: 24px;
}
.block-page-children .children-title {
    background: #eff7fc;
    border-bottom: 1px solid #b1d8ef;
    color: #6a6a6a;
    font-size: 1.2em;
    font-weight: normal;
    margin: 0;
    padding: 0.2em 0.5em 0.1em 0.5em;
}
.block-page-children .ui-menu {
    padding: 12px;
}
.block-page-children .menu-item {
    padding: 6px 0;
}
.block-page-children .ui-link {
    display: inline-flex;
    align-items: center;
}
.block-page-children .menu-icon {
    font-size: 0.9em;
    margin-right: 0.4em;
}
.block-page-title .title {
    display: flex;
    align-items: center;
    color: #6a6a6a;
    font-size: 1.75em;
    letter-spacing: 0.04em;
    margin: 12px 0;
}
.block-page-title .ui-image {
    height: 18px;
    width: 18px;
    margin: 0 0.4em -0.1em 0;
}
.block-qanda {
    background: #f8f8f8;
    border: 2px solid #ccc;
    padding: 20px 28px;
    margin-top: 24px;
}
.block-qanda .ui-menu {
    margin: 0;
    padding-left: 24px;
}
.block-side-banners {
    flex: 1 1 auto;
}
.block-side-banners .ui-banners {
    display: flex;
    flex-wrap: wrap;
}
.block-side-banners .banner-item {
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 6px;
}
.block-side-banners .ui-image {
    max-width: 100%;
    height: 43px;
    width: 100%;
}
.block-side-info .ui-block-side {
    margin-bottom: 20px;
    border: 1px solid #bbd237;
    padding: 1px;
}
.block-side-info .ui-link {
    color: #690;
}
.block-side-info .editor-content ul li {
    margin-left: 1.4em;
}
.block-side-info .editor-content ul li:before {
    background-color: #690;
}
.block-side-info .content-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.block-side-info .block-body ul {
    margin: 0;
}
.block-side-info .block-body li {
    text-align: left;
}
.block-side-info .content-inquiry {
    text-align: center;
}
.block-side-info .p-inquiry-item__title .ui-image {
    display: block;
    margin: auto;
}
.block-side-info .p-wave-info__desc .ui-image {
    width: 73px;
    height: 63px;
    margin: 0 0 0.4em 0.4em;
    float: right;
}
.block-side-info .ui-link:hover img {
    opacity: 0.7;
}
.block-side-info .p-wave-info__body {
    text-align: left;
    padding-top: 12px;
}
.block-side-info .p-wave-info__body .ui-image {
    width: 60px;
    height: 60px;
    order: 2;
    margin-left: 0.4em;
}
.block-sitemap .ui-menu .ui-menu {
    padding-left: 1.8em;
}
.block-sitemap .ui-link {
    display: inline-flex;
    align-items: center;
}
.block-sitemap .menu-item {
    padding: 4px 0;
}
.block-sitemap .menu-icon {
    font-size: 0.8em;
    margin-right: 0.4em;
    flex: 0 0 auto;
}
.block-sitemap .menu-item-depth-1 > .menu-item-self {
    padding: 4px;
    margin-bottom: 12px;
    border-bottom: solid 1px #347cb9;
}
.block-sitemap .menu-item-depth-1 > .menu-item-self > .ui-link {
    font-size: 1.2em;
}
.block-sitemap .menu-item-depth-1 > .menu-item-self > .ui-link .menu-icon {
    display: none;
}
.block-sitemap .menu-item-depth-1 > .menu-item-self > .ui-link:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid 3px #3780bc;
    border-radius: 50%;
    flex: 0 0 auto;
    margin-right: 0.4em;
    line-height: 1;
}
.block-sitemap .menu-item-depth-3 .menu-icon {
    display: none;
}
.block-sitemap .menu-item-depth-3 .ui-link:before {
    content: "";
    display: block;
    border: solid 5px transparent;
    border-left-color: #8dccff;
    width: 0px;
    height: 0px;
    flex: 0 0 auto;
}
.block-years-tabs {
    margin-bottom: 12px;
}
.block-years-tabs .ui-tabs {
    display: flex;
    flex-wrap: wrap;
}
.block-years-tabs .tab-item {
    padding: 4px 6px;
}
.block-years-tabs .ui-link {
    background: #ebf6ff;
    padding: 2px 6px;
    border: solid 1px;
    text-decoration: none;
}
.block-years-tabs .tab-item .ui-link:hover,
.block-years-tabs .tab-item-active .ui-link {
    border-color: #ec9700;
    color: #ec9700;
    text-decoration: none;
    background: #fff7e9;
}
.block-years-topics {
    padding-bottom: 24px;
}
.block-years-topics .ui-link {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #ddeef6;
    background: linear-gradient(to bottom, #ddeef6 0%, #b2d8ee 100%);
    border: 1px solid #b1d8ef;
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}
.block-years-topics .ui-link:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid 3px #3780bc;
    border-radius: 50%;
    flex: 0 0 auto;
    margin-right: 0.4em;
    line-height: 1;
}
.block-years-topics .years-title {
    background: #f0f9ff;
    border: 1px solid #98bdd6;
    color: #347cb9;
    font-size: 1.1em;
    font-weight: normal;
    margin: 0;
    padding: 0.25em 0.6em 0.2em;
}
body {
    background: #222;
}
.page {
    background: #fff;
}
.page .layout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 12px;
    position: relative;
    background: #f7f7f7;
    background: linear-gradient(
        to bottom,
        #f7f7f7 0%,
        #fefefe 50%,
        #f6f6f6 100%
    );
    border-top: 3px solid #327bae;
    border-bottom: 1px solid #dedede;
    box-shadow: 0 1px 5px #ddd;
    padding-top: 38px;
    padding-bottom: 12px;
}
.page .layout-main {
    margin: 30px 5px;
}
.page .layout-side {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e4e4e4;
    margin: 40px 0;
    padding: 20px 5px 0;
}
.page .layout-footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #327bae;
    padding: 12px;
}
.page .content-icons {
    display: none;
}
a,
a:link,
a:visited {
    color: #327bae;
    text-decoration: underline;
}
a:link:hover {
    text-decoration: none;
}
@media (max-width: 750px) {
    .menu-open {
        overflow: hidden;
        max-height: 100vh;
    }
    .page {
        transition: transform 200ms linear;
    }
    .menu-open .page {
        transform: translateX(-70%);
    }
    .menu-open .block-header-tools {
        position: absolute;
        display: block;
        right: 0;
        top: 0;
        width: 70%;
        transform: translate(100%);
        transform-origin: top right;
        margin: 0 0 0 auto;
    }
    .menu-open .block-menu-main {
        position: absolute;
        right: 0;
        display: block;
        width: 70%;
        transform: translate(100%);
        transform-origin: top right;
        margin: 0 0 0 auto;
        padding-top: 36px;
    }
}
.page-content .layout-main {
    margin: 15px 5px 30px;
}
.page-content-english {
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.page-content-english .block-front-visual .port-title {
    font-size: 1.2em;
}
.editor {
    width: 100%;
}
.editor:after {
    content: "";
    clear: both;
    display: block;
    visibility: hidden;
    font-size: 1px;
}
.editor:empty {
    margin-bottom: 0;
}
.editor figure {
    margin: 0;
    padding: 0;
}
.editor img,
.editor iframe,
.editor table {
    max-width: 100%;
}
.editor h2,
.editor h3,
.editor h4 {
    clear: both;
}
.editor p:empty {
    pointer-events: none;
}
.editor [data-float="left"] {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}
.editor [data-float="right"] {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}
.editor [data-float="center"] {
    display: block;
    margin: 0.5em auto;
}
.editor [data-indent="1"] {
    margin-left: 1.5em;
}
.editor [data-indent="2"] {
    margin-left: 3em;
}
.editor [data-indent="3"] {
    margin-left: 4.5em;
}
.editor [data-fontsize="-2"] {
    font-size: 0.75em;
}
.editor [data-fontsize="-1"] {
    font-size: 0.9em;
}
.editor [data-fontsize="1"] {
    font-size: 1.1em;
}
.editor [data-fontsize="2"] {
    font-size: 1.3em;
}
.editor [data-fontsize="3"] {
    font-size: 1.6em;
}
.editor .text-center {
    text-align: center;
}
.editor .text-right {
    text-align: right;
}
.editor .text-justify {
    text-align: justify;
}
.editor-content a,
.editor-content a:link {
    color: #327bae;
    text-decoration: underline;
}
.editor-content h2 {
    background-color: #347cb9;
    color: #fff;
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 1;
    margin: 20px 0 0.5em;
    padding: 0.5em 0.8em;
    clear: both;
}
.editor-content h3 {
    background: #f0f9ff;
    border: 1px solid #98bdd6;
    color: #327bae;
    font-size: 1.25em;
    line-height: 1.3;
    margin: 1.5em 0 0.8em;
    padding: 0.25em 0.5em;
    clear: both;
}
.editor-content h4 {
    background: #ebefca;
    background: linear-gradient(to bottom, #ebefca 0%, #d9e498 100%);
    border: 1px solid #8bb337;
    box-shadow: 1px 1px 0 #fff inset, -1px -1px 0 #fff inset;
    border-left-width: 7px;
    color: #394c10;
    font-size: 1.15em;
    padding: 0.15em 0.5em;
    clear: both;
}
.editor-content h5 {
    border-left: 4px solid #7ac7ff;
    font-size: 116%;
    margin-bottom: 12px;
    padding-left: 8px;
    clear: both;
}
.editor-content ul {
    margin: 0 0 0.8em 1.1em;
}
.editor-content ol li {
    margin: 0 0 0.8em 2.1em;
}
.editor-content ul li {
    list-style: none;
    margin-left: 1.8em;
    padding: 0;
    position: relative;
}
.editor-content ul li:before {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    left: -1.3em;
    margin: 0 5px 0 0;
    position: absolute;
    top: 0.4em;
    width: 10px;
    background: #367fbb;
    border-radius: 50%;
}
.editor-content ul li:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0.05em;
    left: -1.47em;
    border: solid 10px transparent;
    border-left-color: #fff;
    transform: scale(0.4, 0.3);
    transform-origin: center center;
}
.editor-content hr {
    border-top: 2px dotted #ebebeb;
    clear: both;
    margin: 2em 5em;
}
.editor-content table {
    border: 1px solid #ccc;
    margin: 0.8em 0;
}
.editor-content td,
.editor-content th {
    border: 1px solid #ccc;
    padding: 0.4em 0.6em;
}
.editor-content thead td,
.editor-content th {
    background: #ddf1ff;
    color: #444;
    font-weight: bold;
    text-align: center;
}
.editor-content table tr.even,
.editor-content table tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.editor-content table td > ul,
.editor-content table td > ol {
    margin: 0.5em 0 0.5em 1.1em;
}
.editor-content > h2:first-child,
.editor-content > h3:first-child,
.editor-content > h4:first-child,
.editor-content > h5:first-child,
.editor-content > h6:first-child,
.editor-content > table:first-child {
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .editor-content h2,
    .editor-content h3,
    .editor-content h4,
    .editor-content h5 {
        margin-left: -5px;
        margin-right: -5px;
    }
}
.redactor-box {
    position: relative;
    overflow: visible;
}
.redactor-box,
.redactor-layer {
    background: #fff;
    width: 100%;
    max-width: 100%;
}
.redactor-box,
.redactor-box textarea,
.redactor-layer {
    z-index: auto;
}
.redactor-tooltip {
    z-index: 50;
}
.redactor-toolbar {
    display: flex;
    z-index: 100;
    position: absolute;
    width: 100%;
    padding: 0 !important;
    background: #fff;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.redactor-toolbar:after {
    content: "";
    display: table;
    clear: both;
}
.redactor-toolbar-button .re-button {
    padding: 6px;
    display: flex;
}
.redactor-air,
.redactor-dropdown {
    z-index: 1052;
}
.redactor-placeholder:after {
    position: absolute;
    top: 20px;
    left: 20px;
    content: attr(placeholder);
    display: block;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400 !important;
}
.redactor-layer {
    position: relative;
    overflow: auto;
    margin: 0;
    padding: 12px;
    outline: 0;
    white-space: normal;
    border: 1px solid rgba(0, 0, 0, 0.07);
}
.redactor-relative {
    position: relative;
}
.redactor-in {
    cursor: text;
}
.redactor-in:focus,
.redactor-layer:focus {
    outline: 0;
}
.redactor-in blockquote:empty,
.redactor-in h1:empty,
.redactor-in h2:empty,
.redactor-in h3:empty,
.redactor-in h4:empty,
.redactor-in h5:empty,
.redactor-in h6:empty,
.redactor-in p:empty {
    min-height: 24px;
}
.redactor-in b:empty,
.redactor-in em:empty,
.redactor-in i:empty,
.redactor-in ins:empty,
.redactor-in strong:empty,
.redactor-in sub:empty,
.redactor-in sup:empty,
.redactor-in u:empty {
    display: inline-block;
    min-width: 1px;
    min-height: 1rem;
}
.redactor-in table {
    empty-cells: show;
}
.redactor-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
.redactor-script-tag {
    display: none;
}
.redactor-layer-img-edit img {
    cursor: pointer;
}
.redactor-voice-label {
    display: none;
}
.redactor-voice-alert {
    position: absolute;
    left: -3000px;
}
.redactor-toolbar-box {
    position: relative;
}
.redactor-toolbar-box .re-button-tooltip {
    display: none;
    position: absolute;
    white-space: nowrap;
    z-index: 101;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 2px;
    padding: 3px 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}
.redactor-toolbar .re-button {
    color: rgba(0, 0, 0, 0.8);
}
.redactor-toolbar .re-button:hover {
    outline: 0;
    background-color: #3d79f2;
    color: #fff;
}
.redactor-toolbar .re-button.redactor-act,
.redactor-toolbar .re-button:active {
    outline: 0;
    background-color: #eee;
    color: #444;
}
.redactor-toolbar .re-button.redactor-button-disabled {
    opacity: 0.3;
}
.redactor-toolbar .re-button.redactor-button-disabled:hover {
    color: #333;
    outline: 0;
    background-color: transparent !important;
    cursor: default;
}
.redactor-toolbar .re-button.redactor-button-focus {
    color: #fff;
    background: #000;
}
.redactor-toolbar.redactor-toolbar-external {
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
}
.redactor-toolbar {
    margin: 0 !important;
    list-style: none !important;
    line-height: 1 !important;
}
.redactor-toolbar li {
    vertical-align: top;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    outline: 0;
    list-style: none !important;
}
.redactor-toolbar .re-button {
    box-sizing: border-box;
    display: block;
    text-align: center;
    padding: 12px 14px;
    cursor: pointer;
    outline: 0;
    border: none;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.redactor-toolbar .re-button > i {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 1.2em 1.2em;
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    left: 0;
}
.redactor-tooltip {
    border-radius: 3px;
    position: absolute;
    padding: 12px;
    line-height: 1;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.95);
    color: #555 !important;
}
.redactor-tooltip a {
    color: #ccc;
    margin: 0 8px;
    text-decoration: none;
}
.redactor-tooltip a:hover {
    color: #fff;
}
#redactor-image-box {
    display: inline-block;
    position: relative;
    max-width: 100%;
    line-height: 0;
    outline: 3px solid #1f78d8;
    box-shadow: 0 0 12px #1f78d8;
    white-space: nowrap;
}
#redactor-image-box[data-float] {
    display: block;
}
#redactor-image-editter {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    margin: auto;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    padding: 12px;
    cursor: pointer;
}
#redactor-image-resizer {
    box-sizing: border-box;
    position: absolute;
    z-index: 2;
    line-height: 1;
    cursor: nw-resize;
    bottom: -5px;
    right: -6px;
    border: 2px solid #000;
    background-color: rgba(255, 255, 255, 0.9);
    width: 10px;
    height: 10px;
}
.redactor-dropdown {
    min-width: 220px;
    max-height: 254px;
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: auto;
    list-style: none;
}
.redactor-dropdown li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.redactor-dropdown li:last-child {
    border-bottom: none;
}
.redactor-dropdown li:hover {
    background-color: #3d79f2;
}
.redactor-dropdown li:hover a {
    color: #fff !important;
    text-decoration: none;
}
.redactor-dropdown .redactor-dropdown-link-inactive {
    background: 0 0;
}
.redactor-dropdown .redactor-dropdown-link-inactive a,
.redactor-dropdown .redactor-dropdown-link-inactive a:hover {
    background: 0 0;
    cursor: default;
    color: #000 !important;
    opacity: 0.4;
    background: 0 0;
}
.redactor-dropdown a {
    display: block;
    padding: 12px 10px;
    color: #000;
    text-decoration: none;
}
.redactor-dropdown a span {
    padding: 2px 4px 1px 4px;
    display: inline-block;
    border-radius: 3px;
    line-height: 1;
}
.redactor-dropdown a:focus {
    outline: 0;
}
.redactor-dropdown a.selected {
    background-color: #000;
    color: #fff;
}
.redactor-dropdown a.redactor-dropdown-link-selected {
    color: #fff;
    background: #000;
}
.redactor-dropdown-box-inline .redactor-dropdown-marked span {
    background-color: #ffd61e;
    color: #000;
    text-decoration: none;
}
.redactor-dropdown-box-inline .redactor-dropdown-code span {
    background: rgba(0, 0, 0, 0.05);
}
.redactor-dropdown-box-inline .redactor-dropdown-sample span {
    background: #46a9fc;
    color: rgba(255, 255, 255, 0.9);
}
.redactor-dropdown-box-inline .redactor-dropdown-variable span {
    color: rgba(0, 0, 0, 0.5);
}
.redactor-dropdown-box-inline .redactor-dropdown-shortcut span {
    background: #000;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}
.redactor-dropdown-box-inline .redactor-dropdown-cite span {
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}
.redactor-dropdown-box-inline .redactor-dropdown-sub span,
.redactor-dropdown-box-inline .redactor-dropdown-sup span {
    font-size: 12px;
}

.block-menu-reconst {
    border: solid 2px #4692d3;
    margin: 20px 5px 0;
}

.block-menu-reconst .reconst-title {
    margin: 0;
    background: #4da9f7;
    color: #fff;
    padding: 7px 6px;
    font-size: 1.2em;
    text-align: center;
}
.block-menu-reconst .reconst-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    list-style: none;
    margin: 0;
    padding: 12px;
    gap: 12px;
}
.block-menu-reconst .reconst-banner-item {
    display: flex;
    flex: 1 1 1em;
    margin: 0;
}
.block-menu-reconst .reconst-banners a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
}
.block-menu-reconst .reconst-banners a:hover {
    opacity: 0.7;
}
.block-menu-reconst .reconst-manager {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 12px;
    border-top: dotted 1px #4692d3;
    font-size: 0.9em;
}
.block-menu-reconst .reconst-manager-title {
    font-size: 1.1em;
    font-weight: bold;
    flex: 0 0 100%;
}
.block-menu-reconst img {
    display: flex;
    flex: 0 1 1em;
    /* width: 100%; */
    max-width: 100%;
    max-height: 64px;
}
.block-menu-reconst .reconst-link-news {
    background: #689ecc;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
}
