@charset "utf-8";
.scrollButton {
  position:fixed;
  right:30px;
  bottom:30px;
  width: 80px;
  height: 80px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column-reverse;
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  transform: translateY(110px);
  transition: .7s;
  opacity:0.9;
  z-index: 100;
}
.scrollButton::before {
  content:"";
  position:absolute;
  width:50%;
  height:50%;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  background:#512d9a;
  transform:rotate(45deg);
  z-index: -1;
}
.scrollButton::after {content:"▲";font-size: 1.5rem;}
.scrollButton.inview {transform: translateY(0px);}
ul.socialList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 2em;
    height: 8em;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 1em;
    z-index: 100;
}
ul.socialList li {
  font-size: 0.6em;
  text-align: center;
  color: #9b59a7;
  margin: 0.5em 0;
}
ul.socialList li:nth-child(1)::after {
  content:"";
  display:block;
  width:1px;
  height:1em;
  background: #9b59a7;
  margin:auto;
}

@media screen and (max-width:999px){
  .is-open ul.socialList {
  mix-blend-mode: color-dodge;
  }
}
@media screen and (max-width:600px){
  ul.socialList{
    margin-bottom:5em;
    right: 1.6em;
  }
}