/** SHARE SNS **/
.share-button {
  position: relative;
  width: 50px;
  margin: 0
}
.toggle {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 10;
  display: block;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  color: #C8C7C0;
  box-shadow: inset 0 0 0 1px #C8C7C0;
}
.toggle:hover {
  box-shadow: inset 0 0 0 2px #C8C7C0;
}
.toggle:after {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  content: "";
  background-image: url(../../assets/images/sns-icon/icon-share.svg);
  background-color: rgba(255,255,255, .2);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.toggle-input {
  display: none;
}
.toggle-input:checked + .toggle:after, .toggle-input:checked + .toggle:before {
  background-color: #C8C7C0;
  content: "";
  height: 3px;
  width: 30px;
  position: absolute;
  left: 10px;
  top: 23px;
  background-image: none;
}
.toggle-input:checked + .toggle:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: bar1 0.3s forwards;
  animation: bar1 0.3s forwards;
}
.toggle-input:checked + .toggle:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: bar2 0.3s forwards;
  animation: bar2 0.3s forwards;
}

.network-list li {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.43, 1.17, 0.69, 1.24);
  transition: all 0.25s cubic-bezier(0.43, 1.17, 0.69, 1.24);
}
.network-list a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  text-indent: 120%;
  text-decoration: none;
}
.network-list a:hover {
  opacity: 1 !important;
}
.network-list a:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  font-family: 'FontAwesome';
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 50px;
  text-indent: 0;
  box-shadow: inset 0 0 0 1px #C8C7C0;
}
.network-list .twitter a:before {
  content: "";
  background: url(../../assets/images/sns-icon/icon-tw.svg);
  background-color: rgba(255,255,255, .2);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: #00C3F3;
}
.network-list .twitter a:hover:before {
  box-shadow: inset 0 0 0 2px #00C3F3;
}
.network-list .facebook a:before {
  content: "";
  background: url(../../assets/images/sns-icon/icon-fb.svg);
  background-color: rgba(255,255,255, .2);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: #2C609B;
}
.network-list .facebook a:hover:before {
  box-shadow: inset 0 0 0 2px #2C609B;
}
.network-list .hatenablog a:before {
  content: "";
  background: url(../../assets/images/sns-icon/icon-hb.svg);
  background-color: rgba(255,255,255, .2);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: #00A4DE;
}
.network-list .hatenablog a:hover:before {
  box-shadow: inset 0 0 0 2px #00A4DE;
}
.network-list .line a:before {
  content: "";
  background: url(../../assets/images/sns-icon/icon-li.svg);
  background-color: rgba(255,255,255, .2);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: #EC3F25;
}
.network-list .line a:hover:before {
  box-shadow: inset 0 0 0 2px #00B900;
}

input:checked ~ .network-list li {
  opacity: 1;
}
input:checked ~ .network-list li:nth-child(1) {
  top: 60px;
}
input:checked ~ .network-list li:nth-child(2) {
  top: 120px;
}
input:checked ~ .network-list li:nth-child(3) {
  top: 180px;
}
input:checked ~ .network-list li:nth-child(4) {
  top: 240px;
}

@-webkit-keyframes bar1 {
  0% {
    content: "\f1e0";
    width: 46px;
    height: 50px;
    background-color: transparent;
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    top: 0;
    left: 0;
    opacity: 1;
  }
  50% {
    background-color: transparent;
    content: "\f1e0";
    width: 46px;
    height: 50px;
    top: 0;
    left: 0;
    -webkit-transform: rotate(0deg) scale(0.2);
    transform: rotate(0deg) scale(0.2);
    opacity: 0;
  }
  50.001% {
    background-color: #fff;
    left: 10px;
    top: 22px;
    content: "";
    height: 3px;
    width: 30px;
  }
  60% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
  }
}

@keyframes bar1 {
  0% {
    content: "\f1e0";
    width: 46px;
    height: 50px;
    background-color: transparent;
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    top: 0;
    left: 0;
    opacity: 1;
  }
  50% {
    background-color: transparent;
    content: "\f1e0";
    width: 46px;
    height: 50px;
    top: 0;
    left: 0;
    -webkit-transform: rotate(0deg) scale(0.2);
    transform: rotate(0deg) scale(0.2);
    opacity: 0;
  }
  50.001% {
    background-color: #fff;
    left: 10px;
    top: 22px;
    content: "";
    height: 3px;
    width: 30px;
  }
  60% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
  }
}
@-webkit-keyframes bar2 {
  0% {
    background-color: transparent;
    -webkit-transform: rotate(0deg) scale(0.2);
    transform: rotate(0deg) scale(0.2);
    opacity: 0;
  }
  50% {
    background-color: transparent;
    -webkit-transform: rotate(0deg) scale(0.2);
    transform: rotate(0deg) scale(0.2);
    opacity: 0;
  }
  60% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
  }
}
@keyframes bar2 {
  0% {
    background-color: transparent;
    -webkit-transform: rotate(0deg) scale(0.2);
    transform: rotate(0deg) scale(0.2);
    opacity: 0;
  }
  50% {
    background-color: transparent;
    -webkit-transform: rotate(0deg) scale(0.2);
    transform: rotate(0deg) scale(0.2);
    opacity: 0;
  }
  60% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
  }
}