#expo2025topbnr {
  position: fixed;
  right: 40px;
  bottom: 115px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
#expo2025topbnr.is_show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  #expo2025topbnr {
    width: calc(100vw - 30px);
    padding: 0 15px;
    left: 50%;
    bottom: 80px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.expo2025topbnr_inr {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-shadow: 0 3px 12px rgba(80,176,235,0.3);
          box-shadow: 0 3px 12px rgba(80,176,235,0.3);
  border-radius: 16px;
}
.expo2025topbnr_close {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  margin-left: auto;
  background: #e12a23;
  border: none;
  cursor: pointer;
  z-index: 100001;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .expo2025topbnr_close {
    top: -16px;
    right: -10px;
  }
}
.expo2025topbnr_close::before,
.expo2025topbnr_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.expo2025topbnr_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.expo2025topbnr_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.expo2025topbnr_img {
  width: 100%;
}