.button {
  background-color: var(--btnPrimaryBgColor, #fff);
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  color: var(--btnPrimaryColor, var(--textcolor));
  border: 1px solid var(--btnPrimaryBorderColor, var(--textcolor));
  padding: 7px 17px 8px;
  box-sizing: border-box;
  appearance: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0, -0.042, 0.391, 0.932);
  isolation: isolate;
  position: relative;
  font-size: 16px;
  line-height: 1.625;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.button:after {
  content: '';
  width: 18px;
  height: 18px;
  background-color: var(--btnIconColor, var(--textcolor));
  -webkit-mask-size: var(--btnIconWidth, 18px);
          mask-size: var(--btnIconWidth, 18px);
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: var(--btnIconUrl, url(/images/btn-arrow.svg));
          mask-image: var(--btnIconUrl, url(/images/btn-arrow.svg));
  transition: all 0.4s cubic-bezier(0, -0.042, 0.391, 0.932);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover:after,
  .button:focus:after {
    background-color: var(--btnIconColorHover, var(--accentcolor));
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    border-color: var(--btnPrimaryBorderColorHover, var(--textcolor));
    color: var(--btnPrimaryColorHover, #fff);
    background-color: var(--btnPrimaryBgColorHover, var(--textcolor));
    --btnIconColorHover: #fff;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
@media (min-width: 1278px) {
  .navToggle,
  .mobileNavigation {
    display: none;
  }
}
body:has(.navigation > .navigation__toggle.is-active) {
  overflow: hidden;
}
.navigation {
  float: left;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.navioverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 1900;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.4s, width 0s 0.4s;
}
body.cb-toggle-target-active .navioverlay,
body.navigationIsOpen .navioverlay {
  opacity: 1;
  width: 100%;
  transition: all 0.4s, width 0s;
}
@media (max-width: 1277px) {
  .navioverlay {
    z-index: 2009;
  }
}
.navigation__section {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navigation__section--subnavi {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  margin-top: 1px;
  overflow: hidden;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  height: 0;
  transition: all 0.4s 0.1s;
}
.navigation__section--subnavi::-webkit-scrollbar {
  display: none;
}
.navigation__section--subnavi.navigationIsOpen {
  height: var(--js-elementHeight);
  max-height: calc(100vh - var(--headerHeight) + 60px);
  transition: all 0.4s;
}
.navigation__desk {
  float: left;
  width: 100%;
}
.navigation__content {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding-inline: 23px;
  transition: all 0.4s;
}
.navigation__section--subnavi .navigation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 60px 0 30px;
}
.navigation__unit {
  float: left;
  width: 100%;
}
.navigation__unit--2 {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-template-areas: "navi";
}
.navigation__unit--3 {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-template-areas: "navi";
}
.navigationIsVisible:has(.sub3.cb-invisible) {
  display: none;
}
.navigation__part {
  float: left;
  width: 100%;
  position: relative;
  grid-area: navi;
  opacity: 0;
  transform: translateX(-60px);
  pointer-events: none;
  transition: all 0.2s;
}
.navigation__part.navigationIsVisible {
  z-index: 2;
  opacity: 1;
  pointer-events: initial;
  transform: translateX(0);
  transition: all 0.4s 0.2s;
}
.navigation__parent {
  font-weight: 800;
  margin-bottom: calc(var(--spacePart) * 1);
  display: block;
}
.navigation__close {
  position: absolute;
  right: var(--deskSpace);
  top: var(--deskSpace);
  z-index: 3;
  width: 30px;
  height: 30px;
  background-size: 24px 24px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/icon-close-red.svg);
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}
.navigation__close:hover,
.navigation__close:focus {
  background-image: url(/images/icon-close-darkergray.svg);
}
.navigationIsOpen .navigation__close {
  transform: scale(1);
  opacity: 1;
  transition: all 0.2s 0.2s;
}
.section--header div.navi {
  --linkcolor-hov: #75A7AD;
  float: left;
}
.section--header div.navi .navigation__toggle {
  display: none;
}
.section--header div.navi > .item {
  float: left;
}
.section--header div.navi > .item.accentcolor--one {
  --linkcolor-hov: #75A7AD;
}
.section--header div.navi > .item.accentcolor--two {
  --linkcolor-hov: #CE7420;
}
.section--header div.navi > .item.accentcolor--three {
  --linkcolor-hov: #666F5D;
}
.section--header div.navi > .item:has(.navigation__toggle.is-active) > .menu,
.section--header div.navi > .item:hover > .menu,
.section--header div.navi > .item:focus > .menu {
  color: var(--linkcolor-hov);
}
.section--header div.navi > .item > .menu {
  display: block;
}
.navigation div.sub1 {
  float: left;
  width: 100%;
  margin-bottom: 16px;
}
.navigation div.sub1 > .item {
  margin-left: 36px;
  position: relative;
}
.navigation div.sub1 > .item.init {
  margin-left: 0;
}
.navigation div.sub1 > .item.path > .navigation__toggle {
  color: var(--linkcolor);
}
.navigation div.sub1 > .item.item-empty > .navigation__toggle {
  display: none;
}
.navigation div.sub1 > .item.item-empty > .menu {
  display: block;
}
.navigation div.sub1 > .item > .navigation__toggle {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--sitecolor);
  font-weight: 800;
}
.navigation div.sub1 > .item > .navigation__toggle:hover,
.navigation div.sub1 > .item > .navigation__toggle.is-active {
  color: var(--linkcolor);
}
.navigation div.sub1 > .item > .menu {
  text-decoration: none;
  color: var(--linkcolor);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.navigation div.sub1 > .item > .menu:hover,
.navigation div.sub1 > .item > .menu:focus,
.navigation div.sub1 > .item > .menu.path {
  color: var(--linkcolor-hov);
}
.navigation div.sub2 {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.navigation div.sub2 > .item {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.navigation div.sub2 > .item.item-empty > .navigation__toggle {
  display: none;
}
.navigation div.sub2 > .item > .navigation__toggle {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  cursor: pointer;
  background-color: var(--linkcolor);
  -webkit-mask-size: 14px 10px;
          mask-size: 14px 10px;
  -webkit-mask-position: 100% 50%;
          mask-position: 100% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/nav-toggle.svg);
          mask-image: url(/images/nav-toggle.svg);
}
.navigation div.sub2 > .item > .navigation__toggle.is-active {
  background-color: var(--linkcolor-hov);
}
.navigation div.sub2 > .item > .menu {
  float: left;
  width: 100%;
  text-decoration: none;
  color: var(--linkcolor);
}
.navigation div.sub2 > .item > .menu:hover,
.navigation div.sub2 > .item > .menu:focus,
.navigation div.sub2 > .item > .menu.path {
  color: var(--linkcolor-hov);
}
.navigation div.sub3 {
  float: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.navigation div.sub3 > .item {
  margin-top: 8px;
}
.navigation div.sub3 > .item.init {
  margin-top: 0;
}
.navigation div.sub3 > .item > .menu {
  float: left;
  width: 100%;
  text-decoration: none;
  color: var(--linkcolor);
}
.navigation div.sub3 > .item > .menu:hover,
.navigation div.sub3 > .item > .menu:focus,
.navigation div.sub3 > .item > .menu.path {
  color: var(--linkcolor-hov);
}
/*# sourceMappingURL=./screen-large.css.map */