@charset "UTF-8";

/* ボタンの基本スタイルと追従設定 */
.floating-line-btn {
  position: fixed;       /* 画面上に固定（追従） */
  bottom: 60px;          /* 画面下からの距離 */
  right: 30px;           /* 画面右からの距離 */
  z-index: 9999;         /* 他の要素より常に一番手前に表示 */
  
  /* 見た目のデザイン */
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #06C755; /* LINEの公式ブランドカラー */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;   /* 角を丸くする */
  text-decoration: none; /* リンクの下線を消す */
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 少し影をつける */
  transition: transform 0.3s ease; /* ホバー時のアニメーション準備 */
}

/* マウスカーソルが乗ったときの動き */
.floating-line-btn:hover {
  transform: translateY(-3px); /* 少し上に浮くような動き */
}

/* スマートフォン向けの微調整（画面幅が768px以下の場合） */
@media screen and (max-width: 768px) {
  .floating-line-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 14px;
  }
}
