/* エラー通知（上部固定） */
.kitei-frontend-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    padding: 12px 40px 12px 12px;
    background: #fff;
    border-left: 4px solid #d63638;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.5s ease-out;
    transform: translateY(0);
    cursor: pointer;
}

.kitei-frontend-notice.minimized {
    transform: translateY(-85%);
}

.kitei-frontend-notice h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #d63638;
}

.kitei-frontend-notice ul {
    margin: 10px 0;
    padding-left: 20px;
}

.kitei-frontend-notice li {
    margin: 5px 0;
    font-size: 13px;
    line-height: 1.5;
}

.kitei-frontend-notice p {
    margin: 10px 0 0 0;
    font-size: 13px;
}

.kitei-frontend-notice-dismiss {
    position: absolute;
    top: 0;
    right: 1px;
    padding: 9px;
    background: none;
    border: none;
    color: #787c82;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
}

.kitei-frontend-notice-dismiss:hover {
    color: #d63638;
}
