* {
  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;
}
.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-article-latest {
  border: solid 1px #ddd;
}
.ui-article-latest .latest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 6px;
  background: #74a7f4;
  color: #fff;
}
.ui-article-latest .ui-title-block {
  font-size: 1em;
  margin: 0;
}
.ui-article-latest .ui-link-more {
  background: #fff;
  padding: 3px 12px;
  font-size: 0.8em;
  border-radius: 4px;
  text-shadow: none;
  text-decoration: none;
}
.ui-article-latest .ui-link-more:hover {
  text-decoration: none;
}
.ui-article-latest .latest-info {
  padding: 12px;
}
.ui-article-latest .ui-list {
  margin: 0;
  padding: 0;
  display: block;
}
.ui-article-latest .list-item {
  display: block;
  margin: 0;
  padding: 6px 0;
}
.ui-article-latest .list-item + .list-item {
  border-top: dotted 1px #ddd;
}
.ui-drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
.ui-drawer .drawer-icon {
  font-size: 2em;
  flex: 0 0 auto;
}
.ui-drawer .drawer-icon-close {
  display: none;
}
.ui-drawer .drawer-label {
  white-space: nowrap;
}
.menu-open .ui-drawer .drawer-icon-close {
  display: block;
}
.menu-open .ui-drawer .drawer-icon-open {
  display: none;
}
.ui-form-search-site {
  display: flex;
  border: solid 1px #ddd;
  border-radius: 12px;
  overflow: hidden;
  max-width: 18em;
  margin: 0 12px;
}
.ui-form-search-site .ui-input {
  border: none;
  background: transparent;
  background: #fff;
  flex: 1 1 15em;
}
.ui-form-search-site .ui-button {
  background: #fff;
  border: none;
  min-width: auto;
  padding: 2px 12px;
  border-left: solid 1px #ddd;
}
.ui-list-topics {
  display: block;
  margin: 0;
}
.ui-list-topics .list-item {
  margin: 0;
}
.ui-list-topics .topic-date {
  flex: 0 0 9.5em;
  font-size: 0.8em;
  padding-top: 0.18em;
}
.ui-list-topics .topic-link {
  flex: 1 1 1em;
}
.ui-menu-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ui-menu-info .menu-item {
  padding: 0 12px;
}
.ui-menu-info .ui-link {
  color: #fff;
  text-decoration: none;
}
.ui-menu-info .ui-link:hover {
  text-decoration: underline;
}
.ui-menu-info .info-home-icon {
  font-size: 1.2em;
  margin-right: 4px;
  vertical-align: text-top;
}
.ui-subpage-item {
  margin-bottom: 24px;
}
.ui-subpage-item .teaser-summary {
  display: none;
}
.ui-table-contract .table-col-date {
  width: 10em;
}
.ui-tabs-years {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 12px;
}
.ui-tabs-years .tab-item {
  padding: 0 0.6em 0.6em 0;
}
.ui-tabs-years .ui-link {
  display: block;
  background: #d6e5ff;
  border: solid 1px #74a7f4;
  padding: 0 12px;
  border-radius: 0.2em;
  text-decoration: none;
}
.ui-title-section {
  border-left: solid 6px #74a7f4;
  padding-left: 12px;
  margin-bottom: 24px;
  background: #d6e5ff;
  padding: 12px 12px;
}
.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 {
  padding: 24px 12px;
}
.block-menu-main .menu-item {
  padding: 6px 0;
}
.block-menu-main .ui-link {
  display: flex;
  padding: 6px;
}
.block-menu-main .ui-link:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: solid 0.4em transparent;
  border-left-color: inherit;
  transform: scale(1, 0.7);
  flex: 0 0 auto;
  margin-top: 0.4em;
}
.block-menu-main .ui-menu .ui-menu {
  display: none;
}
.block-menu-main .menu-active-trail + .ui-menu {
  display: block;
}
.block-menu-main .menu-item-depth-1 {
  border: solid 1px #74a7f4;
  background: #d6e5ff;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0px 2px 0 #fff, 2px 0px 0 #fff, -2px 0px 0 #fff, 0 -2px 0 #fff,
    -2px -2px 0 #fff, 1px 0 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff,
    -1px -1px 0 #fff, -1px 0 0 #fff, -1px -2px 0 #fff, 1px -2px 0 #fff,
    -1px 2px 0 #fff, -2px -1px 0 #fff, -2px 1px 0 #fff;
  margin-bottom: 6px;
}
.block-menu-main .menu-item-depth-1 > .menu-item-self > .ui-link {
  padding: 6px 6px 6px 10px;
  font-size: 1.15em;
  color: #004dff;
  font-weight: bold;
  text-decoration: none;
}
.block-menu-main .menu-active-current + .ui-menu-tree {
  margin-top: 5px;
}
.block-menu-main .menu-item-depth-2:last-child {
  margin-bottom: 7px;
}
.block-menu-main .menu-item-depth-2 > .menu-item-self > .ui-link {
  display: flex;
  font-size: 1em;
  padding-left: 1.8em;
  color: #17357b;
  font-weight: normal;
  text-decoration: none;
  text-shadow: none;
  padding-top: 2px;
  padding-bottom: 2px;
}
.block-menu-main .menu-item-depth-3 .ui-link {
  display: flex;
  padding: 2px;
  padding-left: 3.2em;
  color: #333;
  font-size: 0.9em;
  font-weight: normal;
  text-decoration: none;
  text-shadow: none;
}
.block-menu-main .menu-item-depth-3 .ui-link:before {
  border: none;
  border-top: solid 3px;
  width: 0.5em;
  margin-right: 0.2em;
  margin-top: 0.55em;
}
.block-menu-main .menu-item-depth-4 .ui-link {
  padding-left: 4.2em;
}
.block-menu-main .menu-item-depth-5 .ui-link {
  padding-left: 5em;
}
.block-menu-main .menu-item .menu-active-current > .ui-link {
  color: #f29600;
  text-shadow: 0px 2px 2px rgb(255, 255, 255, 0.5),
    2px 0px 2px rgb(255, 255, 255, 0.5), -2px 0px 2px rgb(255, 255, 255, 0.5),
    0 -2px 0 rgb(255, 255, 255, 0.5), -2px -2px 0 rgb(255, 255, 255, 0.5),
    1px 0 0 rgb(255, 255, 255, 0.5), 0 1px 0 rgb(255, 255, 255, 0.5),
    1px 1px 0 rgb(255, 255, 255, 0.5), -1px -1px 0 rgb(255, 255, 255, 0.5),
    -1px 0 0 rgb(255, 255, 255, 0.5), -1px -2px 0 rgb(255, 255, 255, 0.5),
    1px -2px 0 rgb(255, 255, 255, 0.5), -1px 2px 0 rgb(255, 255, 255, 0.5),
    -2px -1px 0 rgb(255, 255, 255, 0.5), -2px 1px 0 rgb(255, 255, 255, 0.5);
  background: rgb(255, 255, 255, 0.7);
}
.block-menu-main .ui-link:hover {
  text-decoration: none;
}
.block-menu-main .menu-icon {
  flex: 0 0 auto;
  margin-top: 0.2em;
  margin-right: 4px;
}
.block-menu-main .menu-label {
  flex: 1 1 auto;
}
.block-menu-main .ui-icon-link {
  order: 100;
}
.block-menu-main [data-icon]::after {
  align-self: center;
}
.block-menu-main-highlight .menu-item-depth-1 {
  background: #fff78f;
  border-color: #f29600;
}
.block-menu-sub .ui-menu-tree {
  display: flex;
  flex-wrap: wrap;
}
.block-menu-sub .menu-item {
  flex: 0 0 50%;
  padding: 5px 12px;
  border-color: #fff;
}
.block-menu-sub .ui-link {
  color: #fff;
  text-decoration: none;
}
.block-menu-sub .ui-link:hover {
  text-decoration: underline;
}
.block-site-title {
  flex: 0 0 270px;
}
.block-site-title .ui-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.block-site-title .ui-link:hover {
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
}
.block-site-title .title-logo {
  width: 55px;
  overflow: hidden;
}
.block-site-title .title-wrap {
  line-height: 1;
  padding-left: 12px;
  color: #fff;
  text-shadow: 2px 2px 2px #3a67ab, -2px -2px 2px #3a67ab, -2px 2px 2px #3a67ab,
    2px -2px 2px #3a67ab;
}
.block-site-title .title-prefix {
  margin-bottom: 4px;
}
.block-site-title .title-main {
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
.block-archive .list-item {
  display: block;
  margin: 0;
  padding: 6px 0;
}
.block-archive .list-item + .list-item {
  border-top: dotted 1px #777;
}
.block-archive .topic-date {
  flex: 0 0 10em;
}
.block-archive .topic-link {
  flex: 1 1 1em;
}
.block-archive-paginate {
  padding: 0 6px;
}
.block-banners {
  padding: 24px;
}
.block-banners .ui-banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.block-banners .ui-banners:before,
.block-banners .ui-banners:after {
  content: "";
  flex: 1 1 50%;
  max-width: 140px;
  order: 1000;
}
.block-banners .banner-item {
  flex: 1 1 50%;
  overflow: hidden;
  padding: 3px;
  max-width: 140px;
}
.block-banners .ui-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-banners .ui-image {
  width: 100%;
}
.block-front-radiation {
  border: solid 1px #0a258a;
  margin: 0 12px;
}
.block-front-radiation .radiation-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 6px;
  background: #292de4;
  background: linear-gradient(to bottom, #292de4 0%, rgb(111 116 210) 100%);
  text-shadow: 2px 2px 2px #292de4;
  color: #fff;
}
.block-front-radiation .radiation-body {
  padding: 12px;
}
.block-front-radiation p {
  margin: 0;
}
.block-front-updates {
  padding: 12px;
}
.block-front-updates .ui-article-latest {
  flex: 0 0 1%;
  flex-basis: calc(50% - 6px);
}
.block-front-updates .ui-article-latest:nth-child(1) {
  border-color: #018f3b;
}
.block-front-updates .ui-article-latest:nth-child(1) .latest-header {
  background-color: #018f3b;
  background: linear-gradient(
    to bottom,
    rgba(1, 143, 59, 1) 0%,
    rgb(100, 199, 105) 100%
  );
  text-shadow: 2px 2px 2px #018f3b;
}
.block-front-updates .ui-article-latest:nth-child(2) {
  margin-top: 12px;
  border-color: #f29600;
}
.block-front-updates .ui-article-latest:nth-child(2) .latest-header {
  background-color: #f29600;
  background: linear-gradient(
    to bottom,
    rgb(242, 150, 0) 0%,
    rgb(236, 214, 102) 100%
  );
  text-shadow: 2px 2px 2px #f29600;
}
.block-header-navi {
  margin-left: 8px;
}
.block-menu-imode {
  margin: 12px 12px 0;
  border: solid 1px #91bdff;
  background: #eaf6ff;
  padding: 12px;
  font-size: 0.9em;
}
.block-menu-imode .imode-title {
  font-weight: bold;
}
.block-menu-link {
  padding: 0 12px;
  margin: 0 12px;
  border: solid 1px #91bdff;
  background: #eaf6ff;
}
.block-menu-link .ui-link {
  padding: 4px 0;
}
.block-menu-link .menu-item {
  padding: 6px 0;
}
.block-menu-link .menu-item + .menu-item {
  border-top: dotted 1px #91bdff;
}
.block-page-body {
  padding-bottom: 48px;
}
.block-page-breadcrumb {
  margin-bottom: 8px;
}
.block-page-scroller {
  width: 15em;
  margin: 0 0 0 auto;
  opacity: 0;
  transition: opacity 400ms ease-in;
  position: fixed;
  bottom: 24px;
  right: 24px;
}
.block-page-scroller.visible {
  opacity: 0.9;
}
.block-page-scroller .ui-link {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: rgb(47, 88, 150);
  color: #fff;
  text-decoration: none;
  cursor: default;
}
.block-page-scroller.visible .ui-link {
  cursor: pointer;
}
.block-page-scroller .ui-link:hover {
  opacity: 0.8;
}
.block-page-scroller .scroller-icon {
  font-size: 1.4em;
  margin-right: 0.2em;
}
.block-page-title {
  margin-bottom: 24px;
  padding: 14px 12px;
  background: linear-gradient(180deg, #4978f9, #3a97ef);
  color: #fff;
  font-weight: bold;
}
.block-page-title .title {
  margin: 0;
  font-size: 1.6em;
  font-weight: inherit;
}
.block-site-address {
  display: flex;
  padding: 16px 0;
  flex-wrap: wrap;
}
.block-site-address .address-icon {
  flex: 0 0 45px;
  margin: 0 8px;
  overflow: hidden;
  margin: auto;
}
.block-site-address .ui-image {
  width: 400px;
}
.block-site-address .address-info {
  flex: 1 1 auto;
  flex-basis: calc(100% - 53px); /* 45px(ロゴ分) + 8px(paddhing分) */
  padding: 12px 8px;
  font-size: 0.85em;
}
.block-site-address .address-info-title {
  font-size: 1.3em;
  margin-bottom: 0.2em;
  font-weight: bold;
}
.block-site-address .address-map {
  background: #ddd;
  width: 360px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.block-site-address iframe {
  width: 100%;
  height: 100%;
}
.block-site-copyright {
  text-align: center;
  font-size: 0.8em;
}
.block-site-slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  box-shadow: 2px 2px 5px #929ca7;
  margin-bottom: 12px; /* スライド1枚、ページャなしの場合 */
}
.block-site-slideshow .ui-banners {
  position: relative;
  display: block;
  flex: 1 1 auto;
  height: 26vw;
  overflow: hidden;
}
.block-site-slideshow .banner-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: all 800ms ease-out;
}
.block-site-slideshow .banner-item.active {
  opacity: 1;
  z-index: 2;
}
.block-site-slideshow .ui-link {
  display: block;
  width: 100%;
  height: 100%;
}
.block-site-slideshow .slideshow-pager {
  position: absolute;
  z-index: 10;
  display: flex;
  margin: 0;
  padding: 0;
  bottom: -20px;
  width: 100%;
  justify-content: center;
  display: none;
}
.block-site-slideshow .slideshow-pager li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: #4e89e2;
  margin: 0 5px;
}
.block-sitemap .ui-menu {
  margin-left: 2em;
}
.block-topic-latest .list-item {
  display: block;
  padding: 6px;
}
.block-topic-latest .list-item + .list-item {
  border-top: dotted 1px #ddd;
}
.block-topic-latest .list-item:nth-child(6) {
  display: none;
}
.block-topic-latest .ui-link-more {
  display: block;
  background: #2f5896;
  color: #fff;
  text-decoration: none;
  padding: 2px 12px;
  width: 6em;
  margin: 6px 0 6px auto;
}
.block-topic-latest .ui-link-more:hover {
  opacity: 0.7;
}
.page {
  width: 100%;
  margin: auto;
}
.page .layout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #74a7f4;
  background: linear-gradient(
    to bottom,
    rgba(7, 74, 119, 0.92) 0%,
    rgb(120, 202, 255) 0%,
    rgb(77, 143, 243) 100%
  );
  padding: 3px 12px;
}
.page .layout-footer {
  padding: 12px;
  background: #74a7f4;
}
.page .layout-main {
  flex: 1 1 1%;
  order: 1;
}
.page .layout-side {
  order: 0;
  flex: 0 0 260px;
}
.ui-link {
  text-decoration: underline;
}
@media (max-width: 979px) {
  .block-menu-link,
  .block-menu-imode {
    display: none;
  }
  .menu-open {
    background: #74a7f4;
  }
  .menu-open .layout-main,
  .menu-open .layout-main_after,
  .menu-open .block-site-address,
  .menu-open .block-site-copyright {
    display: none;
  }
  .menu-open .block-menu-link,
  .menu-open .block-menu-main,
  .menu-open .block-menu-imode {
    display: block;
  }
}
.page-content .layout-main {
  padding: 12px;
}
.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 h2 {
  border: solid 1px #74a7f4;
  padding: 10px 12px 10px 28px;
  margin: 32px 0 12px 0;
  position: relative;
  font-size: 1.35em;
  clear: both;
}
.editor-content h2:before {
  content: "";
  width: 6px;
  height: 65%;
  position: absolute;
  background: #2f5896;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.editor-content h3 {
  background: #d6e5ff;
  padding: 6px 12px;
  margin: 24px 0 18px;
  font-size: 1.2em;
  clear: both;
}
.editor-content h4 {
  font-size: 1.1em;
  clear: both;
}
.editor-content h5,
.editor-content h6 {
  font-size: 1em;
}
.editor-content ul,
.editor-content ol {
  margin: 1em 0;
  padding-left: 0.8em;
  line-height: 1.8;
  list-style: none;
}
.editor-content ol {
  counter-reset: section;
}
.editor-content ul > li {
  position: relative;
}
.editor-content ol > li {
  margin-left: 1.4em;
  text-indent: 0;
}
.editor-content ul > li::before {
  content: "";
  display: block;
  position: absolute;
  background: rgb(31, 84, 102);
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  top: 0.65em;
  left: -1.1em;
}
.editor-content ol > li::before {
  counter-increment: section;
  content: counters(section, "-") ".";
  margin-left: -1.2em;
  margin-right: 0.3em;
}
.editor-content li > ul,
.editor-content li > ol {
  margin: 0.25em 0;
  padding-left: 0.8em;
}
.editor-content img {
  vertical-align: bottom;
}
.editor-content a {
  color: #1f5466;
}
.editor-content a:hover {
  color: #ec9700;
}
.editor-content hr {
  clear: both;
}
.editor-content table {
  clear: both;
}
.editor-content td,
.editor-content th {
  border: solid 1px #777;
}
.editor-content .bordered {
  border: 1px solid #c5d1e0;
  padding: 1em;
  background-color: #f3f8ff;
}
.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-header-navi {
  position: relative;
  flex: 0 0 auto;
}
.block-header-navi .ui-menu-info,
.block-header-navi .ui-form-search-site {
  display: none;
}
