/* 明朝体タイトル強化 */
/* 基本的な見出しサイズの底上げ */
h1 {
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.08em !important;
}

h2 {
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.08em !important;
}

h3 {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.06em !important;
}

h4 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em !important;
}

h5 {
    font-size: 1.3rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em !important;
}

h6 {
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em !important;
}

/* セクションタイトルの特別強化 */
.section-title {
    font-size: 2.8rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 50px !important;
    line-height: 1.3 !important;
}

/* ヒーロータイトルの特別強化 */
.hero-title {
    font-size: 3rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.08em !important;
    line-height: 1.4 !important;
}

/* モバイルでの調整 */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    h4 {
        font-size: 1.3rem !important;
    }
    
    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 35px !important;
    }
    
    .hero-title {
        font-size: 2.4rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.6rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
}