@charset "UTF-8";


/* top↑ボタン */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
  /* ボタンのデザイン設定 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3B6792;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transform: translateY(-4px); /* 上に4px持ち上げる */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* 影を濃くする */

    
  /* アニメーションと非表示設定 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* JavaScriptで付与する表示用クラス */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
/* top↑ボタン…ホーバー時にふわっと */ 
.back-to-top:hover {
  background-color: #275B8B;
  transform: translateY(-2px); /* 上に4px持ち上げる */
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.15); /* 影を濃くする */
}


/* スムーススクロールの設定 */
html {
  scroll-behavior: smooth;
}