@charset "UTF-8";
/* Reset and normalize tags */
*{
  margin:0;
  padding:0;
  outline:none;
  box-sizing:border-box;
}
html{
  height:100%;
  font-size:62.5%;
}
body{
  height:100%;
  font-size:1.4rem;
}
.noWrap{
  white-space:nowrap;
}
.wrap{
  white-space:normal;
}
.block{
  display:block;
}
.inlineBlock{
  display:inline-block;
}
.alignTop{
  vertical-align:top;
}
.hidden{
  display:none;
}
.center{
  text-align:center;
}
figure{
  display:table-cell;
}
figure a,
figure img{
  display:block;
}
a{
  color:inherit;
  text-decoration:none;
}
p{
  margin:0;
}
input,
textArea{
  color:inherit;
}
input[type="email"]{
  text-transform:lowercase;
}
