.scroll {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 6px 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll p {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 70px;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 0px 0px 110px;
  color: #444;
  font-size: 12px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll p:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #ddd;
}

.scroll p:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #444;
}

.scroll p:hover {
  opacity: .5;
}

#pattern p:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*#####################
# Tablet
#####################*/

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .scroll {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 6px 40px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .scroll p {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 70px;
    left: 0;
    z-index: 2;
    width: 20px;
    padding: 0px 0px 110px;
    color: #444;
    font-size: 20px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
    margin: auto;
  }
  .scroll p:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 100px;
    background: #ddd;
  }
  .scroll p:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 100px;
    background: #444;
  }
}

/*#####################
# PC
#####################*/

@media screen and (min-width: 1025px) {

}
