/* ==========================================
   中国語版専用スタイル
   ========================================== */

/* 中国語フォントの最適化 */
body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', '微软雅黑', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.service-card h3,
.feature-item h3 {
    font-family: 'Noto Serif SC', 'SimSun', '宋体', serif;
}

/* 言語切替ボタンのスタイル */
.language-switch {
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 16px !important;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.language-switch:hover {
    background: var(--primary-gold);
    color: var(--night-sky) !important;
}

/* 中国語テキストの行間調整 */
.hero-subtitle,
.section-subtitle,
.about-text p,
.service-card p,
.feature-item p {
    line-height: 2;
}

/* 香港バッジのスタイル強化 */
.service-badge {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e8c547 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .language-switch {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}
