@charset "utf-8";
html {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}
form, input {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: underline;
	word-break: break-all;
}
li, ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
a img{
	border: 0;
}
img {
	max-width: 100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
h1, h2, h3, h4, h5, h6, p, ol, ul, pre, blockquote, DIV {
	margin: 0px;
	padding: 0px;
}
dl, dt, dd {
	margin: 0;
	padding: 0;
	background: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
	zoom: normal;
}
p {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQIW2NkAAIAAAoAAggA9GkAAAAASUVORK5CYII=") ;
}

/*ページ読み込み時のフェードイン*/
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


.latent {
	visibility: hidden;
	opacity: 0;
	transition: all .2s ease-in;
	height: 0;
	transform: scaleY(0);
}
.manifest {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: all .2s ease-in;
	transform: scaleY(1);
}

