/* カスタムCSS - Tailwind CSSの補完 */

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* アニメーション削除済み */

/* カスタムグラデーション */
.gradientText {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ホバーエフェクト削除済み */

/* カスタムシャドウ */
.customShadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.customShadowHover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* モバイルメニューのアニメーション削除済み */

/* カスタムボタンスタイル（アニメーション削除） */
.btnPrimary {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btnPrimary:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.btnSecondary {
    border: 2px solid #10b981;
}

.btnSecondary:hover {
    background: #10b981;
}

/* カードホバーエフェクト削除済み */

/* ローディングアニメーション削除済み */

/* レスポンシブテキスト */
@media (max-width: 640px) {
    .responsiveText {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}

@media (min-width: 641px) {
    .responsiveText {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media (min-width: 1024px) {
    .responsiveText {
        font-size: 3rem;
        line-height: 1.2;
    }
}

/* アクセシビリティ */
.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* フォーカススタイル */
.focusVisible:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* ダークモード対応（将来の拡張用） */
@media (prefers-color-scheme: dark) {
    .darkMode {
        background-color: #1f2937;
        color: #f9fafb;
    }
}

/* プリントスタイル */
@media print {
    .noPrint {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .highContrast {
        border: 2px solid currentColor;
    }
}

/* モーション軽減設定削除済み */
