@charset "UTF-8";
.sns {
  width: 100%;
  text-align: center;
  margin: 0px auto;
  position: sticky;
  top: 0;
  overflow-y: auto;
  overflow-x: hidden;  
  max-height: 100vh;
}

/* スクロールバー全体のスタイル */
.sns::-webkit-scrollbar {
  width: 10px;
}

/* スクロールバーのハンドル部分（動かす部分）のスタイル */
.sns::-webkit-scrollbar-thumb {
  background-color: #505050;  /* 完全に不透明な濃いグレー */
  border-radius: 4px;  
  background-clip: border-box;  
}

/* スクロールバーのトラック部分（背景部分）のスタイル */
.sns::-webkit-scrollbar-track {
  background-color: lightgrey;  
  border-radius: 4px;
}
/* Firefox用のスクロールバーのスタイル */
.sns {
  scrollbar-width: thin;
  scrollbar-color: #505050 lightgrey;
}

.twitter-button:hover {
  background-color: #5EA8D4;
}

.line-button {
  display: block;
  width: 100%;
  background-color: #28ad28c9;
  color: #ffffff;
  padding: 10px 0;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
  margin: 5px 0; /* ボタン間の上下マージンを5pxに設定 */
}

.line-button:hover {
  background-color: #6AB96A;
}

.top-button {
  display: block;
  width: 100%;
  background-color: #747474;
  color: #ffffff;
  padding: 4px 0;
  text-decoration: none;
  font-family: Arial, sans-serif;

  transition: background-color 0.3s ease;
  text-align: center;
  margin: 4px 0; /* ボタン間の上下マージンを5pxに設定 */
}

.top-button:hover {
  background-color: #2a2a2a;
}
