/* フォントとリンクの指定 */

body {
 font-size: 14px;
 color: #000000;
}

/* 見出し用 */
h1  { 
 font-weight: 700;
 font-size: 12px;　
 }

p  {
 font-weight: 400;
 }

/* 本文用 */
.nomal {
 font-size: 14px;
 line-height: 24px;　　　
 }
/* キャプション用 */
.small {
 font-size:12px;　
}

/* リンクの指示 */

a:link {
 color: black;
 text-decoration: none
 }

a:hover {
 color: #ff4500;
 text-decoration: none
 }

a:visited {
 color: #00bfff;
 text-decoration: none
 }


