@charset "UTF-8";

/* スクロールトップボタンのスタイル */
.scroll-to-top {
  /* 必要に応じてz-indexの値を調整してください */
  /* position: fixed;
  right: 100px;
  top: 950px;
  z-index: 9999;

  img {
    width: 60px;
  } */
}

#scroll-to-top {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 100px;
  width: 70px;
  height: 70px;
  /* background-color: #b5211f; */
  /*背景色は任意で変更*/
  /* color: #fff; */
  /*文字色は任意で変更*/
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 9999;

  /* 必要に応じてz-indexの値を調整してください */
  img {
    width: 70px;
    height: 70px;
  }
}

/* #scroll-to-top:hover {
  background-color: #f3817f;
  /*背景色は任意で変更*/
}

*/
/* #scroll-to-top a {
  color: #fff;
  text-decoration: none;
} */

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