.button {
  background-color: transparent;
  font-size: 20px;
  line-height: 1.2;
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  padding: 20px 54px 20px 20px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  border: 1px solid var(--buttonBorderColor);
  position: relative;
}
.button:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 0;
  width: 24px;
  height: 100%;
  background-color: currentColor;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right-thin.svg);
}
.button:hover {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderColorHover);
}
.site.button:after {
  mask-image: url(/images/arrow-rightTop-thin.svg);
}
@media (max-width: 767px) {
  .button {
    font-size: 18px;
    line-height: 1.33333333;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
div.navi {
  float: left;
}
div.navi > .item {
  float: left;
}
div.navi > .item > .menu {
  display: block;
}
@media (min-width: 1200px) {
  .togglenavigation,
  .mobile-navigation {
    display: none;
  }
}
.navigation div.sub1 {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.navigation div.sub1 > .item > .menu {
  font-size: 20px;
  line-height: 1.5;
}
.navigation div.sub1 > .item > .menu.path {
  color: #46757F;
  font-weight: 800;
}
@media (max-width: 1439px) {
  .navigation div.sub1 {
    gap: 30px;
  }
  .navigation div.sub1 > .item > .menu {
    font-size: 18px;
    line-height: 1.66666667;
  }
}
.area--one .unitOne--1-1 .unit__body {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.area--one .unitOne--1-3 {
  grid-column: span 4;
}
.area--two .unitTwo {
  grid-column: span 4;
}
/*# sourceMappingURL=./screen-large.css.map */