@charset "UTF-8";
/* :root {
    --button_area_65: max(55px, 4.76vw);
} */
.popup-banner {
  position: fixed; /* ①固定 */
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 310px;
  width: 100%;
  border: solid 1px #000000;
  background: #ffffff;
  border-radius: 0.5rem;
  /* スクロールでふわっと出すための設定 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  /* 表示された時のクラス */
}
.popup-banner.is-active {
  opacity: 1;
  visibility: visible;
}
.popup-banner .popup-banner-inner {
  position: relative;
}
.popup-banner .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  z-index: 120; /* バナーのコンテンツより手前に表示 */
  /* ×印の作成 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-banner {
  /* 1pxの線で×を作る */
}
.popup-banner .close-btn::before, .popup-banner .close-btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #000000;
}
.popup-banner .close-btn::before {
  transform: rotate(45deg);
}
.popup-banner .close-btn::after {
  transform: rotate(-45deg);
}
.popup-banner a {
  padding: 35px 0 10px;
  display: block;
}
.popup-banner .popup-title-wrap {
  width: 80%;
  margin: 0 auto;
  text-align: justify;
  line-height: 0.3;
}
.popup-banner .popup-title {
  font-size: clamp(0.875rem, 0.795rem + 0.17vw, 0.938rem);
  display: inline;
}
.popup-banner svg {
  width: 16px;
  object-fit: cover;
  display: inline-block;
  padding-top: 9px;
}
.popup-banner .detail {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding-right: 10%;
  margin-top: 10px;
}
.popup-banner .detail span {
  font-size: 13px;
  display: block;
}
.popup-banner .arrow {
  /* position: absolute;
  bottom: 0px;
  right: -75px;
  height: auto; */
  display: block;
  margin-left: 3px;
}
.popup-banner img {
  /* width: var(--button_area_65); */
  width: max(50px, 4vw);
  object-fit: contain;
  transition: opacity 0.35s ease;
  margin-bottom: 10px;
}

@media screen and (max-width: 770px) {
  .popup-banner {
    right: 10px;
    bottom: 10px;
    width: clamp(14.375rem, 12.143rem + 11.16vw, 17.5rem);
    max-width: 250px;
  }
  .popup-banner .close-btn {
    right: 0;
    top: 0;
  }
  .popup-banner a {
    padding: 25px 0 10px;
  }
  .popup-banner .popup-title-wrap {
    width: 85%;
  }
  .popup-banner .detail {
    padding-right: 7.5%;
    margin-top: 10px;
  }
}/*# sourceMappingURL=popup_style.css.map */