﻿/* ▼外枠▼ */
div.notedesign {
  margin-left: 25px;
  　　     /* 外枠の位置 */
   float: left;
  /* ノートの表示場所 */
   width: 600px;
  /* ノートの */
   border: 2px solid #009933;
  /* 外枠 */
   padding: 10px;
  /* 内側の余白 */
   background-color: #ffffcc;
  /* 背景色 */
   position: relative
;
}
/* ▼ノート内部▼ */
div.notedesign p.notemiddle {
  background-image: url("../images/greendot.gif");
  /* 罫線 */
   line-height: 25px;
  /* 行の高さ */
   margin: 0px;
  /* 外側の余白 */
   font-size: smaller;
}
/* ▼ノートタイトル▼ */
div.notedesign p.notetitle {
  margin: 0px 0px 5px 0px;
  /* 外側の余白 */
   padding: 0px 0px;
  /* 内側の余白 */
   border-bottom: 3px double #009933;
  /* 下線 */
   font-weight: bold;
  /* 文字の太さ */
   color: #009933;
/* 文字色 */
}
/* ▼ノートタイトルの日付欄▼ */
div.notedesign p.notetitle span.date {
  float: right;
}