a:hover { 
  background-color:white;
}
a {
  text-decoration:none;
}
a:hover {
  text-decoration:underline; 
}
a{
  font-weight:bold;
}
.redFont{
 color:red;
}
.blueFont{
 color:blue;
}
body{
  line-height:130%;
  /* background-color:#aaffff */
  background-color:#ffffff;
}
.bigFont{ 
  font-size:25pt;
  line-height:200%;
}
.smallFont{
  font-size:9pt;
}
.redAndWhite{
  font-weight: bold;
  color: white;
  background-color: red;
}

.blueAndWhite{
  font-weight: bold;
  color: white;
  background-color: #808080;
}

.italic{
  font-style: italic;
}

.h{
  width: 1000px;
  padding-left: 0.5em;
  border-top: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
  border-left: 5px solid #000000;
  border-bottom: 5px solid #000000;
  margin-top: 5px;
  margin-bottom: 10px;
  line-height: 200%;
}

.borderFix{
  background-color: 
}
.middle{
  padding-top: 20px;
}
.heightSupport{
  height: 540px;
}
.imgLeft{
  float:left;
  margin-right: 1em;
  /*margin-top: 1em;*/
}
.imgRight{
  float:right;
  margin-left: 1em;
  /*margin-top: 1em;*/
}
.imgCenter{
  float:center;
  margin-left: 1em;
  margin-right: 1em;
  /*margin-top: 1em;*/
}

.clear{
  clear: both;
}
.leftFloat{
  float: left;
}
.rightFloat{
  float: right;
}
.centerLine{
  text-align: center;
}
.heightFix{
  height: 420px;
  padding-top: 10px;
}
.widthFix{
  width: 300px;
}
.padding{
  margin: 10px 0 10px 10px;
  border: 3px none #ff0000;
  border-right-style: solid;
  border-bottom-style: solid;
}
.padding_2{
  margin: 10px 1px 10px 0;
  border: 3px none #ff0000;
  border-left: 5px solid #ff0000;
  border-right-style: solid;
  border-bottom-style: solid;
}
.bold{ 
  font-weight:bold;
}
.bigFont_2{
  font-size:150%;
  line-height: 200%;
}
.topHeight{
  height:60px;
}
.middle{
  vertical-align:middle;
}
h1{
  font-size:large;
  padding-left: 0.3em;
  border-left: 1em solid #ff0000;
  border-bottom: 1px solid #ff0000;
  margin-top: 5px;
}

.heading{
  border-left: 0.5em solid #0000ff;
  padding-left: 0.5em;
}

.heading_end{
  border-right: 0.5em solid #0000ff;
  padding-right: 0.5em;
}

.list{
  list-style-type: square;
  font-weight:bold;
}

.listNone{
  list-style-type: none;
}

.listcircle{
  list-style-type: circle;
}

.listdisc{
  list-style-type: disc;
}

.whiteFont{
  color:white;
}

/*ちょっと大きいフォント*/
.bigFont2{
  font-size:15pt;
}
/*行間を元に戻す（AA用）*/
.normalLine{
  line-height:normal;
}

/*情報処理解説講座　妹紅台詞*/
.mokou{
  color:#FF0000;
}
/*情報処理解説講座　慧音台詞*/
.keine{
  color:#008000;
}
/*情報処理解説講座　ゲスト台詞*/
.guest{
  color:#0000FF;
}
/*取消線を使う*/
.strike{
  text-decoration:line-through;
}

/*参加予定に色を付ける*/
.y{
  background-color:#c0c0c0
}

/*文字点滅*/
@-webkit-keyframes pulse {
 from {
   opacity: 1.0;/*透明度100%*/
 }
 to {
   opacity: 0.4;/*透明度40%*/
 }
}
.blinking{
-webkit-animation-name: pulse;/* 実行する名前 */
-webkit-animation-duration: 1.0s;/* 0.3秒かけて実行 */
-webkit-animation-iteration-count:infinite;/* 何回実行するか。infiniteで無限 */
-webkit-animation-timing-function:ease-in-out;/* イーズインアウト */
-webkit-animation-direction: alternate;/* alternateにするとアニメーションが反復 */
-webkit-animation-delay: 0.2s; /* 実行までの待ち時間 */
}
/*文字点滅*/

