@charset "utf-8";


* {
    margin:0;
    padding:0;
    outline:0;
    vertical-align:baseline;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

address, em, cite, dfn, var {
  font-style: normal;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

p {
    margin-top: 0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

ul {
	list-style:none;
	padding:0;
}
li {
	padding:0;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

table {
  border-collapse: collapse;
}

table th{
  vertical-align:top;
}

input, select {
    vertical-align:middle;
}

a{
	text-decoration:underline;
	color:#fff;
}

a {
    -webkit-tap-highlight-color:transparent;
}

a:hover{
	color: #333;
	text-decoration:none;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0; 
	clear: both;
	visibility: hidden; 
	overflow: hidden;
}

a img {
    border-style:none;
}

video {
	width: 100%;
 	display: block;
}

html {
    -webkit-text-size-adjust: 100%;
}



body {
    margin:0;
	width:100%; 
	  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	background-color: #fff;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.center{
	text-align:center;
	margin:0 auto;
}

.right{
	text-align:right;
}

img{
	height: auto;
	width: 100%;
	vertical-align: bottom;
}

.area{
	margin: 3%;
	padding: 5% 0;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.btn{
	animation: vertical ease-in-out infinite alternate;
	animation-duration: 1.8s;
	margin: 4% 1% 0;
	text-align: center;
	width: 98%
}

@keyframes vertical {
0%, 40%, 60%, 80% {
    transform: scale(1.0);
}
50%, 70% {
    transform: scale(0.95);
}
}


footer{
	text-align: center;
	padding: 2%;
	color: #fff;
	background:#284768;
	font-size: 14px;

}