<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.scrolldown {
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*遏｢蜊ｰ縺ｮ蜍輔″1遘偵°縺代※豌ｸ驕�縺ｫ繝ｫ繝ｼ繝�*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*荳九°繧峨�霍晞屬縺悟､牙喧縺励※蜈ｨ菴薙′荳銀�荳岩�荳九↓蜍輔￥*/
@keyframes arrowmove {
  0% {
    bottom: 2%;
  }
  50% {
    bottom: 6%;
  }
  100% {
    bottom: 2%;
  }
}

/*Scroll繝�く繧ｹ繝医�謠丞�*/
.scrolldown span {
  /*謠冗判菴咲ｽｮ*/
  margin-right: 10px;
  /*繝�く繧ｹ繝医�蠖｢迥ｶ*/
  color: #eee;
  font-size: 1rem;
  letter-spacing: 0.5em;
}

/* 遏｢蜊ｰ縺ｮ謠丞� */
.scrolldown:before {
  content: "";
  /*謠冗判菴咲ｽｮ*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*遏｢蜊ｰ縺ｮ蠖｢迥ｶ*/
  width: 5px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}

.scrolldown:after {
  content: "";
  /*謠冗判菴咲ｽｮ*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*遏｢蜊ｰ縺ｮ蠖｢迥ｶ*/
  width: 5px;
  height: 50px;
  background: #eee;
}
</pre></body></html>