* { 
   font-weight : bold ;        /* 全てのフォントを、太字にする */
   font-family : "メイリオ", "ヒラギノ角ゴ ProN W3", sans-serif ;
                 /* Windows と、Mac、iOS 間で、*/
                 /* 英字やカタカナ等の、字幅がほぼ揃うフォントを指定 */
                 /* 無ければ、ゴシック系フォント sans-serif を指定 */
   white-space : nowrap ;      /*　文書を自動的に、折り返さない */
}
font {
   background : black ;       /* 全てのフォントの背景色を、黒に */
}
h2 {
   font-size : x-large ; font-style : italic ; }
h3 {
   font-size : large   ; font-style : italic ; }
p, center, table, input, select, textarea {
   font-size : medium ; }

img.H {                      /* 横長写真の配置時には、 */
   margin-top    :  5px ;        /* 外側上に、 5px の余白 */
   margin-bottom : 15px ;        /* 外側下に、15px の余白 */
   border        :  3px solid ;  /* 枠線は、3px の実線 */
}
img.V {                      /* 縦長写真の配置時には、 */
   margin        :  0px ;        /* 外側周囲の余白は、無し */
   border        :  3px solid ;  /* 枠線は、3px の実線 */
}
img.I {                      /* アイコンとしての図形配置時には、 */
   margin         : 3px    ;     /* 外側周囲の余白は、 3px。 */
   border         : 0px    ;     /* 枠線は、無し。 */
   vertical-align : middle ;     /* 回込み文字は、縦中央配置 */
}
embed, video {               /* 動画を配置するボックスには、 */
   margin-top    :  5px ;        /* 外側上に、 5px の余白 */
   margin-bottom : 10px ;        /* 外側下に、10px の余白 */
   border        :  3px ;        /* 枠幅は、3px */
}