/* 
    Created on : 2026年1月28日, 12:26:57
    Author     : sarkuya
*/

:root {
    --h1-font-size: 2em;
    --h2-font-size: 1.5em;
    --h3-font-size: 1.17em;
    --h4-font-size: 1em;
    --h5-font-size: 0.83em;
    --h6-font-size: 0.67em;
}

body > h1,
main > h1,
article > h1 {
    font-size: var(--h1-font-size);
}

section {
    > h1 {
        font-size: var(--h2-font-size);
    }
    
    > section {
        > h1 {
            font-size: var(--h3-font-size);
        }
        
        > section {
            > h1 {
                font-size: var(--h4-font-size);
            }

            > section {
                > h1 {
                    font-size: var(--h5-font-size);
                }

                > section {
                    > h1 {
                        font-size: var(--h6-font-size);
                    }
                }
            }
        }
    }
}