@charset "UTF-8";
.show-pc {
  display: block;
}
  
#fixed-banner {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 45px;
  cursor: pointer;
}

#fixed-banner img {
  width: 300px;
}

#fixed-banner-close {
  position: absolute;
  background: url("/image/flagship_open_banner/banner_close_PC.png") no-repeat;
  background-size: cover;
  border-radius: 50%;
  transform: translate(0, -50%);
  right: -20px;
  width: 40px;
  height: 40px;
}

/* ホバーアニメーション削除 */
#fixed-banner:hover img {
	opacity: unset !important;
}

.fadeout {
  animation-name : fadeout;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
  .show-pc {
    display: none;
  }
}
