.button {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: clamp(1.5rem, 0vw + 1.5rem, 1.5rem);
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  appearance: none;
  border-radius: 0;
  padding-left: 50px;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  border: none;
  min-height: 40px;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  transition: all 0.24s;
}
.button:before,
.button:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10000px;
  transition: all 0.24s;
}
.button:before {
  background-color: var(--buttonBackground);
}
.button:after {
  background-color: var(--buttonColor);
  mask-size: 20px 20px;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
}
.button:hover,
.button:focus,
.unit--isAnchor:hover .button,
.newsTeaserItem:hover .button {
  color: var(--buttonColorHover);
}
.button:hover:before,
.button:focus:before,
.unit--isAnchor:hover .button:before,
.newsTeaserItem:hover .button:before {
  background-color: var(--buttonBackgroundHover);
}
.button:hover:after,
.button:focus:after,
.unit--isAnchor:hover .button:after,
.newsTeaserItem:hover .button:after {
  background-color: var(--buttonColorHover);
}
.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 > .item {
  margin: 0 var(--naviMargin);
  position: relative;
}
.navigation div.sub1 > .item > .menu {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.015em;
}
.navigation div.sub1 > .item > .menu:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: #A2C309;
  transform: skew(-20deg);
  transition: all 0.24s;
}
.navigation div.sub1 > .item > .menu:hover:after,
.navigation div.sub1 > .item > .menu:focus:after {
  width: 100%;
  left: 0;
}
.navigation div.sub1 > .item > .menu.path {
  color: #A2C309;
  font-style: italic;
}
.navigation div.sub1 > .item > .menu.path:after {
  width: 100%;
  left: 0;
}
.navigation div.sub2 {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin-top: -16px;
  padding: 20px;
  display: none;
  box-sizing: border-box;
  min-width: 100%;
}
.navigation div.sub2 > .item {
  margin-top: 10px;
}
.navigation div.sub2 > .item.init {
  margin-top: 0 !important;
}
.navigation div.sub2 > .item > .menu {
  white-space: nowrap;
  color: #A2C309;
  font-weight: 700;
}
.navigation div.sub2 > .item > .menu:hover,
.navigation div.sub2 > .item > .menu:focus,
.navigation div.sub2 > .item > .menu.path {
  color: #000;
}
.navigation div.sub1 > .item:hover div.sub2 {
  display: flex;
}
.section--two .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section--two .subcontent.subcontent--1 {
  width: 368px;
}
.section--two .subcontent.subcontent--2 {
  width: calc(100% - (368px + 60px));
}
.area--one .unitOne--1-3 {
  width: calc((100% / 3) - 30px);
}
.area--one .unitThree {
  width: calc((100% / 3) - 30px);
}
.area--one .unitFive {
  width: calc((100% / 3) - 30px);
}
.area--one .unit--imageGallery .part {
  width: calc((100% / 3) - 30px);
}
.area--one .unit--quicklink {
  width: calc(25% - 30px);
}
/*# sourceMappingURL=./screen-large.css.map */