/* base.css
*/
* {
  margin: 0;
  padding: 0;
  vertical-align: top;
  box-sizing: border-box; /* width and height include padding */
}

a {text-decoration: none;} /* No Underline */

.normal {font-weight:normal;}
.fw100, .hair {font-weight:100;}
.fs60, .smaller {font-size:60%;}
.fs80, .small {font-size:80%;}
.fs90 {font-size:90%;}
.fs110, .big {font-size:110%;}
.fs120, .bigger {font-size:120%;}

/* Some item like to hide. 隠したい要素 */
.nodisplay {display:none;}

