/* ボタンのCSS */

/* ボタンサイズを揃えるために使用 */
spandeficon { 
  height: 60px;
  width: 60px;
  display: block;
  position: relative;
  text-align: center;
  margin: auto;
  }

/* 右上ボタン位置を揃えるために使用 */
upbtnposition {
  height: 200px;
  width: 80px;
  display: block;
  position: relative;
  position: fixed;
  right: 5%;
  top: 45px;
  }

/* 右下ボタン位置を揃えるために使用 */
downbtnposition {
  height: 200px;
  width: 80px;
  display: block;
  position: relative;
  position: fixed;
  right: 5%;
  bottom: 45px;
  }

/* ここから上ボタンのCSS */
.upbtn-push {
  position: absolute;
  top: 0px;
  display: inline-block;
  max-width: 180px;
  text-align: left;
  background-color: #e6eae6;
  font-size: 16px;
  color: #719bad;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  border-bottom: 4px solid #719bad;
}

.upbtn-push:hover {
  background-color: #d9e1df;
}

.upbtn-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

/* ここから下ボタンのCSS */
.downbtn-push {
  position: absolute;
  bottom: 0px;
  display: inline-block;
  max-width: 180px;
  text-align: left;
  background-color: #e6eae6;
  font-size: 16px;
  color: #719bad;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  border-bottom: 4px solid #719bad;
}

.downbtn-push:hover {
  background-color: #d9e1df;
}

.downbtn-push:active {
  transform: translateY(4px);
  border-bottom: none;
}

/* ボタンアイコン */
/* ログアウト */
logoutspan {
  height: 40px;
  width: 40px;
  display: block;
  position: relative;
  align: center;
  margin: auto;
  } 

.logoutSpan1 {
  width: 31px;
  }

.logoutSpan1:before {
  content: '';
  height: 0;
  width: 0;
  display: block;
  border: 12px transparent solid;
  border-right-width: 0;
  border-left-color: #719bad;
  position: absolute;
  top: 0;
  right: 0px;
  }

.logoutSpan1:after {
  content: '';
  height: 25px;
  width: 14px;
  display: block;
  border-top: 5px #719bad solid;
  border-left: 5px #719bad solid;
  border-radius: 20px 0 0 0;
  -webkit-border-radius: 20px 0 0 0;
  -moz-border-radius: 20px 0 0 0;
  position: absolute;
  top: 10px;
  left: 0px;
  }

/* トップ */
topspan {
  height: 40px;
  width: 40px;
  display: block;
  position: relative;
  align: center;
  margin: auto;
  }

.topSpan1 {
  overflow: hidden;
  width: 30px;
  }

.topSpan1:before {
  content: '';
  height: 15px;
  width: 15px;
  display: block;
  border: 5px solid #719bad;
  border-left-width: 0;
  border-bottom-width: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  left: 5px;
  }

.topSpan1:after {
  content: '';
  height: 35px;
  width: 6px;
  display: block;
  background: #719bad;
  position: absolute;
  top: 5px;
  left: 12px;
  }

/* ホーム */
homespan {
  height: 40px;
  width: 40px;
  display: block;
  position: relative;
  align: center;
  margin: auto;
  } 

.homeSpan1 {
  width: 40px;
  height: 40px;
  display: block;
  }

.homeSpan1:before {
  content: '';
  height: 0px;
  width: 0px;
  display: block;
  position: absolute;
  top: 12px;
  left: 6px;
  border: 14px solid transparent;
  border-bottom-color: #719bad;
  border-top: 0;
  transform: scale(1,0.8);
  -webkit-transform: scale(1,0.8);
  -moz-transform: scale(1,0.8);
  -o-transform: scale(1,0.8);
  -ms-transform: scale(1,0.8);
  }

.homeSpan1:after {
  content: '';
  height: 12px;
  width: 11px;
  display: block;
  position: absolute;
  top: 24px;
  left: 7px;
  border: 8px #719bad solid;
  border-top-width: 4px;
  border-bottom: 0;
  }

.homeSpan2:before {
  content: '';
  height: 10px;
  width: 5px;
  display: block;
  position: absolute;
  top: 6px;
  left: 28px;
  background: #719bad;
  }

.homeSpan2:after {
  content: '';
  height: 24px;
  width: 23px;
  border-top: 5px #719bad solid;
  border-right: 5px #719bad solid;
  position: absolute;
  top: 6px;
  left: 6px;
  transform: scale(1,0.8) rotate(-45deg);
  -webkit-transform: scale(1,0.8) rotate(-45deg);
  -moz-transform: scale(1,0.8) rotate(-45deg);
  -o-transform: scale(1,0.8) rotate(-45deg);
  -ms-transform:scale(1,0.8) rotate(-45deg);
  }

