/* annoy-ad.css */
.annoy-ad{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;

  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);

  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.annoy-ad.is-show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.annoy-ad__inner{
  padding: 14px 44px 14px 14px; /* 右に×分の余白 */
}

.annoy-ad__label{
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;

  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: rgba(0,170,255,.6);

  margin-bottom: 8px;
}

.annoy-ad__title{
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 6px 0;
}

.annoy-ad__text{
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0,0,0,.78);
}

.annoy-ad__cta{
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
  background: #2FA66F;
  color: #fff;
}

/* ここがイライラの核：小さい×（でも押せる） */
.annoy-ad__close{
  position: absolute;
  top: 10px;
  right: 10px;

  width: 22px;
  height: 22px;

  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.92);
  color: rgba(0,170,250,.65);

  font-size: 14px;
  line-height: 20px;
  text-align: center;

  cursor: pointer;
}
