@charset "UTF-8";

* { 
	font-size: 15px; 
	color: #222222;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
}

body {
	padding: 5px 0px;
}

a {
	color: #0000AA;
}

a,
a:hover {
	text-decoration: none;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}

h2,
h3 {
	display: none;
}

article.idx {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}

article.idx * {
	text-align: center;
	margin: 0px auto;
}

article.idx p {
	margin: 4px 10px;
}

article.idx p strong {
	text-decoration: underline;
}

#loading {
	display: block;
	width: 50px;
	height: 50px;
	margin: 10px auto 20px auto;
	background-image: url(/image/loading.png);
	background-repeat: no-repeat;
	background-size: contain;
	animation:2s linear infinite rotation;
}

@keyframes rotation {
	0% { transform:rotate(0); }
	100% { transform:rotate(360deg); }
}
