/* ==========================================================================
   Fixed Banner Settings
   ========================================================================== */
.fixed-banner-pc {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: block;
    transition: opacity 0.3s ease;
}

.fixed-banner-pc:hover {
    opacity: 0.8;
}

.fixed-banner-pc img {
    display: block;
    max-width: 150px;
    height: auto;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-banner-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: none;
    text-align: center;
}

.fixed-banner-sp.type-image img {
    display: block;
    width: 100%;
    height: auto;
}

.fixed-banner-sp.type-text {
    padding: 15px;
    color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-banner-sp.type-text .banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
}
