/*ピタクルポップアップ用*/
.popup-banner {
    position: fixed;
    bottom: 180px;
    right: 20px;
    width: 300px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: visible;
    background: transparent;
}

@media (max-width: 767px) {
    .popup-banner {
        top: auto;
        left: 10px;
        bottom: 150px;
        /*width: 90vw;*/
        max-width: 150px;   
  }
}

/* 表示時 */
.popup-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 閉じるボタン */
.banner-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 24px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

@media (max-width: 767px) {
    .banner-close {
        width: 16px;
        /*height: 16px;*/
        font-size: 14px;
        top: -8px;
        right: -8px;
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
  }
}

/* バナー画像 */
.banner-image {
    display: block;
    /*width: 100%;
    height: auto;*/
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}