@charset "utf-8";

body .floating-banner {
  /* 画面下部に固定 */
  position: fixed;
  bottom: 60px; /* 下からの距離 */
  left: 50%;
  transform: translateX(-50%); /* 中央寄せの魔法 */
  z-index: 9999; /* 最前面に表示 */
  
  /* バナーの見た目調整 */
  width: 90%; /* スマホで見やすい幅 */
  max-width: 200px; /* パソコンで大きくなりすぎないように */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

body .floating-banner img {
  width: 100%;
  display: block;
}

/* 閉じるボタンのスタイル */
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}


