/* ボーダーの太さ */
.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

/* アンダーライン */
.u {
  text-decoration: underline;
}

/* アンダーライン */
.b {
  font-weight: bold;
}

#back-to-top {
  position: fixed;
  bottom: 20px;      /* 画面下からの距離 */
  right: 20px;       /* 画面右からの距離 */
  padding: 10px 15px;
  background: #333;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

#back-to-top:hover {
  opacity: 1;
}

#back-to-top {
  z-index: 9999;
}
