@charset "utf-8";
/*html5doctor.com Reset Stylesheet v1.4 2009-07-27 Author: Richard Clark - http://richclarkdesign.com*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,hgroup,menu,nav,section,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,dialog,figure,footer,header,hgroup,nav,section{display:block;}
nav ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
del{text-decoration: line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted #000;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #cccccc;margin:1em 0;padding:0;}
input,select{vertical-align:middle;}

/*font*/
@font-face{
	font-family:'mofuji';
	src:url('../fonts/mofuji.woff') format('woff'),url('../fonts/mofuji.woff2') format('woff2');
}

/*
common
*/
html{
	padding:0;
	margin:0;
	height: 100%;
}
body{
	width:100%;
	height: 100%;
	min-width:320px;
	padding:0;
	margin:0;
	position:relative;
	overflow-x: hidden;
	overflow-y: auto;
	color:#ffffff;
	background:url(../img/bg_body.jpg) no-repeat center top fixed #000;
	background-size: cover;
	-webkit-background-size: cover;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
	text-align: center;
	font-size: 16px;
}
a{color:#666;}

#enter{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#enter > div{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -160px;
	width:320px;
	height: 200px;
	line-height: 1.8;
}
.topLogo{
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: bold;
}
#total{
	font-size: 10px;
	position: absolute;
	bottom: 16px;
	right: 16px;
	color: #333;
}
#enter > div p span,
#april span{
	color: #FF0004;
}
.copy{
	margin-top: 1rem;
	font-size: 11px;
	text-align: right;
}

#april{
	width: 80%;
	margin: 50px 10%;
	background:rgba(0,0,0,0.6);
	box-sizing: border-box;
	padding: 16px;
	line-height: 1.8;
}
.tbl {text-align: left;}
.tbl dd{margin:8px 8px 16px 8px;}
.dame,.dame2{
	position: relative;
}
.dame:before{
	position: absolute;
	top:-12px;
	left:-5px;
	content: "×";
	color:aqua;
	font-size: 24px;
}
.dame2:before{
	position: absolute;
	top:-10px;
	left:-1px;
	content: "×××××";
	color:aqua;
	font-size:36px;
}


#app {
  position: relative;
  width:100%;
}
.character {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  witdh: 100px;
  height: 100px;
  border-radius: 5px;
}

img.glitter-star {
  position: absolute;
  height: 16px;
  width: 16px;

  /* アニメーションの設定 */
  animation: glitter 2s linear 0s infinite normal;
  -webkit-animation: glitter 2s linear 0s infinite normal;
  -moz-animation: glitter 2s linear 0s infinite normal;
  -ms-animation: glitter 2s linear 0s infinite normal;
  -o-animation: glitter 2s linear 0s infinite normal;
}

/* 必要に応じてベンダープレフィックス（-moz-, -ms-, -o-）をつける */
@keyframes glitter {
  0% {
    -webkit-transform: scale(1.0);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.0);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 1;
  }
}