@charset "UTF-8";
/* CSS Document */

/* ローディング */

body{
	position: relative;
	background:url(../img/bg.png) repeat;
	animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
	50%{opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
	50%{opacity: 0}
    100% {opacity: 1}
}

#loding__box {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100000;
	background:url(../img/bg.png) repeat;
    animation: fadeOut 2s ease 1s 1 normal forwards;
    -webkit-animation: fadeOut 2s ease 1s 1 normal forwards;
}

#loding__icon{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

#loding__icon{
	width: 5%;
}

#loding__icon img{
	width: 100%;
}

@keyframes fadeOut {
    0% {opacity: 1}
	50%{opacity: 1}
    100% {opacity: 0;
	display: none!important;
	z-index: 0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1}
	50%{opacity: 1}
    100% {opacity: 0;
	display: none!important;
	z-index: 0;}
}

.sinnen{
	background-color: rgba(255,255,255,0.7);
	display: inline-block;
	box-sizing: border-box;
	padding: 1% 2%;
	margin-top: 15px;
	border-radius: 10px;
	line-height: 1.5;
	font-size: 1.5rem;
}