/**
 * Cookie同意バナー スタイル
 */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1050; /* Bootstrapのsticky-top(1020)より上、Modal(1055)より下に配置 */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-consent-banner.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-consent-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.cookie-consent-content a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-content a:hover {
    text-decoration: none;
}

/* モバイル対応の調整 */
@media (max-width: 767.98px) {
    .cookie-consent-banner {
        padding: 0.5rem 0;
    }
    .cookie-consent-content p {
        font-size: 0.85rem;
        text-align: center;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-consent-buttons .btn {
        flex: 1;
        max-width: 150px;
    }
}

/* 既存の「資料請求ボタン」との重なり防止 */
/* 資料請求ボタン(request-button)が表示されている場合、バナーがある時は上にずらす必要があるかもしれないが、
   バナーは画面全体を覆うため、バナーが表示されている間は資料請求ボタンは見えなくても問題ない（またはz-indexでバナーを上にする）。
   今回はバナーを最優先(z-index: 1050)に設定し、ユーザーが回答するまで操作を促すようにします。
*/
