@charset "shift_jis";

/* 通常リンク */
a { text-decoration: underline }
a:link    { color: #0066CC }
a:visited { color: #003399 }
a:hover   { color: #FF0033 }
a:active  { color: #FF0033 }

/* メニュー用リンク 
a.linka { background-color:#D1DDE0; }
a.linka:hover   { background-color:#ffffff; }*/

/* コンテンツ用リンク */
a.conta { text-decoration: none; font-weight: bold  }
a.conta:link    { color: #8F9CA3 }
a.conta:active  { color: #FFCCCC }
a.conta:visited { color: #8F9CA3 }
a.conta:hover   { color: #E50031 }

/* コンテンツ用セレクト時 */
.cont01 {
	color: #E50031;
	font-weight: bold;
	font-family: verdana, "ＭＳ Ｐゴシック", "メイリオ", Osaka, "ヒラギノ角ゴ Pro W3", Geneva, Helvetica, sans-serif;
}

.span1 {display:none;}

.message {
    position: relative;
}
.message span.remark {
    display: none;
}
.message a:hover span.remark {
    background: none repeat scroll 0 0 #EEFFEE;
    border: 1px solid #CCCCCC;
    color: #000000;
    display: block;
    line-height: 1.2em;
    margin: 0.5em;
    padding: 0.5em;
    position: absolute;
    top: 20px;
    width: 700px;
}

.balloonoya {
  position   : relative;             /* 指定した分だけ相対的に移動 */
  cursor   : pointer;                /* カーソルをポインターで表示 */
}
.balloon1 {
  display: none;                     /* 要素を非表示 */
}
.balloon {
  position: absolute;                   /* 親要素を基準 */
  display: inline;                      /* 要素をインラインとして表示 */
  padding: 2px;                         /* テキストの前後の余白 */
  background-color: rgba(102, 102, 255, 0.50);       /* 背景色（透明度） */
  width:700px;                          /* 吹き出し全体の幅 */
  top : 200%;                           /* 表示位置 */
  margin-top : 12px;                    /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
}
.balloon:after{
  border-bottom: 12px solid rgba(102, 102, 255, 0.50); /* 吹き出し口の高さ・色 */
  border-left: 10px solid transparent;    /* 吹き出し口の幅１／２ */
  border-right: 10px solid transparent;   /* 吹き出し口の幅１／２ */
  top: -12px;                             /* 吹き出し口の位置調整 */
  left : 5%;                              /* 吹き出し口の横位置 */
  content: "";                       /* コンテンツの挿入 */
  position: absolute;                /* 親要素を基準 */
}