/*----- フォントサイズハック -----*/

/* IE */
body {
    font-size:80%; 
}

h2{
    font-size: 100%;
}

p{
    font-size: 80%;
}

address{
    font-size: 90%;
}

.contents-login a{
    font-size: 70%;
}

/* IE6 */
*html h2{
    font-size: 100%; 
}

*html p{
    font-size: 80%;
}

*html address{
    font-size: 90%;
}

*.contents-login a{
    font-size: 70%;
}

/*その他*/
html>/**/body {
    font-size: 13px;
}

html>/**/body h2{
    font-size: 13px;
}

html>/**/body p{
    font-size: 12px;
}

html>/**/address{
    font-size: 14px;
}

html>/**/.contents-login a{
    font-size: 13px;
}

