@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* カスタムフォント */

body{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
}
body > *{
    /* 直下の子要素のみに適用(孫要素含まない) */
    margin:10px;
}
.text-sora{
    color: #009fbd;
}
a.text-sora{
    text-decoration: none;
}
a:hover.text-sora{
    color: #008ca6;
}
a.hover_underline{
    text-decoration: none;
}
a:hover.hover_underline{
    text-decoration: underline;
}
.section{
    margin: 10px;
}