@import url("static/font/fontawesome/css/fontawesome.css");
@import url("static/font/fontawesome/css/brands.css");
@import url("static/font/fontawesome/css/solid.css");
@font-face {
  font-family: 'Corporate-Logo-Bold-ver3-web';
  font-style: normal;
  font-weight: 700;
  src: url("static/font/Corporate-Logo-Bold-ver3-web.woff2") format("woff2"), url("static/font/Corporate-Logo-Bold-ver3-web.woff") format("woff"); }

@font-face {
  font-family: 'Corporate-Logo-Medium-ver3-web';
  font-style: normal;
  font-weight: 700;
  src: url("static/font/Corporate-Logo-Medium-ver3-web.woff2") format("woff2"), url("static/font/Corporate-Logo-Medium-ver3-web.woff") format("woff"); }

:root {
  --theme-rgb: 70, 93, 170;
  --zabuton-rgb: 58, 47, 70; }

.body {
  background-color: #A4BADF;
  font-family: "Corporate-Logo-Bold-ver3-web";
  font-size: 15px;
  max-width: 500px;
  width: 90%;
  margin: 3em auto;
  color: white; }
  .body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url("static/img/wallpaper-landscape.png");
    background-position: right top;
    background-size: cover; }
    @media (max-aspect-ratio: 1) {
      .body:before {
        background-image: url("static/img/wallpaper-portrait.png"); } }
.header {
  text-align: center; }
  .header-icon {
    aspect-ratio: 1;
    width: 90%;
    background-color: rgba(var(--theme-rgb), 0.3);
    border-radius: 100%;
    margin: auto;
    max-width: 10em; }
  .header-logo {
    max-height: 2em;
    max-width: 90%;
    width: auto;
    margin: auto; }
  .header-paragraph {
    margin: 0.5em 0; }
    .header-paragraph span {
      display: inline-block; }
  .header-breadcrumb {
    text-align: left; }
  .header-breadcrumb_item:not(:last-child):after {
    content: ' > '; }
  .header-breadcrumb_link {
    color: white; }

.main-links_title {
  display: none; }

.article_list {
  color: white; }
  .article_list-item {
    background-color: rgba(var(--theme-rgb), 0.3);
    padding: 1em;
    border-radius: 0.75em;
    margin: 1em auto; }
  .article_list-link {
    text-decoration: none; }
  .article_list a {
    color: white; }
  .article_list-title {
    text-align: center; }
    .article_list-title span {
      display: inline-block; }
  .article_list-date {
    text-align: right; }

.article-title {
  padding-top: 1em;
  text-align: center; }

.article-date {
  text-align: right; }

.article-body {
  font-size: 0.9em;
  font-family: "Corporate-Logo-Medium-ver3-web";
  background-color: rgba(var(--theme-rgb), 0.3);
  color: white;
  padding: 1em;
  border-radius: 0.75em;
  margin: 1em auto; }
  .article-body strong {
    font-family: "Corporate-Logo-Bold-ver3-web"; }
  .article-body p {
    margin: 0.5em 0; }
  .article-body h1, .article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6 {
    font-size: 150%;
    margin-top: 1em; }
  .article-body img {
    height: 100%; }
  .article-body hr {
    margin: 2em 0; }
  .article-body a {
    color: white; }
  .article-body li {
    text-indent: -1em;
    padding-left: 1em; }
  .article-body h2 {
    text-align: center; }
    .article-body h2 span {
      display: inline-block; }

.section {
  background-color: rgba(var(--theme-rgb), 0.3);
  color: white;
  padding: 1em;
  border-radius: 0.75em;
  margin: 1em auto; }
  .section a {
    color: white; }
  .section-list_item {
    text-indent: -1em;
    padding-left: 1em; }
  .section-title {
    text-align: center; }
    .section-title span {
      display: inline-block; }
  .section-additional {
    text-align: right; }

.links-item {
  background-color: rgba(var(--theme-rgb), 0.3);
  list-style: none;
  margin: 1em auto;
  padding: 1em;
  border-radius: 0.75em; }

.links-link {
  color: white;
  text-decoration: none;
  display: grid;
  grid-template: "icon title      " auto "icon description" auto "icon url        " auto /5em 1fr;
  word-wrap: break-word; }
  .links-link i, .links-link img {
    grid-area: icon; }
  .links-link i {
    font-size: 3em;
    margin: auto; }
  .links-link img {
    width: 3em;
    margin: auto; }
  .links-link h3 {
    grid-area: title; }
  .links-link p {
    grid-area: description; }
  .links-link small {
    grid-area: url;
    word-wrap: break-word;
    word-break: break-all; }

.footer {
  color: white;
  text-align: center; }
