@charset "UTF-8";

/* スクロールトップボタンのスタイル */
#scroll-to-top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 45px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #ffffff;
  border: 2px solid #0FABB5;
  /*背景色は任意で変更*/
  color: #0FABB5;
  /*文字色は任意で変更*/
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 9999;
  /* 必要に応じてz-indexの値を調整してください */
}


#scroll-to-top a {
  color: #0FABB5;
  text-decoration: none;

  .triangle {
    margin-top: -10px;
  }

  .top {
    font-weight: 700;
    margin-top: -30px;
  }
}

/* 固定されたスクロールトップボタンのスタイル */
#scroll-to-top.fixed {
  position: fixed !important;
  bottom: 100px !important;
  top: unset !important;
}