.button {
  background-color: var(--buttonBackground1);
  font-size: 22px;
  line-height: 1.27272727;
  font-family: inherit;
  cursor: pointer;
  color: var(--buttonColor);
  font-weight: 400;
  padding: 14px 60px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  position: relative;
}
.button:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 60px;
  height: 100%;
  background-color: var(--buttonColor);
  mask-size: auto 20px;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
}
.button:hover,
.button:focus,
.unit--isAnchor:hover .button {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
}
.button:hover:before,
.button:focus:before,
.unit--isAnchor:hover .button:before {
  background-color: var(--buttonColorHover);
}
@media (max-width: 767px) {
  .button {
    padding-right: 16px;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.area--one .unit {
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}
.area--one .unitOne--1-2 {
  width: calc(50% - 30px);
}
.area--one .unitThree--1-2 {
  width: calc(50% - 30px);
}
.area--one .unitFour {
  width: calc(50% - 30px);
}
.area--one .unit--form .unit__body {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.area--one .unit--form .part {
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
}
.area--one .unit--form .part--1-2 {
  width: calc(50% - 30px);
}
.area--one .unit--slideshow {
  width: calc(50% - 30px);
}
/*# sourceMappingURL=./screen-medium.css.map */