/* SEO最適化のためのカスタムスタイル */

/* 読み込み速度向上のための最適化 */
.lazy-load {
    transition: opacity 0.3s;
    opacity: 0;
}

.lazy-load.loaded {
    opacity: 1;
}

/* 表示速度向上のためのアニメーション最適化 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* プリント時のスタイル */
@media print {
    .seminar-container, 
    #menubar_hdr, 
    .pagetop {
        display: none !important;
    }
}

/* アクセシビリティ改善 */
:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: more) {
    body {
        color: #000;
        background: #fff;
    }
    a {
        color: #0000EE;
    }
    a:visited {
        color: #551A8B;
    }
}
