@charset "UTF-8";

/* 1. Google Fonts の読み込み（CSSの先頭に記述） */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* 2. 全要素へのフォント強制適用 */
html, body, div, p, a, span, li, h1, h2, h3, h4, h5, h6, button, input, textarea {
    font-family: 'Noto Sans SC', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 3. 太さの統一設定 */
/* 標準の太さ */
body, p, li, a, span {
    font-weight: 400 !important;
}

/* 見出し・強調の太さ */
b, strong, h1, h2, h3, h4, .main-copy {
    font-weight: 700 !important;
}

/* 4. 既存の特定パーツの微調整（必要に応じて） */
.slider-container .main-copy {
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}