/* 日本語文字コード　UTF-8 */
* {font-size: 100%;}

/* tag */
html {overflow-y: scroll;}
body {font-family:'Meiryo', 'メイリオ','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;}

p {margin:0px; padding:0px;}
img {
  border:none;
}

/* tables */
/*th, td {text-align:left; vertical-align:top;}*/
tr, td {font-family:'Meiryo', 'メイリオ','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;}
div     {text-align:center;}
table   {margin-left:auto;margin-right:auto;}
caption {margin-left:auto;margin-right:auto;}

/* link */
a:link{color:#3366CC; text-decoration:none;}
a:visited{color:#663399; text-decoration:none;}
a:hover {text-decoration:none;}

/* 2024年追加 */
body {
  height: 100vh; /* 画面の高さいっぱいに表示 */
  background: #f0f0f0;
}
h1 {
  font-size: 30px;
  text-align: left;
  color: #362c62;
}
h2 {
  font-size: 20px;
  text-align: left;
  color: #362c62;
}

footer {
  width: 100%;
  height: 25px;
  text-align: center;
  padding: 2px 0;
  background: #ffffff;
  position: fixed;/*←絶対位置*/
  bottom: 0; /*下に固定*/
}

/* 画像点滅 */
@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* 要素にアニメーションを適用 */
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
}
