@charset "UTF-8";
/*
 * banner.css
 */
.exhibition_banner {
  display: none;
  position: fixed;
  right: 30px;
  top: 145px;
  min-width: 350px;
  background: #fff;
  min-height: 100px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
  z-index: 50;
  border: 1px solid #f1f1f1;
}
.banner_close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  z-index: 9999;
  top: -10px;
  right: -10px;
  text-align: right;
  border: 1px solid #fff;
  background: #004098;
  cursor: pointer;
  transition: background-color 0.3s;
  &:hover {
    background-color: #4d96fd;
  }
}
.banner_close span {
  width: 48%;
  height: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
  position: absolute;
}
.banner_close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.banner_cont {}
.exhibition_banner h2 {
  font-family: termina, Arial, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #004098;
  font-weight: bold;
  font-size: 1.8rem;
}
.exhibition_banner p {}
.exhibition_banner .banner_cont span {
  display: block;
  text-align: right;
  color: #004098;
  text-decoration: underline;
  margin-top: 10px;
}
.exhibition_banner a {
  padding: 15px;
  display: block;
  min-height: 100px;
  transition: all 0.3s;
  &:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .exhibition_banner {
    top: auto;
    right: calc(1rem + 70px);
    left: 1rem;
    bottom: 215px;
    min-width: 0;
  }
}