@charset "UTF-8";
.pc-ad-overlay {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .95);
  text-align: center;
  z-index: 100;
}
.pc-ad-overlay__inner {
  position: relative;
  display: inline-block;
  padding: 8px 32px 8px 0;
  width: 100%;
}
.pc-ad-overlay__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.pc-ad-overlay__close::before,
.pc-ad-overlay__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #666;
  content: '';
}
.pc-ad-overlay__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.pc-ad-overlay__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
