.button {
  width: 100%;
  background-color: transparent;
  font-size: clamp(1.25rem, 0.46948357vw + 1.13996479rem, 1.5625rem);
  line-height: clamp(1.375rem, 0.37558685vw + 1.28697183rem, 1.625rem);
  font-family: inherit;
  cursor: pointer;
  color: #000;
  padding: 20px 168px 20px 30px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  border: none;
  filter: none !important;
  display: flex;
  align-items: center;
  min-height: 90px;
  position: relative;
}
.button:before,
.button:after {
  content: '';
  position: absolute;
  height: auto;
}
.button:before {
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid #000;
  border-radius: 40px;
  transition-property: all;
  transition-duration: 0.24s;
}
.button:after {
  right: 0;
  top: 0;
  width: 168px;
  height: 100%;
  background-color: #000;
  mask-size: 108px auto;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right-large.svg);
}
.button:hover:before {
  filter: blur(4px);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .button {
    padding: 20px 20px 88px 20px;
  }
  .button:after {
    top: unset;
    right: 20px;
    bottom: 20px;
    width: 108px;
    height: 44px;
    mask-position: 100% 100%;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-large.css.map */