@charset "UTF-8";

ul {
  list-style-type: none;
}

li {
#  margin: 15px;
  margin: 1px;
}

a {
  color: #ffffff;
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
}

.header1 {
  font-size: 90%;
  color: #0000cd;
  background: #ffffff;
}

.header2 {
  font-size: 130%;
  color: #ffffff;
  background: #0000cd;
}

.header3 {
  font-size: 100%;
  font-weight: bold;
  margin: 10pt;
}

.footer {
  color: #ffffff;
  background: #0000cd;
  font-size: 100%;
}

.heading {
  font-weight: bold;
}

.date {
  padding-left: 20px;
}

.btn1 {
  color: #888888;
  background: #e0e0ff;
  width: 300px;
  height: 30px;
  padding: 6px 10px; /* 上下の余白、左右の余白 */
  margin-left: 20px;
  margin-top: 5px;
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  border-radius: 10px; /* 角を丸くする */
}

.btn2 {
  display: inline-block;
  color: #000000;
  background: #00bfff;
  width: 300px;
  height: 30px;
  padding: 6px 10px; /* 上下の余白、左右の余白 */
  margin-left: 20px;
  margin-top: 5px;
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  border-radius: 10px; /* 角を丸くする */
  transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-duration: .5s;
  -webkit-transition-duration: .5s;
}

.btn2:hover {
  opacity: .7;
}

.btn3 {
  color: #888888;
  background: #e0e0ff;
  width: 300px;
  height: 30px;
  padding: 6px 10px; /* 上下の余白、左右の余白 */
  margin-left: 20px;
  margin-top: 5px;
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  border-radius: 10px; /* 角を丸くする */
}

.btn4 {
  display: inline-block;
  color: #000000;
  background: #ff80ff;
  width: 300px;
  height: 30px;
  padding: 6px 10px; /* 上下の余白、左右の余白 */
  margin-left: 20px;
  margin-top: 5px;
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  border-radius: 10px; /* 角を丸くする */
  transition-property: opacity;
　-webkit-transition-property: opacity;
  transition-duration: .5s;
  -webkit-transition-duration: .5s;
}

.btn4:hover {
  opacity: .7;
}

